@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
::-webkit-scrollbar {
  background-color: #21201e;
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 18px;
}

* {
  font-family: "Montserrat", sans-serif;
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
  resize: none;
  text-decoration: none;
  list-style: none;
  outline: none;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: cover;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  background-color: #9a9a9a;
}

img {
  display: flex;
  overflow: hidden;
  object-fit: cover;
  width: 65%;
  position: relative;
}

.container {
  width: 80%;
}

.left,
.right,
.swiper-slide {
  cursor: pointer;
}

@media (max-width: 1024px) {
  .container {
    width: 83%;
  }
}
@media (min-width: 100rem) {
  .container {
    width: 60%;
  }
}
nav {
  display: grid;
  place-items: center;
  width: 100%;
  height: 5.5rem;
  position: fixed;
  z-index: 999999;
  background-color: transparent;
  transition: all 0.5s ease;
}
nav.support {
  background-color: #6e0015;
  position: fixed;
  height: 5rem;
  place-items: center;
}
nav.support .container {
  padding: 0;
}
nav.support .container img {
  width: 70px;
  height: auto;
}
#nav {
  top: -20%;
  opacity: 0;
  visibility: hidden;
}
#nav[data-active="true"] {
  top: 0;
  opacity: 1;
  visibility: visible;
}
nav[data-active="true"] {
  backdrop-filter: blur(23px);
  -webkit-backdrop-filter: blur(23px);
  border-radius: 0px 0px 50px 50px;
  background: rgba(0, 0, 0, 0.6352941176) 0% 0% no-repeat padding-box;
}
nav[data-active="true"] .container {
  padding-top: 0;
}
nav .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  transition: all 0.5s ease;
}
nav .container .socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 1rem;
  height: fit-content;
}
nav .container .socials img {
  width: 15.51px;
  height: 15.51px;
  object-fit: fill;
}
nav .container img {
  width: 90px;
  height: auto;
  transition: all 0.45s cubic-bezier(0, 0.92, 0.55, 1);
}
nav .container ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 5rem;
}
nav .container ul .a2 {
  display: none;
}
nav .container ul a {
  position: relative;
}
nav .container ul a {
  color: #fff;
  font-size: 12px;
  transition: all 0.3s cubic-bezier(0, 0.92, 0.55, 1);
  position: relative;
}
nav .container ul a::after {
  content: "";
  position: absolute;
  display: block;
  background-color: #fff;
  width: 0%;
  height: 1px;
  bottom: -10px;
  left: 0;
  transition: all 0.5s cubic-bezier(0, 0.92, 0.55, 1);
}
nav .container ul a::before {
  content: "";
  position: absolute;
  display: block;
  background-color: #fff;
  width: 0%;
  height: 1px;
  top: -10px;
  right: 0;
  transition: all 0.5s cubic-bezier(0, 0.92, 0.55, 1);
}
nav .container ul a:hover {
  color: #fff;
}
nav .container ul a:hover::after {
  width: 100%;
}
nav .container ul a:hover::before {
  width: 100%;
}
nav .container ul .active::after {
  width: 100%;
}
nav .container ul .active::before {
  width: 100%;
}
nav .container #nav__btn {
  display: none;
}
nav .container #sidebar__nav {
  display: none;
}

@media (max-width: 1024px) {
  nav[data-active="true"] {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0px 0px 0px 0px;
    background: rgba(33, 32, 30, 0.9529411765) 0% 0% no-repeat padding-box;
  }
  nav[data-active="true"] .container {
    padding-top: 0;
  }
  nav[data-active="true"] .container img {
    width: 70px;
    height: auto;
  }
  nav .container {
    padding-bottom: 0;
  }
  nav .container ul {
    display: none;
  }
  nav .container .socials {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 1rem;
    height: fit-content;
  }
  nav .container .socials img {
    width: 28px;
    height: 28px;
    object-fit: fill;
  }
  nav .container #nav__btn {
    z-index: 99999;
    width: 7px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0, 0.92, 0.55, 1);
    cursor: pointer;
  }
  nav .container #nav__btn .line {
    background-color: #fff;
    width: 100%;
    height: 7px;
    border-radius: 50%;
    transition: all 0.5s ease;
  }
  nav .container #nav__btn[data-active="true"] {
    margin-right: 64%;
    width: 25px;
  }
  nav .container #nav__btn[data-active="true"] .line {
    background-color: #fff;
    border-radius: 14px;
    width: 4px;
    height: 5px;
  }
  nav .container #nav__btn[data-active="true"] .line:nth-child(1) {
    width: 100%;
    transform: rotateZ(226deg) translateY(-15px);
  }
  nav .container #nav__btn[data-active="true"] .line:nth-child(2) {
    width: 0;
  }
  nav .container #nav__btn[data-active="true"] .line:nth-child(3) {
    width: 100%;
    transform: rotateZ(-228deg) translateY(14px);
  }
  nav .container #sidebar__nav {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -80%;
    width: 80%;
    background-color: #21201e;
    display: grid;
    place-items: center;
    transition: all 0.5s cubic-bezier(0, 0.92, 0.55, 1);
    z-index: 9999;
  }
  nav .container #sidebar__nav[data-active="true"] {
    right: 0;
  }
  nav .container #sidebar__nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    text-align: start;
    width: 50%;
    gap: 4rem;
  }
  nav .container #sidebar__nav ul li {
    width: 130px;
    text-align: start;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }
  nav .container #sidebar__nav ul li::after {
    content: "";
    display: block;
    position: absolute;
    background: #fff;
    bottom: -0.5rem;
    height: 2px;
    width: 100%;
    opacity: 10%;
    transition: all 0.3s ease-out;
  }
}
#home {
  width: 100%;
  height: 100vh;
  display: grid;
  place-items: center;
  background-image: url("../assets/img/home.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: visible;
  position: relative;
}
#home .btn-flut {
  height: 55px;
  width: 55px;
  position: fixed;
  z-index: 9;
  bottom: 10%;
  right: -5%;
  display: grid;
  place-items: center;
  transition: all 0.4s ease-in;
  z-index: 9;
  cursor: pointer;
}
#home .btn-flut:hover {
  transform: scale(0.9);
}
#home .btn-flut[data-active="true"] {
  right: 5%;
}
#home .btn-flut img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
}
#home .cont-after {
  display: none;
}
@media screen and (max-width: 64rem) {
  #home {
    background-image: url("../assets/img/home-mob.webp");
  }
  #home .btn-flut {
    display: none;
  }
}
#home .container {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  z-index: 2;
}
#home .container .socials {
  display: none;
}
#home .container .text {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
}
#home .container .text h1 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  width: 80%;
}
#home .container .text p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  width: 80%;
}
#home .content {
  position: absolute;
  width: 984px;
  height: 155px;
  background-color: #21201e;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -5%;
  z-index: 999;
}
#home .content .text {
  width: 60%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#home .content .text h1 {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  width: 50%;
}
#home .content .text a button {
  width: 168px;
  height: 45px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background-color: #6e0015;
  cursor: pointer;
  transition: all 0.3s ease;
}
#home .content .text a button:hover {
  transform: translateY(-3px);
  color: #6e0015;
  border: none;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 1024px) {
  #home .cont-after {
    content: ("");
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000, #ffffff00);
    z-index: 1;
  }
  #home .container {
    display: flex;
    height: 70vh;
    flex-direction: column;
    align-items: center;
    justify-content: end;
  }
  #home .container .socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
  }
  #home .container .socials a img {
    width: 29px;
    height: 29px;
  }
  #home .container .text {
    height: 60%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
  }
  #home .container .text h1 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    width: 90%;
  }
  #home .container .text p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    width: 80%;
  }
  #home .content {
    position: absolute;
    width: 80%;
    height: 286px;
    background-color: #21201e;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: -25%;
    z-index: 999;
  }
  #home .content .text {
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  #home .content .text h1 {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    width: 100%;
    text-align: center;
  }
  #home .content .text a button {
    width: 168px;
    height: 45px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background-color: #6e0015;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #home .content .text a button:hover {
    transform: translateY(-3px);
    color: #6e0015;
    border: none;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
}
#after_header {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #f1f1f1;
  padding: 8rem 0;
}
@media (max-width: 1024px) {
  #after_header {
    padding: 4.5rem 0;
  }
}
#after_header .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  gap: 4rem;
}
#after_header .container .title {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
}
#after_header .container .title h1 {
  color: #6e0015;
  font-size: 30px;
  font-weight: 700;
}
#after_header .container .title p {
  color: #645b5b;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  width: 63%;
}
#after_header .container .all {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 0 4rem;
}
#after_header .container .all .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
#after_header .container .all .item img {
  width: 46px;
  height: 46px;
}
#after_header .container .all .item h2 {
  color: #6e0015;
  font-size: 14px;
  font-weight: 600;
}
#after_header .container .all .item p {
  color: #645b5b;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 1024px) {
  #after_header {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #f1f1f1;
    padding-top: 16rem !important;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #after_header {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #after_header .container {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 4rem;
  }
  #after_header .container .title {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1rem;
  }
  #after_header .container .title h1 {
    color: #6e0015;
    font-size: 22px;
    font-weight: 700;
  }
  #after_header .container .title p {
    color: #645b5b;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    width: 100%;
  }
  #after_header .container .all {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 4rem;
  }
  #after_header .container .all .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  #after_header .container .all .item img {
    width: 46px;
    height: 46px;
  }
  #after_header .container .all .item h2 {
    color: #6e0015;
    font-size: 14px;
    font-weight: 600;
  }
  #after_header .container .all .item p {
    color: #645b5b;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.8;
    text-align: center;
    width: 80%;
  }
}
#about {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  padding-top: 0;
  background-color: #f1f1f1;
  place-items: center start;
}
@media (max-width: 1024px) {
  #about {
    padding: 4.5rem 0;
  }
}
#about .container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center start;
}
#about .container .mobile {
  display: none;
}
#about .container .mobile .mbl {
  display: none;
}
#about .container .text {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
}
#about .container .text h1 {
  color: #6e0015;
  font-size: 26px;
  font-weight: 700;
  width: 100%;
}
#about .container .text p {
  color: #636363;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  width: 88%;
}
#about .container .text a button {
  width: 168px;
  height: 45px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background-color: #6e0015;
  cursor: pointer;
  transition: all 0.3s ease;
}
#about .container .text a button:hover {
  transform: translateY(-3px);
  color: #6e0015;
  border: none;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#about .about_swiper {
  width: 45vw;
  height: 400px;
  overflow: hidden;
}
#about .about_swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
}

