@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
  list-style: none;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 3rem;
}

.container {
  width: 80%;
}

img {
  width: 100%;
  display: block;
}

h1 {
  font-size: 1.625rem;
  font-weight: 500;
}
h1.title {
  font-weight: 400;
}
h1.small {
  font-size: 1.5rem;
}
h1.x-small {
  font-size: 1.375rem;
  font-weight: 400;
}

p {
  font-size: 0.813rem;
  line-height: 1.65;
}

@media screen and (min-width: 100rem) {
  .container {
    width: 60%;
  }
}
@media screen and (max-width: 64rem) {
  .container {
    width: 82%;
  }
  h1 {
    font-size: 1.25rem;
  }
  h1.title {
    font-size: 1.563rem;
  }
  h1.small {
    font-size: 1.25rem;
  }
}
nav {
  width: 100%;
  height: 5.5rem;
  display: grid;
  place-items: center;
  position: fixed;
  z-index: 999;
  transition: all 0.25s ease-in-out;
}
nav[data-scrolled=true] {
  background: #70582F;
}
nav.scrolledDown {
  top: -5.5rem;
}
nav.scrolledUp {
  top: 0;
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .container .nav__logo {
  width: 9.25rem;
  height: 3.125rem;
}
nav .container .nav__logo img {
  width: 100%;
}
nav .container #nav__btn {
  width: 3rem;
  display: grid;
  place-items: center end;
  background: transparent;
  cursor: pointer;
}
nav .container #nav__btn img {
  width: 0.5rem;
}
nav .container #sidebar__nav {
  width: 25%;
  display: grid;
  place-items: center;
  position: fixed;
  top: 0;
  bottom: 0;
  right: -25%;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65));
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  transition: all 0.9s cubic-bezier(0, 0.96, 0.53, 1);
}
nav .container #sidebar__nav[data-active=true] {
  right: 0;
}
nav .container #sidebar__nav #close__btn {
  position: absolute;
  top: 8%;
  left: 20%;
  background: transparent;
  cursor: pointer;
}
nav .container #sidebar__nav #close__btn img {
  width: 1.2rem;
  height: 1.2rem;
}
nav .container #sidebar__nav ul {
  display: grid;
  place-items: center start;
  gap: 2rem 0;
}
nav .container #sidebar__nav ul li a {
  width: 12rem;
  font-size: 1rem;
  color: #FFFFFF;
}

@media screen and (max-width: 64rem) {
  nav .container .nav__logo {
    width: 6.5rem;
  }
  nav .container #sidebar__nav {
    width: 80%;
    right: -80%;
  }
}
header {
  width: 100%;
  height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/home.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 64rem) {
  header {
    background-image: "../assets/images/home-mobile.jpg";
  }
}
header .container {
  height: 100%;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem 0;
  padding-top: 5rem;
}
header .container h1 {
  width: 35%;
  color: #FFFFFF;
}
header .container a button {
  width: 10.313rem;
  height: 2.813rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0.57rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #70582F;
  background: #E1BB80;
  transition: all 0.6s cubic-bezier(0, 0.92, 0.82, 1.32);
  cursor: pointer;
}
header .container a button:hover {
  transform: translateY(-0.18rem);
}
header .container .header__contact {
  position: absolute;
  bottom: 10%;
  display: flex;
  align-items: center;
  gap: 0 1.5rem;
}
header .container .header__contact span {
  font-size: 0.813rem;
  color: #FFFFFF;
}
header .container .header__contact .bar {
  width: 8.75rem;
  opacity: 0.6;
  height: 2px;
  background: #FFFFFF;
}
header .container .header__contact .header__socials {
  display: flex;
  align-items: center;
  gap: 0 1rem;
}
header .container .header__contact .header__socials a {
  transition: all 0.5s ease-out;
}
header .container .header__contact .header__socials a:hover {
  transform: translateY(-0.08rem);
}
header .container .header__contact .header__socials a img {
  width: 1.25rem;
  height: 1.25rem;
}

