/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "JUST Sans", sans-serif;
  color: #fff;
}

section {
  padding: 60px 0;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
.topbar {
  background: #f4f4ef;
  color: #ae9485;
  height: 45px;
  z-index: 996;
  transition: all 0.5s;
  font-size: 15px;
}

.topbar.topbar-scrolled {
  top: -45px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  transition: all 0.7s;
}

header .navbar {
  z-index: 997;
  padding: 10px 0;
  background-color: #b8a499;
}

header .navbar .navbar-brand {
  min-width: 140px;
}

header .navbar .offcanvas {
  --bs-offcanvas-bg: #b8a499;
}

header .navbar-toggler {
  --bs-navbar-color: #fff;
  --bs-navbar-toggler-border-color: #fff;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

header .navbar .offcanvas {
  height: 100vh;
}

header .navbar .offcanvas .btn-close {
  width: 24px;
  height: 24px;
  color: #fff;
  opacity: 1;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' fill='%23fff' class='bi bi-x-lg' viewBox='0 0 16 16'%3E%3Cpath d='M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854Z'/%3E%3C/svg%3E")
    center/1.5em no-repeat;
}

header.header-scrolled {
  top: -45px !important;
}

@media (min-width: 300px) {
  header .navbar .navbar-brand {
    min-width: 200px;
  }
}

/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/
#banner {
  background-color: #f4f4ef;
  background-position: left top;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  padding-top: 180px;
  padding-bottom: 30px;
}

#banner img {
  max-width: 450px;
  border-top-left-radius: 15rem;
  border-top-right-radius: 15rem;
}

@media (min-width: 992px) {
  #banner {
    padding-bottom: 0;
  }
}

/*--------------------------------------------------------------
# Differentials
--------------------------------------------------------------*/
#differentials {
  background-color: #fefefe;
  color: #ae9485;
  padding: 20px 0;
}

#differentials .swiper-slide {
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

#differentials .swiper-slide .fw-semibold {
  line-height: 25px;
}

@media (max-width: 576px) {
  #differentials .swiper-slide:hover {
    transform: scale(1.05);
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about {
  background-color: #fefefe;
  padding-top: 30px;
  padding-bottom: 0;
}

#about .hyphens-auto {
  line-height: 30px;
}

#about img {
  max-width: 500px;
}

/*--------------------------------------------------------------
# Protocols
--------------------------------------------------------------*/
#protocols {
  background-color: #fefefe;
  color: #ae9485;
  padding-top: 40px;
  padding-bottom: 120px;
}

#protocols .swiper-slide {
  background-color: #f4f4ef;
  padding: 30px;
  border-radius: 20px;
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 4rem;
  height: auto;
}

#protocols .swiper-slide h1 {
  border-left: 15px solid #b8a499;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  padding-left: 1rem;
  line-height: 40px;
}

#protocols .swiper-slide .hyphens-auto {
  line-height: 28px;
}

#protocols .swiper-slide a {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  white-space: nowrap;
}

@media (min-width: 768px) {
  #protocols .swiper-slide h1 {
    line-height: 50px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact {
  background-color: #cfc0b4;
  padding: 0;
  overflow: visible;
}

#contact .container {
  position: relative;
  top: -40px;
}

#contact .row {
  background-color: #ae9485;
}

#contact .row .img-col {
  background-image: url(../img/dra_natalia_sarmento_3.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

#contact .row .form-col {
  padding: 50px 20px;
}

#contact .row .form-col form {
  color: #666666;
}

#contact .swiper-slide img {
  aspect-ratio: 127/95;
}

@media (min-width: 576px) {
  #contact .row .form-col {
    padding: 100px;
  }
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
#faq {
  background-color: #cfc0b4;
  padding-top: 0;
}

.accordion-button:after {
  order: -1;
  --bs-accordion-btn-icon-transform: rotate(-90deg);
  --bs-accordion-btn-icon-width: 17px;
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1792' height='1792' fill='%23ae9485' id='chevron'%3E%3Cpath d='m1363 877-742 742q-19 19-45 19t-45-19l-166-166q-19-19-19-45t19-45l531-531-531-531q-19-19-19-45t19-45L531 45q19-19 45-19t45 19l742 742q19 19 19 45t-19 45z'%3E%3C/path%3E%3C/svg%3E");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1792' height='1792' fill='%23ae9485' id='chevron'%3E%3Cpath d='m1363 877-742 742q-19 19-45 19t-45-19l-166-166q-19-19-19-45t19-45l531-531-531-531q-19-19-19-45t19-45L531 45q19-19 45-19t45 19l742 742q19 19 19 45t-19 45z'%3E%3C/path%3E%3C/svg%3E");
  margin-left: 0;
  margin-right: 0.5em;
}

.accordion .accordion-item {
  background-color: #cfc0b4;
  border: 0;
  --bs-accordion-color: #fff;
}

.accordion .accordion-item .accordion-header {
  border: 2px solid #fff;
  --bs-accordion-btn-focus-border-color: #a48c6e;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.3rem rgba(255, 255, 255, 0.25);
  --bs-accordion-btn-bg: #cfc0b4;
  --bs-accordion-border-width: 0;
  --bs-accordion-color: #fff;
  --bs-accordion-active-color: #fff;
  --bs-accordion-active-bg: #cfc0b4;
  --bs-accordion-btn-color: #fff;
}

@media (min-width: 576px) {
  .accordion .accordion-item .accordion-body {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
#testimonials {
  padding: 0 0 20px 0 !important;
  background-color: #fefefe;
}

#testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
  margin: 0 50px 0 50px;
}