@media (max-width: 1024px) {
  #about {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #f1f1f1;
    padding-top: 3rem;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #about {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #about .container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center !important;
    gap: 2rem;
  }
  #about .container .mobile {
    width: 90%;
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    order: 1;
  }
  #about .container .mobile .mbl {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    color: #6e0015;
    font-size: 22px;
    font-weight: 700;
    width: 100%;
  }
  #about .container .text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    order: 3;
  }
  #about .container .text h1 {
    display: none;
  }
  #about .container .text p {
    color: #636363;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    width: 88%;
  }
  #about .container .text a button {
    width: 168px;
    height: 45px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background-color: #6e0015;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #about .container .text a button:hover {
    transform: translateY(-3px);
    color: #6e0015;
    border: none;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  #about .container .about_swiper {
    width: 87vw;
    height: 400px;
    overflow: hidden;
  }
  #about .container .about_swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
  }
}
#treatments {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  padding-bottom: 0;
  background: linear-gradient(#21201e 50%, #f1f1f1 50%);
}
@media (max-width: 1024px) {
  #treatments {
    padding: 4.5rem 0;
  }
}
#treatments .container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}
#treatments .container .title {
  padding-left: 10%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 0.5rem 0;
}
#treatments .container .title h1 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  width: 40%;
}
#treatments .container .title p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  width: 55%;
}
#treatments .container .arrow {
  width: 110%;
  height: 30px;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  position: relative;
  gap: 0 0.8rem;
}
#treatments .container .arrow .swiper-button-prev1,
#treatments .container .arrow .swiper-button-next1 {
  cursor: pointer;
  width: 21px;
  height: 16px;
  display: block;
}
#treatments .container .arrow .swiper-button-prev1 {
  transform: rotate(180deg);
}
#treatments .container .arrow-mob{
  display: none;
}
#treatments .container .treatment_swiper {
  width: 100vw;
  height: 443px;
  overflow: hidden;
}
#treatments .container .treatment_swiper .swiper-wrapper {
  align-items: center;
}
#treatments .container .treatment_swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}
#treatments .container .treatment_swiper .swiper-wrapper .swiper-slide::after {
  transition: all 0.3s ease;
  content: "";
  display: block;
  opacity: 0;
  background: linear-gradient(90deg, #6e0015 0%, #e6002a 100%);
  width: 100%;
  height: 13px;
  position: absolute;
  bottom: 0;
  z-index: 999;
}
#treatments .container .treatment_swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
  height: 100%;
  cursor: pointer;
}
#treatments .container .treatment_swiper .swiper-wrapper .swiper-slide.swiper-slide-next a {
  cursor: pointer;
}
#treatments .container .treatment_swiper .swiper-wrapper .swiper-slide.swiper-slide-next .content {
  background-color: transparent;
}
#treatments .container .treatment_swiper .swiper-wrapper .swiper-slide.swiper-slide-next .content p {
  display: flex;
}
#treatments .container .treatment_swiper .swiper-wrapper .swiper-slide.swiper-slide-next::after {
  content: "";
  display: block;
  opacity: 1;
  background-color: #6e0015;
  color: #6e0015;
  width: 100%;
  height: 13px;
  position: absolute;
  bottom: 0;
  z-index: 999;
}
#treatments .container .treatment_swiper .swiper-wrapper .swiper-slide a {
  cursor: pointer;
}
#treatments .container .treatment_swiper .swiper-wrapper .swiper-slide a .content {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5019607843);
  position: absolute;
  bottom: 0;
  gap: 0.3rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  padding-left: 2rem;
  padding-bottom: 4rem;
}
#treatments .container .treatment_swiper .swiper-wrapper .swiper-slide a .content h1 {
  z-index: 2;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
