/* Top banner */

.TopBanner {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 84px 20px 30px;
  align-items: center;
  justify-content: center;
}

.TopBanner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.TopBanner .bannerVideo {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  top: 0;
  left: 0;
}

.bannerInfo {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--clr-white);
}

.bannerInfo h6 {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 400;
  margin: 0 0 15px;
  font-size: 20px;
  text-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.bannerInfo h1 {
  font-size: 50px;
  margin: 0 0 30px;
  text-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  font-weight: 600;
}

.bannerInfo h1 span {
  color: var(--clr-primary);
}

.downloadStore {
  display: flex;
  position: relative;
  z-index: 2;
  gap: 20px;
  margin-top: auto;
  justify-content: center;
}

.downloadStore a {
  display: inline-flex;
  border-radius: 3px;
}

.downloadStore a:hover {
  animation: pulse-animation 2s infinite;
}

.downloadStore img {
  width: 150px;
}
/* Info Card */

.infoCard {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  height: 270px;
  transition: all 0.4s ease-in-out;
}

.infoCard:hover {
  transform: translateY(-10px);
}

.infoCard .infoCardImg {
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.infoCard:hover .infoCardImg {
  filter: brightness(0.5);
}

.infoCardContentInfo {
  position: absolute;
  width: 90%;
  height: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
}

.infoCardContentInfo:before,
.infoCardContentInfo:after,
.infoCardContent:before,
.infoCardContent:after {
  content: "";
  position: absolute;
  transition: all 0.5s ease;
  background: var(--clr-white);
  z-index: 1;
}

.infoCardContentInfo::before {
  left: 0;
  top: 0;
  height: 0;
  width: 1px;
}

.infoCardContentInfo::after {
  right: 0;
  bottom: 0;
  height: 0;
  width: 1px;
}

.infoCardContent::before {
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
}

.infoCardContent::after {
  top: 0;
  right: 0;
  height: 1px;
  width: 0;
}

.infoCard:hover .infoCardContentInfo:before,
.infoCard:hover .infoCardContentInfo:after {
  height: 100%;
}

.infoCard:hover .infoCardContent:before,
.infoCard:hover .infoCardContent:after {
  width: 100%;
}

.infoCardContent {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contentBox {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: rgb(255 255 255 / 50%);
  backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out;
  transition-delay: 0.1s;
}

.infoCard:hover .contentBox {
  transform: translateY(0px);
  opacity: 1;
}

.infoCard .contentBox h6 {
  font-size: 16px;
  text-transform: uppercase;
}

.infoCard .contentBox p {
  font-size: 14px;
  color: var(--clr-dark);
}

.infoTabContent {
  width: 100%;
  height: 100%;
  text-align: left;
}

#infoCardTab {
  border: 0;
  margin-bottom: 15px;
}

#infoCardTab .nav-link {
  border: 0;
  margin: auto;
  font-size: 12px;
  padding: 5px 8px;
  border-radius: 3px;
  color: var(--clr-dark);
  text-transform: capitalize;
}

#infoCardTab .nav-link.active {
  background: var(--clr-primary);
  color: var(--clr-white);
}

#infoCardTabContent li {
  font-size: 14px;
  color: var(--clr-dark);
}

#infoCardTabContent ul {
  list-style-type: disc;
  padding-left: 18px;
}

/* quiz section */

.QuizeSection {
  overflow: hidden;
}

.QuizeSection .qa-container {
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 550px;
}

.men_img {
  width: 100%;
  filter: grayscale(1) brightness(0.5);
  transition: all 0.6s ease-in-out;
  position: absolute;
  top: 0;
  object-fit: cover;
  min-height: 100%;
}

.qa-container:hover .men_img {
  transform: scale(1.15);
  filter: grayscale(0);
}

.QuizeSection .qa-container-hidden {
  text-align: center;
  width: 100%;
}

.counter_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.back_btn {
  outline: none;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  color: var(--clr-primary);
}

.quiz-text {
  z-index: 1;
}

.counter {
  font-size: 12px;
  color: var(--clr-primary);
}

