@import url("https://cdn-uicons.flaticon.com/uicons-regular-rounded/css/uicons-regular-rounded.css");
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Krub&family=Quicksand&family=Rubik&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter&family=Krub&family=Quicksand&family=Rubik&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body section {
  display: flex;
  flex-direction: column;
  padding: 50px 0px;
  gap: 60px;
}
@media (max-width: 450px) {
  body section {
    padding: 25px 0px;
    gap: 40px;
  }
}
body section .presentation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
body section .presentation .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
body section .presentation .title span {
  color: #667085;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 3.28px;
  text-transform: uppercase;
}
@media (max-width: 450px) {
  body section .presentation .title span {
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 3;
  }
}
body section .presentation .title h1 {
  color: #3F3F3F;
  text-align: center;
  font-family: Inter;
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}
@media (max-width: 450px) {
  body section .presentation .title h1 {
    font-size: 30px;
  }
}
body section .presentation .line {
  width: 100px;
  height: 5px;
  stroke-width: 5px;
  background-color: #3F3F3F;
  border: none;
  border-radius: 5px;
}
@media (max-width: 450px) {
  body section .presentation .line {
    height: 3px;
  }
}
body .nav-bar {
  box-sizing: border-box;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 2;
  transition: all 400ms;
  background-color: rgba(18, 19, 21, 0);
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
  padding: 0px 70px;
}
@media (max-width: 450px) {
  body .nav-bar {
    padding: 0px 20px;
  }
}
body .nav-bar .logo img {
  width: 100%;
}
@media (max-width: 680px) {
  body .nav-bar .logo {
    display: none;
  }
}
body .nav-bar .nav-links-list {
  display: block;
  padding: 0;
  display: flex;
  gap: 20px;
  transition: all 400ms;
}
@media (max-width: 680px) {
  body .nav-bar .nav-links-list {
    display: none;
  }
}
body .nav-bar .nav-links-list .link {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  font-family: Rubik;
  font-weight: 200;
  color: white;
  transition: all 400ms;
}
body .nav-bar .nav-links-list .link:hover {
  color: #0E693E;
}
body .nav-bar .nav-links-list .active {
  color: #1A7048;
}
body .nav-bar .nav-logo {
  display: none;
}
body .nav-bar .nav-logo img {
  width: 100%;
}
@media (max-width: 680px) {
  body .nav-bar .nav-logo {
    display: block;
  }
}
body .nav-bar .selector {
  box-sizing: border-box;
  color: white;
  position: relative;
  transition: all 400ms;
  padding: 10px;
  border-radius: 5px;
}
body .nav-bar .selector .selector-button {
  display: flex;
  cursor: pointer;
  gap: 10px;
  align-items: center;
}
body .nav-bar .selector .selector-button .arrow {
  transition: all 400ms;
}
body .nav-bar .selector .selector-button p {
  margin: 0;
}
body .nav-bar .selector .selector-button i {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 680px) {
  body .nav-bar .selector .selector-button p {
    display: none;
  }
}
body .nav-bar .selector .arrow-up {
  transform: rotate(180deg);
}
body .nav-bar .selector .options {
  display: none;
  opacity: 0;
  right: 0;
  position: absolute;
  display: grid;
  margin: 0;
  list-style-type: none;
  background-color: #121315;
  border-radius: 5px;
  box-shadow: 9px 6px 36px 0px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(20);
          backdrop-filter: blur(20);
  transition: all 400ms;
  transform: translateY(-20px);
  padding: 0;
}
@media (max-width: 680px) {
  body .nav-bar .selector .options {
    left: 0;
    width: 150px;
  }
}
body .nav-bar .selector .options .option {
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 5px;
  transition: all 400ms;
  align-items: center;
  cursor: pointer;
}
body .nav-bar .selector .options .option:hover {
  background-color: #3c3f45;
}
body .nav-bar .selector .options .option p {
  margin: 0;
}
body .nav-bar .selector .expanded {
  display: block;
  opacity: 1;
  transform: translateY(25px);
}
body .nav-bar .selector:hover {
  background-color: #3c3f45;
}
body .nav-bar .selector:active {
  transform: scale(0.88);
  background-color: #3c3f45;
}
body .nav-bar .side-bar {
  display: none;
}
@media (max-width: 680px) {
  body .nav-bar .side-bar {
    display: block;
  }
}
body .nav-bar .side-bar .nav-side-bar-button {
  background-color: transparent;
  border: none;
  color: white;
  font-size: 25px;
  width: 62px;
}
body .nav-bar .side-bar .nav-side-bar-button:hover {
  color: #0E693E;
}
body .nav-bar .side-bar .open {
  transform: translateX(0%);
}
body .nav-bar .side-bar .nav-side-bar {
  position: relative;
  position: absolute;
  width: 300px;
  height: 100vh;
  right: 0;
  top: 0;
  z-index: 3;
  background-color: rgba(18, 19, 21, 0.9607843137);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  padding: 20px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 2px 20px rgba(128, 128, 128, 0.236);
  transform: translateX(100%);
  transition: all 400ms;
}
body .nav-bar .side-bar .nav-side-bar .nav-side-bar-close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(240, 248, 255, 0);
  border: none;
  color: white;
  font-size: 25px;
  transition: color 400ms;
  width: 20px;
  height: 20px;
}
body .nav-bar .side-bar .nav-side-bar .nav-side-bar-close-button i {
  width: 20px;
  height: 20px;
}
body .nav-bar .side-bar .nav-side-bar .nav-side-bar-close-button:hover {
  color: #0E693E;
}
body .nav-bar .side-bar .nav-side-bar .nav-side-bar-close-button:active {
  color: #1A7048;
}
body .nav-bar .side-bar .nav-side-bar img {
  width: 50%;
}
body .nav-bar .side-bar .nav-side-bar .nav-side-bar-links-list {
  padding: 0px 5px;
  list-style-type: none;
  display: grid;
  margin: 0;
  width: 100%;
  gap: 10px;
}
body .nav-bar .side-bar .nav-side-bar .nav-side-bar-links-list .nav-link {
  padding: 20px 0px;
  color: black;
  transition: all 400ms;
  width: 100%;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Inter;
  font-weight: 300;
  color: #1a7048;
  font-size: 15px;
  text-align: center;
  border-radius: 5px;
}
body .nav-bar .side-bar .nav-side-bar .nav-side-bar-links-list .nav-link:hover {
  background-color: #0E693E;
  color: white;
}
body .nav-bar .side-bar .nav-side-bar .nav-side-bar-links-list .nav-link:active {
  background-color: #1A7048;
  color: white;
}
body .nav-bar .side-bar .nav-side-bar .nav-side-bar-links-list .active {
  background-color: #d7ebe2;
}
body .nav-bar .side-bar .nav-side-bar .credits {
  color: white;
}
body .hero {
  display: flex;
  flex-direction: column;
  height: 120vh;
  padding: 0px 60px;
  align-items: left;
  justify-content: center;
  align-self: stretch;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 70.57%, #FFF 100%), linear-gradient(180deg, rgba(145, 178, 243, 0.5) 0%, rgba(0, 0, 0, 0) 100%), url("../assets/images/hero-bg (1).jpg"), lightgray 50%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
@media (max-width: 450px) {
  body .hero {
    padding: 0 20px;
  }
}
body .hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 900px) {
  body .hero video {
    position: absolute;
    top: 0;
    left: -70%;
    width: auto;
    height: 100%;
  }
}
@media (max-width: 570px) {
  body .hero video {
    position: absolute;
    top: 0;
    left: -100%;
    width: auto;
    height: 100%;
  }
}
body .hero .text {
  z-index: 1;
  display: flex;
  width: 50%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
  gap: 8px;
}
@media (max-width: 450px) {
  body .hero .text {
    width: 100%;
  }
}
body .hero .text .location {
  display: flex;
  height: 27px;
  padding: 2px 8px;
  align-items: center;
  gap: 5px;
  border-radius: 0px 6px 6px 0px;
  border-left: 4px solid #A35BFF;
  background: rgba(4, 28, 55, 0.5);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  color: #FFF;
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
body .hero .text .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
body .hero .text .content .sub-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}
body .hero .text .content .sub-content h1 {
  color: #FFF;
  font-family: Rubik;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-shadow: 0px 1px 15px #000000;
}
@media (max-width: 570px) {
  body .hero .text .content .sub-content h1 {
    font-size: 40px;
  }
}
body .hero .text .content .sub-content p {
  color: #FFF;
  font-family: Krub;
  font-size: 16px;
  font-style: italic;
  font-weight: 800;
  line-height: 151.5%;
  text-shadow: 0px 1px 15px #000000;
}
@media (max-width: 570px) {
  body .hero .text .content .sub-content p {
    font-size: 14px;
  }
}
body .hero .text .content .button {
  display: flex;
  width: 221px;
  height: 58px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1A7048;
  background: #d7ebe2;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  text-transform: uppercase;
  border-radius: 5px;
  box-shadow: 0px 1px 20px rgb(129, 129, 129);
  transition: background-color 0.3s ease;
}
body .hero .text .content .button:hover {
  background-color: #0E693E;
  transition: background-color 0.3s ease;
  color: white;
}
body .hero .text .content .button:active {
  background-color: #1A7048;
  color: white;
}
body .hiw {
  display: flex;
  padding: 50px 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
  align-self: stretch;
}
body .hiw .list-items {
  display: flex;
  padding: 29px 0px;
  justify-content: center;
  align-items: center;
  align-content: center;
  row-gap: 153px;
  align-self: stretch;
  flex-wrap: wrap;
}
body .hiw .list-items .item {
  display: flex;
  max-width: 350px;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 13px;
  flex: 1 0 0;
}
body .hiw .list-items .item .icon-cont {
  border-radius: 72px;
  background: linear-gradient(106deg, #FFB45A 12.92%, #7B8560 87.47%);
  display: flex;
  width: 78px;
  height: 78px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
body .hiw .list-items .item .icon-cont:first-child {
  color: var(--White, #FFF);
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
body .hiw .list-items .item h3 {
  color: #3F3F3F;
  text-align: center;
  font-family: Rubik;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 28.8px */
}
body .hiw .list-items .item p {
  width: 301.868px;
  color: #565C69;
  text-align: center;
  font-family: Krub;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
body .gallery {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0px 20px;
}
body .gallery .container {
  width: 100%;
  max-width: 1240px;
  display: grid;
  gap: 1rem;
  grid-auto-rows: min(100vh, 300px);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
}
body .gallery .container .pic {
  border-radius: 10px;
  box-shadow: 0px 6px 27px 0px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .gallery .container .pic > img {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}
@media (max-width: 450px) {
  body .gallery .container .pic > img {
    height: auto !important;
    width: 100%;
  }
}
body .gallery .container .expanded-horizontal {
  grid-row: span 2;
}
@media (max-width: 450px) {
  body .gallery .container .expanded-horizontal {
    grid-row: span 1;
  }
}
body .gallery .container .expanded-horizontal > img {
  width: auto;
  height: 100%;
}
body .gallery .container .expanded-vertical {
  grid-column: span 2;
}
@media (max-width: 450px) {
  body .gallery .container .expanded-vertical {
    grid-column: span 1;
  }
}
body .gallery .container .expanded-vertical > img {
  width: 100%;
  height: auto;
}
body .benefits .items {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 34px;
  align-self: stretch;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}
body .benefits .items .item {
  display: flex;
  width: 300px;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
@media (max-width: 450px) {
  body .benefits .items .item {
    align-items: center;
  }
}
body .benefits .items .item video {
  width: 48px;
  height: 48px;
}
body .benefits .items .item .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  align-self: stretch;
}
@media (max-width: 450px) {
  body .benefits .items .item .text {
    align-items: center;
  }
}
body .benefits .items .item .text h4 {
  color: #4B744F;
  font-family: Rubik;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  /* 140% */
}
body .benefits .items .item .text p {
  color: #666C89;
  font-family: Krub;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  letter-spacing: 0.1px;
  align-self: stretch;
}
@media (max-width: 450px) {
  body .benefits .items .item .text p {
    text-align: center;
  }
}
body .plans {
  display: none;
}
body .plans ul.content-plans {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 43px;
  flex-wrap: wrap;
}
body .plans ul.content-plans .card {
  display: flex;
  width: 300px;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  border-bottom: 4px solid #7B8560;
  background: var(--White, #FFF);
  box-shadow: 9px 6px 36px 0px rgba(0, 0, 0, 0.25);
}
body .plans ul.content-plans .card .present {
  position: relative;
  display: flex;
  height: 218px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  align-self: stretch;
}
body .plans ul.content-plans .card .present img {
  border-radius: 10px 10px 0 0;
  width: 300px;
  height: 211.437px;
  position: absolute;
  top: 0;
}
body .plans ul.content-plans .card .present .description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 1;
}
body .plans ul.content-plans .card .present .description span {
  color: var(--white, var(--White, #FFF));
  text-align: center;
  font-family: Inter;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
body .plans ul.content-plans .card .present .description .line {
  width: 178px;
  height: 0.5px;
  background-color: var(--White, #FFF);
  stroke-width: 1px;
  stroke: var(--white, #FFF);
}
body .plans ul.content-plans .card .present .description .price {
  color: var(--white, var(--White, #FFF));
  text-align: center;
  font-family: Inter;
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}
body .plans ul.content-plans .card .present .description .price span {
  font-size: 32px;
  line-height: 140%;
}
body .plans ul.content-plans .card .cont {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 0;
  align-self: stretch;
  padding: 30px 0px;
  gap: 20px;
}
body .plans ul.content-plans .card .cont ul {
  display: flex;
  height: 134px;
  flex-direction: column;
  justify-content: space-between;
  align-items: left;
}
body .plans ul.content-plans .card .cont ul li {
  color: var(--Pragraph, #51565E);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
body .plans ul.content-plans .card .cont .button {
  text-decoration: none;
  display: flex;
  padding: 15px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: #D7EBE2;
  color: #1A7048;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all 200ms ease-in-out;
}
body .plans ul.content-plans .card .cont .button:hover {
  display: flex;
  padding: 15px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: #0E693E;
  color: #fff;
  font-weight: 400;
  transition: all 200ms ease-in-out;
}
body .preview {
  width: 90%;
  flex-direction: column;
}
body .preview .content {
  padding: 50px;
  display: flex;
  gap: 30px;
  overflow-x: scroll;
}
body .preview .content img {
  border-radius: 10px;
  border: solid 1px rgba(0, 0, 0, 0.168);
  padding: 10px;
  width: 200px;
  transition: transform 250ms ease-in;
  background-color: white;
}
body .preview .content img:hover {
  z-index: 1;
  transform: scale(1.4);
  transition: transform 250ms ease-in-out;
}
body .testimonials {
  display: flex;
  padding: 50px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 97px;
}
body .testimonials h4 {
  font-family: Rubik;
  font-size: 36px;
  font-weight: 600;
}
@media (max-width: 450px) {
  body .testimonials h4 {
    font-size: 32px;
    text-align: center;
  }
}
body .testimonials .testimonials-container {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  padding: 0;
  gap: 40px;
}
body .testimonials .testimonials-container .testimonial {
  display: flex;
  width: 300px;
  padding: 37px;
  height: 300px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 9px 6px 36px 0px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}
body .testimonials .testimonials-container .testimonial .header {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
body .testimonials .testimonials-container .testimonial .header .name {
  color: #343434;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  margin: 12px 0;
}
body .testimonials .testimonials-container .testimonial .header .photo {
  width: 60px;
  height: 100%;
  border-radius: 74px;
  background: lightgray;
  -o-object-fit: cover;
     object-fit: cover;
}
body .testimonials .testimonials-container .testimonial .description {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;
  align-self: stretch;
}
body .testimonials .testimonials-container .testimonial .description p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  align-self: stretch;
  overflow: hidden;
  color: #636363;
  text-align: justify;
  text-overflow: ellipsis;
  margin: 0;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
body .testimonials .testimonials-container .testimonial .description .rate {
  display: flex;
  align-items: center;
  gap: 2px;
}
body .about-us {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding-top: 100px;
}
body .about-us .image img {
  width: 100%;
}
body .about-us .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}
@media (max-width: 450px) {
  body .about-us .content {
    align-items: center;
    text-align: center;
    padding: 0px 20px;
  }
}
body .about-us .content .header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}
@media (max-width: 570px) {
  body .about-us .content .header {
    text-align: center;
    align-items: center;
  }
}
body .about-us .content .header span.tag {
  width: 100%;
  color: #667085;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 2.87px;
  text-transform: uppercase;
}
body .about-us .content .header h4.title {
  color: #3F3F3F;
  text-align: center;
  font-family: Inter;
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}
@media (max-width: 450px) {
  body .about-us .content .header h4.title {
    font-size: 32px;
  }
}
body .about-us .content p {
  align-self: stretch;
  color: #666C89;
  font-family: Krub;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.1px;
}
@media (max-width: 450px) {
  body .about-us .content p {
    text-align: justify;
  }
}
body .about-us .content .subtitle {
  color: #3F3F3F;
  font-family: Rubik;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
body .contact {
  width: 90%;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
body .contact h4 {
  font-family: Rubik;
  font-size: 36px;
  font-weight: 600;
}
@media (max-width: 450px) {
  body .contact h4 {
    font-size: 32px;
    text-align: center;
  }
}
body .contact .content {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
body .contact .content .mapa-container {
  border-radius: 5px;
  min-height: 350px;
}
body .contact .content .mapa-container .mapa {
  border: none;
  width: 100%;
  height: 100%;
}
body .contact .content .contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 100%;
}
body .contact .content .contact-form .info {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
body .contact .content .contact-form .info .name,
body .contact .content .contact-form .info .email {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
body .contact .content .contact-form .info .name input,
body .contact .content .contact-form .info .email input {
  align-self: stretch;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: white;
  padding: 10px;
  border-radius: 5px;
}
body .contact .content .contact-form .info .name input::-moz-placeholder, body .contact .content .contact-form .info .email input::-moz-placeholder {
  font-family: Inter;
  font-weight: 500;
}
body .contact .content .contact-form .info .name input::placeholder,
body .contact .content .contact-form .info .email input::placeholder {
  font-family: Inter;
  font-weight: 500;
}
body .contact .content .contact-form .info .name label,
body .contact .content .contact-form .info .email label {
  color: #000000;
  font-family: Poppins;
  font-size: 14px;
}
body .contact .content .contact-form .subject {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
body .contact .content .contact-form .subject input {
  align-self: stretch;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: white;
  padding: 10px;
  border-radius: 5px;
}
body .contact .content .contact-form .subject input::-moz-placeholder {
  font-family: Inter;
  font-weight: 500;
}
body .contact .content .contact-form .subject input::placeholder {
  font-family: Inter;
  font-weight: 500;
}
body .contact .content .contact-form .subject label {
  color: #000000;
  font-family: Poppins;
  font-size: 14px;
}
body .contact .content .contact-form .message {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
body .contact .content .contact-form .message textarea {
  align-self: stretch;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: white;
  padding: 10px;
  border-radius: 5px;
  resize: vertical;
  max-height: 250px;
  min-height: 160px;
}
body .contact .content .contact-form .message textarea::-moz-placeholder {
  font-family: Inter;
  font-weight: 500;
}
body .contact .content .contact-form .message textarea::placeholder {
  font-family: Inter;
  font-weight: 500;
}
body .contact .content .contact-form .message textarea:active {
  height: auto;
}
body .contact .content .contact-form .message label {
  color: #000000;
  font-family: Poppins;
  font-size: 14px;
}
body .contact .content .contact-form button {
  width: 100%;
  max-width: 400px;
  display: flex;
  padding: 13px 54px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 7px;
  background: #4B744F;
  color: var(--White, #FFF);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  border: none;
}
body .contact .content .contact-form button:hover {
  background-color: #0E693E;
  color: white;
}
body .contact .content .contact-form button:active {
  background-color: #1A7048;
  color: white;
}
body .footer {
  display: flex;
  width: 100%;
  padding: 30px 100px 0px 100px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #121315;
  box-sizing: border-box;
}
@media (max-width: 450px) {
  body .footer {
    padding: 20px 20px 0px 20px;
  }
}
body .footer .top-sect {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
body .footer .top-sect .separator {
  width: 44.705px;
  height: 4px;
  background: #BBB561;
}
body .footer .top-sect .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
body .footer .top-sect .logo img {
  width: 70%;
}
body .footer .top-sect .contact-info {
  display: flex;
  padding: 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  align-self: stretch;
}
body .footer .top-sect .contact-info .title {
  color: #FFF;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.288px;
  text-transform: uppercase;
}
body .footer .top-sect .contact-info .separator {
  width: 44.705px;
  height: 4px;
  background: #BBB561;
}
body .footer .top-sect .contact-info .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
body .footer .top-sect .contact-info .info p {
  color: #FFF;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.38;
}
body .footer .top-sect .contact-info .info p span {
  color: #00FF85;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
body .footer .top-sect .contact-info .socials {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
body .footer .top-sect .contact-info .socials a {
  display: flex;
  padding: 5px;
  justify-content: center;
  align-items: center;
  opacity: 0.38;
  text-decoration: none;
  transition: opacity 400ms;
}
body .footer .top-sect .contact-info .socials a:hover {
  opacity: 1;
}
body .footer .top-sect .foot-links {
  display: flex;
  padding: 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  align-self: stretch;
}
body .footer .top-sect .foot-links .title {
  color: #FFF;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.288px;
  text-transform: uppercase;
}
@media (max-width: 450px) {
  body .footer .top-sect .foot-links .title {
    text-align: center;
  }
}
body .footer .top-sect .foot-links .separator {
  width: 44.705px;
  height: 4px;
  background: #BBB561;
}
body .footer .top-sect .foot-links .links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  align-self: stretch;
  padding: 0;
}
body .footer .top-sect .foot-links .links li {
  list-style: none;
}
body .footer .top-sect .foot-links .links li a {
  color: #FFF;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.38;
  transition: 400ms opacity;
  text-transform: uppercase;
}
body .footer .top-sect .foot-links .links li:hover a {
  opacity: 1;
}
body .footer .top-sect .contact-form {
  display: flex;
  padding: 10px 0px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
body .footer .top-sect .contact-form .info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
}
body .footer .top-sect .contact-form .info .name,
body .footer .top-sect .contact-form .info .email {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
body .footer .top-sect .contact-form .info .name input,
body .footer .top-sect .contact-form .info .email input {
  align-self: stretch;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: white;
  padding: 10px;
  border-radius: 5px;
}
body .footer .top-sect .contact-form .info .name label,
body .footer .top-sect .contact-form .info .email label {
  color: #FFF;
  font-family: Poppins;
  font-size: 14px;
}
body .footer .top-sect .contact-form .message {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
body .footer .top-sect .contact-form .message input {
  align-self: stretch;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: white;
  padding: 10px;
  border-radius: 5px;
  resize: vertical;
}
body .footer .top-sect .contact-form .message input:active {
  height: auto;
}
body .footer .top-sect .contact-form .message label {
  color: #FFF;
  font-family: Poppins;
  font-size: 14px;
}
body .footer .top-sect .contact-form button {
  border: none;
  padding: 15px;
  border-radius: 5px;
  background: #d7ebe2;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 200ms;
}
body .footer .top-sect .contact-form button:hover {
  background-color: #0E693E;
}
body .footer .top-sect .contact-form button:active {
  background-color: #1A7048;
}
body .footer .bottom-sect {
  display: flex;
  width: 100%;
  padding: 20px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
body .footer .bottom-sect .legals {
  color: #C5B4B4;
  opacity: 0.5;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.1px;
}/*# sourceMappingURL=style.css.map */