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

::-webkit-scrollbar {
  background-color: #2F4E73;
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #012653;
  border-radius: 9px;
}

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

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

.container {
  width: 80%;
}
@media (max-width: 1024px) {
  .container {
    width: 83%;
  }
}
@media (min-width: 100rem) {
  .container {
    width: 60%;
  }
}

h1 {
  font-weight: 700;
  color: #012653;
}
h1.w {
  color: #fff;
}

p {
  font-size: 18px;
  color: #fff;
}
p.small {
  font-size: 15px;
}
p.text {
  color: #8B8B8B;
}
p.grey {
  color: #3D3D3D;
}

nav {
  width: 100%;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  position: fixed;
  z-index: 999999999;
  /* padding-top: 3rem; */
  transition: all 0.3s ease-in-out;
}
nav.support {
  background-color: #2F4E73;
}
nav[data-scrolled=true] {
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  background: rgba(49, 49, 49, 0.2941176471) 0% 0% no-repeat padding-box;
}
nav .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  gap: 0 3rem;
  width: 90%;
}
nav .container img {
  width: fit-content;
  height: 70px;
}
nav .container ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 2rem;
  right: 0;
  width: fit-content;
  position: relative;
}
nav .container ul li {
  width: fit-content;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav .container ul li a {
  color: #fff;
  display: block;
  text-align: center;
  font-size: 14px;
  padding: 5px 0px;
  transition: all 0.5s ease;
  opacity: 0.8;
  position: relative;
  padding: 5px 10px;
}
nav .container ul li a:hover {
  transition: all 0.3s ease-in-out;
}
nav .container ul a::after {
  content: "";
  position: absolute;
  display: flex;
  width: 0%;
  height: 0%;
  border: 1.5px solid #fff;
  border-right: transparent;
  border-top: transparent;
  bottom: 0;
  left: 0;
  transition: all 0.5s ease;
  opacity: 0;
}
nav .container ul a::before {
  content: "";
  position: absolute;
  display: flex;
  width: 0%;
  height: 0%;
  border: 1.5px solid #fff;
  border-left: transparent;
  border-bottom: transparent;
  top: 0;
  right: 0;
  transition: all 0.5s ease;
  opacity: 0;
}
nav .container ul a:hover::after {
  width: 98%;
  height: 95%;
  opacity: 1;
}
nav .container ul a:hover::before {
  width: 98%;
  height: 95%;
  opacity: 1;
}
nav .container .socials {
  display: flex;
  width: 10%;
  flex-direction: row;
  gap: 0 0.5rem;
  cursor: pointer;
}
nav .container .socials a img {
  width: 38px;
  height: 38px;
  transition: all 0.3s ease-in-out;
}
nav .container .socials a img:hover {
  transform: translateY(-3px);
}
nav #sidebar__nav {
  display: none;
}

@media (max-width: 1024px) {
  nav[data-scrolled=true] {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #2F4E73;
  }
  nav .container img{
    position: absolute;
    left: 10%;
    transition: all 0.5s ease;
  }
  nav.nav .container img{
    left: 5%;
  }
  nav[data-scrolled=true] .container img{
    position: absolute;
    left: 10%;
  }
  nav .container {
    width: 100%;
    position: relative;
  }
  nav .container ul {
    display: none;
  }
  nav .container .socials {
    display: none;
  }
  nav .container #nav__btn {
    width: 25px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem 0;
    z-index: 999;
    transition: all 0.5s ease;
    position: absolute;
    right: 10%;
  }
  nav .container #nav__btn .line {
    display: block;
    width: 18px;
    height: 3px;
    background-color: #fff;
    position: relative;
  }
  nav .container #nav__btn[data-active=true] {
    margin-right: 60%;
    top: 16%;
    transition: all 0.5s ease;
  }
  nav .container #nav__btn[data-active=true] .line {
    background-color: #fff;
  }
  nav .container #nav__btn[data-active=true] .line:nth-child(1) {
    width: 100%;
    transform: rotateZ(226deg) translateY(-10px);
    transition: all 0.5s ease;
  }
  nav .container #nav__btn[data-active=true] .line:nth-child(2) {
    width: 0;
    transition: all 0.5s ease;
  }
  nav .container #nav__btn[data-active=true] .line:nth-child(3) {
    width: 100%;
    transform: rotateZ(-225deg) translateY(12px);
    transition: all 0.5s ease;
  }
  nav #sidebar__nav {
    position: fixed;
    z-index: 998;
    top: 0;
    bottom: 0;
    visibility: hidden;
    width: 75%;
    background-color: #012653;
    right: -75%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  nav #sidebar__nav ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  nav #sidebar__nav ul li {
    color: #fff;
    font-size: 22px;
  }
  nav #sidebar__nav[data-active=true] {
    visibility: visible;
    right: 0;
  }
}
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;
  overflow: visible;
}
/* @media screen and (max-width: 64rem) {
  header {
    background-image: url("../assets/images/home-mob.jpg");
  }
} */
header .flutuante {
  display: block;
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 999999;
  width: fit-content;
  height: fit-content;
}
header .flutuante a img {
  width: 40px;
  height: 40px;
}
header .container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: start;
}
header #car{
  width: 100%;
  height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  background-color: #000;
}

