@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;800;900;1000&display=swap");
* {
  margin: 0;
  border: 0;
  padding: 0;
  box-sizing: border-box;
  resize: none;
  outline: none;
  list-style: none;
  text-decoration: none;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "Mulish", sans-serif;
}

html {
  scroll-behavior: smooth;
}

section {
  display: grid;
  place-items: center;
  height: -moz-fit-content;
  height: fit-content;
  padding: 5% 0 10%;
  background: #ECECEC;
}

.container {
  width: 80%;
}

a {
  width: -moz-fit-content;
  width: fit-content;
}

button {
  background: #35CBCE;
  font-size: 12px;
  width: 148px;
  height: 40px;
  border-radius: 12px;
  border: none;
  transition: all 0.75s ease;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
}
button:hover {
  transform: scale(0.95);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.0509803922);
}

h1 {
  font-size: 30px;
  color: #fff;
  font-weight: 600;
}

.h2 {
  color: #fff;
}

h2 {
  color: #162550;
  font-size: 30px;
  font-weight: 700;
}

.p {
  color: #fff;
  font-size: 13px;
}

p {
  color: #3E3E3E;
  font-size: 15px;
  font-weight: 500;
}

::-webkit-scrollbar {
  background-color: #1B61C4;
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #ECECEC;
  border-radius: 10px;
}

@media (max-width: 800px) {
  button {
    width: 172px;
    height: 45px;
  }
  button:hover {
    transform: none;
    border-radius: 9px;
  }
  h2 {
    font-size: 24px !important;
  }
  p {
    font-size: 15px;
  }
}
header {
  background: transparent;
  width: 85%;
  position: fixed;
  top: 2%;
  right: 8%;
  height: 15%;
  border-radius: 11px;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 99;
}
header[data-active=true] {
  box-shadow: 0px 12px 6px rgba(255, 255, 255, 0.1294117647);
  background-color: #1B61C4;
}
header nav {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
header nav .logo {
  display: flex;
  align-items: center;
  justify-content: start;
}
header nav .cont {
  width: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
}
header nav .cont ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  list-style-type: none;
  align-items: center;
  gap: 0 2rem;
}
header nav .cont ul a, header nav .cont ul .trat, header nav .cont ul .trat2 {
  color: #fff;
  display: block;
  text-align: start;
  font-size: 12px;
  padding: 5px 15px;
  transition: all 0.5s ease;
  opacity: 1;
  border-bottom: 1px solid transparent;
  cursor: pointer;
}
header nav .cont ul a:hover, header nav .cont ul .trat:hover, header nav .cont ul .trat2:hover {
  color: #fff;
  border-radius: 10px;
  padding: 5px 15px;
  border-bottom: 0.5px solid #fff;
  opacity: 1;
}

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

#home {
  background: url(../assets/img/home.webp);
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  margin: 0;
  padding: 0 10%;
  gap: 6rem 0;
}
#home .text {
  width: 45%;
  display: grid;
  gap: 1rem 0;
  margin-top: 5%;
  z-index: 2;
}
#home .text h1 {
  width: 85%;
  line-height: 2.5rem;
}
#home .text p {
  font-size: 15px;
  width: 70%;
  line-height: 1.5rem;
}
#home .text button {
  margin-top: 3%;
}
#home .icons {
  width: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 0 1rem;
  z-index: 2;
}
#home .icons img {
  width: 23.5px;
  height: 23.5px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in;
}
#home .icons img:hover {
  transform: scale(0.9);
}

@media (min-width: 800px) {
  #home .mob, #home .header-mob, #home #sidebar__nav {
    display: none !important;
  }
}
@media (max-width: 800px) {
  header {
    display: none !important;
  }
  #home {
    background: url(../assets/img/home-mobile.webp);
    height: 100vh;
    display: flex;
    width: 100%;
    position: relative;
    background-size: cover;
    flex-direction: column;
    text-align: center;
    justify-content: end;
  }
  #home::after{
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #00000000, #00000077);
    z-index: 1;
  }
  #home .text {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #home .text h1 {
    display: block;
    width: 90%;
    font-size: 20px;
    line-height: 2rem;
  }
  #home .text p {
    width: 90%;
  }
  #home .text button {
    background: #fff;
    color: #1B61C4;
  }
  #home .icons {
    width: 100%;
    justify-content: center;
    position: relative;
    bottom: 6%;
  }
  #home .header-mob {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
  }
  #home .header-mob .logo {
    position: relative;
    width: 30%;
    top: 5%;
    left: 5%;
  }
  #home .header-mob .logo img {
    width: 100%;
  }
  #home .header-mob #menu__btn {
    position: fixed;
    right: 8%;
    display: flex;
    flex-direction: column;
    gap: 0.3rem 0;
    z-index: 10;
  }
  #home .header-mob #menu__btn .boll {
    width: 34px;
    height: 6px;
    background: #fff;
    border-radius: 50px;
    border: 1px solid #35CBCE;
  }
  #home #sidebar__nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-out;
  }
  #home #sidebar__nav[data-active=true] {
    visibility: visible;
    opacity: 1;
  }
  #home #sidebar__nav[data-active=true] ul {
    right: 0;
    transition: all 0.3s ease-out;
    transition-delay: 0.5s;
  }
  #home #sidebar__nav ul {
    position: absolute;
    width: 80%;
    right: -80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2.5rem 0;
    top: 0;
    bottom: 0;
    background: #1B61C4;
    transition: all 0.2s ease;
  }
  #home #sidebar__nav ul li a, #home #sidebar__nav ul li .trat, #home #sidebar__nav ul li .trat2 {
    display: block;
    width: 100%;
    text-align: start;
    font-size: 1.2rem;
    color: #fff;
  }
  #home #sidebar__nav ul #close__btn {
    position: absolute;
    top: 2%;
    left: 5%;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
  }
  #home #sidebar__nav ul #close__btn svg {
    width: 20px;
    height: 20px;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  overflow-x: hidden;
}

