/* 
* Global CSS
* -----------------------------------------------------
*/
::placeholder {
  color: #fff;
}

.secondary-btn-custom {
  color: var(--primary-color);
  height: fit-content;
  padding: 4px 15px;
  text-transform: uppercase;
  font-family: 'Arquitecta', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  border-radius: 90px;
  background-color: #fff;
  transition: 0.3s ease-in-out;
}

.secondary-btn-custom:hover {
  filter: brightness(1.4);
}

.select2-container--default .select2-selection--single {
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  border-bottom: 1px solid #ffffff !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #ffffff !important;
}

/* 
* Header CSS
* -----------------------------------------------------
*/

#header {
  position: relative;
}

#header .header-content {
  position: relative;
  height: 100dvh;
  overflow: hidden;
}

#header .header-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/header.jpg');
  background-size: cover;
  background-position: center;
  animation: zoomOut 15s ease-in-out infinite;
}

#header .header-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0, 0.4);
}

#header .promo-logo {
  position: absolute;
  top: 7%;
  left: 5%;
  z-index: 5;
}

#header .promo-logo > img {
  width: 255px;
}

#header .promo-desc {
  position: absolute;
  bottom: 20%;
  left: 5%;
  color: #fff;
  width: 700px;
  padding: 0 20px;
  margin: 0 auto;
  z-index: 5;
}

@media (max-width: 768px) {
  #header .promo-desc {
    width: 100%;
  }
}

#header .promo-desc > h1 {
  margin-bottom: 20px;
}

/* #header .promo-desc > h3 {
  font-family: 'Autography';
  text-transform: capitalize;
  font-size: 42px;
} */

#header .promo-desc > p {
  font-size: 24px;
  font-weight: 300;
  color: white;
  font-family: 'Arquitecta', sans-serif;
  margin-block: 0;
}

#header .promo-desc > span {
  font-size: 28px;
  font-weight: 700;
  color: white;
  font-family: 'Arquitecta', sans-serif;
  margin-block: 0;
  background-color: red;
  padding-inline: 16px;
}

@media (max-width: 768px) {
  #header .promo-desc > span {
    font-size: 18px;
    padding-inline: 16px;
  }
}

#header .langs-block {
  position: absolute;
  right: 5%;
  top: 5%;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Arquitecta', sans-serif;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.1em;
  z-index: 5;
}

#header .langs-block .desk a.active {
  font-weight: 700;
}

#header .langs-block .mobile {
  display: none;
}

#header .langs-block .mobile .selected-lang {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

#header .langs-block .mobile .selected-lang > img {
  width: 10px;
  transition: 0.3s;
}

#header .langs-block .mobile .selected-lang > img.animate {
  transform: rotate(180deg);
}

#header .langs-block .mobile .dropdown-lang-menu {
  display: flex;
  flex-direction: column;
  text-align: right;
  font-weight: 300;
  opacity: 0;
  pointer-events: none;
  cursor: none;
  transition: 0.3s;
}

#header .langs-block .mobile .dropdown-lang-menu > a {
  margin-right: 1.2em;
}

#header .langs-block .mobile .dropdown-lang-menu > a.active {
  display: none;
}

#header .langs-block .mobile .dropdown-lang-menu.active {
  opacity: 1;
  cursor: pointer;
  pointer-events: unset;
}

#header .contact-btn {
  position: absolute;
  top: 8.5%;
  right: 5%;
  padding: 2px 20px;
  color: var(--primary-color);
  text-transform: uppercase;
  font-family: 'Arquitecta', sans-serif;
  font-size: 16px;
  border-radius: 100px;
  background-color: #ffffff;
  z-index: 5;
}

#header .contact-btn img {
  display: none;
}

#header .header-footer {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% + 70px);
  width: 490px;
  background-color: var(--primary-color);
  z-index: 4;
}

#header .header-footer .form-container {
  padding: 60px;
  height: 100%;
  align-content: center;
}

