@keyframes moveToLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translate(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveToRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translate(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes animate {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes honeycomb {
  0%, 20%, 80%, 100% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  30%, 70% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes honeycomb {
  0%, 20%, 80%, 100% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  30%, 70% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  font-family: "AR One Sans", sans-serif;
}
@media only screen and (max-width: 62em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 48em) {
  html {
    font-size: 50%;
  }
}
@media (min-width: 75em) {
  html {
    font-size: 75%;
  }
}

body {
  box-sizing: border-box;
  padding: 0 1rem;
}
@media only screen and (max-width: 48em) {
  body {
    padding: 0;
    width: 100%;
  }
}

::selection {
  background-color: #8f8b8b;
  color: white;
}

.main {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.primary-heading {
  color: #fafafa;
  margin-bottom: 6rem;
  opacity: 0.9;
}
.primary-heading--main {
  display: block;
  font-weight: 400;
  letter-spacing: 3.5rem;
  margin-bottom: 2rem;
  font-size: 6rem;
  animation-name: moveToLeft;
  animation-duration: 6s;
  animation-timing-function: ease-out;
}
@media only screen and (max-width: 37.5em) {
  .primary-heading--main {
    font-size: 5rem;
    letter-spacing: 1rem;
  }
}
.primary-heading--sub {
  text-transform: uppercase;
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 9rem;
  animation: moveToRight 6s ease-out;
}
@media only screen and (max-width: 37.5em) {
  .primary-heading--sub {
    letter-spacing: 1rem;
  }
}

.secondary-heading {
  font-size: 3.5rem;
  text-transform: uppercase;
  text-align: center;
  color: transparent;
  background-image: linear-gradient(to right bottom, rgba(51, 51, 51, 0.6), rgba(143, 139, 139, 0.6));
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 3rem;
}
.secondary-heading--light {
  background-image: linear-gradient(to top, rgba(143, 139, 139, 0.6), rgba(255, 255, 255, 0.8));
}

.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8rem);
  transition: all 0.5s ease-in-out;
}

.welcome-page {
  background-image: linear-gradient(to right bottom, #333333, rgba(250, 250, 250, 0.95));
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.welcome-page__logo {
  width: 10rem;
}
.welcome-page .box {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 200px;
  background-color: #8f8b8b;
  animation: animate 1s linear infinite;
  box-shadow: 0 0 5rem rgba(250, 250, 250, 0.4), 0 0 5rem rgba(51, 51, 51, 0.6);
}

#main-content {
  display: block;
}

.honeycomb {
  height: 24px;
  position: relative;
  width: 24px;
}

.honeycomb div {
  -webkit-animation: honeycomb 2.1s infinite backwards;
  animation: honeycomb 2.1s infinite backwards;
  background: #fff;
  height: 12px;
  position: absolute;
  width: 24px;
}

.honeycomb div:after,
.honeycomb div:before {
  content: "";
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  position: absolute;
  left: 0;
  right: 0;
}

.honeycomb div:after {
  top: -6px;
  border-bottom: 6px solid #fff;
}

.honeycomb div:before {
  bottom: -6px;
  border-top: 6px solid #fff;
}

.honeycomb div:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  left: -28px;
  top: 0;
}

.honeycomb div:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  left: -14px;
  top: 22px;
}

.honeycomb div:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  left: 14px;
  top: 22px;
}

.honeycomb div:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  left: 28px;
  top: 0;
}

.honeycomb div:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  left: 14px;
  top: -22px;
}

.honeycomb div:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  left: -14px;
  top: -22px;
}

.honeycomb div:nth-child(7) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  left: 0;
  top: 0;
}

.btn-text {
  font-size: 1.6rem;
  color: #8f8b8b;
  display: inline-block;
  text-decoration: none;
  border: none;
  border-bottom: 1px solid #8f8b8b;
  background: none;
  padding: 3px;
  transition: all 0.2s;
}
.btn-text:hover {
  background-color: #8f8b8b;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(0);
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 100%;
  height: 100%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 2.8rem;
  font-weight: bold;
}