#treatments .container .treatment_swiper .swiper-wrapper .swiper-slide a .content p {
  display: none;
  z-index: 2;
  color: #fff;
  opacity: 42%;
  font-size: 14px;
  font-weight: 400;
}
#treatments .container .treatment_swiper .swiper-wrapper .swiper-slide a img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1024px) {
  #treatments {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #21201e;
    place-items: center;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #treatments {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #treatments .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
  }
  #treatments .container .title {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem 0;
    order: 1;
  }
  #treatments .container .title h1 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    width: 100%;
  }
  #treatments .container .title p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
  }
  #treatments .container .arrow {
    display: none;
  }
  #treatments .container .arrow-mob {
    width: 110%;
    height: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 0 2rem;
    order: 3;
  }
  #treatments .container .arrow-mob .swiper-button-prev1,
  #treatments .container .arrow-mob .swiper-button-next1 {
    cursor: pointer;
    width: 25px;
    height: 20px;
    display: block;
  }
  #treatments .container .arrow-mob .swiper-button-prev1 {
    transform: rotate(180deg);
  }
  #treatments .container .treatment_swiper {
    width: 80vw;
    height: 371px;
    overflow: hidden;
    order: 2;
  }
  #treatments .container .treatment_swiper .swiper-wrapper {
    align-items: center;
  }
  #treatments .container .treatment_swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
  }
  #treatments .container .treatment_swiper .swiper-wrapper .swiper-slide::after {
    content: "";
    display: block;
    opacity: 0;
    background: linear-gradient(90deg, #6e0015 0%, #e6002a 100%);
    width: 100%;
    height: 13px;
    position: absolute;
    bottom: 0;
    z-index: 999;
  }
  #treatments .container .treatment_swiper .swiper-wrapper .swiper-slide a {
    width: 100%;
    height: 100%;
  }
  #treatments .container .treatment_swiper .swiper-wrapper .swiper-slide a .content {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4588235294);
    position: absolute;
    bottom: 0;
    gap: 0.3rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    padding-left: 2rem;
    padding-bottom: 4rem;
  }
  #treatments .container .treatment_swiper .swiper-wrapper .swiper-slide a .content h1 {
    z-index: 2;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
  }
  #treatments .container .treatment_swiper .swiper-wrapper .swiper-slide a .content p {
    display: none;
    z-index: 2;
    color: #fff;
    opacity: 42%;
    font-size: 14px;
    font-weight: 400;
  }
  #treatments .container .treatment_swiper .swiper-wrapper .swiper-slide a img {
    width: 100%;
    height: 100%;
  }
  #treatments .container .treatment_swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
    height: 100%;
    cursor: pointer;
  }
  #treatments .container .treatment_swiper .swiper-wrapper .swiper-slide.swiper-slide-active a {
    cursor: pointer;
  }
  #treatments .container .treatment_swiper .swiper-wrapper .swiper-slide.swiper-slide-active p {
    display: flex;
  }
  #treatments .container .treatment_swiper .swiper-wrapper .swiper-slide.swiper-slide-active .content {
    background-color: transparent;
  }
  #treatments .container .treatment_swiper .swiper-wrapper .swiper-slide.swiper-slide-active::after {
    content: "";
    display: block;
    opacity: 1;
    background-color: #6e0015;
    color: #6e0015;
    width: 100%;
    height: 13px;
    position: absolute;
    bottom: 0;
    z-index: 999;
  }
}
#restoring {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center end;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #f1f1f1;
}
@media (max-width: 1024px) {
  #restoring {
    padding: 4.5rem 0;
  }
}
#restoring .container {
  width: 90%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
}
#restoring .container .mobile {
  display: none;
}
#restoring .container .mobile .mbl {
  display: none;
}
#restoring .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
}
#restoring .container .text h1 {
  color: #6e0015;
  font-size: 26px;
  font-weight: 700;
  width: 90%;
}
#restoring .container .text p {
  color: #636363;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  width: 80%;
}
#restoring .container .text a button {
  width: 168px;
  height: 45px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background-color: #6e0015;
  cursor: pointer;
  transition: all 0.3s ease;
}
#restoring .container .text a button:hover {
  transform: translateY(-3px);
  color: #6e0015;
  border: none;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#restoring .container img {
  width: 100%;
  height: 400px;
}

@media (max-width: 1024px) {
  #restoring {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #f1f1f1;
    padding-top: 3rem;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #restoring {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #restoring .container {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center !important;
    gap: 2rem;
  }
  #restoring .container .mobile {
    width: 90%;
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    order: 1;
  }
  #restoring .container .mobile .mbl {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    color: #6e0015;
    font-size: 22px;
    font-weight: 700;
    width: 100%;
  }
  #restoring .container .text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    order: 3;
  }
  #restoring .container .text h1 {
    display: none;
  }
  #restoring .container .text p {
    color: #636363;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    width: 88%;
  }
  #restoring .container .text a button {
    width: 168px;
    height: 45px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background-color: #6e0015;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #restoring .container .text a button:hover {
    transform: translateY(-3px);
    color: #6e0015;
    border: none;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  #restoring .container img {
    width: 90%;
    height: auto;
    order: 1;
  }
}
#depoiments {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #f1f1f1;
}
@media (max-width: 1024px) {
  #depoiments {
    padding: 4.5rem 0;
  }
}
#depoiments .container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  position: relative;
}
#depoiments .container .depoiments_swiper {
  width: 40vw;
  height: 368px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #6e0015;
  border-radius: 59px 59px 0px 59px;
}
#depoiments .container .depoiments_swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#depoiments .container .depoiments_swiper .swiper-wrapper .swiper-slide .text {
  width: 83%;
  height: 90%;
  text-align: start;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  gap: 3rem;
}
#depoiments .container .depoiments_swiper .swiper-wrapper .swiper-slide .text h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
#depoiments .container .depoiments_swiper .swiper-wrapper .swiper-slide .text p {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  width: 100%;
}
#depoiments .container .text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 2rem;
}
#depoiments .container .text h1 {
  font-size: 30px;
  font-weight: 700;
  color: #6e0015;
  width: 70%;
}
#depoiments .container .text p {
  font-size: 14px;
  font-weight: 400;
  color: #645b5b;
  line-height: 1.5;
  width: 72%;
}
#depoiments .container .arrow {
  width: 100%;
  height: 30px;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  position: absolute;
  gap: 0 0.8rem;
  bottom: 0%;
  right: 36%;
}
#depoiments .container .arrow .left,
#depoiments .container .arrow .right {
  width: 21px;
  height: 16px;
  display: block;
}
#depoiments .container .arrow .left {
  transform: rotate(180deg);
}