@media screen and (max-width: 64rem) {
  header .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    gap: 2.5rem 0;
    padding: 0 0 15% 0;
  }
  header .container h1 {
    width: 80%;
  }
  header .container .header__contact {
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    bottom: 0;
    gap: 1.2rem 0;
  }
  header .container .header__contact .bar {
    display: none;
  }
  header .container .header__contact .header__socials a img {
    width: 1.7rem;
    height: 1.7rem;
  }
}
#about {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: grid;
  place-items: center;
  padding: 6rem 0;
  overflow: hidden;
}
@media screen and (max-width: 64rem) {
  #about {
    padding: 4rem 0;
  }
}
#about .container {
  display: grid;
  place-items: center;
  grid-template-columns: 1.3fr 1fr;
  gap: 0 3rem;
}
#about .container .about__photos {
  width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 1rem;
}
#about .container .about__photos img:nth-child(2) {
  width: 90%;
}
#about .container .about__content {
  width: 100%;
  display: grid;
  place-items: center start;
  gap: 1.3rem 0;
}
#about .container .about__content .title {
  display: grid;
  place-items: center start;
  gap: 0.15rem 0;
}
#about .container .about__content .title span {
  font-size: 1.125rem;
  font-weight: 500;
  opacity: 0.7;
  color: #E1BB80;
}
#about .container .about__content .title h1 {
  color: #B79049;
}
#about .container .about__content .about__photos__moblie {
  display: none;
}
#about .container .about__content p {
  color: #373737;
}
#about .container .about__content a {
  margin-top: 0.35rem;
}
#about .container .about__content a button {
  width: 10.313rem;
  height: 2.813rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0.57rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #70582F;
  background: #E1BB80;
  transition: all 0.6s cubic-bezier(0, 0.92, 0.82, 1.32);
  cursor: pointer;
  width: 9.25rem;
  height: 2.188rem;
}
#about .container .about__content a button:hover {
  transform: translateY(-0.18rem);
}

@media screen and (max-width: 64rem) {
  #about .container {
    grid-template-columns: 1fr;
  }
  #about .container .about__photos {
    display: none;
  }
  #about .container .about__content {
    place-items: center;
    gap: 3rem 0;
  }
  #about .container .about__content .title {
    place-items: center;
    text-align: center;
    gap: 0.3rem 0;
  }
  #about .container .about__content .about__photos__moblie {
    display: grid;
    place-items: start center;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 0.8rem;
  }
  #about .container .about__content .about__photos__moblie img:nth-child(2) {
    width: 90%;
  }
}
#banner1 {
  width: 100%;
  height: 75vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 64rem) {
  #banner1 {
    background-image: "../assets/images/banner-mobile.jpg";
  }
}
#banner1 .container {
  display: grid;
  place-items: center end;
}
#banner1 .container .banner__content {
  width: 40%;
  display: grid;
  place-items: center start;
  gap: 1rem 0;
  color: #FFFFFF;
}
#banner1 .container .banner__content h1 {
  width: 80%;
}