#home-trataments {
  background: url(../assets/img/home-pg.webp);
  height: 80vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  margin: 0;
  padding: 0 10%;
  gap: 6rem 0;
}
#home-trataments .text {
  width: 45%;
  display: grid;
  gap: 1rem 0;
  margin-top: 5%;
}
#home-trataments .text h1 {
  width: 70%;
  font-size: 26px;
  line-height: 2.5rem;
}
#home-trataments .icons {
  width: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 0 1rem;
}
#home-trataments .icons img {
  width: 23.5px;
  height: 23.5px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in;
}
#home-trataments .icons img:hover {
  transform: scale(0.9);
}

@media (min-width: 800px) {
  #home-trataments .mob, #home-trataments .header-mob, #home-trataments #sidebar__nav {
    display: none !important;
  }
}
@media (max-width: 800px) {
  header {
    display: none !important;
  }
  #home-trataments {
    background: url(../assets/img/home-pg-mob.webp);
    height: 85vh;
    display: flex;
    width: 100%;
    position: relative;
    background-size: cover;
    flex-direction: column;
    text-align: center;
    justify-content: end;
  }
  #home-trataments .text {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    bottom: 10%;
  }
  #home-trataments .text h1 {
    width: 80%;
    font-size: 20px;
    line-height: 2rem;
  }
  #home-trataments .header-mob {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
  }
  #home-trataments .header-mob .logo {
    position: relative;
    width: 30%;
    top: 5%;
    left: 5%;
  }
  #home-trataments .header-mob .logo img {
    width: 80%;
  }
  #home-trataments .header-mob #menu__btn {
    position: fixed;
    right: 8%;
    display: flex;
    flex-direction: column;
    gap: 0.3rem 0;
    z-index: 10;
  }
  #home-trataments .header-mob #menu__btn .boll {
    width: 34px;
    height: 6px;
    background: #fff;
    border-radius: 50px;
    border: 1px solid #35CBCE;
  }
  #home-trataments #sidebar__nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-out;
  }
  #home-trataments #sidebar__nav[data-active=true] {
    visibility: visible;
    opacity: 1;
  }
  #home-trataments #sidebar__nav[data-active=true] ul {
    right: 0;
    transition: all 0.3s ease-out;
    transition-delay: 0.5s;
  }
  #home-trataments #sidebar__nav ul {
    position: absolute;
    width: 80%;
    right: -80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2.5rem 0;
    top: 0;
    bottom: 0;
    background: #1B61C4;
    transition: all 0.2s ease;
  }
  #home-trataments #sidebar__nav ul li a, #home-trataments #sidebar__nav ul li .trat, #home-trataments #sidebar__nav ul li .trat2 {
    display: block;
    width: 100%;
    text-align: start;
    font-size: 1.2rem;
    color: #fff;
  }
  #home-trataments #sidebar__nav ul #close__btn {
    position: absolute;
    top: 2%;
    left: 5%;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
  }
  #home-trataments #sidebar__nav ul #close__btn svg {
    width: 20px;
    height: 20px;
  }
}
#text-trataments {
  padding: 5% 0;
}
#text-trataments .container {
  width: 72%;
  display: grid;
  place-items: center;
  gap: 4rem 0;
}
#text-trataments .container .text {
  width: 100%;
  display: grid;
  place-items: center;
  gap: 3rem 0;
}
#text-trataments .container .text h2 {
  color: #1B61C4;
}
#text-trataments .container .text p {
  width: 100%;
}
#text-trataments .container .text:nth-child(2) {
  gap: 1rem 0;
}
#text-trataments .container .text:nth-child(4) {
  text-align: center;
}
#text-trataments .container .text:nth-child(4) button {
  width: -moz-fit-content;
  width: fit-content;
  height: 76px;
  font-size: 16px;
  padding: 0 5%;
}
#text-trataments .container .text:nth-child(4) a {
  display: grid;
  gap: 1rem 0;
}
#text-trataments .container .text:nth-child(4) .p {
  color: #1B61C4;
  font-size: 24px;
  font-weight: 600;
}
#text-trataments .container .text .cont {
  display: grid;
  place-items: center;
  gap: 1.5rem 0;
}
#text-trataments .container .text h2 {
  width: 100%;
}
#text-trataments .container .text p {
  font-size: 18px;
}
#text-trataments .btn-flut {
  height: 58px;
  width: 58px;
  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;
}
#text-trataments .btn-flut:hover {
  transform: scale(0.9);
}
#text-trataments .btn-flut[data-active=true] {
  right: 5%;
}
#text-trataments .btn-flut img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
}