@media (max-width: 1024px) {
  #depoiments {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #f1f1f1;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #depoiments {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #depoiments .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    place-items: center;
  }
  #depoiments .container .depoiments_swiper {
    order: 2;
    width: 80vw;
    height: 353px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #6e0015;
    border-radius: 59px 59px 0px 59px;
  }
  #depoiments .container .depoiments_swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #depoiments .container .depoiments_swiper .swiper-wrapper .swiper-slide .text {
    width: 85%;
    text-align: start;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    gap: 1rem;
  }
  #depoiments .container .depoiments_swiper .swiper-wrapper .swiper-slide .text h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
  }
  #depoiments .container .depoiments_swiper .swiper-wrapper .swiper-slide .text p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    width: 100%;
  }
  #depoiments .container .text {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1rem;
    order: 1;
  }
  #depoiments .container .text h1 {
    font-size: 22px;
    font-weight: 700;
    color: #6e0015;
    width: 60%;
  }
  #depoiments .container .text p {
    font-size: 14px;
    font-weight: 400;
    color: #645b5b;
    line-height: 1.5;
    width: 100%;
  }
  #depoiments .container .arrow {
    width: 100%;
    height: 30px;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    position: relative;
    gap: 0 0.8rem;
    bottom: -10%;
    order: 3;
  }
  #depoiments .container .arrow .left,
  #depoiments .container .arrow .right {
    width: 26px;
    height: 21px;
    display: block;
  }
  #depoiments .container .arrow .left {
    transform: rotate(180deg);
  }
}
#banner {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #21201e;
}
@media (max-width: 1024px) {
  #banner {
    padding: 4.5rem 0;
  }
}
#banner .container {
  width: 75%;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  place-items: center start;
  gap: 0 2rem;
}
#banner .container .text {
  width: 78%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
}
#banner .container .text h1 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
}
#banner .container .text p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
#banner .container a button {
  width: 168px;
  height: 45px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background-color: #6e0015;
  cursor: pointer;
  transition: all 0.3s ease;
}
#banner .container a button:hover {
  transform: translateY(-3px);
  color: #6e0015;
  border: none;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 1024px) {
  #banner {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #21201e;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #banner {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #banner .container {
    width: 80%;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center start;
    gap: 2rem;
  }
  #banner .container .text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 0.5rem;
  }
  #banner .container .text h1 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
  }
  #banner .container .text p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
  }
  #banner .container a button {
    width: 168px;
    height: 45px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background-color: #6e0015;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #banner .container a button:hover {
    transform: translateY(-3px);
    color: #6e0015;
    border: none;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
}
#prof {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #f1f1f1;
}
@media (max-width: 1024px) {
  #prof {
    padding: 4.5rem 0;
  }
}
#prof .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 80%;
}
#prof .container .title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
#prof .container .title h1 {
  font-size: 30px;
  font-weight: 700;
  width: 20%;
  color: #6e0015;
}
#prof .container .arrow {
  width: 100%;
  height: 30px;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  position: relative;
  gap: 2rem;
  bottom: 30px;
}
#prof .container .arrow .left,
#prof .container .arrow .right {
  width: 26px;
  height: 21px;
  display: block;
}
#prof .container .arrow .left {
  transform: rotate(180deg);
}
#prof .container .prof_swiper {
  width: 80vw;
  height: 440px;
  overflow: hidden;
}
#prof .container .prof_swiper .swiper-wrapper .swiper-slide {
  border-radius: 13px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}
#prof .container .prof_swiper .swiper-wrapper .swiper-slide img {
  width: 50%;
  height: 90%;
  border-radius: 13px 0 0 13px;
}
#prof .container .prof_swiper .swiper-wrapper .swiper-slide .content {
  background-color: #fff;
  width: 50%;
  height: 90%;
  border-radius: 0 13px 13px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0;
}
#prof .container .prof_swiper .swiper-wrapper .swiper-slide .content h3 {
  width: 80%;
  font-size: 16px;
  font-weight: 600;
  color: #645b5b;
}
#prof .container .prof_swiper .swiper-wrapper .swiper-slide .content p {
  width: 80%;
  color: #645b5b;
  font-size: 13px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  #prof {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #f1f1f1;
    place-items: center;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #prof {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #prof .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 80%;
  }
  #prof .container .title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    order: 1;
  }
  #prof .container .title h1 {
    font-size: 30px;
    font-weight: 700;
    width: 100%;
    color: #6e0015;
  }
  #prof .container .arrow {
    width: 80%;
    height: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 2rem;
    bottom: 10px;
    order: 3;
  }
  #prof .container .arrow .left,
  #prof .container .arrow .right {
    width: 26px;
    height: 21px;
    display: block;
  }
  #prof .container .arrow .left {
    transform: rotate(180deg);
  }
  #prof .container .prof_swiper {
    width: 80vw;
    height: 600px;
    overflow: hidden;
    order: 2;
  }
  #prof .container .prof_swiper .swiper-wrapper .swiper-slide {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #prof .container .prof_swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    border-radius: 13px 13px 0 0;
  }
  #prof .container .prof_swiper .swiper-wrapper .swiper-slide .content {
    width: 100%;
    border-radius: 0 0 13px 13px;
    padding: 10%;
  }
  #prof .container .prof_swiper .swiper-wrapper .swiper-slide .content h3 {
    width: 90%;
    font-size: 18px;
    font-weight: 600;
    color: #645b5b;
  }
  #prof .container .prof_swiper .swiper-wrapper .swiper-slide .content p {
    width: 90%;
    color: #645b5b;
    font-size: 14px;
    font-weight: 500;
  }
}
#banner2 {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #21201e;
  padding: 0;
}
@media (max-width: 1024px) {
  #banner2 {
    padding: 4.5rem 0;
  }
}
#banner2 .container {
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  place-items: center;
}
#banner2 .container img {
  width: 100%;
  height: 400px;
}
#banner2 .container .text {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
}
#banner2 .container .text h1 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  width: 85%;
}
#banner2 .container .text p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  width: 80%;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  #banner2 {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #21201e;
    padding: 0 !important;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #banner2 {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #banner2 .container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 4rem;
  }
  #banner2 .container img {
    width: 100%;
    height: 400px;
  }
  #banner2 .container .text {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1rem;
    padding-bottom: 4rem;
  }
  #banner2 .container .text h1 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    width: 100%;
  }
  #banner2 .container .text p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    line-height: 1.8;
  }
}
#contact {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  padding: 0;
  height: fit-content;
  position: relative;
}
#contact .btn-flut {
  height: 55px;
  width: 55px;
  position: fixed;
  z-index: 9;
  bottom: 10%;
  right: -5%;
  display: grid;
  place-items: center;
  transition: all 0.4s ease-in;
  z-index: 9;
  cursor: pointer;
}
#contact .btn-flut:hover {
  transform: scale(0.9);
}
#contact .btn-flut[data-active="true"] {
  right: 5%;
}
#contact .btn-flut img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
}
@media (max-width: 1024px) {
  #contact {
    padding: 4.5rem 0;
  }
  #contact .btn-flut {
    display: none;
  }
}
#contact .social {
  display: none;
}
#contact .thanks {
  width: 100%;
  height: 387px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