#header .form-container form > h2 {
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: 500 !important;
  font-size: 28px !important;
}

#header .form-container .inputs-wrapper {
  display: grid;
  gap: 40px;
}

#header .form-container .input-style {
  color: #fff !important;
  font-family: 'Arquitecta', sans-serif;
  font-weight: 400;
  font-size: 20px;
  border-bottom: 0.45px solid #fff;
}

#header .form-container .inputs-wrapper .input-style > input {
  color: inherit;
  width: 100%;
}

#header .form-container .form-footer {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}

#header .form-container .form-footer .checkbox-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px 20px;
  color: #ffffff;
  font-family: 'Arquitecta', sans-serif;
  font-weight: 300;
  font-size: 16px;
}

/* #header .form-container .box {
    display: none;
} */

#header .form-container .box.active {
  display: flex;
  flex-direction: column;
}

#header .form-container .box > label {
  margin-bottom: 20px;
  color: #ffffff;
}

#header .form-container .box > button {
  margin-top: 20px;
}

#header .nextBtn {
  pointer-events: none;
  opacity: 0.8;
}

#header .options-wrapper {
  display: grid;
  gap: 20px;
}

#header .options-wrapper input {
  display: none;
}

#header .options-wrapper .opt {
  width: 100%;
  padding: 11px 0;
  font-family: 'Arquitecta', sans-serif;
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  background-color: #f1faee;
}

#header .nextBtn.active {
  pointer-events: visible;
  opacity: 1;
  transition: 0.2 ease-in-out;
}

#header .header-footer .promo-info {
  width: 100%;
  position: relative;
  bottom: 0;
  display: flex;
  justify-content: center;
  box-shadow: 0 5px 5px 0 rgb(0, 0, 0, 0.5);
  z-index: 5;
}

#header .header-footer .promo-info > div:first-child {
  /* width: fit-content; */
  padding: 20px 60px;
  background-color: #fff;
}

#header .header-footer .promo-info > div:first-child > h4 {
  color: #000;
  margin: 0;
}

#header .header-footer .promo-info > div:first-child > h2 {
  font-family: 'InriaSerif', sans-serif;
  font-size: 50px !important;
  font-family: 400 !important;
  color: #000;
}

#header .header-footer .promo-info > div:nth-child(2) {
  padding: 15px 60px;
  padding-top: 30px;
  background-color: #97abae;
}

#header .header-footer .promo-info > div:nth-child(2) > h4 {
  margin-bottom: 10px;
  color: #fff;
  text-transform: unset;
  text-align: center;
  align-content: center;
  font-family: 'Arquitecta', sans-serif;
  font-size: 20px !important;
  font-weight: 400 !important;
  font-style: italic;
}

#header .header-footer .promo-info > div:nth-child(2) > button {
  width: 100%;
  padding: 7px;
  color: #fff;
  text-transform: uppercase;
  font-family: 'BeautiqueDisplay', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  background-color: var(--primary-color);
}

@media (max-width: 998px) {
  #header .promo-logo {
    right: 0;
    left: 0;
    text-align: center;
  }

  #header .promo-desc {
    bottom: 10%;
    left: unset;
    text-align: center;
  }

  #header .langs-block {
    top: 2.5%;
    right: calc(8% + 15px);
  }

  #header .langs-block .desk {
    display: none;
  }

  #header .langs-block .mobile {
    display: block;
  }

  #header .contact-btn {
    top: 2.4%;
    right: 3%;
    margin: 0 auto;
    padding: 5px;
  }

  #header .contact-btn span {
    display: none;
  }

  #header .contact-btn img {
    display: block;
    width: 15px;
  }

  #header .header-footer {
    position: static;
    width: 100%;
    height: 650px;
  }

  #header .header-footer .form-container {
    align-content: flex-start;
    padding: 30px;
  }
}