@media (max-width: 800px) {
  #text-trataments {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  #text-trataments .container {
    width: 80%;
    display: flex;
    flex-direction: column;
  }
  #text-trataments .container .text {
    display: flex;
    flex-direction: column;
  }
  #text-trataments .container .text:nth-child(5) button {
    font-size: 14px;
  }
  #text-trataments .btn-flut {
    display: none;
  }
}
#differentials {
  background: #ECECEC;
  padding: 5% 0;
}
#differentials .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 5rem;
}
#differentials .container .img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem 0;
}
#differentials .container .img p {
  line-height: 1.2rem;
  font-size: 12px;
  color: #949494;
}

@media (max-width: 800px) {
  #differentials {
    padding: 15% 0;
  }
  #differentials .container {
    flex-direction: column;
    gap: 3rem 0;
  }
  #differentials .container .img p {
    width: 70%;
  }
  #differentials .container .img:nth-child(2) p {
    width: 90%;
  }
  #differentials .container .img:nth-child(3) p {
    width: 80%;
  }
}
#dental-treatments {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ECECEC;
  width: 100%;
  padding: 0 0 5%;
}
#dental-treatments .container {
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#dental-treatments .container .text {
  text-align: center;
  width: 100%;
  padding: 5% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem 0;
}
#dental-treatments .container .text h2 {
  font-size: 28px;
}
#dental-treatments .container .text p {
  width: 60%;
  line-height: 1.5rem;
}
#dental-treatments .container #car {
  width: 70vw;
  padding: 0;
  height: 350px;
  position: relative;
}
#dental-treatments .container #car .mySwiper {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0 1%;
}
#dental-treatments .container #car .mySwiper .swiper-wrapper {
  display: flex;
  align-items: center;
}
#dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 0 3%;
  text-align: start;
  width: 260px;
  height: 90%;
  box-shadow: none;
  gap: 1rem 0;
  background: #fff;
  border-radius: 0px 0px 26px 0px;
  border-top: 16px solid #1B61C4;
  box-shadow: 0px 12px 6px rgba(110, 110, 110, 0.1294117647);
  cursor: pointer;
  transition: all 0.3s ease-in;
}
#dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide:hover {
  transform: scale(0.98);
}
#dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide h3 {
  color: #1B61C4;
  font-size: 24px;
  width: 70%;
}
#dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide p {
  font-size: 13px;
  line-height: 1.2rem;
}
#dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  z-index: 1;
  background: linear-gradient(180deg, #1B61C4, #35CBCE);
  border: none;
  box-shadow: 0px 12px 8px rgba(112, 112, 112, 0.1882352941);
}
#dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-active h3 {
  color: #fff;
}
#dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-active p {
  color: #fff;
}
#dental-treatments .container #car .desk .swiper-button-prev1, #dental-treatments .container #car .desk .swiper-button-next1 {
  position: absolute;
  display: grid;
  place-items: center;
  width: 26.27px;
  height: 9.65px;
  top: -5%;
  z-index: 9;
  cursor: pointer;
}
#dental-treatments .container #car .desk .swiper-button-prev1 {
  right: 9%;
  transform: rotateY(180deg);
}
#dental-treatments .container #car .desk .swiper-button-next1 {
  right: 3%;
}

@media (min-width: 800px) {
  #dental-treatments .container #car .mob {
    display: none;
  }
}
@media (max-width: 800px) {
  #dental-treatments {
    position: relative;
    padding: 10% 0 20%;
  }
  #dental-treatments .container {
    gap: 2rem 0;
  }
  #dental-treatments .container .text {
    width: 89%;
    padding-bottom: 12%;
  }
  #dental-treatments .container .text h2 {
    font-size: 20px;
  }
  #dental-treatments .container .text p {
    width: 100%;
  }
  #dental-treatments .container #car {
    width: 70vw;
    height: -moz-fit-content;
    height: fit-content;
    height: 341px;
  }
  #dental-treatments .container #car .mySwiper {
    width: 100%;
    height: 100%;
    border-radius: 0px 0px 26px 0px;
    box-shadow: 0px 12px 6px rgba(110, 110, 110, 0.1294117647);
  }
  #dental-treatments .container #car .mySwiper .swiper-wrapper {
    align-items: start;
  }
  #dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide {
    height: 341px;
    padding: 0 8%;
    background: #335787;
    border: none;
  }
  #dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide h3 {
    color: #fff;
  }
  #dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide p {
    color: #fff;
  }
  #dental-treatments .container #car .desk {
    display: none;
  }
  #dental-treatments .container #car .mob {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 2rem;
    padding: 5% 0;
    height: -moz-fit-content;
    height: fit-content;
  }
  #dental-treatments .container #car .mob .swiper-button-prev1, #dental-treatments .container #car .mob .swiper-button-next1 {
    position: relative;
    width: 48px;
    height: 48px;
    top: 0;
  }
  #dental-treatments .container #car .mob .swiper-button-prev1 {
    left: 0;
    opacity: 0.6;
  }
  #dental-treatments .container #car .mob .swiper-button-next1 {
    left: 0;
  }
}
#trataments {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  background: #ECECEC;
  height: 100vh;
  padding: 0;
}
#trataments .container {
  height: 100%;
  width: 97%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 0px 0px 60px 0px;
  gap: 0 2rem;
}
#trataments .container .img {
  width: 54%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