@media screen and (max-width: 64rem) {
  #banner1 .container {
    height: 100%;
    place-items: end center;
    padding-bottom: 20%;
  }
  #banner1 .container .banner__content {
    width: 100%;
    place-items: center;
  }
  #banner1 .container .banner__content h1 {
    text-align: center;
  }
}
.treatments {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: grid;
  place-items: center;
  padding: 6rem 0;
  overflow: hidden;
  background: #F6F4F3;
}
@media screen and (max-width: 64rem) {
  .treatments {
    padding: 4rem 0;
  }
}
.treatments#harmonization .container {
  grid-template-columns: 1fr 1.6fr;
  gap: 0 4.5rem;
}
.treatments#harmonization .container .treatments__wrapper {
  width: 50vw;
}
.treatments#harmonization .container .title {
  place-items: center start;
  text-align: start;
}
.treatments#harmonization .container .title p {
  width: 100%;
}
.treatments#harmonization .container .treatments__wrapper .swiper-button-prev,
.treatments#harmonization .container .treatments__wrapper .swiper-button-next {
  top: 50%;
  transition: all 0.3s ease-out;
}
.treatments#harmonization .container .treatments__wrapper .swiper-button-prev {
  display: none;
}
.treatments .container {
  display: grid;
  place-items: center;
  gap: 3rem 0;
}
.treatments .container .title {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.85rem 0;
}
.treatments .container .title h1 {
  color: #70582F;
}
.treatments .container .title p {
  width: 55%;
  color: #6D7175;
}
.treatments .container .treatments__wrapper {
  width: 80vw;
  position: static;
}
.treatments .container .treatments__wrapper .swiper-wrapper .treatment {
  width: 100%;
  height: 16.8rem;
  display: grid;
  place-items: center;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 1rem 0;
  padding: 2.5rem 0;
  border-radius: 0.375rem;
  background: #FFFFFF;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0, 0.76, 0.3, 1);
}
.treatments .container .treatments__wrapper .swiper-wrapper .treatment.small .treatment__name {
  font-size: 0.938rem;
}
.treatments .container .treatments__wrapper .swiper-wrapper .treatment:hover {
  background: #B79049;
}
.treatments .container .treatments__wrapper .swiper-wrapper .treatment:hover .treatment__name, .treatments .container .treatments__wrapper .swiper-wrapper .treatment:hover p, .treatments .container .treatments__wrapper .swiper-wrapper .treatment:hover button {
  color: #FFFFFF;
}
.treatments .container .treatments__wrapper .swiper-wrapper .treatment .treatment__name {
  width: 100%;
  margin-left: 20%;
  font-size: 1.125rem;
  font-weight: 500;
  color: #B79049;
  transition: all 0.5s cubic-bezier(0, 0.76, 0.3, 1);
}
.treatments .container .treatments__wrapper .swiper-wrapper .treatment p {
  width: 80%;
  font-size: 0.75rem;
  transition: all 0.5s cubic-bezier(0, 0.76, 0.3, 1);
}
.treatments .container .treatments__wrapper .swiper-wrapper .treatment button {
  width: 80%;
  display: flex;
  align-items: center;
  gap: 0 0.4rem;
  font-size: 0.625rem;
  color: #E1BB80;
  background: transparent;
  transition: all 0.5s cubic-bezier(0, 0.76, 0.3, 1);
  cursor: pointer;
}
.treatments .container .treatments__wrapper .swiper-wrapper .treatment button img {
  width: 0.75rem;
  height: 0.75rem;
}
.treatments .container .treatments__wrapper .swiper-button-prev,
.treatments .container .treatments__wrapper .swiper-button-next {
  top: 63%;
}
.treatments .container .treatments__wrapper .swiper-button-prev::after,
.treatments .container .treatments__wrapper .swiper-button-next::after {
  font-size: 1.15rem;
  font-weight: 600;
  color: #B79049;
  transition: all 0.4s ease-out;
}
.treatments .container .treatments__wrapper .swiper-button-prev {
  left: 5.5%;
}
.treatments .container .treatments__wrapper .swiper-button-next {
  right: 5.5%;
}

@media screen and (max-width: 64rem) {
  .treatments {
    padding: 4rem 0 12rem 0;
  }
  .treatments#harmonization .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .treatments#harmonization .container .title {
    width: 95%;
    place-items: center;
    text-align: center;
  }
  .treatments#harmonization .container .treatments__wrapper {
    width: 70vw;
  }
  .treatments#harmonization .container .treatments__wrapper .swiper-button-prev,
  .treatments#harmonization .container .treatments__wrapper .swiper-button-next {
    top: auto;
  }
  .treatments#harmonization .container .treatments__wrapper .swiper-button-prev {
    display: grid;
  }
  .treatments .container .title h1 {
    width: 90%;
  }
  .treatments .container .title p {
    width: 100%;
  }
  .treatments .container .treatments__wrapper {
    width: 70vw;
  }
  .treatments .container .treatments__wrapper .swiper-button-prev,
  .treatments .container .treatments__wrapper .swiper-button-next {
    width: 3.5rem;
    height: 3.5rem;
    top: auto;
    bottom: 4rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #E1BB80;
  }
  .treatments .container .treatments__wrapper .swiper-button-prev::after,
  .treatments .container .treatments__wrapper .swiper-button-next::after {
    font-size: 1.25rem;
    font-weight: 700;
    color: #70582F;
  }
  .treatments .container .treatments__wrapper .swiper-button-prev {
    left: 33%;
  }
  .treatments .container .treatments__wrapper .swiper-button-next {
    right: 33%;
  }
}
#banner2 {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: grid;
  place-items: center;
  padding: 6rem 0;
  overflow: hidden;
  padding: 1.5rem 0;
  background: #F6F4F3;
}
@media screen and (max-width: 64rem) {
  #banner2 {
    padding: 4rem 0;
  }
}
#banner2 .container {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 1.5rem 0;
  padding: 7rem 0;
  border-radius: 1rem;
  background-image: url("../assets/images/banner2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
}
#banner2 .container .image__moblie {
  display: none;
}
#banner2 .container p {
  width: 65%;
}
#banner2 .container a button {
  width: 10.313rem;
  height: 2.813rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0.57rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #70582F;
  background: #FFFFFF;
  transition: all 0.6s cubic-bezier(0, 0.92, 0.82, 1.32);
  cursor: pointer;
}
#banner2 .container a button:hover {
  transform: translateY(-0.18rem);
}