#contact .thanks .topo {
  width: 51px;
  height: 51px;
  position: absolute;
  right: 6%;
  bottom: 0%;
  z-index: 2;
}
#contact .thanks .topo img {
  width: 100%;
  height: 100%;
}
#contact .thanks .topo .map {
  background-color: #f1f1f1;
}
#contact .thanks .container {
  position: absolute;
  z-index: 2;
  background: #f1f1f1;
  width: 100%;
  height: 417px;
  gap: 1rem;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding-left: 10%;
}
#contact .thanks .container h1 {
  color: #6e0015;
  width: 100%;
  font-size: 26px;
  font-weight: 700;
}
#contact .thanks .container p {
  color: #645b5b;
  width: 35%;
  font-size: 14px;
  font-weight: 500;
}
#contact .thanks .container .contact1 {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem 0;
  padding-top: 3rem;
}
#contact .thanks .container .contact1 .location {
  transition: all 0.3s ease;
  width: 60%;
}
#contact .thanks .container .contact1 .location:hover {
  transform: translateY(-3px);
}
#contact .thanks .container .contact1 .location a {
  color: #6e0015;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
#contact .thanks .container .contact1 .location a img {
  width: auto;
  height: 27px;
  object-fit: fill;
}
#contact .thanks .container .contact1 .phone {
  transition: all 0.3s ease;
}
#contact .thanks .container .contact1 .phone:hover {
  transform: translateY(-3px);
}
#contact .thanks .container .contact1 .phone a {
  color: #6e0015;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
#contact .thanks .container .contact1 .phone a img {
  width: auto;
  height: 16px;
}
#contact .form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 404px;
  height: 558px;
  position: absolute;
  right: 18%;
  gap: 2rem 0;
}
#contact .form-wrapper form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 404px;
  height: 558px;
  gap: 1rem 0;
  padding: 2.75rem 2.35rem;
  border-radius: 0.813rem;
  background-color: #fff;
  position: absolute;
  left: 10%;
  top: 0%;
  z-index: 3;
}
#contact .form-wrapper form .title {
  display: grid;
  place-items: center;
  gap: 0.85rem 0;
  padding-bottom: 2rem;
}
#contact .form-wrapper form .title h1 {
  color: #6e0015;
  font-size: 22px;
  font-weight: 700;
}
#contact .form-wrapper form .title p {
  width: 80%;
  color: #645b5b;
  font-size: 13px;
  font-weight: 300;
}
#contact .form-wrapper form input {
  width: 100%;
  height: 53px;
  border-radius: 8px;
  background: #e9e9e9;
  padding-bottom: 0.95rem;
  color: #645b5b;
  padding-left: 1rem;
  padding-top: 1rem;
  display: flex;
}
#contact .form-wrapper form input::placeholder {
  font-size: 12px;
  color: #645b5b;
  opacity: 52%;
}
#contact .form-wrapper form textarea {
  width: 100%;
  height: 151px;
  background: #e9e9e9;
  padding-bottom: 0.95rem;
  color: #645b5b;
  border-radius: 8px;
  padding-left: 1rem;
  padding-top: 1rem;
}
#contact .form-wrapper form textarea::placeholder {
  font-size: 12px;
  color: #645b5b;
  opacity: 52%;
}
#contact .form-wrapper form select {
  width: 100%;
  height: 53px;
  border-radius: 8px;
  background: #e9e9e9;
  color: rgba(100, 91, 91, 0.5725490196);
  padding-left: 1rem;
  cursor: pointer;
}
#contact .form-wrapper form select::placeholder {
  font-size: 12px;
  font-weight: 700;
  color: #e9e9e9;
  opacity: 52%;
}
#contact .form-wrapper form select option {
  border: 0;
  background-color: transparent;
  font-weight: 500;
  width: 100%;
  cursor: pointer;
}
#contact .form-wrapper form button {
  width: 168px;
  height: 45px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background-color: #6e0015;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 8.125rem;
  height: 2.125rem;
  border-radius: 10px;
  font-size: 12px;
}
#contact .form-wrapper form button:hover {
  transform: translateY(-3px);
  color: #6e0015;
  border: none;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#contact .form-wrapper form button:hover {
  box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.0705882353);
}
#contact .address {
  background-color: #21201e;
  width: 100%;
  height: 382px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#contact .address .container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 2rem;
}
#contact .address .container img {
  width: 168px;
  height: auto;
}
#contact .address .container .socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 1rem;
  z-index: 99999999;
  left: 0;
  width: 168px;
}
#contact .address .container .socials a {
  transition: all 0.3s ease;
}
#contact .address .container .socials a:hover {
  transform: scale(0.9);
}
#contact .address .container .socials a img {
  width: 27px;
  height: 27px;
  z-index: 2;
}

@media (max-width: 1024px) {
  #contact {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    padding-top: 4rem;
    padding-bottom: 0 !important;
    height: fit-content;
    background-color: #f1f1f1;
    gap: 4rem;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #contact {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #contact .thanks {
    width: 90%;
    height: 287px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #contact .thanks .topo {
    bottom: -222%;
  }
  #contact .thanks .container {
    position: absolute;
    z-index: 999;
    background: #f1f1f1;
    width: 90%;
    height: 217px;
    gap: 1rem;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding-left: 0%;
  }
  #contact .thanks .container h1 {
    color: #6e0015;
    width: 75%;
    font-size: 20px;
    font-weight: 700;
  }
  #contact .thanks .container p {
    color: #645b5b;
    width: 90%;
    font-size: 14px;
    font-weight: 500;
  }
  #contact .thanks .container .contact1 {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1rem 0;
    padding-top: 3rem;
  }
  #contact .thanks .container .contact1 .location {
    transition: all 0.3s ease;
    width: 95%;
  }
  #contact .thanks .container .contact1 .location:hover {
    transform: translateY(-3px);
  }
  #contact .thanks .container .contact1 .location a {
    color: #6e0015;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  #contact .thanks .container .contact1 .location a img {
    /* width: 14px; */
    height: 30px;
  }
  #contact .thanks .container .contact1 .phone {
    transition: all 0.3s ease;
  }
  #contact .thanks .container .contact1 .phone:hover {
    transform: translateY(-3px);
  }
  #contact .thanks .container .contact1 .phone a {
    color: #6e0015;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  #contact .thanks .container .contact1 .phone a img {
    width: 16px;
    height: 16px;
  }
  #contact .form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: 515px;
    position: relative;
    right: auto;
    gap: 2rem 0;
  }
  #contact .form-wrapper form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 515px;
    gap: 1rem 0;
    padding: 2.75rem 2.35rem;
    border-radius: 0.813rem;
    background-color: #fff;
    position: relative;
    left: auto;
    top: auto;
    z-index: 99;
  }
  #contact .form-wrapper form .title {
    display: grid;
    place-items: center;
    gap: 0.85rem 0;
    padding-bottom: 2rem;
  }
  #contact .form-wrapper form .title h1 {
    color: #6e0015;
    font-size: 22px;
    font-weight: 700;
  }
  #contact .form-wrapper form .title p {
    width: 80%;
    color: #645b5b;
    font-size: 13px;
    font-weight: 300;
  }
  #contact .form-wrapper form input {
    width: 100%;
    height: 53px;
    border-radius: 8px;
    background: #e9e9e9;
    padding-bottom: 0.95rem;
    color: #645b5b;
    padding-left: 1rem;
    padding-top: 1rem;
    display: flex;
  }
  #contact .form-wrapper form input::placeholder {
    font-size: 12px;
    color: #645b5b;
    opacity: 52%;
  }
  #contact .form-wrapper form textarea {
    width: 100%;
    height: 151px;
    background: #e9e9e9;
    padding-bottom: 0.95rem;
    color: #645b5b;
    border-radius: 8px;
    padding-left: 1rem;
    padding-top: 1rem;
  }
  #contact .form-wrapper form textarea::placeholder {
    font-size: 12px;
    color: #645b5b;
    opacity: 52%;
  }
  #contact .form-wrapper form select {
    width: 100%;
    height: 53px;
    border-radius: 8px;
    background: #e9e9e9;
    color: rgba(100, 91, 91, 0.5725490196);
    padding-left: 1rem;
    cursor: pointer;
  }
  #contact .form-wrapper form select::placeholder {
    font-size: 12px;
    font-weight: 700;
    color: #e9e9e9;
    opacity: 52%;
  }
  #contact .form-wrapper form select option {
    border: 0;
    background-color: transparent;
    font-weight: 500;
    width: 100%;
    cursor: pointer;
  }
  #contact .form-wrapper form button {
    width: 168px;
    height: 45px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background-color: #6e0015;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 8.125rem;
    height: 2.125rem;
    border-radius: 10px;
    font-size: 12px;
  }
  #contact .form-wrapper form button:hover {
    transform: translateY(-3px);
    color: #6e0015;
    border: none;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  #contact .form-wrapper form button:hover {
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.0705882353);
  }
  #contact .address {
    background-color: #21201e;
    width: 100%;
    height: fit-content;
    padding: 15% 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #contact .address .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #contact .address .container img {
    width: 168px;
    height: auto;
  }
  #contact .address .container .socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 1rem;
    z-index: 99999999;
    left: 0;
  }
  #contact .address .container .socials a {
    transition: all 0.3s ease;
  }
  #contact .address .container .socials a:hover {
    transform: scale(0.9);
  }
  #contact .address .container .socials a img {
    width: 27px;
    height: 27px;
    z-index: 2;
  }
}
#header-about {
  width: 100%;
  height: 399px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/img/sobre-clinica.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 64rem) {
  #header-about {
    background-image: url("../assets/img/sobre-clinica-mob.webp");
  }
}