#trataments .container .img img {
  width: 80%;
}
#trataments .container .img .self-esteem, #trataments .container .img .more-security {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 32%;
  height: 11.5%;
  right: 5%;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  gap: 0 0.5rem;
}
#trataments .container .img .self-esteem p, #trataments .container .img .more-security p {
  color: #335787;
}
#trataments .container .img .self-esteem img, #trataments .container .img .more-security img {
  width: 19px;
  height: 18px;
}
#trataments .container .img .self-esteem {
  bottom: 20%;
}
#trataments .container .img .more-security {
  bottom: 5%;
}
#trataments .container .text {
  width: 46%;
}
#trataments .container .text .cont {
  width: 75%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem 0;
}
#trataments .container .text .cont h2 {
  font-size: 26px;
}

@media (max-width: 800px) {
  #trataments {
    height: -moz-fit-content;
    height: fit-content;
  }
  #trataments .container {
    height: -moz-fit-content;
    height: fit-content;
    padding: 15% 0;
    flex-direction: column;
    gap: 5rem 0;
    width: 98%;
  }
  #trataments .container .img {
    width: 100%;
  }
  #trataments .container .img .self-esteem, #trataments .container .img .more-security {
    width: 50%;
    padding: 4.5% 0;
    right: auto;
  }
  #trataments .container .img .self-esteem img, #trataments .container .img .more-security img {
    width: 13px;
    height: 12px;
  }
  #trataments .container .img .self-esteem {
    bottom: 10%;
  }
  #trataments .container .img .more-security {
    bottom: -10%;
  }
  #trataments .container .img img {
    width: 85%;
  }
  #trataments .container .text {
    width: 85%;
  }
  #trataments .container .text .cont {
    width: 95%;
    align-items: center;
  }
  #trataments .container .text .cont h2 {
    font-size: 20px;
  }
  #trataments .container .text .cont p {
    width: 99%;
    font-size: 15px;
    line-height: 1.5rem;
  }
}
#aesthetic-treatments {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ECECEC;
  width: 100%;
  height: 100vh;
  padding: 0;
}
#aesthetic-treatments .container {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#aesthetic-treatments .container .text {
  text-align: start;
  width: 50%;
}
#aesthetic-treatments .container .text .cont {
  width: 72%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem 0;
}
#aesthetic-treatments .container .text .cont h2 {
  width: 50%;
}
#aesthetic-treatments .container .text .cont p {
  line-height: 1.5rem;
}
#aesthetic-treatments .container #car {
  width: 50%;
  padding: 0;
  height: 80%;
  position: relative;
}
#aesthetic-treatments .container #car .mySwiper2 {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0 1%;
}
#aesthetic-treatments .container #car .mySwiper2 .swiper-wrapper {
  display: flex;
  align-items: center;
}
#aesthetic-treatments .container #car .mySwiper2 .swiper-wrapper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: start;
  padding: 0 3%;
  width: 260px;
  height: 341px;
  gap: 1rem 0;
  background: #fff;
  border-radius: 0px 0px 26px 0px;
  border-top: 16px solid #1B61C4;
  box-shadow: 0px 12px 6px rgba(110, 110, 110, 0.1294117647);
  cursor: pointer;
  transition: all 0.3s ease-in;
}
#aesthetic-treatments .container #car .mySwiper2 .swiper-wrapper .swiper-slide:hover {
  transform: scale(0.98);
}
#aesthetic-treatments .container #car .mySwiper2 .swiper-wrapper .swiper-slide h3 {
  font-size: 24px;
  width: 70%;
  color: #1B61C4;
}
#aesthetic-treatments .container #car .mySwiper2 .swiper-wrapper .swiper-slide p {
  font-size: 13px;
  line-height: 1.2rem;
}
#aesthetic-treatments .container #car .mySwiper2 .swiper-wrapper .swiper-slide.swiper-slide-active {
  z-index: 1;
  background: linear-gradient(180deg, #1B61C4, #35CBCE);
  border: none;
  box-shadow: 0px 12px 8px rgba(112, 112, 112, 0.1882352941);
}
#aesthetic-treatments .container #car .mySwiper2 .swiper-wrapper .swiper-slide.swiper-slide-active h3 {
  color: #fff;
}
#aesthetic-treatments .container #car .mySwiper2 .swiper-wrapper .swiper-slide.swiper-slide-active p {
  color: #fff;
}
#aesthetic-treatments .container #car .swiper-button-prev2, #aesthetic-treatments .container #car .swiper-button-next2 {
  position: absolute;
  display: grid;
  place-items: center;
  width: 26.27px;
  height: 9.65px;
  top: 5%;
  z-index: 9;
  cursor: pointer;
}
#aesthetic-treatments .container #car .swiper-button-prev2 {
  right: 10%;
  transform: rotateY(180deg);
}
#aesthetic-treatments .container #car .swiper-button-next2 {
  right: 1%;
}

