html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scrollbar-width: thin;
  scrollbar-color: #caa363 #e0c895;
}

a {
  text-decoration: none;
}

/* Chrome, Safari, Edge */
::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-track {
  background: #e0c895;
}

::-webkit-scrollbar-thumb {
  background-color: #caa363;
  border-radius: 12px;
  border: 3px solid #e0c895;
}

::selection {
  color: #1e1e1e;
  background: #e0c895;
}

::-moz-selection {
  color: #1e1e1e;
  background: #e0c895;
}

body {
  background: #fff;
  font-family: "Alexandria", sans-serif;
}

/* whatsapp icon */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* header */
header {
  background: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
  padding: 2.5rem 0;
}

header .container {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .container .logo-header img {
  width: 54px;
  height: 69px;
}

header .container nav {
  display: flex;
  gap: 1.2rem;
}

header .container nav a {
  color: #1e1e1e;
  font-weight: 400;
  font-size: 14px;
  transition: all 0.4s ease;
  cursor: pointer;
}

header .container nav a:hover {
  color: #caa363;
}

header .container nav .active-link {
  background: linear-gradient(to bottom, #e0c895, #caa363);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  font-size: 14px;
}

.hamburger {
  font-size: 28px;
  cursor: pointer;
  display: none;
  user-select: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: right 0.4s ease;
  z-index: 1000;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu nav a {
  font-size: 16px;
  color: #1e1e1e;
}

.mobile-menu .close-btn {
  font-size: 30px;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 2rem;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 900;
}

.backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  z-index: 1000;
}

/* hero sec */
.Hero-sec {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  overflow: hidden;
}

.Hero-sec .container {
  width: 85%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.Hero-sec .container .content-hero {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 2.2rem;
  padding: 2rem;
}

.Hero-sec .container .img-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.Hero-sec .container .img-hero .shiny-box {
  width: 214px;
  height: 160px;
  overflow: hidden;
  position: absolute;
  border-radius: 40px;
  border: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.6rem;
  border-radius: 50px;
  background: #0000001a;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: white;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.Hero-sec .container .img-hero .box-1 {
  right: -25px;
  bottom: 220px;
  animation: float1 4s ease-in-out infinite;
}
.Hero-sec .container .img-hero .box-2 {
  right: -25px;
  bottom: 15px;
  animation: float2 5s ease-in-out infinite;
}
.Hero-sec .container .img-hero .box-3 {
  left: -25px;
  bottom: 170px;
  animation: float3 3.5s ease-in-out infinite;
}
@keyframes float1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes float2 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes float3 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.Hero-sec .container .img-hero .shiny-box .star-icon-hero {
  width: 42px;
  height: 42px;
}

.Hero-sec .container .img-hero .shiny-box .text-shiny-box {
  color: white;
  font-size: 14px;
}

.Hero-sec .container .img-hero img {
  max-width: 520px;
  height: auto;
  border-radius: 60px;
}

/* About sec */
.About-sec {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.About-sec .container {
  width: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
}

.About-sec .container .width-text {
  width: 35%;
}

/* why select section */
.why-select-sec {
  width: 100%;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: end;
  overflow: hidden;
}
.why-select-sec .container {
  width: 92.5%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.why-select-sec .container .content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 33%;
}
.why-select-sec .container .slider {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66%;
}

.why-box {
  min-height: 276px;
  background: #d4c1a626;
  border-radius: 30px;
  border: none;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: start;
  justify-content: start;
  gap: 1rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.why-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transform: skewX(-25deg);
}

.why-box:hover::before {
  animation: shine 0.8s forwards;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.why-box h4 {
  color: #d4c1a6;
  font-size: 18px;
  line-height: 32px;
  font-weight: bold;
}

.why-box p {
  color: #1e1e1e;
  font-size: 14px;
  font-weight: 300;
}

/* benefits sec */
.benefits-sec {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.benefits-sec .container {
  width: 85%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.benefits-sec .container .video {
  width: 32%;
  overflow: hidden;
}

.benefits-sec .container .video-tag {
  width: 97%;
  height: 660px;
  cursor: pointer;
  border-radius: 30px;
  border: none;
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  width: 97%;
  height: 660px;
  cursor: pointer;
}

.video-wrapper video {
  width: 100%;
  height: 660px;
  object-fit: cover;
  border-radius: 30px;
}

.hidden-video {
  display: none;
  width: 100%;
  height: 660px;
  border-radius: 30px;
}

/* pagination */
.video-swiper .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 1.5rem;
  text-align: center;
}

.video-swiper .swiper-pagination-bullet {
  background-color: #c6b19926;
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 4px;
}

.video-swiper .swiper-pagination-bullet-active {
  background-color: #c9a261;
  width: 12px;
  height: 12px;
}

.benefits-sec .container .content {
  width: 65%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.2rem;
}
.benefits-sec .container .content .grid-sys {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 0 0 0.2rem 0;
}
.benefits-sec .container .content .grid-sys .Benefits-card {
  height: 160px;
  width: 100%;
  border-radius: 30px;
  border: none;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.5s ease-in-out;
}

.benefits-sec .container .content .grid-sys .Benefits-card:hover {
  background: #c6b19926;
  box-shadow: 0 2px 5px rgba(198, 177, 153, 0.226);
}

.benefits-sec .container .content .grid-sys .dark-card:hover {
  background: #fff;
  box-shadow: 0 2px 5px rgba(198, 177, 153, 0.205);
}

.benefits-sec .container .content .grid-sys .Benefits-card .icon {
  width: 33%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefits-sec .container .content .grid-sys .Benefits-card .icon img {
  width: 130px;
  height: auto;
}

.benefits-sec .container .content .grid-sys .Benefits-card .content {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 0.6rem;
  width: 66%;
  height: 100%;
}

.benefits-sec
  .container
  .content
  .grid-sys
  .Benefits-card
  .content
  .heading-18px {
  font-size: 18px;
  color: #d4c1a6;
  font-weight: bold;
}

.benefits-sec .container .content .grid-sys .Benefits-card .content .text-13px {
  font-size: 13px;
  color: #1e1e1e;
  font-weight: 300;
  line-height: 24px;
}

.benefits-sec .container .content .grid-sys .dark-card {
  background: #c6b19926;
}

/* Types of calendar */
.Types-calendar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.Types-calendar .container {
  width: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.Types-calendar .container .grid-sys {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: -0.6rem;
}
.Types-calendar .container .grid-sys .card-calendar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.Types-calendar .container .grid-sys .card-calendar:hover {
  transform: translateY(-4px);
}

.Types-calendar .container .grid-sys .card-calendar::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
}

.Types-calendar .container .grid-sys .card-calendar:hover::after {
  animation: shine 1.5s ease forwards;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 120%;
  }
}

.Types-calendar .container .grid-sys .card-calendar img {
  width: 400px;
}
.Types-calendar .container h2 {
  font-size: 24px;
  font-weight: 400;
  color: #d4c1a6;
}

.Types-calendar .container p {
  font: 14px;
  color: #1e1e1e;
}

.Types-calendar .container .mobile-slider-calender {
  width: 100%;
  overflow: hidden;
}

.Types-calendar
  .container
  .mobile-slider-calender
  .slider
  .swiper
  .swiper-wrapper
  .swiper-slide
  .card-calendar
  img {
  width: 100%;
}

/* Follow treatment plan sec */
.Follow-treatment-plan-sec {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.Follow-treatment-plan-sec .container {
  width: 85%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.Follow-treatment-plan-sec .container .steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 1rem;
}

.Follow-treatment-plan-sec .container .steps .item-step {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.Follow-treatment-plan-sec .container .steps .item-step img {
  width: 90px;
  height: auto;
}
.Follow-treatment-plan-sec .container .steps .item-step .content-item-step {
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.Follow-treatment-plan-sec .container .steps .item-step .content-item-step h3 {
  font-size: 24px;
  line-height: 64px;
  background: linear-gradient(to bottom, #e0c895, #caa363);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.Follow-treatment-plan-sec .container .steps .item-step .content-item-step p {
  font-size: 14px;
  color: #000000cc;
}
.Follow-treatment-plan-sec .container .img img {
  max-width: 650px;
  height: auto;
  margin-left: -50px;
}

/* Reviewers sec */
.Reviewers-sec {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Reviewers-sec .container {
  width: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.Reviewers-sec .container .card {
  width: 100%;
  position: relative;
}
.Reviewers-sec .container img {
  width: 829px;
}
.Reviewers-sec .container .card .content p {
  font-size: 16px;
  line-height: 34px;
  color: #000000bf;
}
.Reviewers-sec .container .card .review-card {
  background: #f6f3f0;
  border-radius: 40px;
  border: none;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
  width: 600px;
  height: auto;
  position: absolute;
  top: 130px;
  left: 50px;
}
.Reviewers-sec .container .card .review-card .top-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.Reviewers-sec .container .card .review-card .top-card .avatar img {
  width: 65px;
  height: 65px;
}
.Reviewers-sec .container .card .review-card .top-card .name-stars {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 0.2rem;
}
.Reviewers-sec .container .card .review-card .top-card .name-stars h6 {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
}
.Reviewers-sec .container .card .review-card .top-card .name-stars img {
  width: 120px;
  height: auto;
}

/* status sec */
.status-sec {
  width: 100%;
  background: #d4c1a626;
  padding: 4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 4rem 0 4rem 0;
}

.status-sec .container {
  width: 85%;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  gap: 2rem;
}

.status-sec .container .status-slider {
  width: 100%;
  min-height: auto;
  overflow: hidden;
}
.status-sec .container .status-slider img {
  width: 100%;
}

.img-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 30px;
}

.img-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 25px rgba(224, 200, 149, 0.9),
    inset 0 0 45px rgba(202, 163, 99, 0.7), 0 15px 35px rgba(0, 0, 0, 0.55),
    0 8px 20px rgba(0, 0, 0, 0.35), 0 0 30px #e0c895, 0 0 60px #caa363;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.img-wrapper:hover::after {
  opacity: 1;
}

/* banner cta */
.banner-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-cta .container {
  width: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  min-height: 460px;
  background: #c6b19926;
  border-radius: 40px;
}

/* footer */
footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 1rem 0;
}

footer .container {
  width: 85%;
  display: flex;
  flex-direction: column;
}

footer .container .links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8rem;
}
footer .container .links .logo {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 2rem;
  justify-content: space-between;
  width: 33%;
}
footer .container .links .logo img {
  width: 78px;
}
footer .container .links .logo p {
  font-size: 14px;
  color: #1e1e1e;
  line-height: 25px;
}
footer .container .links .nav-footer {
  display: flex;
  align-items: center;
  gap: 10rem;
  width: 66%;
}
footer .container .links .nav-footer .item-nav {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1.5rem;
}
footer .container .links .nav-footer .item-nav a {
  font-size: 16px;
  color: #1e1e1e;
  transition: all 0.4s ease;
  cursor: pointer;
}
footer .container .links .nav-footer .item-nav a:hover {
  font-size: 16px;
  color: #caa363;
}

.line {
  width: 100%;
  background: #00000033;
  min-height: 1px;
  margin: 2.5rem 0 0 0.5rem;
}

footer .container .right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .container .right p {
  font-size: 12px;
  color: #1e1e1e;
}

footer .container .right .icon-list {
  display: flex;
  gap: 0;
}
footer .container .right .icon-list img {
  width: 50px;
  cursor: pointer;
}

/* faq sec */
.faq-sec {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-sec .container {
  width: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
.faq-sec .container .img img {
  width: 600px;
}
.faq-sec .content {
  flex: 2;
}

/* FAQ Items */
.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
  font-family: "Alexandria", sans-serif;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 1rem;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  text-align: right;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1e1e1e;
  transition: color 0.3s ease;
  font-family: "Alexandria", sans-serif;
}

.faq-question:hover {
  color: #caa363;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1rem;
  color: #1e1e1ebf;
  font-size: 14px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 1rem;
}

.icon {
  transition: transform 0.3s ease;
  font-size: 18px;
  color: #caa363;
}

.faq-item.active .icon {
  transform: rotate(180deg);
}

/* others styles */

.line-height-64px {
  line-height: 64px;
}

.mobile-v {
  display: none;
}
.desktop-v {
  display: block;
}

.hidden-in-mobile {
  display: block;
}
.hidden-in-desktop {
  display: none;
}

.base-margin {
  margin: 4rem 0;
}

.heading-44px {
  font-weight: bold;
  font-size: 44px;
  background: linear-gradient(to bottom, #e0c895, #caa363);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading-42px-about-sec {
  font-weight: bold;
  font-size: 42px;
  background: linear-gradient(to bottom, #e0c895, #caa363);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading-42px {
  font-weight: bold;
  font-size: 42px;
  color: #ffffff;
}

.heading-38px {
  font-size: 38px;
  font-weight: bold;
  background: linear-gradient(to bottom, #e0c895, #caa363);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-18px {
  font-weight: 400;
  font-size: 18px;
  color: #1e1e1e;
  line-height: 38px;
}

.text-16px {
  font-weight: 400;
  font-size: 16px;
  color: #1e1e1e;
  text-align: center;
  line-height: 35px;
}
.primary-btn {
  font-family: "Alexandria", sans-serif;
  min-width: 230px;
  border-radius: 16px;
  border: none;
  background: #d4c1a6;
  color: #ffffff;
  padding: 0.9rem 0;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
}

.primary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(224, 200, 149, 0.6),
    transparent
  );
  transition: all 0.5s ease;
}

.primary-btn:hover::before {
  left: 100%;
}

.primary-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 22px rgba(202, 163, 99, 0.6);
  background: linear-gradient(90deg, #e0c895, #caa363);
}

/* media query */
@media (max-width: 992px) {
  /* header */
  header {
    padding: 1rem 0;
  }
  header .container .logo-header img {
    width: 42px;
    height: auto;
  }
  header .container nav {
    display: none;
  }

  .hamburger {
    display: block;
  }
  header .container {
    width: 88%;
  }

  /* hero */
  .Hero-sec {
    min-height: auto;
    padding: 0.5rem 0;
  }

  .Hero-sec .container .img-hero img {
    width: 92%;
    height: auto;
    border-radius: 30px;
  }

  .Hero-sec .container .img-hero .shiny-box {
    width: 130px;
    height: 90px;
    padding: 1rem;
    border-radius: 22px;
  }
  .Hero-sec .container .img-hero .shiny-box .text-shiny-box {
    font-size: 8px;
  }

  .Hero-sec .container .content-hero {
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.4rem;
    margin: 0;
  }
  .Hero-sec .container .content-hero p {
    text-align: center;
    font-size: 13px;
    line-height: 24px;
  }
  .Hero-sec .container .img-hero .shiny-box .star-icon-hero {
    width: 24px;
    height: 24px;
  }

  /* about sec */

  .About-sec {
    min-height: auto;
    padding: 0 0;
  }

  .About-sec .container .width-text {
    width: 100%;
  }

  /* why select section */
  .why-select-sec {
    padding: 2rem 0;
    min-height: auto;
    justify-content: center;
  }

  .why-select-sec .container .content {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .why-select-sec .container .slider {
    width: 100%;
  }

  .why-box {
    min-height: 190px;
    border-radius: 20px;
    padding: 0.7rem;
    gap: 0.5rem;
    justify-content: space-evenly;
  }

  .why-box img {
    width: 60px;
    height: 60px;
  }

  .why-box h4 {
    font-size: 13px;
    line-height: 20px;
  }

  .why-box p {
    font-size: 11px;
  }

  /* benefits sec */
  .benefits-sec {
    min-height: auto;
  }

  .benefits-sec .container .video {
    width: 100%;
  }

  .benefits-sec .container .content {
    width: 100%;
    align-items: center;
    gap: 0;
  }
  .benefits-sec .container .content .grid-sys {
    width: 100%;
    gap: 0.5rem;
  }
  .benefits-sec .container .content .grid-sys .Benefits-card {
    height: 185px;
    border-radius: 20px;
    padding: 0.6rem;
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }

  .benefits-sec .container .content .grid-sys .Benefits-card .icon {
    width: 100%;
    justify-content: start;
  }
  .benefits-sec .container .content .grid-sys .Benefits-card .icon img {
    width: 90px;
    height: auto;
  }

  .benefits-sec .container .content .grid-sys .Benefits-card .content {
    gap: 0.4rem;
    width: 100%;
  }

  .benefits-sec
    .container
    .content
    .grid-sys
    .Benefits-card
    .content
    .heading-18px {
    font-size: 13px;
  }

  .benefits-sec
    .container
    .content
    .grid-sys
    .Benefits-card
    .content
    .text-13px {
    font-size: 11px;
  }

  .benefits-sec .container .video-tag {
    width: 100%;
    height: 565px;
    min-height: 565px;
    max-height: 565px;
    overflow: hidden;
    border-radius: 30px;
    border: none;
  }

  .video-wrapper {
    width: 100%;
    height: 565px;
    min-height: 565px;
    max-height: 565px;
    margin-top: 1.2rem;
  }

  .video-wrapper video {
    width: 100%;
    height: 565px;
    min-height: 565px;
    max-height: 565px;
  }

  .hidden-video {
    width: 100%;
    height: 565px;
    min-height: 565px;
    max-height: 565px;
  }

  .video-swiper .swiper-pagination {
    margin-top: 1.2rem;
  }

  .video-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  .video-swiper .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
  }

  /* calender */
  .Types-calendar .container .grid-sys {
    display: none;
  }
  .Types-calendar .container .card-calendar {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    border-radius: 25px;
    border: none;
  }
  .Types-calendar .container h2 {
    font-size: 18px;
  }
  .Types-calendar .container p {
    font-size: 13px;
    text-align: start;
    line-height: 23px;
  }

  /* Follow treatment plan sec */
  .Follow-treatment-plan-sec .container .steps {
    gap: 1rem;
    margin-top: 0;
  }

  .Follow-treatment-plan-sec .container .steps .item-step {
    gap: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
  }

  .Follow-treatment-plan-sec .container .steps .item-step img {
    width: 50px;
    height: auto;
  }

  .Follow-treatment-plan-sec .container .steps .item-step .content-item-step {
    width: 100%;
    gap: 0;
  }
  .Follow-treatment-plan-sec
    .container
    .steps
    .item-step
    .content-item-step
    h3 {
    font-size: 18px;
  }
  .Follow-treatment-plan-sec .container .steps .item-step .content-item-step p {
    font-size: 13px;
    color: #000000cc;
    margin-top: -0.5rem;
  }
  .Follow-treatment-plan-sec .container .img img {
    max-width: 100%;
    height: auto;
    margin-left: 0;
  }

  /* reviewers sec */
  .Reviewers-sec .container {
    width: 92%;
    gap: 1rem;
  }

  .Reviewers-sec .container .card {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .Reviewers-sec .container img {
    width: 100%;
  }
  .Reviewers-sec .container .card .content p {
    font-size: 12px;
    line-height: 22px;
  }
  .Reviewers-sec .container .card .review-card {
    border-radius: 30px;
    padding: 1.2rem;
    gap: 0.5rem;
    width: 95%;
    min-height: max-content;
    position: absolute;
    top: 140px;
    left: auto;
  }
  .Reviewers-sec .container .card .review-card .top-card {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  .Reviewers-sec .container .card .review-card .top-card .avatar img {
    width: 48px;
    height: 48px;
  }

  .Reviewers-sec .container .card .review-card .top-card .name-stars h6 {
    font-size: 13px;
  }
  .Reviewers-sec .container .card .review-card .top-card .name-stars img {
    width: 85px;
    height: auto;
  }

  /* status sec */
  .status-sec {
    padding: 2rem 0;
    margin: 10rem 0 2rem 0;
  }
  .status-sec .container {
    width: 92%;
    gap: 1rem;
  }

  /* faq sec */
  .faq-sec .container {
    width: 92%;
    flex-direction: column-reverse;
    text-align: center;
  }

  .faq-question {
    font-size: 14px;
    padding: 0.5rem;
  }

  .faq-sec .content {
    text-align: right;
  }

  .faq-sec .container .img img {
    width: 100%;
  }

  /* banner sec */
  .banner-cta .container {
    width: 92%;
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    min-height: auto;
    background: #c6b19926;
    border-radius: 40px;
  }

  /* footer */
  footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0 1rem 0;
  }

  footer .container {
    width: 92%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  footer .container .links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
  }
  footer .container .links .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    width: 100%;
  }
  footer .container .links .logo img {
    width: 57px;
  }
  footer .container .links .logo p {
    font-size: 14px;
    color: #1e1e1e;
    line-height: 25px;
    text-align: center;
  }
  footer .container .links .nav-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 3rem;
  }
  footer .container .links .nav-footer .item-nav {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1.2rem;
  }
  footer .container .links .nav-footer .item-nav a {
    font-size: 14px;
  }
  footer .container .links .nav-footer .item-nav a:hover {
    font-size: 14px;
  }

  footer .container .right {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  footer .container .right p {
    font-size: 12px;
    color: #1e1e1e;
  }

  footer .container .right .icon-list {
    display: flex;
    gap: 0;
  }

  /* heading */
  .heading-44px {
    font-size: 26px;
    font-weight: bold;
  }
  .heading-42px {
    font-size: 24px;
    font-weight: bold;
  }
  .heading-42px-about-sec {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
  }
  .heading-38px {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
  }
  .text-18px {
    font-size: 13px;
    line-height: 27px;
  }
  .text-16px {
    font-size: 13px;
    line-height: 27px;
    text-align: start;
  }

  /* box */
  .Hero-sec .container .img-hero .box-1 {
    right: 0;
    bottom: 275px;
  }
  .Hero-sec .container .img-hero .box-2 {
    right: 0;
    bottom: 30px;
  }
  .Hero-sec .container .img-hero .box-3 {
    left: 0;
    bottom: 150px;
  }

  /* container */
  .Hero-sec .container {
    width: 92%;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .About-sec .container {
    width: 92%;
    gap: 0.5rem;
    align-items: start;
    padding: 0;
  }

  .why-select-sec .container {
    width: 92%;
    gap: 2rem;
    flex-direction: column;
  }

  .benefits-sec .container {
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
  }

  .Types-calendar .container {
    width: 92%;
    align-items: center;
  }

  .Follow-treatment-plan-sec .container {
    width: 92%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
  }

  /* button */
  .primary-btn {
    min-width: 190px;
    padding: 0.8rem 0;
    font-size: 14px;
    font-weight: 500;
  }

  .hero-btn {
    display: none;
  }

  /* others */
  .line-height-64px {
    line-height: 36px;
  }
  .base-margin {
    margin: 1rem 0;
  }
  .mobile-v {
    display: block;
  }
  .desktop-v {
    display: none;
  }
  .hidden-in-mobile {
    display: none;
  }
  .hidden-in-desktop {
    display: block;
  }
}

@media (max-width: 768px) {
  .hidden-in-mobile {
    display: none !important;
  }
}

@media (max-width: 370px) {
  /* hero sec */
  .Hero-sec .container .img-hero .shiny-box {
    width: 115px;
  }

  /* status sec */
  .status-sec {
    margin: 12rem 0 2rem 0;
  }
}