#quizContainer {
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buttons-group {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.question {
  font-size: 18px;
}

/* about us */

.about-description {
  border: 1px solid var(--clr-border);
  padding: 30px;
  border-radius: 10px;
}

.about-description p:last-child {
  margin: 0;
}

/* Popular Treatment */

.popularTreatment-sec {
  padding-left: 30px;
  padding-right: 30px;
}

.popularTreatmentTitle {
  display: flex;
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: 30px;
}

.popularTreatment-wrapper {
  display: flex;
  gap: 20px;
}

.treatment-nav ul {
  margin: 0;
  border: 0;
  flex-direction: column;
  gap: 10px;
}

.treatment-nav ul .nav-link {
  width: 100%;
  text-align: left;
  padding: 10px 15px;
  background: var(--clr-white);
  color: var(--clr-dark);
  border-radius: 5px;
  margin: 0;
  border: 1px solid var(--clr-border);
  min-width: 230px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  font-weight: 500;
}

.treatment-nav ul .nav-link:after {
  content: "\e5cc";
  font-family: "Material Icons";
  font-size: 24px;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  color: var(--clr-dark);
}

.treatment-nav ul .nav-link:hover,
.treatment-nav ul .nav-link.active {
  background: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: 0 5px 15px -5px rgb(0 0 0 / 50%);
  border: 1px solid var(--clr-primary);
}

.treatment-nav ul .nav-link:hover:after,
.treatment-nav ul .nav-link.active:after {
  opacity: 1;
  transform: translateX(5px);
  color: var(--clr-white);
}

.treatmentResult {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0 50px;
}

#TreatmentTabContent,
#TreatmentTabContent .tab-pane,
#TreatmentTabContent .swiper {
  height: 100%;
}

.treatmentSlider-content {
    display: flex;
    gap: 30px;
    align-items: center;
    height: 100%;
    margin-right: 45px;
}

.treatmentSlider-content .sliderThumb {
  width: 35%;
  min-width: 35%;
  max-height: 330px;
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  position: relative;
}

.treatmentSlider-content .sliderThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sliderContentInfo {
  width: 100%;
}