header #car .mySwiper-home{
  width: 100%;
  height: 100%;
}
header #car .mySwiper-home .swiper-wrapper .swiper-slide{
  position: relative;
  display: grid;
  place-items: center;
}
header #car .mySwiper-home .swiper-wrapper .swiper-slide .text button{
  width: 157px;
  height: 40px;
  background: #012653;
  color: #fff;
  border-radius: 9px;
  cursor: pointer;
  transition: .5s;
}
header #car .mySwiper-home .swiper-wrapper .swiper-slide .text button:hover {
  transform: translateY(-3px);
  color: #012653;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
header #car .mySwiper-home .swiper-wrapper .swiper-slide .text {
  width: 80%;
  display: grid;
  gap: 2rem 0;
  z-index: 1;
}
header #car .mySwiper-home .swiper-wrapper .swiper-slide h1 {
  width: 45%;
  color: #fff;
}

header #car .mySwiper-home .swiper-wrapper .swiper-slide img{
  position: absolute;
  width: 100%;
  height: 100%;
}
header #car .mySwiper-home .swiper-wrapper .swiper-slide #home-mob{
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0;
}

header .container .socials {
  display: none;
}
header .arrow {
  width: 41px;
  height: 41px;
  position: absolute;
  bottom: 10px;
  z-index: 9999999;
}

@media (max-width: 1024px) {
  header {
    place-items: center;
  }
  header .container {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 85%;
    gap: 3rem 0;
  }
  header .container #nav__btn {
    display: flex;
  }
  header .container #car{
    width: 100vw;
    height: 100vh;
  }
  header .container #car .mySwiper-home .swiper-wrapper .swiper-slide img{
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
  }
  header .container #car .mySwiper-home .swiper-wrapper .swiper-slide #home-mob{
    display: flex;
    opacity: 1;
  }
  header .container #car .mySwiper-home .swiper-wrapper .swiper-slide .text {
    height: 60%;
    width: 90%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    gap: 1rem 0;
  }
  header .container #car .mySwiper-home .swiper-wrapper .swiper-slide .text h1{
    width: 100%;
    font-size: 25px;
  }
  header .container #car .mySwiper-home .swiper-wrapper .swiper-slide .text p{
    font-size: 18px !important;
    opacity: .9;
  }
  header .container .socials {
    display: flex;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 1rem;
    position: absolute;
    bottom: 10%;
    z-index: 9;
  }
  header .container .socials img {
    width: 38px;
    height: 38px;
  }
}
#after-header {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #012653;
}
@media (max-width: 1024px) {
  #after-header {
    padding: 4.5rem 0;
  }
}
#after-header .container {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 0 8rem;
}
#after-header .container .title {
  display: flex;
  align-items: center;
  justify-content: end;
}
#after-header .container .title h1 {
  color: #fff;
  width: 60%;
  font-size: 24px;
  font-weight: 700;
}
#after-header .container .text p {
  width: 63%;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  #after-header .container {
    grid-template-columns: 1fr;
    gap: 2rem 0;
    padding: 0rem;
  }
  #after-header .container .title {
    justify-content: start;
  }
  #after-header .container .title h1 {
    width: 100%;
    font-size: 22px;
  }
  #after-header .container .text p {
    width: 100%;
    font-size: 15px;
  }
}
#meet {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #012653;
  /* padding-top: 0; */
}
@media (max-width: 1024px) {
  #meet {
    padding: 4.5rem 0;
  }
}
#meet .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  border-radius: 14px;
  background-color: #2F4E73;
  gap: 0 2rem;
  overflow: hidden;
  position: relative;
}
#meet .container .meet__swiper {
  width: 40vw;
  position: relative;
}
#meet .container .meet__swiper .swiper-pagination {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 5%;
}
#meet .container .meet__swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: #3D3D3D;
}
#meet .container .meet__swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  gap: 0.5rem 0;
}
#meet .container .meet__swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
}
#meet .container .text {
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.7rem 0;
}
#meet .container .text h1 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}
#meet .container .text p {
  width: 90%;
  line-height: 2.1;
  font-size: 12px;
  color: #fff;
}
#meet .container .text a {
  width: 145px;
  color: #fff;
}
#meet .container .text a button {
  background-color: transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: visible;
  gap: 0 0.5rem;
  height: 15px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
#meet .container .text a button img {
  width: 18px;
  height: 13px;
}