@media screen and (max-width: 64rem) {
  #banner2 {
    padding-top: 0.75rem;
    background: #B79049;
  }
  #banner2 .container {
    padding: 0;
    background: #B79049;
  }
  #banner2 .container .image__moblie {
    display: block;
    width: 115%;
  }
  #banner2 .container h1 {
    margin-top: 2rem;
  }
  #banner2 .container p {
    width: 100%;
  }
}
#testimonials {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: grid;
  place-items: center;
  padding: 6rem 0;
  overflow: hidden;
}
@media screen and (max-width: 64rem) {
  #testimonials {
    padding: 4rem 0;
  }
}
#testimonials .container {
  display: grid;
  place-items: center;
  gap: 4rem 0;
}
#testimonials .container .title {
  width: 100%;
  display: grid;
  place-items: center start;
  gap: 1.1rem 0;
}
#testimonials .container .title h1 {
  color: #70582F;
}
#testimonials .container .title p {
  color: #6D7175;
}
#testimonials .container .testimonials__wrapper {
  width: 90vw;
  position: static;
}
#testimonials .container .testimonials__wrapper .swiper-wrapper .testimonial {
  width: 100%;
  height: 11rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem 0;
  padding: 2rem 2.5rem;
  border-radius: 0.375rem;
  background: #F5E5C7;
}
#testimonials .container .testimonials__wrapper .swiper-wrapper .testimonial .client__name {
  font-size: 0.938rem;
  font-weight: 500;
  color: #70582F;
}
#testimonials .container .testimonials__wrapper .swiper-wrapper .testimonial p {
  font-size: 0.625rem;
  color: #70582F;
}
#testimonials .container .testimonials__wrapper .swiper-button-prev,
#testimonials .container .testimonials__wrapper .swiper-button-next {
  width: 2rem;
  height: 2rem;
  top: 32%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #E1BB80;
}
#testimonials .container .testimonials__wrapper .swiper-button-prev::after,
#testimonials .container .testimonials__wrapper .swiper-button-next::after {
  font-size: 0.8rem;
  font-weight: 700;
  color: #70582F;
}
#testimonials .container .testimonials__wrapper .swiper-button-prev {
  left: auto;
  right: 13.2%;
}
#testimonials .container .testimonials__wrapper .swiper-button-next {
  right: 10%;
}
#testimonials a {
  position: relative;
  top: 80%;
}
#testimonials a button {
  width: 10.313rem;
  height: 2.813rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0.57rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #70582F;
  background: #E1BB80;
  transition: all 0.6s cubic-bezier(0, 0.92, 0.82, 1.32);
  cursor: pointer;
}
#testimonials a button:hover {
  transform: translateY(-0.18rem);
}