#header-medicina {
  width: 100%;
  height: 399px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/img/home-medicina.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 64rem) {
  #header-medicina {
    background-image: url("../assets/img/home-medicina-mob.webp");
  }
}

#header-estetica {
  width: 100%;
  height: 399px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/img/home-estetica.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 64rem) {
  #header-estetica {
    background-image: url("../assets/img/home-estetica-mob.webp");
  }
}

#header-odonto {
  width: 100%;
  height: 399px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/img/home-odontologia.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 64rem) {
  #header-odonto {
    background-image: url("../assets/img/odontologia.webp");
  }
}

#header-fisioterapia {
  width: 100%;
  height: 399px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/img/home-fisioterapia.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 64rem) {
  #header-fisioterapia {
    background-image: url("../assets/img/home-fisioterapia-mob.webp");
  }
}
#header-nutri {
  width: 100%;
  height: 399px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/img/home-nutricao.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 64rem) {
  #header-nutri {
    background-image: url("../assets/img/home-nutricao.webp");
  }
}

#after-about {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #f1f1f1;
}
@media (max-width: 1024px) {
  #after-about {
    padding: 4.5rem 0;
  }
}
#after-about .container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 4rem;
}
#after-about .container a button {
  font-size: 15px;
  font-weight: 500;
  color: #6e0015;
  border-radius: 23px;
  border: 1px solid #6e0015;
  width: 168px;
  height: 38px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.5s ease;
}
#after-about .container a button:hover {
  transform: scale(0.95);
}
#after-about .container a button img {
  width: 15px;
  height: 9px;
  transform: rotate(180deg);
}
#after-about .container .all {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  gap: 4rem;
}
#after-about .container .all .text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 2rem;
}
#after-about .container .all .text h1 {
  color: #6e0015;
  font-size: 26px;
  font-weight: 700;
}
#after-about .container .all .text p {
  color: #636363;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}
#after-about .container .all .socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
#after-about .container .all .socials .small {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
#after-about .container .all .socials .small a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #21201e;
  font-weight: 500;
}
#after-about .container .all .socials .small a img {
  width: 50px;
  height: 50px;
}

@media (max-width: 1024px) {
  #after-about {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #f1f1f1;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #after-about {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #after-about .container {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 4rem;
  }
  #after-about .container a button {
    font-size: 15px;
    font-weight: 500;
    color: #6e0015;
    border-radius: 23px;
    border: 1px solid #6e0015;
    width: 168px;
    height: 38px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.5s ease;
  }
  #after-about .container a button:hover {
    transform: scale(0.95);
  }
  #after-about .container a button img {
    width: 15px;
    height: 9px;
    transform: rotate(180deg);
  }
  #after-about .container .all {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 4rem;
  }
  #after-about .container .all .text {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 2rem;
  }
  #after-about .container .all .text h1 {
    color: #6e0015;
    font-size: 26px;
    font-weight: 700;
  }
  #after-about .container .all .text p {
    color: #636363;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
  }
  #after-about .container .all .socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }
  #after-about .container .all .socials .small {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }
  #after-about .container .all .socials .small a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #21201e;
    font-weight: 500;
  }
  #after-about .container .all .socials .small a img {
    width: 50px;
    height: 50px;
  }
}
#after-medicina {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #f1f1f1;
}
@media (max-width: 1024px) {
  #after-medicina {
    padding: 4.5rem 0;
  }
}
#after-medicina .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
#after-medicina .container .btn {
  width: 65%;
}
#after-medicina .container .btn a {
  width: 80%;
}
#after-medicina .container .btn a button {
  font-size: 15px;
  font-weight: 500;
  color: #6e0015;
  border-radius: 23px;
  border: 1px solid #6e0015;
  width: 168px;
  height: 38px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.5s ease;
}
#after-medicina .container .btn a button:hover {
  transform: scale(0.95);
}
#after-medicina .container .btn a button img {
  width: 15px;
  height: 9px;
  transform: rotate(180deg);
}
#after-medicina .container .all {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  gap: 4rem;
  width: 80%;
}
#after-medicina .container .all .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
#after-medicina .container .all .text h1 {
  color: #6e0015;
  font-size: 26px;
  font-weight: 700;
  width: 80%;
  display: flex;
  align-items: start;
  justify-content: start;
}
#after-medicina .container .all .text p {
  color: #636363;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  width: 80%;
}
#after-medicina .container .all img {
  width: 100%;
  height: 380px;
}