@media (max-width: 1024px) {
  #meet .container {
    grid-template-columns: 1fr;
    place-items: center;
  }
  #meet .container .meet__swiper {
    width: 82vw;
    position: relative;
  }
  #meet .container .meet__swiper .swiper-pagination {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 5%;
  }
  #meet .container .meet__swiper .swiper-pagination .swiper-pagination-bullet {
    background-color: #3D3D3D;
  }
  #meet .container .meet__swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    gap: 0.5rem 0;
  }
  #meet .container .meet__swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
  }
  #meet .container .text {
    padding: 3rem 1rem;
    align-items: start;
    justify-content: center;
  }
  #meet .container .text h1 {
    width: 100%;
    font-size: 20px;
  }
  #meet .container .text p {
    line-height: 1.8;
    font-weight: 12px;
    padding-left: 0;
  }
  #meet .container .text a button {
    font-size: 15px;
    font-weight: 700;
  }
}
#transform {
  width: 100%;
  height: 458px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/banner1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 64rem) {
  #transform {
    background-image: url("../assets/images/banner1-mob.jpg");
  }
}
#transform .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
}
#transform .container .text {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  text-align: end;
  gap: 1rem 0;
}
#transform .container .text h1 {
  font-size: 26px;
  font-weight: 700;
  width: 35%;
}
#transform .container .text p {
  font-size: 18px;
  width: 37%;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  #transform {
    height: 576px;
    place-items: start center;
  }
  #transform .container {
    justify-content: center;
    align-items: center;
    padding-top: 3rem;
  }
  #transform .container .text {
    align-items: center;
    text-align: center;
  }
  #transform .container .text h1 {
    text-align: center;
    font-size: 20px;
    width: 100%;
  }
  #transform .container .text p {
    width: 100%;
    font-size: 14px;
  }
}
#procedures {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
@media (max-width: 1024px) {
  #procedures {
    padding: 4.5rem 0;
  }
}
#procedures .container {
  display: flex;
  flex-direction: column;
  gap: 3rem 0;
  align-items: center;
  justify-content: center;
}
#procedures .container a button {
  width: 153px;
  height: 39px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background-color: #012653;
  cursor: pointer;
  transition: all 0.3s ease;
}
#procedures .container a button:hover {
  transform: translateY(-3px);
  color: #012653;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#procedures .container .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
#procedures .container .title h3 {
  font-size: 13px;
  color: #8B8B8B;
}
#procedures .container .treatments {
  display: flex;
  flex-direction: row;
  gap: 0 1rem;
  overflow: hidden;
  width: 80vw;
}
#procedures .container .treatments .all {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 1rem 0;
  padding: 0 0.8rem;
  cursor: pointer;
}
#procedures .container .treatments .all::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  background: rgba(61, 61, 61, 0.4392156863);
  z-index: 99;
}
#procedures .container .treatments .all span {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  z-index: 999;
}
#procedures .container .treatments .all p {
  font-size: 15px;
  width: 90%;
  z-index: 999;
}
#procedures .container .treatments .all button {
  font-size: 13px;
  background-color: transparent;
  color: #fff;
}
#procedures .container .treatments .one {
  width: 100%;
  height: 319px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/clinica-geral.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: end;
  padding-bottom: 2rem;
}
@media screen and (max-width: 64rem) {
  #procedures .container .treatments .one {
    background-image: url("../assets/images/clinica-geral.jpg");
  }
}
#procedures .container .treatments .two {
  width: 100%;
  height: 319px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/lentes-de-contato.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: end;
  padding-bottom: 2rem;
}
@media screen and (max-width: 64rem) {
  #procedures .container .treatments .two {
    background-image: url("../assets/images/lentes-de-contato.jpg");
  }
}
#procedures .container .treatments .three {
  width: 100%;
  height: 319px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/periodontia.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: end;
  padding-bottom: 2rem;
}
@media screen and (max-width: 64rem) {
  #procedures .container .treatments .three {
    background-image: url("../assets/images/periodontia.jpg");
  }
}
#procedures .container .treatments .for {
  width: 100%;
  height: 319px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/clareamento-dental.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: end;
  padding-bottom: 2rem;
}
@media screen and (max-width: 64rem) {
  #procedures .container .treatments .for {
    background-image: url("../assets/images/clareamento-dental.png");
  }
}
#procedures .container .treatments .five {
  width: 100%;
  height: 319px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/implantodontia.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: end;
  padding-bottom: 2rem;
}
@media screen and (max-width: 64rem) {
  #procedures .container .treatments .five {
    background-image: url("../assets/images/implantodontia.jpg");
  }
}
#procedures .container .treatments .six {
  width: 100%;
  height: 319px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/endodontia.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: end;
  padding-bottom: 2rem;
}
@media screen and (max-width: 64rem) {
  #procedures .container .treatments .six {
    background-image: url("../assets/images/endodontia.jpg");
  }
}

.modal-container {
  position: fixed;
  z-index: 999999999;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
}
.modal-container[data-active=true] {
  opacity: 1;
  pointer-events: all;
}
.modal-container .modal {
  background-color: #012653;
  width: 55%;
  height: 65%;
  text-align: center;
  padding-top: 0;
  line-height: 1.3;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.modal-container .modal img {
  width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
}
.modal-container .modal #fechar {
  position: absolute;
  z-index: 9999;
  cursor: pointer;
  top: 5%;
  right: 3%;
  background-color: transparent;
}
.modal-container .modal #fechar img {
  width: 1rem;
  height: 1rem;
}
.modal-container .modal .text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 0 3.5rem;
  text-align: start;
  gap: 1rem 0;
}
.modal-container .modal .text h1 {
  font-size: 24px;
  color: #fff;
}
.modal-container .modal .text p {
  font-size: 14px;
  color: #fff;
}