.sliderContentInfo ul {
  list-style-type: disclosure-closed;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sliderContentInfo ul li::marker {
  color: var(--clr-primary);
}

.btn-groups .ThemeBtn {
  font-size: 14px;
  font-weight: 300;
}

.sliderArrows {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 20px;
  width: 100%;
  justify-content: space-between;
}

.sliderArrows div {
  position: unset;
}

.sliderArrows div,
.swiperArrow {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sliderArrows div:after,
.swiperArrow:after {
  color: var(--clr-white);
  font-size: 12px;
}

.sliderArrows div.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.treatmentSlider-content .sliderLabel {
  position: absolute;
  top: 0;
  right: 10px;
  top: 10px;
  background: #0098f5;
  padding: 10px;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}

.sliderAfterBefore {
  width: 40%;
  max-width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.sliderAfterBefore img {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 1;
  object-fit: cover;
}

.sliderAfterBefore p {
  margin: 0;
}

.beforeImg,
.afterImg {
  width: 110px;
}

.beforeImg {
  margin-right: auto;
}

.afterImg {
  margin-left: auto;
}

.ImgArrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ImgArrow span {
  font-size: 30px;
  color: var(--clr-primary);
}

.treatmentSlider-content .secHead h4 {
  font-size: 20px;
}

.treatmentSlider-content .secHead h6 {
  font-size: 16px;
}

.sliderAfterBefore p {
  font-weight: 500;
  line-height: normal;
}

.TreatmentTabSelector {
  display: none;
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
}
.TreatmentTabSelectors {
  display: none;
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
}
/* Feature Card */

.studio_difference {
  position: relative;
}

.studio_text {
  position: relative;
  z-index: 2;
  color: var(--clr-white);
}

.studioVideo {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
}

.studio_difference::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.studio_difference .secHead p {
  color: #fff;
}

.studio-card {
  border: 1px solid rgb(238 238 238 / 20%);
  border-radius: 16px;
  padding: 15px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 25px -5px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
  background: rgb(8 8 8 / 69%);
  backdrop-filter: blur(3px);
  color: #fff;
}

.studio-card span {
  background: var(--clr-primary);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.studio-card h5 {
  margin: 20px 0px 5px 0px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  line-height: normal;
}

.studio-card p {
  margin: 0;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  color: #fff;
}

.studio-card:hover {
  color: var(--clr-white);
  background: #0097f571;
  backdrop-filter: blur(3px);
}

.studio-card:hover h5,
.studio-card:hover p {
  color: var(--clr-white);
}

.studio-card:hover span {
  background: var(--clr-white);
  color: var(--clr-primary);
}

/* Luxury Treatment */

.luxuryTreat-wrapper .infoCard {
  height: auto;
  aspect-ratio: 1;
}

/* Revie Video */

.reviwVideo-box {
  padding-left: 140px;
  margin: 0px 41px;
}

.revieVideo video {
   border-radius: 20px;
    overflow: hidden;
    line-height: 0;
    width: 100%;
    height: 285px;
    position: relative;
}

.revieVideo {
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
  width: 100%;
  height: 285px;
  position: relative;
}

.revieVideo:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 20px;
  background: rgb(0 0 0 / 15%);
  pointer-events: none;
}

.revieDetails {
    position: absolute;
    z-index: 1;
    left: 60px;
    top: 40%;
    transform: translateY(-50%);
    background: var(--clr-white);
    padding: 20px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 20%);
    border-radius: 10px;
}

.revieDetails ul {
  display: flex;
  justify-content: center;
  padding: 5px 10px;
  border: 1px solid var(--clr-border);
  border-radius: 5px;
  gap: 3px;
}

.revieDetails h6 {
  letter-spacing: 3px;
  font-weight: 400;
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
}

.revieDetails ul li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.revieDetails ul li i {
  font-size: 20px;
  color: var(--clr-yellow);
}

.videoArrows {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  padding: 10px 30px;
  background: var(--clr-primary);
  border-radius: 30px;
  box-shadow: 0 5px 15px rgb(0 0 0 / 15%);
}

.videoArrows div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.videoArrows div i {
  color: var(--clr-white);
}

.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.3;
}

.playBtn {
  width: 50px;
  height: 50px;
  background: var(--clr-primary);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  color: var(--clr-white);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease-in-out;
}

.revieVideo.playing .playBtn {
  opacity: 0;
  pointer-events: none;
}

.revieVideo.playing:hover .playBtn {
  opacity: 1;
  pointer-events: auto;
}

/* footer start */
.footer {
  background: var(--clr-light);
  /* border-radius: 20px; */
}

.contact_info li a {
  color: var(--clr-dark);
  display: flex;
  align-items: center;
}

.footer-top {
  display: flex;
  flex-direction: column;
}

.footer-icon {
  margin-bottom: 20px;
  max-width: 150px;
}

.footer-icon i {
  font-size: 48px;
  color: var(--clr-primary);
}

.book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: 12px 32px;
  border-radius: 24px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(80, 120, 255, 0.1);
  transition: all 0.3s ease;
  width: fit-content;
}

.book-btn:hover {
  color: var(--clr-white);
}

.book-btn .book-arrow {
  font-family: "Material Icons";
  font-size: 1.4em;
  vertical-align: middle;
  color: var(--clr-white);
  transition: transform 0.2s;
}

.book-btn:hover .book-arrow {
  transform: translateX(4px);
}
.map-container {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.footer-top .secHead {
  padding-right: 30px;
}

.footer-nav-row {
  padding: 30px 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  margin-top: 0px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid #eaeaea;
}

.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--clr-dark);
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  color: #6c6c6c;
  font-size: 0.98rem;
  margin-bottom: 12px;
  line-height: 1.5;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-section ul li:hover {
  color: var(--clr-primary);
}

.footer-section ul li i {
  color: var(--clr-primary);
  margin-right: 8px;
  font-size: 1.1em;
}
.footer .col-lg-6 {
  margin-right: -12px;
}

.contact_info li i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(80, 120, 255, 0.08);
  margin-right: 14px;
  vertical-align: middle;
  font-size: 16px;
  color: var(--clr-primary);
}

.contact_info li {
  display: flex;
  align-items: center;
  gap: 3px;
}

.footer_links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.footer_links li a {
  font-size: 14px;
  color: var(--clr-dark);
  transition: all 0.3s ease-out;
}

.links_head {
  font-size: 20px;
}

.contact_info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 14px;
  color: var(--clr-dark);
  width: 100%;
}

.footer-bottom a {
  color: var(--clr-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--clr-primary);
}

.footer_links li a:hover {
  color: var(--clr-primary);
}