@media (max-width: 480px) {
  #header .header-footer .form-container {
    padding: 30px 15px;
  }
}

/* 
* Project CSS
* -----------------------------------------------------
*/

#project {
  position: relative;
  padding: 20px 0 80px;
}

#project h4 {
  margin-bottom: 18px;
}

#project .content {
  display: flex;
  justify-content: center;
  gap: 0 30px;
}

#project .img-block,
#project .text-block {
  display: inline-block;
}

#project .img-block {
  position: relative;
}

#project .img-block > img:first-child {
  width: 400px;
  height: 400px;
  object-fit: cover;
}

#project .img-block > img:nth-child(2) {
  position: absolute;
  bottom: -20%;
  left: -40%;
  z-index: -1;
}

#project .text-block {
  position: relative;
  width: 480px;
  margin: 0 auto;
}

#project .text-block::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 15%;
  border-top: 1px solid #000;
}

#project .text-block > h2 {
  margin: 30px 0;
}

@media (max-width: 998px) {
  #project {
    padding: 30px 0;
  }

  #project h4 {
    margin-bottom: 30px;
  }

  #project .content {
    flex-direction: column;
  }

  #project .img-block > img {
    height: 380px;
    width: 100%;
    object-fit: cover;
  }

  #project .img-block > img:first-child {
    width: 100%;
  }

  #project .img-block > img:nth-child(2) {
    display: none;
  }

  #project .text-block {
    width: auto;
  }
}

@media (max-width: 480px) {
  #project {
    padding: 20px 0;
    padding-top: 40px;
  }

  #project .promo-info {
    position: static;
    margin-bottom: 40px;
  }

  #project .img-block > img:first-child {
    height: 300px;
  }

  #project .promo-info > div:first-child {
    padding: 15px;
  }

  #project .promo-info > div:nth-child(2) {
    padding: 15px;
  }
}

/* 
* Features CSS
* -----------------------------------------------------
*/

#features {
  position: relative;
  padding: 20px 0;
}

#features .features-icons {
  position: relative;
}

#features .features-icons .icons-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 36px;
}

#features .features-icons .icons-wrapper .icon-box {
  text-align: center;
  color: #fff;
}

#features .features-icons .icons-wrapper .icon-box > img {
  width: 50px;
  margin-bottom: 15px;
}

#features .features-carousel {
  margin: 80px 0;
  height: 900px;
}

#features .features-carousel .swiper-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  #features {
    padding: 30px 0;
  }

  #features .features-icons .icons-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 10px;
  }

  #features .container > img {
    padding: 30px 0;
  }

  #features .features-carousel {
    height: 600px;
  }
}

@media (max-width: 480px) {
  #features {
    padding: 20px 0;
  }

  #features .container > img {
    padding: 20px 0;
  }

  #features .features-icons .icons-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  #features .features-icons .icons-wrapper .icon-box > img {
    width: 30px;
  }

  #features .features-carousel {
    height: 500px;
  }
}

@media (max-width: 320px) {
  #features .features-icons .icons-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* 
* Environment CSS
* -----------------------------------------------------
*/

#environment {
  position: relative;
  padding: 20px 0;
}

#environment > img {
  position: absolute;
  left: -160px;
  bottom: 30%;
  transform: rotate(90deg);
}

#features .container.container__xl {
  min-width: 90%;
}

#environment .container > .text-wrapper {
  text-align: right;
}

#environment .container > .text-wrapper > h2 {
  position: relative;
  padding: 30px 0;
}

#environment .container > .text-wrapper > h4 {
  margin-bottom: 30px;
}

#environment .container > .text-wrapper > h2::before {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  width: 5%;
  border-top: 1px solid #000;
}

#environment .carousel-container {
  position: relative;
  padding-bottom: 70px;
}

#environment .env-carousel .swiper-slide {
  position: relative;
}

#environment .env-carousel .swiper-slide::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 0.4);
  z-index: 2;
}