@media (max-width: 1024px) {
  #procedures .container .title h1 {
    font-size: 26px;
  }
  #procedures .container .treatments {
    gap: 2rem 0;
    flex-direction: column;
    width: 80vw;
  }
}
@media (min-width: 100rem) {
  .modal-container .modal {
    height: 50%;
  }
}
@media (max-width: 1024px) {
  .modal-container .modal {
    width: 85%;
    height: fit-content;
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .modal-container .modal .image {
    display: flex;
    height: 250px;
  }
  .modal-container .modal .text {
    padding: 3rem 2.5rem;
  }
}
#depoiments {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  padding-top: 0;
}
@media (max-width: 1024px) {
  #depoiments {
    padding: 4.5rem 0;
  }
}
#depoiments .container {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  position: relative;
}
#depoiments .container .arrow {
  width: 100%;
  align-items: center;
  justify-content: end;
  right: 13%;
  bottom: 20px;
  display: flex;
  flex-direction: row;
  position: relative;
  gap: 0 1rem;
  cursor: pointer;
}
#depoiments .container .arrow img {
  width: 35px;
  height: 35px;
}
#depoiments .container .arrow .left {
  transform: rotate(90deg);
}
#depoiments .container .arrow .right {
  transform: rotate(270deg);
}
#depoiments .container .title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
#depoiments .container .title h3 {
  font-size: 15px;
  color: #8B8B8B;
}
#depoiments .container .title h1 {
  font-size: 26px;
  width: 70%;
  text-align: center;
}
#depoiments .container .depoiments__swiper {
  left: 10%;
  width: 100vw;
  gap: 0 2rem;
  position: relative;
}
#depoiments .container .depoiments__swiper .swiper-pagination {
  display: none;
}
#depoiments .container .depoiments__swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 209px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 0 2rem;
  border-radius: 14px;
  background-color: #2F4E73;
  gap: 0.5rem 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
#depoiments .container .depoiments__swiper .swiper-wrapper .swiper-slide h1 {
  color: #fff;
  font-size: 15px;
}
#depoiments .container .depoiments__swiper .swiper-wrapper .swiper-slide p {
  font-size: 15px;
}
#depoiments .container .depoiments__swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  position: relative;
}
#depoiments .container .depoiments__swiper .swiper-wrapper .swiper-slide.swiper-slide-active::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 14px;
  background: linear-gradient(90deg, rgb(172, 123, 63) 0%, rgb(242, 229, 204) 50%, rgb(191, 144, 86) 100%);
  bottom: 0;
  left: 0;
  z-index: 99999;
}
#depoiments .container .depoiments__swiper .swiper-button-prev, #depoiments .container .depoiments__swiper .swiper-button-next {
  position: absolute;
  top: 0;
  z-index: 99999;
}

@media (max-width: 1024px) {
  #depoiments {
    padding-top: 0;
  }
  #depoiments .container {
    width: 90%;
    position: relative;
    gap: 3rem 0;
  }
  #depoiments .container .title {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    order: 1;
    gap: 0.3rem 0;
  }
  #depoiments .container .title h1 {
    font-size: 20px;
    width: 80%;
  }
  #depoiments .container .arrow {
    order: 3;
    width: 100%;
    right: 0;
    align-items: center;
    justify-content: center;
    top: 2.5rem;
  }
  #depoiments .container .arrow img {
    width: 48px;
    height: 48px;
  }
  #depoiments .container .depoiments__swiper {
    left: 0;
    order: 2;
    width: 90vw;
  }
  #depoiments .container .depoiments__swiper .swiper-wrapper .swiper-slide {
    padding: 0 3rem;
  }
  #depoiments .container .depoiments__swiper .swiper-wrapper .swiper-slide h1 {
    font-size: 15px;
  }
  #depoiments .container .depoiments__swiper .swiper-wrapper .swiper-slide p {
    font-size: 14px;
  }
}
#dream {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  padding: 0;
}
@media (max-width: 1024px) {
  #dream {
    padding: 4.5rem 0;
  }
}
#dream .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  background-color: #2F4E73;
  width: 100%;
}
#dream .container .text {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: start;
  justify-content: center;
  padding: 0 7rem;
  gap: 1.5rem 0;
  padding-left: 8.5rem;
}
#dream .container .text h1 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
#dream .container .text p {
  font-size: 18px;
  color: #fff;
  width: 100%;
  line-height: 1.8;
}
#dream .container .text a button {
  width: 153px;
  height: 39px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #012653;
  background-color: #D7DFE2;
  cursor: pointer;
  transition: all 0.3s ease;
}
#dream .container .text a button:hover {
  transform: translateY(-3px);
  color: #D7DFE2;
  background-color: #012653;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (max-width: 1024px) {
  #dream {
    padding-bottom: 0;
  }
  #dream .container {
    grid-template-columns: 1fr;
  }
  #dream .container .text {
    padding: 3rem 0.5rem;
    align-items: center;
  }
  #dream .container .text h1 {
    font-size: 20px;
    text-align: center;
    width: 70%;
  }
  #dream .container .text p {
    text-align: center;
    font-size: 14px;
  }
  #dream .container .text a button {
    width: 153px;
    height: 39px;
  }
}
#structure {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  place-items: center start;
  padding-top: 9rem;
}
@media (max-width: 1024px) {
  #structure {
    padding: 4.5rem 0;
  }
}
#structure .container {
  display: flex;
  flex-direction: row;
  gap: 0 8rem;
  width: 100vw;
  align-items: center;
  justify-content: start;
  left: 10%;
  position: relative;
}
#structure .container .arrow {
  width: 100%;
  align-items: center;
  justify-content: end;
  right: 18%;
  top: -24%;
  display: none;
  flex-direction: row;
  position: absolute;
  gap: 0 1rem;
  z-index: 999;
  cursor: pointer;
}
#structure .container .arrow img {
  width: 35px;
  height: 35px;
}
#structure .container .arrow .left {
  transform: rotate(90deg);
}
#structure .container .arrow .right {
  transform: rotate(270deg);
}
#structure .container .text {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#structure .container .text h1 {
  color: #3D3D3D;
  font-size: 30px;
  font-weight: 700;
}
#structure .container .text p {
  font-size: 18px;
  color: #3D3D3D;
  width: 94%;
}
#structure .container .text a button {
  width: 153px;
  height: 39px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background-color: #012653;
  cursor: pointer;
  transition: all 0.3s ease;
}
#structure .container .text a button:hover {
  transform: translateY(-3px);
  color: #012653;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#structure .container .structure__swiper {
  width: 100%;
}
#structure .container .structure__swiper .swiper-wrapper .swiper-slide {
  height: 284px;
  border-radius: 10px;
  overflow: hidden;
  object-fit: cover;
}
#structure .container .structure__swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  display: flex;
  position: relative;
  height: 100%;
}
#structure .container .structure__swiper .swiper-pagination {
  display: none;
}