.carasoul {
  width: 40rem;
  height: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.carasoul__icon {
  width: 30rem;
  height: 30rem;
}
@media only screen and (max-width: 37.5em) {
  .carasoul__icon {
    width: 10rem;
    height: 10rem;
  }
}

.gallery {
  background-color: #fafafa;
  transition: transform 1s, opacity 1s;
}
.gallery__container {
  margin: 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
@media only screen and (max-width: 48em) {
  .gallery__container {
    align-items: center;
  }
}
.gallery__img {
  width: 30rem;
  height: 30rem;
  background-size: cover;
  box-shadow: 0 1.5rem 1rem rgba(0, 0, 0, 0.2);
  margin: 2rem;
}
.gallery__img--1 {
  background-blend-mode: screen;
  background-image: linear-gradient(to right, rgba(143, 139, 139, 0.95), rgba(51, 51, 51, 0.95));
}
.gallery__img--2 {
  background-blend-mode: screen;
  background-image: linear-gradient(to right, rgba(143, 139, 139, 0.95), rgba(51, 51, 51, 0.95)), url("/img/backyard.jpg");
}
.gallery__img--3 {
  background-blend-mode: screen;
  background-image: linear-gradient(to right, rgba(143, 139, 139, 0.95), rgba(51, 51, 51, 0.95)), url("/img/bathroom-3.jpg");
}
.gallery__img--4 {
  background-blend-mode: screen;
  background-image: linear-gradient(to right, rgba(143, 139, 139, 0.95), rgba(51, 51, 51, 0.95)), url("/img/entry.jpg");
}
.gallery__img--5 {
  background-blend-mode: screen;
  background-image: linear-gradient(to right, rgba(143, 139, 139, 0.95), rgba(51, 51, 51, 0.95)), url("/img/kitchen-2.jpg");
}
.gallery__img--6 {
  background-blend-mode: screen;
  background-image: linear-gradient(to right, rgba(143, 139, 139, 0.95), rgba(51, 51, 51, 0.95)), url("/img/home-2.jpg");
}
.gallery__img--7 {
  background-blend-mode: screen;
  background-image: linear-gradient(to right, rgba(143, 139, 139, 0.95), rgba(51, 51, 51, 0.95)), url("/img/home-1.jpg");
}
.gallery__img--8 {
  background-blend-mode: screen;
  background-image: linear-gradient(to right, rgba(143, 139, 139, 0.95), rgba(51, 51, 51, 0.95)), url("/img/kitchen-1.jpg");
}
.gallery__img--9 {
  background-blend-mode: screen;
  background-image: linear-gradient(to right, rgba(143, 139, 139, 0.95), rgba(51, 51, 51, 0.95));
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 100; /* Sit on top */
  margin: 0 auto;
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 85%;
  max-width: 70rem;
  height: 70%;
}

.close {
  position: absolute;
  top: 1.5rem;
  right: 3.5rem;
  color: #333;
  font-size: 4rem;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.partners__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 0 auto;
  padding: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.partners__item {
  margin: 1rem;
}
.partners__name {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  text-align: center;
}
.partners__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  margin: 2rem;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 2rem;
  border: 1px solid #888;
  width: 100%;
  height: 100%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 2.8rem;
  font-weight: bold;
}

.tharra__img {
  width: 50vw;
}
@media only screen and (max-width: 48em) {
  .tharra__img {
    width: 80vw;
  }
}
.tharra__overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(30rem, 1fr));
  gap: 3rem;
  margin: 2rem 0;
  font-size: 1.6rem;
}
@media only screen and (max-width: 48em) {
  .tharra__overview {
    grid-template-columns: repeat(1, minmax(30rem, 1fr));
  }
}
.tharra__overview--title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #C9B194;
}
.tharra__overview--list--items {
  list-style: none;
}
.tharra__overview--map--content {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 48em) {
  .tharra__overview--map--content {
    height: 30vh;
  }
}

.icon-location {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: black;
  fill: #C9B194;
}

.content {
  display: table;
  position: relative;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 48em) {
  .content {
    display: flex;
    flex-direction: column;
  }
}
.content__text {
  display: table-cell;
  vertical-align: middle;
  padding: 3rem 5rem;
  color: #333;
}
@media only screen and (max-width: 48em) {
  .content__text {
    vertical-align: auto;
    flex: 0 0 50%;
  }
}
.content__text--title {
  font-size: 3rem;
}
@media only screen and (max-width: 48em) {
  .content__text--title {
    font-size: 2rem;
  }
}
.content__text--prgph {
  font-size: 2.4rem;
}
@media only screen and (max-width: 48em) {
  .content__text--prgph {
    font-size: 1.6rem;
  }
}
.content__pic {
  display: table-cell;
  width: 20%;
}
@media only screen and (max-width: 48em) {
  .content__pic {
    width: 100%;
    display: block;
    flex: 1;
  }
}
.content__img {
  display: block;
  width: 100%;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.6);
}
@media only screen and (max-width: 48em) {
  .content--2 {
    flex-direction: column-reverse;
  }
}