@media screen and (max-width: 64rem) {
  #testimonials {
    padding-bottom: 11rem;
  }
  #testimonials .container {
    gap: 3rem 0;
  }
  #testimonials .container .title {
    place-items: center;
    text-align: center;
  }
  #testimonials .container .title h1 {
    font-size: 1.15rem;
  }
  #testimonials .container .testimonials__wrapper {
    width: 80vw;
  }
  #testimonials .container .testimonials__wrapper .swiper-button-prev,
  #testimonials .container .testimonials__wrapper .swiper-button-next {
    top: auto;
    bottom: 4rem;
    width: 3.5rem;
    height: 3.5rem;
    display: grid;
    place-items: center;
  }
  #testimonials .container .testimonials__wrapper .swiper-button-prev::after,
  #testimonials .container .testimonials__wrapper .swiper-button-next::after {
    font-size: 1.25rem;
  }
  #testimonials .container .testimonials__wrapper .swiper-button-prev {
    left: 33%;
  }
  #testimonials .container .testimonials__wrapper .swiper-button-next {
    right: 33%;
  }
  #testimonials .container a {
    display: none;
  }
}
#banner3 {
  width: 100%;
  height: 75vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/banner3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  place-items: end center;
}
@media screen and (max-width: 64rem) {
  #banner3 {
    background-image: "../assets/images/banner3-mobile.jpg";
  }
}
#banner3 .container {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 1rem 0;
  padding: 20% 0;
  color: #FFFFFF;
}
#banner3 .container p {
  width: 55%;
}

@media screen and (max-width: 64rem) {
  #banner3 .container h1 {
    width: 80%;
  }
  #banner3 .container p {
    width: 90%;
  }
}
#clinic {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: grid;
  place-items: center;
  padding: 6rem 0;
  overflow: hidden;
}
@media screen and (max-width: 64rem) {
  #clinic {
    padding: 4rem 0;
  }
}
#clinic .container {
  display: grid;
  place-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 5rem;
}
#clinic .container .clinic__content {
  width: 35vw;
  display: grid;
  place-items: center start;
  gap: 1.7rem 0;
}
#clinic .container .clinic__content h1 {
  color: #70582F;
}
#clinic .container .clinic__content a button {
  width: 10.313rem;
  height: 2.813rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0.57rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #70582F;
  background: #E1BB80;
  transition: all 0.6s cubic-bezier(0, 0.92, 0.82, 1.32);
  cursor: pointer;
  height: 2.625rem;
}
#clinic .container .clinic__content a button:hover {
  transform: translateY(-0.18rem);
}
#clinic .container .photos__wrapper {
  width: 50vw;
  position: relative;
}
#clinic .container .photos__wrapper .swiper-button-prev, #clinic .container .photos__wrapper .swiper-button-next {
  display: none;
}
#clinic .container .btn__moblie {
  display: none;
}