@media (max-width: 1024px) {
  #structure {
    padding-bottom: 10rem;
  }
  #structure .container {
    flex-direction: column;
    width: 80vw;
    gap: 3rem 0;
  }
  #structure .container .arrow {
    bottom: -140%;
    right: 35%;
    order: 3;
    display: flex;
  }
  #structure .container .text {
    width: 100%;
    order: 1;
    text-align: start;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
  }
  #structure .container .text h1 {
    font-size: 22px;
  }
  #structure .container .text p {
    display: flex;
    font-size: 14px;
    color: #8B8B8B;
    width: 100%;
    line-height: 2;
    gap: 2.5rem 0;
    text-align: center;
  }
  #structure .container .text a button {
    width: 155px;
    height: 39px;
  }
  #structure .container .structure__swiper {
    order: 2;
    width: 100%;
  }
  #structure .container .structure__swiper .swiper-wrapper .swiper-slide {
    height: 427px;
  }
  #structure .container .structure__swiper .swiper-wrapper .swiper-slide img {
    display: flex;
    object-fit: cover;
    overflow: hidden;
    height: 100%;
    width: 100%;
  }
}
#planning {
  width: 100%;
  height: 400px;
  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: center;
  background-color: red;
}
@media screen and (max-width: 64rem) {
  #planning {
    background-image: url("../assets/images/banner3-mob.jpg");
  }
}
#planning .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#planning .container .text {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  text-align: end;
  gap: 1rem 0;
}
#planning .container .text h1 {
  font-size: 26px;
  font-weight: 700;
  width: 60%;
  color: #012653;
}
#planning .container .text p {
  width: 50%;
  line-height: 1.5;
  font-size: 18px;
  font-weight: 400;
  color: #2F4E73;
}

@media (max-width: 1024px) {
  #planning {
    height: 753px;
    place-items: end center;
  }
  #planning::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4392156863);
    z-index: 1;
  }
  #planning .container {
    padding-bottom: 1.5rem;
  }
  #planning .container .text {
    text-align: center;
    align-items: center;
    z-index: 99;
  }
  #planning .container .text h1 {
    font-size: 20px;
    width: 100%;
    color: #fff;
  }
  #planning .container .text p {
    width: 100%;
    font-size: 16px;
    color: #fff;
  }
}
#about {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
@media (max-width: 1024px) {
  #about {
    padding: 4.5rem 0;
  }
}
#about .container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  border-radius: 14px;
  overflow: hidden;
  height: 400px;
}
#about .container .text {
  background-color: #012653;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
#about .container .text p {
  font-size: 17px;
  line-height: 1.7;
  text-align: start;
  width: 70%;
}
#about .container .mbl {
  display: none;
}

@media (max-width: 1024px) {
  #about .container {
    grid-template-columns: 1fr;
    height: fit-content;
  }
  #about .container .text {
    padding: 4rem 0;
  }
  #about .container .text p {
    font-size: 18px;
    width: 81%;
  }
  #about .container .mbl {
    display: flex;
  }
  #about .container .desk {
    display: none;
  }
}
#insta {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #F5F5F5;
}
@media (max-width: 1024px) {
  #insta {
    padding: 4.5rem 0;
  }
}
#insta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem 0;
}
#insta .container a button {
  width: 153px;
  height: 39px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background-color: #012653;
  cursor: pointer;
  transition: all 0.3s ease;
}
#insta .container a button:hover {
  transform: translateY(-3px);
  color: #012653;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#insta .container .title {
  text-align: center;
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem 0;
}
#insta .container .title h3 {
  color: #8B8B8B;
  font-size: 15px;
}
#insta .container .title h1 {
  font-size: 26px;
}
#insta .container .images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 1.5rem;
}
#insta .container .images img {
  width: 231px;
  height: 305px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