@media (min-width: 800px) {
  #aesthetic-treatments .container #car .mob {
    display: none;
  }
}
@media (max-width: 800px) {
  #aesthetic-treatments {
    position: relative;
    height: -moz-fit-content;
    height: fit-content;
    padding: 10% 0;
  }
  #aesthetic-treatments .container {
    flex-direction: column;
    gap: 2rem 0;
  }
  #aesthetic-treatments .container .text {
    width: 100%;
    padding-bottom: 12%;
  }
  #aesthetic-treatments .container .text .cont {
    width: 100%;
  }
  #aesthetic-treatments .container .text .cont h2 {
    font-size: 20px;
  }
  #aesthetic-treatments .container .text .cont p {
    width: 100%;
  }
  #aesthetic-treatments .container #car {
    width: 70vw;
    height: -moz-fit-content;
    height: fit-content;
  }
  #aesthetic-treatments .container #car .mySwiper2 {
    width: 100%;
    height: 100%;
    border-radius: 0px 0px 26px 0px;
    box-shadow: 0px 12px 6px rgba(110, 110, 110, 0.1294117647);
  }
  #aesthetic-treatments .container #car .mySwiper2 .swiper-wrapper {
    align-items: start;
  }
  #aesthetic-treatments .container #car .mySwiper2 .swiper-wrapper .swiper-slide {
    padding: 0 8%;
    background: #335787;
    border: none;
  }
  #aesthetic-treatments .container #car .mySwiper2 .swiper-wrapper .swiper-slide h3 {
    color: #fff;
  }
  #aesthetic-treatments .container #car .mySwiper2 .swiper-wrapper .swiper-slide p {
    color: #fff;
  }
  #aesthetic-treatments .container #car .desk {
    display: none;
  }
  #aesthetic-treatments .container #car .mob {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 2rem;
    padding: 10% 0 5%;
  }
  #aesthetic-treatments .container #car .swiper-button-prev2, #aesthetic-treatments .container #car .swiper-button-next2 {
    position: relative;
    width: 48px;
    height: 48px;
    top: 0;
  }
  #aesthetic-treatments .container #car .swiper-button-prev2 {
    left: 0;
    opacity: 0.5;
  }
  #aesthetic-treatments .container #car .swiper-button-next2 {
    left: 0;
  }
}
#sobre {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  background: #ECECEC;
  position: relative;
  padding: 0;
}
#sobre .container {
  width: 90%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#sobre .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  gap: 1.5rem 0;
}
#sobre .container .text .title {
  width: 88%;
}
#sobre .container .text h2 {
  width: 88%;
  font-weight: 700;
}
#sobre .container .text h5 {
  width: 88%;
  color: #3E3E3E;
  font-size: 15px;
}
#sobre .container .text p {
  line-height: 1.3rem;
  width: 88%;
  font-size: 15px;
}
#sobre .container .text .btn {
  width: 88%;
}
#sobre .container .img {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 2rem 0;
}
#sobre .container .img img {
  height: 100%;
  width: 100%;
  border-radius: 0 0 50px 0;
  z-index: 1;
}
#sobre .btn-flut {
  height: 58px;
  width: 58px;
  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;
}
#sobre .btn-flut:hover {
  transform: scale(0.9);
}
#sobre .btn-flut[data-active=true] {
  right: 5%;
}
#sobre .btn-flut img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
}

@media (max-width: 800px) {
  #sobre {
    width: 100%;
    gap: 5rem 0;
    justify-content: center;
    align-items: center;
  }
  #sobre .container {
    width: 85%;
    flex-direction: column;
    position: relative;
    gap: 3rem 0;
  }
  #sobre .container .text, #sobre .container .img {
    width: 100%;
  }
  #sobre .container .text {
    align-items: center;
  }
  #sobre .container .text .title {
    width: 100%;
  }
  #sobre .container .text .title p {
    font-size: 15px;
  }
  #sobre .container .text p {
    width: 98%;
    padding-right: 5%;
  }
  #sobre .container .text .btn {
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
  }
  #sobre .container .img .title-mob {
    width: 100%;
    display: grid;
    gap: 0.5rem 0;
  }
  #sobre .container .img .title-mob h2 {
    width: 100%;
    font-size: 26px;
  }
  #sobre .container .img .title-mob h5 {
    width: 100%;
  }
  #sobre .container .img img {
    width: 100%;
    border-radius: 0 0 40px 0;
  }
  #sobre .btn-flut {
    display: none;
  }
}
#depoiments {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  background: #ECECEC;
}
#depoiments .container {
  height: 80%;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 4rem 0;
  position: relative;
  border-radius: 20px;
}
#depoiments .container .text {
  height: 25%;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 0.5rem 0;
}
#depoiments .container .text h2 {
  font-size: 28px;
}
#depoiments .container .text p {
  width: 55%;
}
#depoiments .container #car {
  width: 70%;
  height: 60%;
  position: relative;
}
#depoiments .container #car .mySwiper3 {
  display: flex;
  align-items: start;
  padding: 0 2% 0;
}
#depoiments .container #car .mySwiper3 .swiper-wrapper {
  display: flex;
  align-items: start;
}
#depoiments .container #car .mySwiper3 .swiper-wrapper .swiper-slide {
  width: 720px;
  height: 323px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f3f3f3;
  gap: 0.5rem 0;
  border-radius: 0 0 40px 0;
  z-index: -1;
  border-left: 8px solid #ECECEC;
  border-top: 8px solid #ECECEC;
  box-shadow: 0px 1px 6px rgba(132, 132, 132, 0.0901960784);
}
#depoiments .container #car .mySwiper3 .swiper-wrapper .swiper-slide::after {
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  border-radius: 0 0 40px 0;
  height: 100%;
  width: 100%;
  top: -2.5%;
  left: -1.5%;
  z-index: -99;
  box-shadow: 0px 1px 6px rgba(116, 116, 116, 0.0784313725);
}
#depoiments .container #car .mySwiper3 .swiper-wrapper .swiper-slide h3, #depoiments .container #car .mySwiper3 .swiper-wrapper .swiper-slide p {
  width: 80%;
}
#depoiments .container #car .mySwiper3 .swiper-wrapper .swiper-slide p {
  color: #949494;
}
#depoiments .container #car .mySwiper3 .swiper-wrapper .swiper-slide h3 {
  color: #1B61C4;
  font-size: 20px;
}
#depoiments .container #car .swiper-button-prev3, #depoiments .container #car .swiper-button-next3 {
  position: absolute;
  display: grid;
  place-items: center;
  width: 26.27px;
  height: 9.65px;
  bottom: 12%;
  z-index: 9;
  border-radius: 15px;
  cursor: pointer;
}
#depoiments .container #car .swiper-button-prev3 {
  right: 19%;
  transform: rotateY(180deg);
}
#depoiments .container #car .swiper-button-next3 {
  right: 12%;
}