.footer_end {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Gallery css */

.parallax-box {
  min-height: 100vh;
  background: url(../img/parallax-img.jpg) top center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

/* Instagram css */
.instaBox {
  margin-top: 20px;
}
.eapps-instagram-feed-posts-item-template-tile
  .eapps-instagram-feed-posts-item-link {
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.instaBox .eapps-instagram-feed-posts-item-template-tile {
  width: calc(30.3333% + 0px) !important;
  transition: all 0.5s ease-in-out;
}
.instaBox .eapps-instagram-feed-posts-view.eui-slider-slide {
  justify-content: center;
  gap: 24px !important;
}

.instaBox #eapps-instagram-feed-1 .eapps-instagram-feed-posts-item-overlay {
  border-radius: 12px;
}
.instaBox .eapps-instagram-feed-header-container {
  display: none;
}
.instaBox #eapps-instagram-feed-1 .eapps-instagram-feed-posts-slider-nav {
  background: rgb(0 152 245);
}

/* contact form */
.without_Box_top {
  padding-top: 150px;
}
.contact-form label {
  font-weight: 500;
}
.contact-form .form-control {
  border-radius: 10px;
  background: #f4f8fd;
  border: 1px solid #e0e6ed;
}
.contact-form .form-check-label {
  font-size: 0.95rem;
}
.contact-form .secHead {
  border-bottom: 1px solid var(--clr-border);
}
.contact-form .secHead p {
  margin-bottom: 24px;
}
.contact-form-box {
  margin-top: 24px;
}
.form_label {
  margin: 10px 0px;
}

.contact-form-content .form-control {
  background: #fafafb;
  border: none;
}
.contact-form-content .form-check-label {
  font-size: 14px;
}
.contact-form-content .form-check .form-check-input {
  margin-right: 6px;
}
.contact-form-content .form-check .form-check-input {
  margin-left: -6px;
}
.contact-info-content {
  box-shadow: rgba(17, 12, 46, 0.15) 0px 0px 100px 0px;
  border-radius: 12px;
  width: 100%;
  padding: 30px;
}
.info-box span {
  color: var(--clr-primary);
  height: 36px;
  width: 36px;
  background: #0098f51f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 18px;
}
.info-box {
  background: #fafafb;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact_info_img {
  height: 400px;
  margin-bottom: 20px;
}
.profile-img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  display: block;
}
.topSection {
  min-height: 500px;
  background: url(../img/topSection.jpeg) center center no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topSection::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #0000009c;
}
.contact-info-content .info-box:last-child {
  margin-bottom: 0;
}

/* about us  */

.about_us_content span {
  font-size: 20px;
  color: #0098f5;
}

.about_us_content h3 {
  font-size: 24px;
  margin: 16px 0px;
  text-transform: capitalize;
}
.about_us_content .virtual_arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  width: fit-content;
  margin-top: 24px;
}

.virtual_btn {
  transition: transform 0.2s;
}

.virtual_arrow:hover .virtual_btn {
  transform: translateX(4px);
}
.about_img_box {
  height: 400px;
}
.about_img_box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  overflow: hidden;
  object-position: top;
}

.about_content_right {
  padding-right: 50px;
}
.about_content_left {
  padding-left: 50px;
}

/* gallery css */

.video-thumb {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.2s;
}
/* .video-thumb:hover {
  transform: translateY(-10px);
} */