@media (max-width: 1024px) {
  #after-medicina {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #f1f1f1;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #after-medicina {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #after-medicina .container {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 4rem;
    width: 80%;
  }
  #after-medicina .container a button {
    font-size: 15px;
    font-weight: 500;
    color: #6e0015;
    border-radius: 23px;
    border: 1px solid #6e0015;
    width: 168px;
    height: 38px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.5s ease;
  }
  #after-medicina .container a button:hover {
    transform: scale(0.95);
  }
  #after-medicina .container a button img {
    width: 15px;
    height: 9px;
    transform: rotate(180deg);
  }
  #after-medicina .container .all {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 4rem;
    width: 100%;
  }
  #after-medicina .container .all .text {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 2rem;
  }
  #after-medicina .container .all .text h1 {
    color: #6e0015;
    font-size: 26px;
    font-weight: 700;
  }
  #after-medicina .container .all .text p {
    color: #636363;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    width: 100%;
  }
}
#after-odonto {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #f1f1f1;
}
@media (max-width: 1024px) {
  #after-odonto {
    padding: 4.5rem 0;
  }
}
#after-odonto .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
#after-odonto .container .btn {
  width: 65%;
}
#after-odonto .container .btn a {
  width: 80%;
}
#after-odonto .container .btn a button {
  font-size: 15px;
  font-weight: 500;
  color: #6e0015;
  border-radius: 23px;
  border: 1px solid #6e0015;
  width: 168px;
  height: 38px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.5s ease;
}
#after-odonto .container .btn a button:hover {
  transform: scale(0.95);
}
#after-odonto .container .btn a button img {
  width: 15px;
  height: 9px;
  transform: rotate(180deg);
}
#after-odonto .container .all {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  gap: 4rem;
  width: 80%;
}
#after-odonto .container .all .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
#after-odonto .container .all .text h1 {
  color: #6e0015;
  font-size: 26px;
  font-weight: 700;
  width: 80%;
  display: flex;
  align-items: start;
  justify-content: start;
}
#after-odonto .container .all .text p {
  color: #636363;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  width: 80%;
}
#after-odonto .container .all img {
  width: 100%;
  height: 380px;
}

@media (max-width: 1024px) {
  #after-odonto {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #f1f1f1;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #after-odonto {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #after-odonto .container {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 4rem;
    width: 80%;
  }
  #after-odonto .container a button {
    font-size: 15px;
    font-weight: 500;
    color: #6e0015;
    border-radius: 23px;
    border: 1px solid #6e0015;
    width: 168px;
    height: 38px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.5s ease;
  }
  #after-odonto .container a button:hover {
    transform: scale(0.95);
  }
  #after-odonto .container a button img {
    width: 15px;
    height: 9px;
    transform: rotate(180deg);
  }
  #after-odonto .container .all {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 4rem;
    width: 100%;
  }
  #after-odonto .container .all .text {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 2rem;
  }
  #after-odonto .container .all .text h1 {
    color: #6e0015;
    font-size: 26px;
    font-weight: 700;
  }
  #after-odonto .container .all .text p {
    color: #636363;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    width: 100%;
  }
}
#after-estetica {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #f1f1f1;
}
@media (max-width: 1024px) {
  #after-estetica {
    padding: 4.5rem 0;
  }
}
#after-estetica .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
#after-estetica .container .btn {
  width: 65%;
}
#after-estetica .container .btn a {
  width: 80%;
}
#after-estetica .container .btn a button {
  font-size: 15px;
  font-weight: 500;
  color: #6e0015;
  border-radius: 23px;
  border: 1px solid #6e0015;
  width: 168px;
  height: 38px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.5s ease;
}
#after-estetica .container .btn a button:hover {
  transform: scale(0.95);
}
#after-estetica .container .btn a button img {
  width: 15px;
  height: 9px;
  transform: rotate(180deg);
}
#after-estetica .container .all {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  gap: 4rem;
  width: 80%;
}
#after-estetica .container .all .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
#after-estetica .container .all .text h1 {
  color: #6e0015;
  font-size: 26px;
  font-weight: 700;
  width: 80%;
  display: flex;
  align-items: start;
  justify-content: start;
}
#after-estetica .container .all .text p {
  color: #636363;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  width: 80%;
}
#after-estetica .container .all .text p span {
  font-size: 16px;
  font-weight: 700;
}
#after-estetica .container .all img {
  width: 100%;
  height: 380px;
}

@media (max-width: 1024px) {
  #after-estetica {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #f1f1f1;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #after-estetica {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #after-estetica .container {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 4rem;
    width: 80%;
  }
  #after-estetica .container a button {
    font-size: 15px;
    font-weight: 500;
    color: #6e0015;
    border-radius: 23px;
    border: 1px solid #6e0015;
    width: 168px;
    height: 38px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.5s ease;
  }
  #after-estetica .container a button:hover {
    transform: scale(0.95);
  }
  #after-estetica .container a button img {
    width: 15px;
    height: 9px;
    transform: rotate(180deg);
  }
  #after-estetica .container .all {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 4rem;
    width: 100%;
  }
  #after-estetica .container .all .text {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 2rem;
  }
  #after-estetica .container .all .text h1 {
    color: #6e0015;
    font-size: 26px;
    font-weight: 700;
  }
  #after-estetica .container .all .text p {
    color: #636363;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    width: 100%;
  }
}
#after-fisioterapia {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #f1f1f1;
}
@media (max-width: 1024px) {
  #after-fisioterapia {
    padding: 4.5rem 0;
  }
}
#after-fisioterapia .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
#after-fisioterapia .container .btn {
  width: 65%;
}
#after-fisioterapia .container .btn a {
  width: 80%;
}
#after-fisioterapia .container .btn a button {
  font-size: 15px;
  font-weight: 500;
  color: #6e0015;
  border-radius: 23px;
  border: 1px solid #6e0015;
  width: 168px;
  height: 38px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.5s ease;
}
#after-fisioterapia .container .btn a button:hover {
  transform: scale(0.95);
}
#after-fisioterapia .container .btn a button img {
  width: 15px;
  height: 9px;
  transform: rotate(180deg);
}
#after-fisioterapia .container .all {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  gap: 4rem;
  width: 80%;
}
#after-fisioterapia .container .all .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
#after-fisioterapia .container .all .text h1 {
  color: #6e0015;
  font-size: 26px;
  font-weight: 700;
  width: 80%;
  display: flex;
  align-items: start;
  justify-content: start;
}
#after-fisioterapia .container .all .text p {
  color: #636363;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  width: 80%;
}
#after-fisioterapia .container .all .text p span {
  font-size: 16px;
  font-weight: 700;
}
#after-fisioterapia .container .all img {
  width: 100%;
  height: 380px;
}