#environment .env-carousel .swiper-slide > img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

#environment .env-carousel .swiper-slide .text-wrapper {
  position: absolute;
  bottom: 5%;
  left: 10%;
  z-index: 5;
}

#environment .env-carousel .swiper-slide .text-wrapper h2,
#environment .env-carousel .swiper-slide .text-wrapper h4 {
  color: #fff;
}

#environment .env-carousel .swiper-slide .text-wrapper h2 {
  font-family: 'InriaSerif';
  font-weight: 400 !important;
  font-size: 38px !important;
}

#environment .env-carousel-navigation {
  position: absolute;
  bottom: -9px;
  left: 0;
  display: flex;
  gap: 0 25px;
}

#environment .env-carousel-navigation .prev-btn > img {
  transform: rotate(180deg);
}

#environment .swiper-pagination-horizontal {
  top: unset;
  right: 0;
  left: unset;
  bottom: 0 !important;
  width: 90%;
  height: 3px;
}

#environment .swiper-pagination-progressbar-fill {
  background: var(--primary-color) !important;
}

@media (max-width: 998px) {
  #environment {
    padding: 30px 0;
  }

  #environment > img {
    display: none;
  }

  #environment .carousel-container {
    padding-bottom: 40px;
  }

  #environment .swiper-pagination-horizontal {
    width: 85%;
  }
}

@media (max-width: 480px) {
  #environment .container > .text-wrapper > h2 {
    padding: 15px 0;
  }

  #environment .container > .text-wrapper > h4 {
    margin-bottom: 20px;
  }

  #environment .carousel-container {
    padding-bottom: 30px;
  }

  #environment .swiper-pagination-horizontal {
    width: 75%;
  }
}

/* 
* Contact CSS
* -----------------------------------------------------
*/

#contact {
  position: relative;
  padding: 20px 0;
}

#contact::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../assets/images/contact.jpg');
  background-size: cover;
  opacity: 0.2;
  z-index: -1;
}

#contact::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #419293;
  z-index: -2;
}

#contact .grid-wrapper {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 30px 120px;
}

#contact .text-block > p {
  color: #ffffff;
}

#contact .form-container form > h2 {
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: 500 !important;
  font-size: 28px !important;
}

#contact .form-container .inputs-wrapper {
  display: grid;
  gap: 40px;
}

#contact .form-container .input-style {
  color: #fff !important;
  font-family: 'Arquitecta', sans-serif;
  font-weight: 400;
  font-size: 20px;
  border-bottom: 0.45px solid #fff;
}

#contact .form-container .inputs-wrapper .input-style > input {
  color: inherit;
  width: 100%;
}

#contact .form-container .form-footer {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}

#contact .form-container .form-footer .checkbox-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px 20px;
  color: #ffffff;
  font-family: 'Arquitecta', sans-serif;
  font-weight: 300;
  font-size: 16px;
}

/* #contact .form-container .box {
  display: none;
} */

#contact .form-container .box.active {
  display: flex;
  flex-direction: column;
}

#contact .form-container .box > label {
  margin-bottom: 20px;
  color: #ffffff;
}

#contact .form-container .box > button {
  margin-top: 60px;
  align-self: flex-end;
}

#contact .nextBtn {
  pointer-events: none;
  opacity: 0.8;
}

#contact .nextBtn.active {
  pointer-events: visible;
  opacity: 1;
  transition: 0.2 ease-in-out;
}

#contact .options-wrapper {
  display: grid;
  gap: 20px;
}

#contact .options-wrapper input {
  display: none;
}

#contact .options-wrapper .opt {
  width: 100%;
  padding: 11px 0;
  font-family: 'Arquitecta', sans-serif;
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  background-color: #f1faee;
}

@media (max-width: 998px) {
  #contact {
    padding: 30px 0;
    height: 590px;
  }

  #contact .grid-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  #contact {
    padding: 20px 0;
    /* height: auto; */
  }
}