.custom-modal {
  display: none;
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
}
.custom-modal.active {
  display: flex;
}
.custom-modal-content {
  position: relative;
  background: #181818;
  border-radius: 16px;
  padding: 0;
  max-width: 800px;
  width: 95vw;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.custom-modal-body {
  position: relative;
  padding: 0;
}
.custom-modal video {
  width: 100%;
  height: 70vh;
  background: var(--clr-light);
  border-radius: 12px;
  display: block;
}
.custom-modal-btn {
  position: absolute;
  background: var(--clr-primary);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: background 0.2s;
  color: var(--clr-white);
}

.custom-modal-close {
  top: 16px;
  right: 16px;
}
.custom-modal-prev {
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
}
.custom-modal-next {
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
}
.custom-modal-playpause {
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  background: none !important;
  box-shadow: none;
}

.custom-modal-playpause .material-icons {
  font-size: 40px;
}
.video-gallery-row {
  margin-top: 30px;
}
.video-thumb-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contentBoxGallery {
  position: absolute;
  z-index: 9;
  opacity: 0;
  background: #00000082;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 12px;
  transition: all 0.4s ease-in-out;
  padding: 15px;
}
.contentBoxGallery h2 {
  font-size: 20px;
  color: #fff;
  text-align: center;
}
.contentBoxGallery p {
  color: var(--clr-white);
  text-align: center;
  margin: 0;
}
.video-thumb-col.video-thumb img {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
}
.video-thumb-col:hover .contentBoxGallery {
  opacity: 1;
}

/* financing css */

.financing_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-border);
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  color: #fff;
  height: 100%;
}
.financing_content img {
  width: 150px;
  object-fit: cover;
  margin-bottom: 16px;
}
.financing_content h3 {
  margin: 6px 0 10px;
  font-size: 20px;
  text-align: center;
  color: var(--clr-dark);
}
.financing_content p {
  margin: 0;
  text-align: center;
}
    .contactUs {
    background: url(../img/mendurance_home.jpg) center no-repeat;
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: end;
    position: relative;
    z-index: 9;
    background-size: cover;
}
.contactUs .secHead h2,
.contactUs .secHead p {
  color: var(--clr-white);
}
.contactUs::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 70%);
  z-index: -1;
}

.empowherHead {
  background: url(../img/Empowher.jpeg) center no-repeat;
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: end;
  position: relative;
  z-index: 9;
  background-size: cover;
}
.empowherHead .secHead h2,
.empowherHead .secHead p {
  color: var(--clr-white);
}
.empowherHead::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 70%);
  z-index: -1;
}
.empowherHead .row {
    padding-bottom: 20px;
}
/* mendurance page  Date - 15/05/2025 */
.mesduranceHead {
  background: url(../img/mendurance_home.jpg) center no-repeat;
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: end;
  position: relative;
  z-index: 9;
  background-size: cover;
}
.mesduranceHead .secHead h2,
.mesduranceHead .secHead p {
  color: var(--clr-white);
}
.mesduranceHead::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 70%);
  z-index: -1;
}

.aboutHead {
  background: url(../img/shutterstock_2085055825.jpg) center no-repeat;
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: end;
  position: relative;
  z-index: 9;
  background-size: cover;
  background-position: center 18%;
}
.aboutHead .secHead h2,
.aboutHead .secHead p {
  color: var(--clr-white);
}
.aboutHead::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 70%);
  z-index: -1;
}
.menduranceHeadBtn {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}
.sexual-health-top {
    background: url(../img/banner_top2.jpg) center center no-repeat !important;
    background-size: cover !important;
}
.services-details {
  flex-direction: column;
}
.services-details .sliderContentInfo ul li {
  border-bottom: 1px solid var(--clr-border);
}
.services-details .sliderContentInfo ul li:last-child {
  border-bottom: none;
}
.services-details .treatment-nav ul {
  flex-direction: row;
  flex-wrap: nowrap;
}
.services-details .treatment-nav ul .nav-link:after {
  font-size: 22px;
}
.services-details .treatment-nav ul .nav-link {
  font-size: 14px;
  padding: 10px 10px;
  min-width: 100%;
}
.services-details .treatment-nav ul li {
  width: 100%;
}

.services-details .treatmentResult {
  padding: 0;
}
.services-details .treatmentSlider-content {
  gap: 50px;
  margin-top: 30px;
}
.services-details .treatmentSlider-content .sliderThumb {
  width: 30%;
  min-width: 30%;
  max-height: 400px;
}

.pricing_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 4px;
}
.totalPriceBox {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  align-items: center;
}
.treatmentSlider-content .secHead h4 {
  font-size: 18px;
}
.treatmentSlider-content .secHead h4 span {
  color: var(--clr-primary);
  font-size: 16px;
}
.totalPriceBox p,
.totalPriceBox h4 {
  margin: 0;
}
.sliderContentInfo p {
  text-align: left;
}
span.priceService {
  font-size: 16px;
}
.whochooseContent {
  background: #fff;
  padding: 30px;
  margin-right: -126px;
  position: relative;
  z-index: 1;
  border-radius: 12px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 5px 15px;
  border-left: 5px solid var(--clr-primary);
}
.whoChooseImg {
  height: 400px;
}
.whochooseContent p {
  text-align: center;
  margin: 0;
}
.whoChooseImg img {
  height: 100%;
  width: 100%;
  border-radius: 12px;
}
.mesduranceHead .row {
  padding-bottom: 20px;
}
.science_section {
  background: url(../img/empower.jpg) center no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
}
.science_box::after {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 60%) !important;
}
.science_box .studio-card span {
  width: 40px;
  height: 40px;
}