@media (max-width: 1024px) {
  #insta .container a button {
    width: 155px;
    height: 39px;
  }
  #insta .container .title {
    width: 90%;
  }
  #insta .container .title h1 {
    font-size: 26px;
  }
  #insta .container .images {
    grid-template-columns: 1fr;
    gap: 1.5rem 0;
  }
}
#odonto-digital {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/banner55.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background: #fff;
  padding: 5% 0 ;
}
/* @media screen and (max-width: 64rem) {
  #odonto-digital {
    background-image: url("../assets/images/banner5-mob.jpg");
  }
} */
#odonto-digital .container {
  background: #012653;
  width: 80%;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  place-items: center;
  padding: 5%;
  border-radius: 14px;
}
#odonto-digital .container .video {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
}
#odonto-digital .container .video video{
  height: fit-content;
  width: 50%;
}
#odonto-digital .container .text {width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
}
#odonto-digital .container .text h1 {
  font-size: 24px;
  width: 100%;
  color: #fff;
}
#odonto-digital .container .text p {
  font-size: 16px;
  width: 100%;
  color: #fff;
  font-weight: 600;
}

#odonto-digital .container .text a button {
  width: 153px;
  height: 39px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 400;
  /* color: #fff;
  background-color: #012653; */
  cursor: pointer;
  transition: all 0.3s ease;
}
#odonto-digital .container .text a button:hover {
  transform: translateY(-3px);
  color: #012653;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (max-width: 1024px) {
  #odonto-digital .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    height: 100%;
  }
  #odonto-digital .container .video {
    align-items: center;
  }
  #odonto-digital .container .video video{
    width: 80%;
  }
  #odonto-digital .container .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  #odonto-digital .container .text h1 {
    font-size: 24px;
    width: 100%;
    color: #fff;
    text-align: center;
  }
  #odonto-digital .container .text p {
    font-size: 16px;
    width: 100%;
    text-align: center;
  }
  #odonto-digital .container .text a button {
    width: 153px;
    height: 39px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #odonto-digital .container .text a button:hover {
    transform: translateY(-3px);
    color: #012653;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
}
#contact {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #2F4E73;
  position: relative;
}
@media (max-width: 1024px) {
  #contact {
    padding: 4.5rem 0;
  }
}
#contact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem 0;
}
#contact .container .title {
  text-align: center;
  width: 68%;
  display: grid;
  gap: 0.3rem;
}
#contact .container .title h1 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
}
#contact .container .title p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
#contact .container .all {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  place-items: center;
}
#contact .container .all .socials {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 100%;
  gap: 1rem;
}
#contact .container .all .socials h1 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
#contact .container .all .socials .social {
  display: flex;
  flex-direction: row;
  gap: 0 0.6rem;
}
#contact .container .all .socials .social a img {
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
}
#contact .container .all .socials .social a img:hover {
  transform: translateY(-3px);
}
#contact .container .all .left {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 2rem 0;
  width: 100%;
}
#contact .container .all .left form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem 0;
}
#contact .container .all .left form input, #contact .container .all .left form select {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  padding-left: 1rem;
  color: #3D3D3D;
  border-radius: 7px;
}
#contact .container .all .left form textarea {
  width: 100%;
  height: 105px;
  border-radius: 7px;
  color: #3D3D3D;
  padding-left: 1rem;
  padding-top: 1rem;
}
#contact .container .all .left form button {
  width: 153px;
  height: 39px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background-color: #012653;
  cursor: pointer;
  transition: all 0.3s ease;
}
#contact .container .all .left form button:hover {
  transform: translateY(-3px);
  color: #012653;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#contact .container .all .right {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
  align-items: center;
  justify-content: center;
  width: fit-content;
}
#contact .container .all .right .contact1 {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 2rem 0;
  width: fit-content;
}
#contact .container .all .right .contact1 h1 {
  color: #fff;
}
#contact .container .all .right .contact1 .location {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#contact .container .all .right .contact1 .location a {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}
#contact .container .all .right .contact1 .location a strong {
  font-weight: 700;
  padding-right: 0.5rem;
}
#contact .container .all .right .contact1 .phone a {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}
#contact .container .all .right .contact1 .phone a strong {
  font-weight: 700;
  padding-right: 0.5rem;
}