@media screen and (max-width: 64rem) {
  #clinic .container {
    grid-template-columns: 1fr;
    gap: 4rem 0;
  }
  #clinic .container .clinic__content {
    place-items: center;
    gap: 1rem 0;
    width: 100%;
  }
  #clinic .container .clinic__content p {
    width: 95%;
    text-align: center;
  }
  #clinic .container .clinic__content a {
    display: none;
  }
  #clinic .container .photos__wrapper {
    position: static;
  }
  #clinic .container .photos__wrapper .swiper-button-prev,
  #clinic .container .photos__wrapper .swiper-button-next {
    width: 3.5rem;
    height: 3.5rem;
    display: grid;
    place-items: center;
    top: auto;
    bottom: 10rem;
    border-radius: 50%;
    background: #E1BB80;
  }
  #clinic .container .photos__wrapper .swiper-button-prev::after,
  #clinic .container .photos__wrapper .swiper-button-next::after {
    font-size: 1.25rem;
    font-weight: 700;
    color: #70582F;
  }
  #clinic .container .photos__wrapper .swiper-button-prev {
    left: 33%;
  }
  #clinic .container .photos__wrapper .swiper-button-next {
    right: 33%;
  }
  #clinic .container .btn__moblie {
    display: block;
    margin-top: 6.5rem;
  }
  #clinic .container .btn__moblie button {
    width: 10.313rem;
    height: 2.813rem;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 0.57rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #70582F;
    background: #E1BB80;
    transition: all 0.6s cubic-bezier(0, 0.92, 0.82, 1.32);
    cursor: pointer;
  }
  #clinic .container .btn__moblie button:hover {
    transform: translateY(-0.18rem);
  }
}
#professionals {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: grid;
  place-items: center;
  padding: 6rem 0;
  overflow: hidden;
  padding-top: 2rem;
  display: grid;
  place-items: center;
  gap: 5rem 0;
}
@media screen and (max-width: 64rem) {
  #professionals {
    padding: 4rem 0;
  }
}
#professionals h1 {
  color: #70582F;
}
#professionals .container {
  display: grid;
  place-items: center;
  gap: 5rem 0;
}
#professionals .container .professionals__wrapper {
  width: 99vw;
  padding: 0.8rem 0;
  position: static;
}
#professionals .container .professionals__wrapper .swiper-wrapper .professional {
  width: 100%;
  display: grid;
  place-items: center;
  grid-template-columns: 1fr;
  grid-template-rows: 1.5fr 1fr;
  border-radius: 0.375rem;
}
#professionals .container .professionals__wrapper .swiper-wrapper .professional .professional__content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.4rem 0;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
  background: #F5E5C7;
}
#professionals .container .professionals__wrapper .swiper-wrapper .professional .professional__content span {
  width: 80%;
  font-size: 0.938rem;
  color: #70582F;
}
#professionals .container .professionals__wrapper .swiper-wrapper .professional .professional__content span.professional__name {
  font-weight: 600;
}
#professionals .container .professionals__wrapper .swiper-button-prev,
#professionals .container .professionals__wrapper .swiper-button-next {
  width: 2rem;
  height: 2rem;
  top: 20%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #E1BB80;
}
#professionals .container .professionals__wrapper .swiper-button-prev::after,
#professionals .container .professionals__wrapper .swiper-button-next::after {
  font-size: 0.8rem;
  font-weight: 700;
  color: #70582F;
}
#professionals .container .professionals__wrapper .swiper-button-prev {
  left: auto;
  right: 13.2%;
}
#professionals .container .professionals__wrapper .swiper-button-next {
  right: 10%;
}

@media screen and (max-width: 64rem) {
  #professionals {
    padding-top: 1rem;
    padding-bottom: 11rem;
  }
  #professionals .container {
    gap: 3rem 0;
  }
  #professionals .container .professionals__wrapper {
    width: 80vw;
    padding: 0;
  }
  #professionals .container .professionals__wrapper .swiper-wrapper .professional {
    height: 20rem;
  }
  #professionals .container .professionals__wrapper .swiper-wrapper .professional .professional__content span.professional__name {
    font-size: 1.063rem;
  }
  #professionals .container .professionals__wrapper .swiper-button-prev,
  #professionals .container .professionals__wrapper .swiper-button-next {
    top: auto;
    bottom: 4rem;
    width: 3.5rem;
    height: 3.5rem;
    display: grid;
    place-items: center;
  }
  #professionals .container .professionals__wrapper .swiper-button-prev::after,
  #professionals .container .professionals__wrapper .swiper-button-next::after {
    font-size: 1.25rem;
  }
  #professionals .container .professionals__wrapper .swiper-button-prev {
    left: 33%;
  }
  #professionals .container .professionals__wrapper .swiper-button-next {
    right: 33%;
  }
}
#contact {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: grid;
  place-items: center;
  padding: 6rem 0;
  overflow: hidden;
  padding: 2rem 0;
}
@media screen and (max-width: 64rem) {
  #contact {
    padding: 4rem 0;
  }
}
#contact .container {
  display: grid;
  place-items: center;
  grid-template-columns: repeat(2, 1fr);
  border-radius: 0.375rem;
  background: #B79049;
}
#contact .container img {
  width: 100%;
  height: 100%;
  display: flex;
}
#contact .container .contact__content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
  background: #B79049;
}
#contact .container .contact__content .form__wrapper {
  width: 75%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem 0;
  padding: 3rem 0;
  overflow: hidden;
  background: #B79049;
}
#contact .container .contact__content .form__wrapper .title {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.7rem 0;
  color: #FFFFFF;
}
#contact .container .contact__content .form__wrapper form {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem 0;
}
#contact .container .contact__content .form__wrapper form input,
#contact .container .contact__content .form__wrapper form textarea {
  width: 100%;
  height: 3.125rem;
  padding-left: 1rem;
  border-radius: 0.375rem;
  background: #FFFFFF;
  color: #70582F;
  outline: none;
}
#contact .container .contact__content .form__wrapper form input::-moz-placeholder, #contact .container .contact__content .form__wrapper form textarea::-moz-placeholder {
  color: #70582F;
}
#contact .container .contact__content .form__wrapper form input::placeholder,
#contact .container .contact__content .form__wrapper form textarea::placeholder {
  color: #70582F;
}
#contact .container .contact__content .form__wrapper form textarea {
  height: 8.75rem;
  padding-top: 1rem;
  position: relative;
  resize: none;
}
#contact .container .contact__content .form__wrapper form textarea::-moz-placeholder {
  position: absolute;
  top: 1rem;
}
#contact .container .contact__content .form__wrapper form textarea::placeholder {
  position: absolute;
  top: 1rem;
}
#contact .container .contact__content .form__wrapper form button {
  width: 10.313rem;
  height: 2.813rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0.57rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #70582F;
  background: #FFFFFF;
  transition: all 0.6s cubic-bezier(0, 0.92, 0.82, 1.32);
  cursor: pointer;
  width: 5.938rem;
  height: 1.875rem;
  border-radius: 0.375rem;
  margin-top: 0.7rem;
}
#contact .container .contact__content .form__wrapper form button:hover {
  transform: translateY(-0.18rem);
}