/* Membership pricing Section  Date - 16/05/2025 */
.price_plan h4 {
  font-size: 18px;
}
.price_plan h5 {
  font-size: 16px;
  padding: 10px 0px;
}

.price_plan h2 {
  font-size: 28px;
  color: var(--clr-primary);
}

.price_plan h2 span {
  font-size: 15px;
  color: #bbb;
  font-weight: normal;
}
.price_plan p {
  margin: 0;
  font-size: 14px;
  padding-top: 12px;
}

.pricing_content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.pricing_content li {
  display: flex;
}

.pricing_content li span {
  font-size: 20px;
  color: var(--clr-primary);
}
.price_plan {
  border: 1px solid #ddd;
  padding: 16px;
  border-radius: 7px;
  height: 100%;
}
.popular_plan {
  display: flex;
  align-items: center;
  gap: 10px;
}

.popular_plan h5 {
  padding: 0;
  border: 1px solid var(--clr-primary);
  border-radius: 15px;
  padding: 4px 10px;
  font-size: 12px;
}

.popular_Box {
  transform: scaleY(1.1);
  background: linear-gradient(135deg, #0098f530, #eef2ff03);
  border: 1px solid var(--clr-primary);
}
.pricing_content li::before {
  content: "\e5ca";
  font-family: "Material Icons";
  color: var(--clr-primary);
  font-size: 18px;
  vertical-align: middle;
  margin-right: 8px;
}
.science_box {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.science_box li h5 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}
.science_box li h5 span {
  color: var(--clr-white);
  background: var(--clr-primary);
  border-radius: 50%;
  padding: 3px;
  color: #fff;
  font-size: 18px;
}
.science_box li {
  padding: 10px 0px;
  flex: 1;
}

/* Gallery section */

.gallery_content {
  position: relative;
  z-index: 9;
  margin-right: -191px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
}

.gallery_content .virtual_arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  width: fit-content;
  margin-top: 24px;
}

.myGallery .swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.myGallery {
  padding: 0px 15px;
}