@media (max-width: 1024px) {
  #contact {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #contact {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #contact .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem 0;
  }
  #contact .container .title {
    text-align: center;
    width: 68%;
    display: grid;
    gap: 0.3rem;
  }
  #contact .container .title h1 {
    color: #fff;
  }
  #contact .container .title p {
    color: #fff;
  }
  #contact .container .all {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    place-items: center;
  }
  #contact .container .all .socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 1rem;
    order: 2;
  }
  #contact .container .all .socials .social {
    display: flex;
    flex-direction: row;
    gap: 0 0.6rem;
  }
  #contact .container .all .socials .social a img {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
  }
  #contact .container .all .socials .social a img:hover {
    transform: translateY(-3px);
  }
  #contact .container .all .left {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 2rem 0;
    width: 100%;
    order: 1;
  }
  #contact .container .all .left form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem 0;
  }
  #contact .container .all .left form input, #contact .container .all .left form select {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    padding-left: 1rem;
    color: #3D3D3D;
    border-radius: 7px;
  }
  #contact .container .all .left form textarea {
    width: 100%;
    height: 105px;
    border-radius: 7px;
    color: #3D3D3D;
    padding-left: 1rem;
    padding-top: 1rem;
  }
  #contact .container .all .left form button {
    width: 153px;
    height: 39px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background-color: #012653;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #contact .container .all .left form button:hover {
    transform: translateY(-3px);
    color: #012653;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  #contact .container .all .right {
    display: flex;
    flex-direction: column;
    gap: 2rem 0;
    align-items: center;
    justify-content: center;
    width: fit-content;
    order: 3;
  }
  #contact .container .all .right .contact1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem 0;
    width: fit-content;
  }
  #contact .container .all .right .contact1 .location {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    order: 2;
  }
  #contact .container .all .right .contact1 .location a {
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    text-align: center;
  }
  #contact .container .all .right .contact1 .location a strong {
    font-weight: 700;
    padding-right: 0.5rem;
  }
  #contact .container .all .right .contact1 .phone {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    order: 1;
  }
  #contact .container .all .right .contact1 .phone a {
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    text-align: center;
  }
  #contact .container .all .right .contact1 .phone a strong {
    font-weight: 700;
    padding-right: 0.5rem;
  }
}
#support {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  padding-top: 8rem;
}
@media (max-width: 1024px) {
  #support {
    padding: 4.5rem 0;
  }
}
#support .flutuante {
  display: block;
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 999999;
  width: fit-content;
  height: fit-content;
}
#support .flutuante a img {
  width: 40px;
  height: 40px;
}
#support .container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  place-items: center;
  gap: 8rem;
}
#support .container .text {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
}
#support .container .text h1 {
  font-size: 26px;
}
#support .container .text p {
  color: #3D3D3D;
  font-size: 18px;
}

@media (max-width: 1024px) {
  #support {
    padding-top: 10rem;
  }
  #support .container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  #support .container .text {
    text-align: center;
  }
  #support .container .text p {
    text-align: start;
  }
}
#me {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  padding: 0;
}
@media (max-width: 1024px) {
  #me {
    padding: 4.5rem 0;
  }
}
#me .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  gap: 5rem 0;
}
#me .container .title {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#me .container .title h1 {
  font-size: 26px;
}
#me .container .title h3 {
  font-size: 15px;
  color: #8B8B8B;
  font-weight: 400;
}
#me .container .all {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  place-items: center;
  gap: 0 5rem;
}
#me .container .all img {
  width: 100%;
  height: 100%;
}
#me .container .all .text {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
}
#me .container .all .text p {
  color: #3D3D3D;
  font-size: 18px;
}

@media (max-width: 1024px) {
  #me {
    padding: 0;
  }
  #me .container .all {
    grid-template-columns: 1fr;
    gap: 4rem 0;
  }
}
#professionals {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #F5F5F5;
}
@media (max-width: 1024px) {
  #professionals {
    padding: 4.5rem 0;
  }
}
#professionals .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  place-items: center;
}
#professionals .container .title {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
  padding-left: 3rem;
}
#professionals .container .title h1 {
  line-height: 1.3;
  width: 40%;
}
#professionals .container .title p {
  color: #012653;
  width: 50%;
}
#professionals .container .swiper-button-prev,
#professionals .container .swiper-button-next {
  display: flex;
  color: #012653;
  position: absolute;
  z-index: 999999;
}
#professionals .container .swiper-button-prev {
  left: 36%;
}
#professionals .container .swiper-button-next {
  right: 6%;
}
#professionals .container .professionals__swiper {
  width: 50vw;
  height: 319px;
  background-color: #F5F5F5;
}
#professionals .container .professionals__swiper .swiper-pagination {
  display: none;
}
#professionals .container .professionals__swiper .swiper-wrapper {
  align-items: end;
}
#professionals .container .professionals__swiper .swiper-wrapper .swiper-slide {
  padding: 0rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: start;
  justify-content: center;
}