@media (min-width: 800px) {
  #depoiments .container #car .mob {
    display: none;
  }
}
@media (max-width: 800px) {
  #depoiments {
    justify-content: start;
  }
  #depoiments .container {
    width: 90%;
    flex-direction: column;
    justify-content: start;
    left: 0;
    gap: 3rem 0;
    padding-top: 15%;
  }
  #depoiments .container .text {
    height: 20%;
    width: 100%;
    gap: 1rem 0;
    text-align: center;
  }
  #depoiments .container .text h2 {
    width: 70%;
  }
  #depoiments .container .text p {
    width: 100%;
    line-height: 1.5rem;
  }
  #depoiments .container #car {
    width: 95%;
  }
  #depoiments .container #car .mySwiper3 .swiper-wrapper {
    align-items: start;
  }
  #depoiments .container #car .mySwiper3 .swiper-wrapper .swiper-slide {
    height: 430px;
    padding: 8% 2% 10%;
    gap: 1rem 0;
  }
  #depoiments .container #car .mySwiper3 .swiper-wrapper .swiper-slide p {
    line-height: 1.5rem;
  }
  #depoiments .container #car .mySwiper3 .swiper-wrapper .swiper-slide h3 {
    font-size: 18px;
  }
  #depoiments .container #car .mySwiper3 .swiper-wrapper .swiper-slide::after {
    top: -1.5%;
  }
  #depoiments .container #car .desk {
    display: none;
  }
  #depoiments .container #car .mob {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 2rem;
    padding: 10% 0 5%;
  }
  #depoiments .container #car .swiper-button-prev3, #depoiments .container #car .swiper-button-next3 {
    position: relative;
    width: 48px;
    height: 48px;
    bottom: 0;
    border-radius: 0;
  }
  #depoiments .container #car .swiper-button-prev3 {
    right: 0;
    opacity: 0.5;
  }
  #depoiments .container #car .swiper-button-next3 {
    right: 0;
  }
}
#dentista-em-limeira {
  place-items: end;
  background: #ECECEC;
  padding: 0;
}
#dentista-em-limeira .container {
  background: #1B61C4;
  border-radius: 0px 0px 45px 0px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#dentista-em-limeira .container .text {
  width: 65%;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
}
#dentista-em-limeira .container .text h2 {
  width: 45%;
  font-size: 26px;
}
#dentista-em-limeira .container .text p {
  width: 70%;
  font-size: 13px;
}
#dentista-em-limeira .container .text .cont {
  width: 85%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem 0;
}
#dentista-em-limeira .container .img {
  width: 35%;
  height: 100%;
}
#dentista-em-limeira .container .img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 800px) {
  #dentista-em-limeira {
    height: -moz-fit-content;
    height: fit-content;
  }
  #dentista-em-limeira .container {
    flex-direction: column;
  }
  #dentista-em-limeira .container .text {
    width: 100%;
    height: 50%;
    align-items: center;
    padding: 10% 0;
  }
  #dentista-em-limeira .container .text .cont {
    width: 80%;
    gap: 2rem 0;
  }
  #dentista-em-limeira .container .text h2 {
    width: 100%;
    font-size: 20px;
  }
  #dentista-em-limeira .container .text p {
    width: 98%;
    line-height: 1.3rem;
  }
  #dentista-em-limeira .container .img {
    width: 100%;
    height: 50%;
  }
  #dentista-em-limeira .container .img img {
    border-radius: 0 0 40px 0;
  }
}
#equipe {
  height: -moz-fit-content;
  height: fit-content;
  background: #ECECEC;
}
#equipe .container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem 0;
}
#equipe .container .text {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
}
#equipe .container #car {
  width: 50vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
