html {
  scroll-behavior: smooth;
}
body {
  color: #23423B;
  background-color: #fff;
}
.color-maro {
  color: #663244;
}
.color-pink {
  color: #CC6487;
}
.img_flex {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  min-height: 400px;
}
.img_flex img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  position: absolute;
  inset: 0;
  transition: 0.2s;
}
.img_flex:hover img {
  transform: scale(1.1);
}
.table-head {
  background-color: #535353;
  color: #fff;
  border-radius: 6px;
  padding: 6px 15px;
  margin-bottom: 10px;
}
.table-col {
  background-color: #F3F3F3;
  border-radius: 6px;
  padding: 15px 15px;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .table-col {
    min-height: 75px;
    display: flex;
    align-items: center;
  }
}
.info-bar {
  background-color: #009534;
  color: #fff;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 20px;
}
.block-pink {
  background-color: #CC6487;
  color: #fff;
  border-radius: 10px;
  padding: 30px 15px;
}
@media (min-width: 576px) {
  .block-pink {
    padding: 30px;
  }
}
.padding-banner {
  padding-bottom: calc(10vw + 1rem + 30px);
}
.banner-bottom {
  margin-top: calc(-10vw + 1rem);
}
.bg-grey-2 {
  background-color: #F3F3F3;
}
.buton-pink-border {
  display: inline-flex;
  width: 100%;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 4px;
  border: 1px solid #CC6487;
  color: inherit;
  align-items: center;
  min-height: 75px;
  justify-content: center;
  font-size: 18px;
}
.buton-pink-border:hover {
  background-color: #CC6487;
  color: #fff;
}
#carusel_faq {
  padding-bottom: 30px;
}
#carusel_faq .swiper-button-next {
  background-color: #CC6487;
  color: #fff;
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 40px;
  height: auto;
  right: 15%;
}
#carusel_faq .swiper-button-next:after {
  font-size: 1rem;
}
@media (max-width: 991px) {
  #carusel_faq .swiper-button-next {
    display: none !important;
  }
}
#carusel_faq .swiper-button-prev {
  background-color: #CC6487;
  color: #fff;
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 40px;
  height: auto;
  left: 15%;
}
#carusel_faq .swiper-button-prev:after {
  font-size: 1rem;
}
@media (max-width: 991px) {
  #carusel_faq .swiper-button-prev {
    display: none !important;
  }
}
#carusel_faq .swiper-slide {
  height: unset;
  display: flex;
}
@media (min-width: 576px) {
  #carusel_faq .swiper-slide {
    opacity: 0.4;
    transform: scale(0.9);
    transition: 0.2s;
  }
  #carusel_faq .swiper-slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
  }
}
#carusel_faq .swiper-pagination-bullet-active {
  background-color: #CC6487;
}
@media (min-width: 992px) {
  #carusel_faq {
    padding-bottom: 0;
  }
  #carusel_faq .swiper-pagination {
    display: none;
  }
}
.faq-item {
  width: 100%;
  background-color: #F3F3F3;
  border-radius: 6px;
  padding: 30px 15px;
  position: relative;
}
@media (min-width: 576px) {
  .faq-item {
    padding: 30px;
  }
}
.faq-item:after {
  content: "?";
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  background-color: #CC6487;
  color: #fff;
  border-radius: 50%;
  width: 24px;
  aspect-ratio: 1/1;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