@media (max-width: 1024px) {
  #after-fisioterapia {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #f1f1f1;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #after-fisioterapia {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #after-fisioterapia .container {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 4rem;
    width: 80%;
  }
  #after-fisioterapia .container a button {
    font-size: 15px;
    font-weight: 500;
    color: #6e0015;
    border-radius: 23px;
    border: 1px solid #6e0015;
    width: 168px;
    height: 38px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.5s ease;
  }
  #after-fisioterapia .container a button:hover {
    transform: scale(0.95);
  }
  #after-fisioterapia .container a button img {
    width: 15px;
    height: 9px;
    transform: rotate(180deg);
  }
  #after-fisioterapia .container .all {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 4rem;
    width: 100%;
  }
  #after-fisioterapia .container .all .text {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 2rem;
  }
  #after-fisioterapia .container .all .text h1 {
    color: #6e0015;
    font-size: 26px;
    font-weight: 700;
  }
  #after-fisioterapia .container .all .text p {
    color: #636363;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    width: 100%;
  }
}
#after-nutri {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #f1f1f1;
}
@media (max-width: 1024px) {
  #after-nutri {
    padding: 4.5rem 0;
  }
}
#after-nutri .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
#after-nutri .container .btn {
  width: 65%;
}
#after-nutri .container .btn a {
  width: 80%;
}
#after-nutri .container .btn a button {
  font-size: 15px;
  font-weight: 500;
  color: #6e0015;
  border-radius: 23px;
  border: 1px solid #6e0015;
  width: 168px;
  height: 38px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.5s ease;
}
#after-nutri .container .btn a button:hover {
  transform: scale(0.95);
}
#after-nutri .container .btn a button img {
  width: 15px;
  height: 9px;
  transform: rotate(180deg);
}
#after-nutri .container .all {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  gap: 4rem;
  width: 80%;
}
#after-nutri .container .all .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
#after-nutri .container .all .text h1 {
  color: #6e0015;
  font-size: 26px;
  font-weight: 700;
  width: 80%;
  display: flex;
  align-items: start;
  justify-content: start;
}
#after-nutri .container .all .text p {
  color: #636363;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  width: 80%;
}
#after-nutri .container .all .text p span {
  font-size: 16px;
  font-weight: 700;
}
#after-nutri .container .all img {
  width: 100%;
  height: 380px;
}

@media (max-width: 1024px) {
  #after-nutri {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #f1f1f1;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #after-nutri {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #after-nutri .container {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 4rem;
    width: 80%;
  }
  #after-nutri .container a button {
    font-size: 15px;
    font-weight: 500;
    color: #6e0015;
    border-radius: 23px;
    border: 1px solid #6e0015;
    width: 168px;
    height: 38px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.5s ease;
  }
  #after-nutri .container a button:hover {
    transform: scale(0.95);
  }
  #after-nutri .container a button img {
    width: 15px;
    height: 9px;
    transform: rotate(180deg);
  }
  #after-nutri .container .all {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 4rem;
    width: 100%;
  }
  #after-nutri .container .all .text {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 2rem;
  }
  #after-nutri .container .all .text h1 {
    color: #6e0015;
    font-size: 26px;
    font-weight: 700;
  }
  #after-nutri .container .all .text p {
    color: #636363;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    width: 100%;
  }
}
#img {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  #img {
    padding: 4.5rem 0;
  }
}

@media (max-width: 1024px) {
  #img {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    padding: 0 !important;
    display: grid;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #img {
    padding: 4.5rem 0;
  }
}
#benefit {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #f1f1f1;
  padding: 0;
}
@media (max-width: 1024px) {
  #benefit {
    padding: 4.5rem 0;
  }
}
#benefit .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
#benefit .container .all {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  gap: 4rem;
  width: 80%;
}
#benefit .container .all .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
#benefit .container .all .text ul {
  width: 77%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 0.2rem;
}
#benefit .container .all .text ul li {
  color: #636363;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  list-style: disc;
}
#benefit .container .all .text h1 {
  color: #6e0015;
  font-size: 26px;
  font-weight: 700;
  width: 80%;
  display: flex;
  align-items: start;
  justify-content: start;
}
#benefit .container .all .text p {
  color: #636363;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  width: 80%;
}
#benefit .container .all .button {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: start;
}
#benefit .container .all .button a button {
  width: 168px;
  height: 45px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background-color: #6e0015;
  cursor: pointer;
  transition: all 0.3s ease;
}
#benefit .container .all .button a button:hover {
  transform: translateY(-3px);
  color: #6e0015;
  border: none;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 1024px) {
  #benefit {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #f1f1f1;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #benefit {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #benefit .container {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 4rem;
    width: 80%;
  }
  #benefit .container a button {
    font-size: 15px;
    font-weight: 500;
    color: #6e0015;
    border-radius: 23px;
    border: 1px solid #6e0015;
    width: 168px;
    height: 38px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.5s ease;
  }
  #benefit .container a button:hover {
    transform: scale(0.95);
  }
  #benefit .container a button img {
    width: 15px;
    height: 9px;
    transform: rotate(180deg);
  }
  #benefit .container .all {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 4rem;
    width: 100%;
  }
  #benefit .container .all .text {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 2rem;
  }
  #benefit .container .all .text ul {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 0.2rem;
    padding-left: 1.4rem;
  }
  #benefit .container .all .text ul li {
    color: #636363;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
    list-style: disc;
  }
  #benefit .container .all .text h1 {
    color: #6e0015;
    font-size: 26px;
    font-weight: 700;
  }
  #benefit .container .all .text p {
    color: #636363;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    width: 100%;
  }
}

/* section implantes */
#implantes {
  display: grid;
  place-items: center;
  background: #21201e;
  height: fit-content;
  padding: 5% 0 0;
}
#implantes .cont-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#implantes .cont-text h1 {
  color: #fff;
  font-size: 25px;
  font-weight: 600;
}
#implantes .container-mob {
  display: none;
}
#implantes .container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}
#implantes .container .cont {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 2rem;
  width: 100%;
  height: fit-content;
  padding: 5% 0;
  opacity: 1;
}
#implantes .container .cont:nth-child(2) {
  position: absolute;
  /* opacity: 0; */
}
#implantes .container .cont .text {
  width: 50%;
  left: 5%;
  opacity: 0;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem 0;
}
#implantes .container .cont .text h1,
#implantes .container .cont .text p {
  color: #fff;
  width: 80%;
  line-height: 1.5rem;
}
#implantes .container .cont .img {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  transition: all 0.5s ease;
}
#implantes .container .cont:nth-child(2) .img {
  align-items: start;
}
#implantes .container .cont:nth-child(2) .text {
  left: auto;
  right: 5%;
  transition: all 0.5s ease;
}
#implantes .container .cont .img img {
  width: 45%;
  height: auto;
  z-index: 1;
  object-fit: cover;
  transition: all 0.5s ease;
}

@media (max-width: 800px) {
  #implantes {
    padding: 10% 0;
    gap: 2rem 0;
  }
  #implantes .cont-text {
    width: 80%;
  }
  #implantes .cont-text h1 {
    font-size: 20px;
  }
  #implantes .container {
    display: none;
  }

  #implantes .container-mob {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  #implantes .container-mob .cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: fit-content;
    padding: 5% 0;
    opacity: 1;
  }
  #implantes .container-mob .cont .text {
    width: 100%;
    opacity: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem 0;
  }
  #implantes .container-mob .cont .text p {
    font-size: 15px;
  }
  #implantes .container-mob .cont .text h1,
  #implantes .container-mob .cont .text p {
    color: #fff;
    width: 100%;
    line-height: 1.5rem;
  }
  #implantes .container-mob .cont .img {
    position: absolute;
    bottom: 5%;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
  }
  #implantes .container-mob .cont:nth-child(2) .img {
    bottom: auto;
    top: 5%;
    transition: all 0.5s ease;
  }
  #implantes .container-mob .cont .img img {
    width: 80%;
    height: auto;
    z-index: 1;
    object-fit: cover;
    transition: all 0.5s ease;
  }
}

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