#equipe .container #car .mySwiper4 {
  width: 95%;
  padding: 0 1% 5%;
}
#equipe .container #car .mySwiper4 .swiper-wrapper .swiper-slide {
  position: relative;
  border-radius: 0px 0px 26px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 12px 8px rgba(112, 112, 112, 0.1882352941);
}
#equipe .container #car .mySwiper4 .swiper-wrapper .swiper-slide img {
  border-radius: 0px 0px 26px 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#equipe .container #car .mySwiper4 .swiper-wrapper .swiper-slide .cont {
  z-index: 2;
  background-color: #35CBCE;
  position: absolute;
  width: 30%;
  height: 0%;
  bottom: 0;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 300ms;
  opacity: 0;
}
#equipe .container #car .mySwiper4 .swiper-wrapper .swiper-slide .cont h5 {
  font-size: 17px;
  color: #fff;
  display: none;
}
#equipe .container #car .mySwiper4 .swiper-wrapper .swiper-slide .cont p {
  font-size: 14px;
  font-weight: 300;
  overflow: hidden;
  text-align: center;
  transition: all 0.5s;
  display: none;
  color: #fff;
  line-height: 1.5rem;
}
#equipe .container #car .mySwiper4 .swiper-wrapper .swiper-slide .cont p strong {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}
#equipe .container #car .mySwiper4 .swiper-wrapper .swiper-slide:hover .cont {
  border-radius: 0px 0px 26px 0px;
  height: 25%;
  width: 100%;
  bottom: 0;
  opacity: 1;
}
#equipe .container #car .mySwiper4 .swiper-wrapper .swiper-slide:hover .cont p, #equipe .container #car .mySwiper4 .swiper-wrapper .swiper-slide:hover .cont h5 {
  animation: animate 0.5s linear;
  display: block;
}
#equipe .container #car .swiper-pagination4 {
  position: absolute;
  bottom: -10%;
}
#equipe .container #car .swiper-pagination4 .swiper-pagination-bullet {
  background: #1B61C4;
}

@keyframes animate {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@media (min-width: 800px) {
  #equipe .container #car .mob {
    display: none;
  }
}
@media (max-width: 800px) {
  #equipe {
    padding: 15% 0;
  }
  #equipe .container {
    width: 80%;
  }
  #equipe .container .text {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  #equipe .container .text p {
    width: 90%;
  }
  #equipe .container #car {
    width: 70vw;
  }
  #equipe .container #car .mySwiper4 .swiper-wrapper .swiper-slide .cont {
    width: 100%;
    height: 25%;
    opacity: 1;
    border-radius: 0px 0px 26px 0px;
  }
  #equipe .container #car .mySwiper4 .swiper-wrapper .swiper-slide .cont p, #equipe .container #car .mySwiper4 .swiper-wrapper .swiper-slide .cont h5 {
    display: block;
  }
  #equipe .container #car .swiper-pagination4 {
    display: none;
  }
  #equipe .container #car .mob {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 2rem;
    padding: 5% 0 0;
  }
  #equipe .container #car .swiper-button-prev4, #equipe .container #car .swiper-button-next4 {
    position: relative;
    width: 46px;
    height: 46px;
    bottom: 0;
    border-radius: 0;
  }
  #equipe .container #car .swiper-button-prev4 {
    right: 0;
    opacity: 0.5;
    transform: rotateY(180deg);
  }
  #equipe .container #car .swiper-button-next4 {
    right: 0;
  }
}
#form {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
#form .container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#form .container .cont-text {
  background: #1B61C4;
  width: 110%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem 0;
  position: relative;
}
#form .container .cont-text .cont {
  width: 80%;
  display: grid;
  gap: 1rem 0;
}
#form .container .cont-text .cont h2 {
  width: 60%;
}
#form .container .cont-text .cont p {
  width: 55%;
  opacity: 0.8;
  line-height: 1.3rem;
}
#form .container .cont-text .links {
  width: 80%;
  display: grid;
  gap: 1rem 0;
}
#form .container .cont-text .links a {
  width: 45%;
}
#form .container .cont-text .links a p {
  width: 100%;
}
#form .container .cont-text .links .icons {
  padding-top: 5%;
  width: 100%;
  display: flex;
  gap: 0 1.5rem;
}
#form .container .cont-text .links .icons a {
  width: 34px;
  height: 34px;
}
#form .container .cont-text .links .icons img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in;
}
#form .container .cont-text .links .icons img:hover {
  transform: scale(0.9);
}
#form .container .cont-text .links p {
  line-height: 1.3rem;
  width: 45%;
  opacity: 0.8;
}
#form .container .cont-text .btn {
  position: absolute;
  right: -2%;
  z-index: 1;
}
#form .container .cont-text .btn img {
  -o-object-fit: cover;
     object-fit: cover;
}
#form .container .cont-form {
  background: #35CBCE;
  height: 100%;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#form .container .cont-form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#form .container .cont-form .cont {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  gap: 1rem 0;
}
#form .container .cont-form .cont textarea, #form .container .cont-form .cont input, #form .container .cont-form .cont select {
  width: 100%;
  overflow: hidden;
  resize: none;
  background: transparent;
  color: #fff;
  font-size: 13px;
  border: 2px solid #fff;
}
#form .container .cont-form .cont textarea::-moz-placeholder, #form .container .cont-form .cont input::-moz-placeholder, #form .container .cont-form .cont select::-moz-placeholder {
  color: #fff;
  opacity: 0.8;
}
#form .container .cont-form .cont textarea::placeholder, #form .container .cont-form .cont input::placeholder, #form .container .cont-form .cont select::placeholder {
  color: #fff;
  opacity: 0.8;
}
#form .container .cont-form .cont select {
  padding: 4% 3.5%;
  border-radius: 6px;
  cursor: pointer;
}
#form .container .cont-form .cont select option {
  color: #000;
}
#form .container .cont-form .cont .ip {
  padding: 4% 5%;
  border-radius: 6px;
  outline: none;
}
#form .container .cont-form .cont .ip3 {
  padding: 4% 5% 0;
  border-radius: 6px;
  height: 180px;
  outline: none;
}
#form .container .cont-form .cont button {
  height: 35px;
  margin: 5% 0 0;
  color: #335787;
  background-color: #fff;
}