#contacts__wrapper {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: grid;
  place-items: center;
  padding: 6rem 0;
  overflow: hidden;
  padding-top: 4rem;
}
@media screen and (max-width: 64rem) {
  #contacts__wrapper {
    padding: 4rem 0;
  }
}
#contacts__wrapper .container {
  display: grid;
  grid-template-columns: repeat(3, 23%);
  justify-content: space-around;
  align-items: center;
}
#contacts__wrapper .container a {
  font-size: 0.938rem;
  color: #B79049;
}
#contacts__wrapper .container a span {
  font-weight: 500;
  color: #70582F;
}
#contacts__wrapper .container .socials__wrapper {
  display: grid;
  place-items: center;
  align-items: center;
  gap: 1.25rem 0;
}
#contacts__wrapper .container .socials__wrapper span {
  font-size: 0.938rem;
  font-weight: 500;
  color: #70582F;
}
#contacts__wrapper .container .socials__wrapper .socials {
  display: flex;
  align-items: center;
  gap: 0 1.3rem;
}
#contacts__wrapper .container .socials__wrapper .socials a {
  transition: all 0.4s ease-out;
}
#contacts__wrapper .container .socials__wrapper .socials a:hover {
  transform: translateY(-0.08rem);
}
#contacts__wrapper .container .socials__wrapper .socials a img {
  width: 2rem;
  height: 2rem;
}

@media screen and (max-width: 64rem) {
  #contact {
    padding-top: 0;
  }
  #contact .container {
    width: 85%;
    grid-template-columns: 1fr;
  }
  #contact .container .contact__content {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }
  #contact .container .contact__content .form__wrapper {
    width: 90%;
  }
  #contact .container .contact__content .form__wrapper .title p {
    width: 100%;
    font-size: 0.688rem;
  }
  #contacts__wrapper {
    padding-top: 0;
  }
  #contacts__wrapper .container {
    place-items: center;
    text-align: center;
    grid-template-columns: 1fr;
    gap: 2rem 0;
  }
  #contacts__wrapper .container .socials__wrapper {
    order: 1;
    margin-bottom: 0.5rem;
  }
  #contacts__wrapper .container .address {
    width: 70%;
    order: 2;
  }
  #contacts__wrapper .container .phone {
    width: 60%;
    order: 3;
  }
}
footer {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 0 0.8rem 0;
  background: #F5E5C7;
}
footer .container {
  display: grid;
  place-items: center;
  gap: 3rem 0;
}
footer .container img {
  width: 12%;
}
footer .container .copyrights {
  display: grid;
  place-items: center;
  text-align: center;
}
footer .container .copyrights .copy {
  display: flex;
  align-items: center;
  gap: 0 0.5rem;
  font-size: 0.45rem;
  opacity: 1;
  color: rgba(112, 88, 47, 0.5725490196);
}
footer .container .copyrights .copy img {
  width: 0.75rem;
  height: 0.75rem;
}