#testimonials .container-fluid {
  padding: 40px 150px 40px 150px;
}

#testimonials .testimonial-item h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #4c4c4c;
}

#testimonials .testimonial-item h4 {
  font-size: 1rem;
  color: #c2c2c2;
  font-weight: 100;
}

#testimonials .testimonial-text {
  font-size: 1rem;
  height: 150px;
  overflow-y: scroll;
  color: #4c4c4c;
}

#testimonials .testimonial-text::-webkit-scrollbar {
  width: 5px;
}

#testimonials .testimonial-text::-webkit-scrollbar-thumb {
  background-color: #b2b2b2;
}

#testimonials .testimonial-text::-webkit-scrollbar-track {
  background-color: #f1f4f4;
}

#testimonials .swiper-button-next,
#testimonials .swiper-button-prev {
  position: absolute;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: #b3b3b3;
  top: 55%;
  --swiper-navigation-size: 16px;
  --swiper-navigation-color: #ffffff;
}

#testimonials .swiper-button-next {
  right: 90px;
}
#testimonials .swiper-button-prev {
  left: 90px;
}

@media (max-width: 700px) {
  #testimonials .container-fluid {
    padding: 40px 30px 40px 30px;
  }

  #testimonials .swiper-button-next {
    right: 3px;
  }
  #testimonials .swiper-button-prev {
    left: 3px;
  }
}

#testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background-color: #fff;
  border: 2px solid #b3b3b3;
  opacity: 1;
}

#testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #b3b3b3;
  border: 3px solid #b3b3b3;
  opacity: 1;
}

/*--------------------------------------------------------------
# Map
--------------------------------------------------------------*/

#map {
  position: relative;
  bottom: -7px;
  padding: 0;
}

#map .map-buttons {
  top: initial;
  bottom: 0;
}

@media (min-width: 576px) {
  #map .map-buttons {
    top: 50%;
    bottom: initial;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  background: #cfc0b4;
  padding-top: 30px;
  font-size: 0.9375rem;
}

footer .footer-brand {
  max-width: 250px;
}

footer .footer-link {
  font-weight: 100;
  display: flex;
  align-items: center;
  gap: 5px;
}

footer .footer-link img {
  transition: transform 0.5s;
}

footer .footer-link:hover img {
  transform: translateX(-5px);
}

footer .copy-text {
  color: #fff;
  padding: 25px 0;
}

footer .credits {
  background-color: #ae9485;
}

/*--------------------------------------------------------------
# Custom Bootstrap Classes
--------------------------------------------------------------*/

/**
* Width and Heigth
*/

/**
* Margin and Padding
*/

.py-2-50 {
  padding-top: 0.7rem !important;
  padding-bottom: 0.7rem !important;
}

.px-4-50 {
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}

/**
* Text
*/

.text-brown {
  color: #ae9485;
}

.text-justify {
  text-align: justify;
}

.ff-gallery {
  font-family: "Gallery";
}

.hyphens-auto {
  hyphens: auto;
}

/**
* Background
*/

/**
* Buttons
*/

.btn-green {
  --bs-btn-color: #fff;
  --bs-btn-bg: #33cc33;
  --bs-btn-border-color: #33cc33;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #269226;
  --bs-btn-hover-border-color: #269226;
  --bs-btn-focus-shadow-rgb: 51, 204, 51;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #269226;
  --bs-btn-active-border-color: #269226;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #78b978;
  --bs-btn-disabled-border-color: #78b978;
}

.btn-transparent-brown {
  --bs-btn-color: #ae9485;
  --bs-btn-bg: #f4f4ef;
  --bs-btn-border-color: #ae9485;
  --bs-btn-border-width: 2px;
  --bs-btn-hover-color: #573b17;
  --bs-btn-hover-bg: #d8cec5;
  --bs-btn-hover-border-color: #ae9485;
  --bs-btn-focus-shadow-rgb: 174, 148, 133;
  --bs-btn-active-color: #573b17;
  --bs-btn-active-bg: #c4b2a2;
  --bs-btn-active-border-color: #ae9485;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ae9485;
  --bs-btn-disabled-bg: #f4f4ef;
  --bs-btn-disabled-border-color: #ae9485;
}

/**
* Responsive Media Queries
*/

/* xxl */
@media (max-width: 1400px) {
}

/* xl */
@media (max-width: 1200px) {
}

/* lg */

@media (min-width: 992px) {
  .offcanvas {
    height: auto;
  }

  .gap-lg-6 {
    gap: 5rem !important;
  }
}

/* sm */
@media (max-width: 576px) {
  .ff-gallery {
    font-size: 3rem;
  }
}

/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/

/*
* JUST Sans
*/
@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/JUST-Sans-ExBold.woff") format("woff"),
    url("../fonts/JUST-Sans-ExBold.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/JUST-Sans-Bold.woff") format("woff"),
    url("../fonts/JUST-Sans-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/JUST-Sans-SemiBold.woff") format("woff"),
    url("../fonts/JUST-Sans-SemiBold.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/JUST-Sans-Medium.woff") format("woff"),
    url("../fonts/JUST-Sans-Medium.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/JUST-Sans-Regular.woff") format("woff"),
    url("../fonts/JUST-Sans-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/JUST-Sans-Light.woff") format("woff"),
    url("../fonts/JUST-Sans-Light.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 200;
  font-display: swap;
  src: url("../fonts/JUST-Sans-ExLight.woff") format("woff"),
    url("../fonts/JUST-Sans-ExLight.woff2") format("woff2");
}

/*
* Gallery
*/

@font-face {
  font-family: "Gallery";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Gallery-Regular.ttf") format("truetype");
}