@media (max-width: 800px) {
  #form {
    height: -moz-fit-content;
    height: fit-content;
  }
  #form .container {
    width: 100%;
    flex-direction: column;
  }
  #form .container .cont-text {
    width: 100%;
    padding: 10% 0;
  }
  #form .container .cont-text .cont {
    text-align: center;
    place-items: center;
    width: 100%;
  }
  #form .container .cont-text .cont h2 {
    font-size: 20px;
  }
  #form .container .cont-text .cont p {
    width: 70%;
  }
  #form .container .cont-text .links {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #form .container .cont-text .links a {
    width: 65%;
  }
  #form .container .cont-text .links p {
    width: 100%;
  }
  #form .container .cont-text .links .icons {
    justify-content: center;
    gap: 0;
  }
  #form .container .cont-text .links .icons a {
    width: 58px;
    height: 58px;
  }
  #form .container .cont-text .links .icons a:hover {
    transform: none;
  }
  #form .container .cont-text .links .icons img {
    width: 31.4px;
    height: 31.4px;
  }
  #form .container .cont-text .btn {
    width: 74px;
    height: 45px;
    left: 44%;
    bottom: -8%;
    transform: rotateZ(90deg);
  }
  #form .container .cont-form {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    padding: 20% 0 15%;
  }
  #form .container .cont-form .cont {
    width: 80%;
    align-items: center;
  }
  #form .container .cont-form .cont textarea, #form .container .cont-form .cont input, #form .container .cont-form .cont select {
    width: 100%;
  }
  #form .container .cont-form .cont .ip, #form .container .cont-form .cont select {
    padding: 5%;
  }
  #form .container .cont-form .cont button {
    width: 154px;
    height: 40px;
  }
}
footer {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem 0 0.8rem 0;
  background: #ECECEC;
}
footer .container {
  display: grid;
  place-items: center;
  gap: 1.5rem 0;
}
footer .container img {
  width: 6%;
}
footer .container .copyrights {
  display: grid;
  place-items: center;
  text-align: center;
}
footer .container .copyrights .copy {
  display: flex;
  align-items: center;
  gap: 0 0.5rem;
  font-size: 0.45rem;
  opacity: 1;
  color: #000;
}
footer .container .copyrights .copy svg {
  width: 0.75rem;
  height: 0.75rem;
}

@media (max-width: 800px) {
  footer {
    padding: 3rem 0 0.8rem 0;
  }
  footer .container img {
    width: 20%;
  }
}
#modal_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
#modal_container[data-active=true] {
  opacity: 1;
  visibility: visible;
}
#modal_container[data-active=true] .modal {
  margin-top: 0;
  opacity: 1;
}
#modal_container .modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #1B61C4;
  z-index: 999;
  width: 70%;
  height: 70%;
  max-width: 80%;
  border-radius: 20px;
  display: flex;
  overflow: hidden;
  transition: all 0.3s ease-out;
  margin-top: 2rem;
}
#modal_container .modal img {
  width: 100%;
  border-radius: 20px 0 0 20px;
}
#modal_container .modal .fechar {
  width: 4%;
  height: 10%;
  background-color: transparent;
  position: absolute;
  top: 5%;
  right: 0;
  cursor: pointer;
}
#modal_container .modal .fechar .btn-x {
  width: 20px;
  height: 2px;
  background: #fff;
  position: relative;
  transform: rotateZ(-45deg);
}
#modal_container .modal .fechar .btn-x:nth-child(2) {
  bottom: 2.5%;
  transform: rotateZ(45deg);
}
#modal_container .modal .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 5%;
}
#modal_container .modal .text h2 {
  color: #fff;
}
#modal_container .modal .text p {
  padding: 10% 0;
  color: #fff;
}

@media (max-width: 800px) {
  #modal_container .modal {
    flex-direction: column;
    width: 90%;
    height: -moz-fit-content;
    height: fit-content;
  }
  #modal_container .modal img {
    width: 100%;
    height: 30vh;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0;
  }
  #modal_container .modal .fechar {
    width: 6%;
    position: absolute;
    padding: 0;
    top: 4%;
    right: 5%;
  }
  #modal_container .modal .fechar .btn-x {
    width: 23px;
    background: #335787;
  }
  #modal_container .modal .text h2 {
    text-align: center;
    width: 100%;
    padding-top: 5%;
  }
}/*# sourceMappingURL=style.css.map */