@media screen and (max-width: 64rem) {
  footer .container img {
    width: 35%;
  }
}
#popup {
  position: fixed;
  z-index: 9999;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  transition: all 0.3s ease-out;
}
#popup[data-active=true] {
  visibility: visible;
  opacity: 1;
}
#popup[data-active=true] .popup__box {
  opacity: 1;
  margin-top: 0;
}
#popup .popup__box {
  width: 65%;
  height: 70%;
  display: grid;
  position: relative;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  opacity: 0;
  margin-top: 2rem;
  border-radius: 0.6rem;
  overflow: hidden;
  background: #B79049;
  transition: all 0.45s ease-out;
}
#popup .popup__box #close {
  display: grid;
  place-items: center;
  position: absolute;
  top: 8%;
  right: 5%;
  background: transparent;
  cursor: pointer;
}
#popup .popup__box #close img {
  width: 1rem;
  height: 1rem;
}
#popup .popup__box img {
  width: 75%;
  border-radius: 1.313rem;
}
#popup .popup__box .popup__content {
  display: grid;
  place-items: center start;
  gap: 0.8rem 0;
  padding-right: 3rem;
  color: #FFFFFF;
}
#popup .popup__box .popup__content h1 {
  color: #FFFFFF;
}
#popup .popup__box .popup__content p {
  font-size: 0.875rem;
}

@media screen and (min-width: 100rem) {
  #popup .popup__box {
    width: 50%;
    height: 50%;
  }
}
@media screen and (max-width: 64rem) {
  #popup .popup__box {
    width: 85%;
    height: -moz-fit-content;
    height: fit-content;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 3rem 0;
    padding: 3rem 2.5rem;
  }
  #popup .popup__box #close {
    right: 8%;
  }
  #popup .popup__box .popup__content {
    place-items: center;
    text-align: start;
    padding-right: 0;
  }
}
#quem__somos__banner {
  width: 100%;
  height: 55vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/banner-pag-de-apoio.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 64rem) {
  #quem__somos__banner {
    background-image: "../assets/images/banner-pag-de-apoio.jpg";
  }
}

#quem__somos {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: grid;
  place-items: center;
  padding: 6rem 0;
  overflow: hidden;
}
@media screen and (max-width: 64rem) {
  #quem__somos {
    padding: 4rem 0;
  }
}
#quem__somos .container {
  width: 60%;
  display: grid;
  place-items: center start;
  gap: 2.3rem 0;
}
#quem__somos .container .title {
  display: grid;
  place-items: center start;
  gap: 0.3rem 0;
}
#quem__somos .container .title span {
  font-size: 1.125rem;
  font-weight: 500;
  opacity: 0.85;
  color: #F5E5C7;
}
#quem__somos .container .title h1 {
  color: #B79049;
}
#quem__somos .container .texts {
  width: 100%;
  display: grid;
  place-items: center start;
  gap: 1rem 0;
}

#gallery {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: grid;
  place-items: center;
  padding: 6rem 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 2rem;
}
@media screen and (max-width: 64rem) {
  #gallery {
    padding: 4rem 0;
  }
}
#gallery .container {
  display: grid;
  place-items: center;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
}
#gallery .container img {
  display: flex;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#gallery .container img:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1/3;
}

@media screen and (min-width: 100rem) {
  #quem__somos .container {
    width: 50%;
  }
}
@media screen and (max-width: 64rem) {
  #quem__somos__banner {
    height: 30vh;
  }
  #quem__somos .container {
    width: 85%;
  }
  #quem__somos .container .title {
    place-items: center;
    text-align: center;
  }
  #gallery {
    padding: 0;
  }
  #gallery .container {
    grid-template-columns: repeat(2, 1fr);
  }
  #gallery .container img:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  #gallery .container img:nth-child(3) {
    grid-column: 1/3;
  }
}/*# sourceMappingURL=style.css.map */