.work__container {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  width: 70%;
  height: auto;
  margin: 5rem;
  font-size: 1.6rem;
}
@media only screen and (max-width: 48em) {
  .work__container {
    width: 80%;
    left: 40%;
  }
}
.work__info {
  list-style: none;
}
.work__item {
  padding: 1rem 0;
}
.work__title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer {
  background-image: linear-gradient(to right bottom, #333, #8f8b8b);
  font-size: 1.4rem;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.footer__logo-box {
  text-align: center;
  height: fit-content;
  position: relative;
}
.footer__logo {
  width: 15rem;
}
.footer__content {
  display: flex;
  justify-content: space-between;
}
.footer__navigation {
  border-top: 2px solid #333;
  padding-top: 2rem;
  display: inline-block;
}
.footer__list {
  list-style: none;
}
.footer__item:not(:last-child) {
  margin-right: 1.5rem;
}
.footer__link:link, .footer__link:visited, .footer__link {
  color: #fafafa;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  font-size: 1.5rem;
}
.footer__link:hover {
  box-shadow: 0 0.2rem 2rem rgba(0, 0, 0, 0.4);
}
.footer__copyright {
  border-top: 1px solid #333;
  padding-top: 0 2rem;
  color: #fafafa;
}

.header {
  height: 70vh;
  background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.25), rgba(51, 51, 51, 0.25));
  position: relative;
}
.header__text {
  color: #fafafa;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: 0.15;
  overflow: hidden;
}
.bg-video__content {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.navbar {
  background-color: #fafafa;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  height: 8rem;
  width: 100%;
  box-shadow: 0rem 0rem 3rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 62em) {
  .navbar {
    justify-content: space-between;
  }
}
@media only screen and (max-width: 37.5em) {
  .navbar {
    gap: 1rem;
  }
}
.navbar__items {
  display: flex;
  gap: 1rem;
}
.navbar__items--1 {
  justify-self: flex-start;
}
.navbar__items--2 {
  justify-self: flex-end;
}
@media only screen and (max-width: 62em) {
  .navbar__items {
    display: none;
  }
}
.navbar__item {
  display: block;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  color: #333;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  transition: all 0.2s ease-in-out;
}
.navbar__item:hover:not(.navbar__logo) {
  border-bottom: #333 0.3rem solid;
}
.navbar__item--new {
  background-color: #C9B194;
}
@media only screen and (max-width: 48em) {
  .navbar__item--new {
    background-color: #f1e2d1;
    opacity: 1;
  }
}
@media only screen and (max-width: 62em) {
  .navbar__item {
    display: block;
    padding: 1.4rem 1.6rem;
    text-align: left;
  }
}
.navbar__logo {
  display: flex;
  align-items: center;
}
.navbar__img {
  width: 20rem;
}
@media only screen and (max-width: 37.5em) {
  .navbar__img {
    width: 15rem;
  }
}
.navbar__icon {
  position: relative;
  margin-top: 3.5rem;
}
.navbar__icon, .navbar__icon::before, .navbar__icon::after {
  width: 3rem;
  height: 2px;
  background-color: #333;
  display: none;
}
.navbar__icon::before, .navbar__icon::after {
  position: absolute;
  content: "";
  left: 0;
  transition: all 0.2s;
}
.navbar__icon::before {
  top: -0.8rem;
}
.navbar__icon::after {
  top: 0.8rem;
}
@media only screen and (max-width: 62em) {
  .navbar__icon, .navbar__icon::before, .navbar__icon::after {
    display: block;
    background-color: #333;
  }
}
@media only screen and (max-width: 37.5em) {
  .navbar__icon, .navbar__icon::before, .navbar__icon::after {
    display: block;
    background-color: #333;
  }
}

.sticky {
  position: fixed;
  background-color: rgba(254, 253, 253, 0.95);
  top: 0;
  left: 0;
  z-index: 10;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  margin-top: 1.5rem;
  z-index: 100;
  display: flex;
  justify-content: center;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  width: 100%;
  text-align: center;
}

.overlay a {
  padding: 0.8rem;
  text-decoration: none;
  font-size: 3.6rem;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .btn--close {
  font-size: 6rem;
}

.section__real-estate {
  background-color: #fafafa;
  padding: 10rem 1rem 0 1rem;
  margin-top: -1vh;
  gap: 2rem;
  padding: 1rem;
  transition: transform 1s, opacity 1s;
}
.section__tharra {
  padding: 4rem;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background-image: linear-gradient(to right, rgba(51, 51, 51, 0.9), rgba(143, 139, 139, 0.9)), url("../img/tharra-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  -webkit-background-attachment: fixed;
  background-position: center;
  color: #fafafa;
}
.section__mozn {
  background-color: #fafafa;
  background-image: linear-gradient(to right, rgba(51, 51, 51, 0.9), rgba(143, 139, 139, 0.9)), url("../img/mozn.jpg");
}
.section__work {
  background-image: linear-gradient(to right, rgba(51, 51, 51, 0.9), rgba(143, 139, 139, 0.9)), url("../img/home-1.jpg");
  margin-top: -2%;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 100vh;
  transition: transform 1s, opacity 1s;
}
.section__partners {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/*# sourceMappingURL=style.css.map */