.GallerySection .sliderArrows {
  position: absolute;
  z-index: 2;
  transform: translateY(-50%);
  top: 77%;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 20px;
  justify-content: center;
}
.gallery_content h1 {
  font-size: 48px;
  font-weight: 500;
  color: #0098f5;
  background: linear-gradient(135deg, #0098f514, #eef2ff03);
  padding: 10px;
  text-transform: capitalize;
  border-radius: 6px;
}
.gallery_content .virtual_arrow {
  color: var(--clr-dark);
}

/* program section */
.program_img {
  height: 550px;
  width: 100%;
}

.program_img img {
  height: 100%;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  object-position: top;
}
.program_item {
  border: 1px solid var(--clr-border);
  margin: 14px 0px;
  padding: 10px;
  border-radius: 8px;
}

.program_item h5 {
  font-size: 16px;
  color: var(--clr-primary);
}

.program_item p {
  margin: 0;
  font-size: 14px;
}

/* add_on_service */
.add_on_service {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  margin-top: 50px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 5px 15px;
  padding: 20px 30px;
  border-radius: 7px;
  background: linear-gradient(45deg, #0098f542, transparent);
  width: 100%;
}
.add_on_service h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.add_on_apply {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.add_on_apply li::before {
  content: "\e838";
  font-family: "Material Icons";
  color: var(--clr-primary);
  font-size: 18px;
  vertical-align: middle;
  margin-right: 8px;
}
.add_on_price {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
ul.add_on_apply li {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--clr-light);
  padding-bottom: 4px;
}
ul.add_on_apply li:last-child {
  border: none;
}

.footer-top .secHead h2 {
  font-size: 32px;
}

/* Ultimate Women Section Date : 20/05/26 */

.program_content {
  margin-top: 20px;
}
.empowher_box {
  margin-top: 14px;
  height: 495px;
  overflow-y: scroll;
  padding: 0 !important;
}
.empowher_box::-webkit-scrollbar {
  width: 5px;
  height: 5px !important;
}

.empowher_box::-webkit-scrollbar-track {
  background: #f2f2f2;
}

.empowher_box::-webkit-scrollbar-thumb {
  background-color: #f2f2f2;
  border-radius: 4px;
}

.empowher_box::-webkit-scrollbar-thumb:hover {
  background: #f2f2f2;
}

.hormone_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  overflow: hidden;
}

.hormone_text h5 {
  font-size: 18px;
}
/* Botox Page */
.before-after-img .sliderAfterBefore {
  width: 100%;
  max-width: 100%;
  gap: 20px;
}
.before-after-text .secHead p {
  font-size: 15px;
  margin-bottom: 10px;
}
.before-after-img .sliderAfterBefore .beforeImg,
.before-after-img .sliderAfterBefore .afterImg {
  width: 100%;
}
.before-after-img {
  background: #0097f514;
  padding: 16px;
  border-radius: 12px;
}
.beforeAfter_tab {
  display: flex;
  height: 100%;
  gap: 20px;
  width: 100%;
}
.beforeAfter_tab h5 {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  gap: 10px;
  letter-spacing: 6px;
  font-weight: 400;
  justify-content: center;
  width: 100%;
  color: var(--clr-primary);
  font-size: 14px;
  height: 100%;
  margin: 0;
  border-radius: 12px;
}
.beforeAfter_tab h5 span {
  color: var(--clr-primary);
  font-size: 18px;
}
.beforeArrow {
  width: 100%;
  border: 1px dashed #0098f54a;
  border-radius: 10px;
}
.before-after-img .ImgArrow {
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000;
  top: 40%;
  z-index: 10;
}

.swiper {
    padding: 0 40px !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 22px;
}

.rhaSlider,
.juvedermSlider,
.radiesseSlider {
  padding: 0px 20px;
}
.marked_content {
    list-style-type: disclosure-closed;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0px 10px 10px 20px;
}
.marked_content li::marker {
  color: var(--clr-primary);
}
.marked_content li {
  font-size: 12px;
  padding: 4px 0px;
}
.faq_section {
  background: #000;
  color: var(--clr-white);
}
.faq_content .accordion {
  background: #000;
  border: none;
}
.faq_content .accordion-item {
  background: #000;
  color: var(--clr-white);
}
.faq_content .accordion-item {
  background: #000;
  color: var(--clr-white);
  margin: 16px 0px;
  border: 1px solid #444;
}
.faq_content .accordion-button {
  background: #000;
  color: var(--clr-white);
}
.faq_content .accordion-button:focus {
  background: rgba(0, 151, 245, 0.443);
  color: var(--clr-white);
  box-shadow: none;
}
.faq_content .accordion-button::after {
  filter: brightness(0) invert(1);
}
.faq_content .accordion-body {
  color: var(--clr-white);
}


.payment-section {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.padding-20 {
  padding: 20px;
}

.secHead h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.secHead p {
  font-size: 1rem;
  color: #000;
}

.payment-links {
  gap: 20px;
  padding: 20px;
}

.custom_margin{
  margin-left: 142px;
}

.custom_container{
  width: 1310px;
  max-width: 100%;
}

.custom_padding{
  padding: 20px 170px 20px 20px;
}


.flex-item {
  flex: 1;
  min-width: 200px;
  margin-bottom: 1rem; /* for mb-3 equivalent */
}
@media (min-width: 992px) {
  .col-lg-5 {
    flex: 0 0 auto;
    width: 36.666667%;
  }
    .payment-links {
    gap: 14px;
  }

}

@media (max-width: 1120px){
  .custom_margin{
    margin-left: 0px;
  }

    .custom_padding{
      padding-right: 20px;
    }
}

@media (max-width: 720px) {
  .custom_padding {
    padding: 0px !important;
  }

  .custom_margin {
    margin-left: 0px;
  }
}

.payment-link {
  display: block;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  color: #000;
  width: 100%;
  text-align: left;
  text-decoration: none;
  font-family: inherit;
  transition: background 0.3s ease;
}

.payment-link.bg-light {
  background-color: #f8f9fa;
}

.payment-link:hover {
  background-color: #e2e6ea;
}

.payment-link h3 {
  margin: 0;
  font-size: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow-icon {
  display: inline-block;
  margin-left: 10px;
}