@media (max-width: 1024px) {
  #professionals .container {
    grid-template-columns: 1fr;
    place-items: center;
    gap: 2rem 0;
  }
  #professionals .container .title {
    padding-right: 2.5rem;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  #professionals .container .title h1 {
    width: 100%;
  }
  #professionals .container .title p {
    width: 100%;
  }
  #professionals .container .swiper-button-prev {
    left: 5%;
    top: 60%;
  }
  #professionals .container .swiper-button-next {
    right: 5%;
    top: 60%;
  }
  #professionals .container .professionals__swiper {
    width: 70vw;
    height: 319px;
    background-color: #F5F5F5;
  }
  #professionals .container .professionals__swiper .swiper-pagination {
    display: none;
  }
  #professionals .container .professionals__swiper .swiper-wrapper {
    align-items: end;
  }
  #professionals .container .professionals__swiper .swiper-wrapper .swiper-slide {
    padding: 0rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: start;
    justify-content: center;
  }
}
#implants {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #2F4E73;
}
@media (max-width: 1024px) {
  #implants {
    padding: 4.5rem 0;
  }
}
#implants .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem 0;
}
#implants .container .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem 0;
}
#implants .container .title h2 {
  width: 60%;
  color: #8B8B8B;
  font-size: 16px;
  font-weight: 500;
}
#implants .container .implant {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 1.5rem;
}
#implants .container .implant .one {
  background-color: #F5F5F5;
  color: #012653;
  width: 220px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
}
#implants .container .implant .one span {
  width: 80%;
}
#implants .container a button {
  width: 153px;
  height: 39px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background-color: #012653;
  cursor: pointer;
  transition: all 0.3s ease;
}
#implants .container a button:hover {
  transform: translateY(-3px);
  color: #012653;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.modal-cont {
  position: fixed;
  z-index: 999999999;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
}
.modal-cont[data-active=true] {
  opacity: 1;
  pointer-events: all;
}
.modal-cont[data-active=true] .modal {
  bottom: 0;
}
.modal-cont .modal {
  background-color: #012653;
  width: 100%;
  height: 80%;
  text-align: center;
  place-items: center;
  padding-top: 0;
  bottom: -80%;
  line-height: 1.3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: absolute;
  overflow: hidden;
  border-radius: 0px;
  transition: all 0.8s cubic-bezier(0.5, 0.37, 0.23, 0.98);
}
.modal-cont .modal img {
  width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
}
.modal-cont .modal #fecharr {
  position: absolute;
  z-index: 9999;
  cursor: pointer;
  top: 5%;
  right: 3%;
  background-color: transparent;
}
.modal-cont .modal #fecharr img {
  width: 1.5rem;
  height: 1.5rem;
}
.modal-cont .modal .text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 0 5rem;
  text-align: start;
  gap: 1rem 0;
}
.modal-cont .modal .text h1 {
  font-size: 26px;
  color: #fff;
}
.modal-cont .modal .text p {
  font-size: 18px;
  width: 85%;
  color: #fff;
}

@media (max-width: 1024px) {
  #implants {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #2F4E73;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #implants {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #implants .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem 0;
  }
  #implants .container .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.9rem 0;
  }
  #implants .container .title h1 {
    width: 70%;
    font-size: 24px;
  }
  #implants .container .title h2 {
    width: 90%;
    color: #8B8B8B;
    font-size: 16px;
    font-weight: 500;
  }
  #implants .container .implant {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem 0;
  }
  #implants .container .implant .one {
    background-color: #F5F5F5;
    color: #012653;
    width: 300px;
    height: 80px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
  }
  #implants .container .implant .one span {
    width: 60%;
    line-height: 1.3;
  }
  #implants .container a button {
    width: 153px;
    height: 39px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background-color: #012653;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #implants .container a button:hover {
    transform: translateY(-3px);
    color: #012653;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
}
@media (max-width: 1024px) {
  #modal_cont .modal {
    width: 100%;
    height: fit-content;
    grid-template-columns: 1fr;
    grid-template-rows: 250px 1fr;
  }
  #modal_cont .modal img {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
    object-fit: cover;
  }
  #modal_cont .modal .text {
    padding: 2.5rem;
  }
}
#digital {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #2F4E73;
  padding-top: 10rem;
  padding-bottom: 0;
}

section{
  display: grid;
  place-items: center;
}
#banner .container{
  display: grid;
  place-items: center;
  gap: 1rem 0;
  text-align: center;
  padding: 5% 0 0;
}
#banner .container p{
  color: #3D3D3D;
}
#videos{
  padding: 5% 0;

}
#videos .container{
  display: grid;
  place-items: center;
  gap: 5rem 0;
}
#videos .container .videos{
  display: grid;
  place-items: center;
  grid-template-columns: repeat(2,1fr);
}
#videos .container .videos .texts{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 2rem 0;
  
}
#videos .container .videos .texts .cont p, #videos .container .videos .text p{
  color: #012653;
}
#videos .container .videos .text{
  display: none;
}
#videos .container .videos .video:nth-child(2){
  align-items: end;
}
#videos .container .videos .video{
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 100%;
  gap: 2rem;
}
#videos .container .videos .video video{
  width: 60%;
  height: fit-content;
}

@media (max-width: 1024px) {
  #videos .container .videos{
    grid-template-columns: repeat(1,1fr);
    gap: 3rem 0;
  }
  #videos .container .videos .text{
    display: grid;
    order: 3;
  }
  #videos .container .videos .texts{
    order: 1;
  }
  #videos .container .videos .texts .cont2{
    display: none;
  }
  #videos .container .videos .video:nth-child(2){
    align-items: center;
    order: 2;
  }
  #videos .container .videos .video{
    align-items: center;
  }
  #videos .container .videos .video video{
    width: 80%;
  }
}

@media (max-width: 1024px) {
  #digital {
    padding: 4.5rem 0;
  }
}
#digital .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  padding: 0 0 5%;
}
#digital .container img {
  width: 100%;
  height: 100%;
}
#digital .container .text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 2rem;
}
#digital .container .text h1 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
}
#digital .container .text .ps {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
}
#digital .container .text .ps p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  #digital {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #2F4E73;
    padding-top: 8rem !important;
    padding-bottom: 0 !important;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #digital {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #digital .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  #digital .container img {
    width: 100%;
    height: 100%;
  }
  #digital .container .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  #digital .container .text h1 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
  }
  #digital .container .text .ps {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  #digital .container .text .ps p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
  }
}/*# sourceMappingURL=style.css.map */