/**
* Template Name: Medilab
* Template URL: https://bootstrapmade.com/medilab-free-medical-bootstrap-theme/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "Raleway",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2c4964; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #7b53b7; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #2c4964;  /* The default color of the main navmenu links */
  --nav-hover-color: #1977cc; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #2c4964; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1977cc; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f1f7fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--accent-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

i.bi.bi-facebook {
    font-size: 25px;
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 60px;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 100px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 25px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 72px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: calc(100vh - 112px);
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .container {
  z-index: 3;
}

.hero .welcome h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero .welcome p {
  font-size: 24px;
  margin: 0;
}

.hero .content {
  margin-top: 40px;
}

.hero .content .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
  border-radius: 4px;
}

.hero .content .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.hero .content .why-box p {
  margin-bottom: 30px;
}

.hero .content .why-box .more-btn {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  display: inline-block;
  padding: 6px 30px 8px 30px;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.hero .content .why-box .more-btn i {
  font-size: 14px;
}

.hero .content .why-box .more-btn:hover {
  background: var(--surface-color);
  color: var(--accent-color);
}

.hero .content .icon-box {
  text-align: center;
  border-radius: 10px;
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
}

.hero .content .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
}

.hero .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 20px 0;
}

.hero .content .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
.about .content h4 {
  font-size: 1.2rem;
  font-weight: 500;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 25px;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 600;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

.img-fluid{
  box-shadow : rgba(0, 0, 0, 0.35) 0px 5px 15px; 
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 32px;
  display: block;
  margin: 10px 0;
  font-weight: 700;
  color: var(--heading-color);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.services .service-item:hover .icon {
  background: var(--surface-color);
}

.services .service-item:hover .icon i {
  color: var(--accent-color);
}

.services .service-item:hover .icon::before {
  background: color-mix(in srgb, var(--background-color), transparent 70%);
}

.services .service-item:hover h4,
.services .service-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Appointment Section
--------------------------------------------------------------*/
.appointment .php-email-form {
  width: 100%;
}

.appointment .php-email-form .form-group {
  padding-bottom: 8px;
}

.appointment .php-email-form input,
.appointment .php-email-form textarea,
.appointment .php-email-form select {
  color: var(--default-color);
  background-color: transparent;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}

.appointment .php-email-form input:focus,
.appointment .php-email-form textarea:focus,
.appointment .php-email-form select:focus {
  border-color: var(--accent-color);
}

.appointment .php-email-form input::placeholder,
.appointment .php-email-form textarea::placeholder,
.appointment .php-email-form select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.appointment .php-email-form input,
.appointment .php-email-form select {
  height: 44px;
}

.appointment .php-email-form textarea {
  padding: 10px 12px;
}

.appointment .php-email-form button[type=submit] {
  background: var(--accent-color);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.appointment .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Departments Section
--------------------------------------------------------------*/
.departments {
  overflow: hidden;
}

.departments .nav-tabs {
  border: 0;
}

.departments .nav-link {
  border: 0;
  padding: 12px 15px 12px 12px;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 600;
  font-size: 15px;
}

.departments .nav-link:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.departments .nav-link.active {
  color: #fff;
  border-color: var(--accent-color);
  background-color: var(--accent-color);
}

.departments .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.departments .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.departments .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.departments .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .departments .nav-link {
    border: 0;
    padding: 15px;
  }

  .departments .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Doctors Section
--------------------------------------------------------------*/
.doctors .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}

@media (max-width: 468px) {
  .doctors .team-member {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}

.doctors .team-member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 50%;
  flex-shrink: 0;
}

.doctors .team-member .pic img {
  transition: ease-in-out 0.3s;
}

.doctors .team-member:hover {
  transform: translateY(-10px);
}

.doctors .team-member .member-info {
  padding-left: 30px;
}

@media (max-width: 468px) {
  .doctors .team-member .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }
}

.doctors .team-member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.doctors .team-member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.doctors .team-member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  bottom: 0;
  left: 0;
}

@media (max-width: 468px) {
  .doctors .team-member span::after {
    left: calc(50% - 25px);
  }
}

.doctors .team-member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.doctors .team-member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}

@media (max-width: 468px) {
  .doctors .team-member .social {
    justify-content: center;
  }
}

.doctors .team-member .social a {
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 36px;
  height: 36px;
}

.doctors .team-member .social a i {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  margin: 0 2px;
}

.doctors .team-member .social a:hover {
  background: var(--accent-color);
}

.doctors .team-member .social a:hover i {
  color: var(--contrast-color);
}

.doctors .team-member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials-clean {
  color:#313437;
  height: 725px;
}

.testimonials-clean p {
  color:#7d8285;
}

.testimonials-clean h2 {
  font-weight:bold;
  margin-bottom:40px;
  padding-top:40px;
  color:inherit;
}

@media (max-width:767px) {
  .testimonials-clean h2 {
    margin-bottom:25px;
    padding-top:25px;
    font-size:24px;
  }
}

.testimonials-clean .intro {
  font-size:16px;
  max-width:500px;
  margin:0 auto;
}

.testimonials-clean .intro p {
  margin-bottom:0;
}

.testimonials-clean .people {
  padding:50px 0 20px;
}

.testimonials-clean .item {
  margin-bottom:32px;
}

@media (min-width:768px) {
  .testimonials-clean .item {
    height:220px;
  }
}

.testimonials-clean .item .box {
  padding:30px;
  background-color:#fff;
  position:relative;
}

.testimonials-clean .item .box:after {
  content:'';
  position:absolute;
  left:30px;
  bottom:-24px;
  width:0;
  height:0;
  border:15px solid transparent;
  border-width:12px 15px;
  border-top-color:#fff;
}

.testimonials-clean .item .author {
  margin-top:28px;
  padding-left:25px;
}

.testimonials-clean .item .name {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2px;
    color: inherit;
}

.testimonials-clean .item .title {
  font-size:13px;
  color:#9da9ae;
}

.testimonials-clean .item .description {
  font-size:15px;
  margin-bottom:0;
}

.testimonials-clean .item img {
  max-width:40px;
  float:left;
  margin-right:12px;
  margin-top:-5px;
}



/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 36px;
  transition: 0.4s;
  border-radius: 50px;
  margin-top: 15px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}


/* Responsive Css Starts */

@media screen and (min-width: 576px) {
    table th, table td {
        padding: 15px !important;
    }
}

/*======================================
    Faq CSS
========================================*/
.faq {
  padding-bottom: 80px;
  background-color: #f9f9f9;
}



@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq .section-title {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .faq .section-title {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq {
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .faq {
    padding-bottom: 30px;
  }
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding-right: 40px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.accordion-item .accordion-button {
  border-radius: 4px;
  font-size: 17px;
  font-weight: 500;
  width: 100%;
  display: block;
  overflow: hidden;
  border: none;
  padding: 15px 25px;
  padding-right: 40px;
  background-color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .accordion-item .accordion-button {
    padding: 18px 20px;
    padding-right: 40px;
  }
}

@media (max-width: 767px) {
  .accordion-item .accordion-button {
    padding: 15px 20px;
    padding-right: 40px;
  }
}

.accordion-item .accordion-button .title {
  font-size: 14px;
  position: relative;
  font-weight: 600;
  float: left;
  line-height: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .accordion-item .accordion-button .title {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .accordion-item .accordion-button .title {
    font-size: 14px;
  }
}

.accordion-item .accordion-button i {
  font-size: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  top: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #7b53b7;
  border-radius: 4px 4px 0 0;
}

.accordion-button:not(.collapsed) i::before {
  content: "▼";
  font-family: lineIcons;
}

.accordion-button::after {
  display: none;
}

.accordion-collapse {
  border: none;
}

.accordion-body {
  border-radius: 0 0 4px 4px;
  padding: 25px;
  background-color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .accordion-body {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .accordion-body {
    padding: 20px;
  }
}

.accordion-body p {
  margin: 0;
  margin-bottom: 20px;
  color: #777;
}

.accordion-body p:last-child {
  margin: 0;
}

.accordion-item {
  margin-bottom: 20px;
  -webkit-box-shadow: 0px 0px 20px #00000007;
          box-shadow: 0px 0px 20px #00000007;
  border-radius: 4px;
}

.accordion-item:last-child {
  margin: 0;
}

.card-body .tag {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.blog-details-01 h1 {
  font-size: 2rem;
  padding-bottom: 1.5rem;
}

.blog-details-01 h2 {
  font-size: 1.8rem;
}

.blog-details-01 h3 {
  font-size: 1.6rem;
  font-weight: 300;
  margin-top: 4rem;
}

.blog-details-01 h4 {
  margin-top: 1.5rem;
  font-size: 1.2rem;  
}

.blog-details-01 p {
  font-weight: 400;
}

.blog-details-01 strong {
  font-weight: 500;
}

a.cta-btn-blog {
    color: #fff;
    background: #7b53b7;
    padding: 10px 25px;
}






/*
 * HOME 2 — Mains de Lumière
 * Load after the current main.css. All selectors are scoped to .home2.
 */

.home2 {
  --hm2-ink: #173454;
  --hm2-ink-deep: #0e2845;
  --hm2-muted: #65778a;
  --hm2-purple: #7b53b7;
  --hm2-purple-deep: #60409a;
  --hm2-lilac: #eee7f8;
  --hm2-lilac-light: #f8f5fc;
  --hm2-sky: #e9f4fa;
  --hm2-mint: #d8eee9;
  --hm2-cream: #fbfaf7;
  --hm2-white: #fff;
  --hm2-line: rgba(23, 52, 84, .12);
  --hm2-shadow: 0 24px 70px rgba(25, 42, 73, .12);
  --hm2-shadow-soft: 0 14px 40px rgba(25, 42, 73, .08);
  --hm2-radius: 28px;
  --hm2-font: "Poppins", "Segoe UI", sans-serif;
  color: var(--hm2-ink);
  background: var(--hm2-white);
  font-family: var(--hm2-font);
  line-height: 1.7;
  overflow: clip;
}

.home2 *,
.home2 *::before,
.home2 *::after {
  box-sizing: border-box;
}

.home2 h1,
.home2 h2,
.home2 h3,
.home2 h4,
.home2 p,
.home2 ul,
.home2 ol {
  margin-top: 0;
}

.home2 h1,
.home2 h2,
.home2 h3,
.home2 h4 {
  color: var(--hm2-ink);
  font-family: var(--hm2-font);
  line-height: 1.16;
  letter-spacing: -.035em;
}

.home2 a {
  color: inherit;
  text-decoration: none;
}

.home2 img {
  display: block;
  max-width: 100%;
}

.hm2-container {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
  position: relative;
}

.hm2-kicker,
.hm2-eyebrow {
  color: var(--hm2-purple);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hm2-btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: .9rem;
  font-weight: 650;
  gap: 12px;
  justify-content: center;
  min-height: 54px;
  padding: 13px 24px;
  transition: transform .3s ease, background-color .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.hm2-btn svg,
.hm2-text-link svg,
.hm2-certificate__arrow {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 18px;
}

.hm2-btn:hover {
  transform: translateY(-3px);
}

.hm2-btn--primary {
  background: linear-gradient(135deg, var(--hm2-purple), var(--hm2-purple-deep));
  box-shadow: 0 14px 32px rgba(123, 83, 183, .28);
  color: var(--hm2-white) !important;
}

.hm2-btn--primary:hover {
  box-shadow: 0 18px 38px rgba(123, 83, 183, .38);
}

.hm2-btn--ghost {
  background: rgba(255, 255, 255, .58);
  border-color: rgba(23, 52, 84, .17);
  color: var(--hm2-ink) !important;
  backdrop-filter: blur(10px);
}

.hm2-btn--ghost:hover {
  background: var(--hm2-white);
  border-color: rgba(123, 83, 183, .35);
}

.hm2-btn--soft {
  background: var(--hm2-lilac);
  color: var(--hm2-purple-deep) !important;
}

.hm2-icon {
  align-items: center;
  background: var(--hm2-lilac);
  border-radius: 14px;
  display: inline-flex;
  flex: 0 0 auto;
  height: 45px;
  justify-content: center;
  width: 45px;
}

.hm2-icon svg {
  fill: none;
  height: 21px;
  stroke: var(--hm2-purple);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 21px;
}

/* Hero */
.hm2-hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(248, 246, 251, .98) 0%, rgba(248, 246, 251, .92) 38%, rgba(248, 246, 251, .38) 72%, rgba(248, 246, 251, .15) 100%),
    var(--hm2-hero-image) center 35% / cover no-repeat;
  display: flex;
  min-height: min(810px, calc(100vh - 70px));
  overflow: hidden;
  padding: 96px 0 104px;
  position: relative;
  isolation: isolate;
}

.hm2-hero::after {
  background: linear-gradient(180deg, transparent 60%, rgba(255, 255, 255, .88));
  content: "";
  inset: auto 0 0;
  height: 160px;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.hm2-hero__wash {
  background:
    radial-gradient(circle at 16% 30%, rgba(220, 237, 244, .85), transparent 30%),
    radial-gradient(circle at 52% 80%, rgba(226, 211, 246, .55), transparent 30%);
  inset: 0;
  position: absolute;
  z-index: -2;
}

.hm2-orb {
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 50%;
  filter: blur(.2px);
  pointer-events: none;
  position: absolute;
}

.hm2-orb--one {
  animation: hm2Float 8s ease-in-out infinite;
  background: rgba(207, 231, 239, .34);
  height: 260px;
  left: -110px;
  top: 90px;
  width: 260px;
}

.hm2-orb--two {
  animation: hm2Float 10s ease-in-out -2s infinite reverse;
  background: rgba(123, 83, 183, .1);
  height: 170px;
  right: 5%;
  top: 11%;
  width: 170px;
}

.hm2-hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(40px, 7vw, 100px);
  grid-template-columns: minmax(0, 1.16fr) minmax(330px, .7fr);
}

.hm2-hero__content {
  max-width: 720px;
}

.hm2-eyebrow {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.hm2-eyebrow span {
  background: var(--hm2-purple);
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(123, 83, 183, .1);
  height: 7px;
  width: 7px;
}

.hm2-hero h1 {
  font-size: clamp(3.25rem, 5.8vw, 6.4rem);
  font-weight: 650;
  letter-spacing: -.07em;
  margin-bottom: 27px;
  max-width: 790px;
}

.hm2-hero h1 em {
  color: var(--hm2-purple);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.055em;
}

.hm2-hero__lead {
  color: #48647e;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
  margin-bottom: 34px;
  max-width: 650px;
}

.hm2-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hm2-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.hm2-hero__proof li {
  padding-top: 15px;
  align-items: center;
  color: #48647e;
  display: flex;
  font-size: .79rem;
  font-weight: 600;
  gap: 7px;
}

.hm2-hero__proof svg {
  fill: none;
  height: 16px;
  stroke: var(--hm2-purple);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  width: 16px;
}

.hm2-hero-card {
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(31, 45, 75, .17);
  overflow: hidden;
  padding: 35px;
  position: relative;
  backdrop-filter: blur(20px);
}

.hm2-hero-card::after {
  border: 1px solid rgba(123, 83, 183, .14);
  border-radius: 25px;
  content: "";
  inset: 8px;
  pointer-events: none;
  position: absolute;
}

.hm2-hero-card__halo {
  background: radial-gradient(circle, rgba(123, 83, 183, .23), transparent 68%);
  border-radius: 50%;
  height: 200px;
  position: absolute;
  right: -100px;
  top: -100px;
  width: 200px;
}

.hm2-hero-card__label {
  color: var(--hm2-purple);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  margin-bottom: 13px;
  text-transform: uppercase;
}

.hm2-hero-card h2 {
  font-size: clamp(1.6rem, 2vw, 2.05rem);
  margin-bottom: 28px;
}

.hm2-hero-card__items {
  display: grid;
  gap: 18px;
}

.hm2-hero-card__items > div {
  align-items: center;
  display: flex;
  gap: 14px;
}

.hm2-hero-card__items p {
  line-height: 1.35;
  margin: 0;
}

.hm2-hero-card__items strong,
.hm2-hero-card__items small {
  display: block;
}

.hm2-hero-card__items strong {
  color: var(--hm2-ink);
  font-size: .9rem;
}

.hm2-hero-card__items small {
  color: var(--hm2-muted);
  font-size: .74rem;
  margin-top: 4px;
}

.hm2-whatsapp {
  align-items: center;
  background: var(--hm2-ink);
  border-radius: 17px;
  color: var(--hm2-white) !important;
  display: flex;
  font-size: .84rem;
  font-weight: 650;
  gap: 10px;
  justify-content: center;
  margin-top: 27px;
  padding: 15px 18px;
  position: relative;
  transition: background-color .3s ease, transform .3s ease;
  z-index: 2;
}

.hm2-whatsapp:hover {
  background: var(--hm2-purple-deep);
  transform: translateY(-2px);
}

.hm2-whatsapp svg {
  fill: none;
  height: 19px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  width: 19px;
}

.hm2-scroll-cue {
  align-items: center;
  bottom: 30px;
  color: var(--hm2-muted) !important;
  display: flex;
  font-size: .65rem;
  font-weight: 650;
  gap: 9px;
  left: 50%;
  letter-spacing: .15em;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hm2-scroll-cue span {
  border: 1px solid rgba(23, 52, 84, .28);
  border-radius: 999px;
  height: 27px;
  position: relative;
  width: 17px;
}

.hm2-scroll-cue span::after {
  animation: hm2Scroll 1.8s ease-in-out infinite;
  background: var(--hm2-purple);
  border-radius: 50%;
  content: "";
  height: 3px;
  left: 6px;
  position: absolute;
  top: 6px;
  width: 3px;
}

.hm2-animate {
  animation: hm2HeroIn .85s cubic-bezier(.2, .75, .25, 1) both;
}

.hm2-animate--1 { animation-delay: .05s; }
.hm2-animate--2 { animation-delay: .14s; }
.hm2-animate--3 { animation-delay: .24s; }
.hm2-animate--4 { animation-delay: .34s; }
.hm2-animate--5 { animation-delay: .44s; }

/* Shared sections */
.hm2-intro,
.hm2-about,
.hm2-services,
.hm2-sessions,
.hm2-locations,
.hm2-testimonials,
.hm2-faq,
.hm2-contact,
.hm2-google-reviews {
  padding: clamp(82px, 9vw, 132px) 0;
}

.hm2-intro {
  background: var(--hm2-white);
}

.hm2-intro__heading,
.hm2-intro__body {
  display: grid;
  gap: 40px;
  grid-template-columns: .7fr 1.3fr;
}

.hm2-intro__heading {
  align-items: end;
}

.hm2-intro__heading h2 {
  font-size: clamp(2.35rem, 4.1vw, 4.25rem);
  margin: 0;
  max-width: 850px;
}

.hm2-intro__heading h2 span {
  color: var(--hm2-purple);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

.hm2-intro__body {
  border-top: 1px solid var(--hm2-line);
  margin-top: 42px;
  padding-top: 34px;
}

.hm2-intro__body > p:first-child {
  color: #466078;
  font-size: 1.07rem;
  margin: 0;
}

.hm2-medical-note {
  border-left: 2px solid var(--hm2-purple);
  color: var(--hm2-muted);
  font-size: .8rem;
  margin: 0;
  padding: 3px 0 3px 19px;
}

.hm2-trust-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 62px;
}

.hm2-trust-card {
  align-items: center;
  background: var(--hm2-cream);
  border: 1px solid rgba(23, 52, 84, .07);
  border-radius: 22px;
  display: flex;
  gap: 20px;
  padding: 25px 27px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.hm2-trust-card:hover {
  box-shadow: var(--hm2-shadow-soft);
  transform: translateY(-5px);
}

.hm2-trust-card strong {
  color: var(--hm2-purple);
  flex: 0 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.55rem;
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1;
}

.hm2-trust-card sup,
.hm2-trust-card small {
  font-size: .5em;
}

.hm2-trust-card span {
  color: var(--hm2-muted);
  font-size: .75rem;
  font-weight: 550;
  line-height: 1.5;
}

/* About */
.hm2-about {
  background: var(--hm2-lilac-light);
}

.hm2-about__grid {
  align-items: center;
  display: grid;
  gap: clamp(55px, 8vw, 110px);
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.05fr);
}

.hm2-about__visual {
  min-height: 610px;
  position: relative;
}

.hm2-about__image-wrap {
  border-radius: 190px 190px 34px 34px;
  box-shadow: var(--hm2-shadow);
  height: 590px;
  overflow: hidden;
  position: relative;
}

.hm2-about__image-wrap::after {
  background: linear-gradient(180deg, transparent 65%, rgba(14, 40, 69, .22));
  content: "";
  inset: 0;
  position: absolute;
}

.hm2-about__image-wrap img {
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
  width: 100%;
}

.hm2-about__visual:hover img {
  transform: scale(1.035);
}

.hm2-about__visual::before {
  border: 1px solid rgba(123, 83, 183, .24);
  border-radius: 50%;
  content: "";
  height: 230px;
  left: -70px;
  position: absolute;
  top: -45px;
  width: 230px;
}

.hm2-certificate {
  align-items: center;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 20px;
  bottom: -25px;
  box-shadow: var(--hm2-shadow-soft);
  display: flex;
  gap: 14px;
  padding: 17px 18px;
  position: absolute;
  right: -35px;
  width: min(310px, 80%);
  backdrop-filter: blur(16px);
}

.hm2-certificate > span {
  align-items: center;
  background: var(--hm2-purple);
  border-radius: 15px;
  display: flex;
  flex: 0 0 auto;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.hm2-certificate > span svg {
  fill: none;
  height: 23px;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 23px;
}

.hm2-certificate p {
  line-height: 1.35;
  margin: 0 auto 0 0;
}

.hm2-certificate small,
.hm2-certificate strong {
  display: block;
}

.hm2-certificate small {
  color: var(--hm2-muted);
  font-size: .68rem;
}

.hm2-certificate strong {
  font-size: .85rem;
  margin-top: 2px;
}

.hm2-about__content h2 {
  font-size: clamp(2.35rem, 4vw, 4.05rem);
  margin-bottom: 25px;
}

.hm2-about__lead {
  color: #50687e;
  font-size: 1.05rem;
  margin-bottom: 34px;
}

.hm2-check-list {
  display: grid;
  gap: 23px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hm2-check-list li {
  display: flex;
  gap: 16px;
}

.hm2-check-list li > span {
  align-items: center;
  background: var(--hm2-white);
  border: 1px solid rgba(123, 83, 183, .16);
  border-radius: 50%;
  display: flex;
  flex: 0 0 auto;
  height: 32px;
  justify-content: center;
  margin-top: 2px;
  width: 32px;
}

.hm2-check-list svg {
  fill: none;
  height: 15px;
  stroke: var(--hm2-purple);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  width: 15px;
}

.hm2-check-list h3 {
  font-size: .97rem;
  letter-spacing: -.015em;
  margin-bottom: 5px;
}

.hm2-check-list p {
  color: var(--hm2-muted);
  font-size: .79rem;
  margin: 0;
}

.hm2-signature {
  align-items: center;
  border-top: 1px solid var(--hm2-line);
  display: flex;
  gap: 15px;
  margin-top: 38px;
  padding-top: 27px;
}

.hm2-signature__mark {
  align-items: center;
  background: var(--hm2-ink);
  border-radius: 50%;
  color: var(--hm2-white);
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .9rem;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.hm2-signature p {
  line-height: 1.35;
  margin: 0;
}

.hm2-signature strong,
.hm2-signature span {
  display: block;
}

.hm2-signature strong { font-size: .88rem; }
.hm2-signature span { color: var(--hm2-muted); font-size: .71rem; margin-top: 3px; }

/* Services */
.hm2-services {
  background: var(--hm2-white);
}

.hm2-section-head {
  align-items: end;
  display: grid;
  gap: 50px;
  grid-template-columns: 1.25fr .75fr;
  margin-bottom: 54px;
}

.hm2-section-head h2,
.hm2-locations__content h2,
.hm2-faq__intro h2,
.hm2-contact__details h2,
.hm2-reviews-head h2 {
  font-size: clamp(2.25rem, 4vw, 4rem);
  margin-bottom: 0;
}

.hm2-section-head > p {
  color: var(--hm2-muted);
  font-size: .9rem;
  margin: 0;
}

.hm2-services__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(6, 1fr);
}

.hm2-service-card {
  background: var(--hm2-cream);
  border: 1px solid rgba(23, 52, 84, .07);
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  min-height: 325px;
  overflow: hidden;
  padding: 27px;
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease, background-color .35s ease;
}

.hm2-service-card--large {
  background: var(--hm2-ink);
  grid-column: span 3;
}

.hm2-service-card--wide {
  align-items: end;
  background: var(--hm2-lilac);
  display: grid;
  gap: 22px;
  grid-column: span 3;
  grid-template-columns: auto 1fr;
}

.hm2-service-card:hover {
  box-shadow: var(--hm2-shadow-soft);
  transform: translateY(-7px);
}

.hm2-service-card:not(.hm2-service-card--large):hover {
  background: var(--hm2-lilac-light);
}

.hm2-service-card__top {
  align-items: start;
  display: flex;
  justify-content: space-between;
  margin-bottom: auto;
  width: 100%;
}

.hm2-service-card__number {
  color: rgba(23, 52, 84, .42);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .83rem;
  font-style: italic;
}

.hm2-service-card__top img {
  box-shadow: none !important;
  height: 55px;
  object-fit: contain;
  width: 55px;
}

.hm2-service-card h3 {
  font-size: 1.27rem;
  margin: 31px 0 11px;
}

.hm2-service-card p {
  color: var(--hm2-muted);
  font-size: .76rem;
  margin-bottom: 22px;
}

.hm2-service-card__tag {
  color: var(--hm2-purple);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .09em;
  margin-top: auto;
  text-transform: uppercase;
}

.hm2-service-card--large .hm2-service-card__number,
.hm2-service-card--large h3,
.hm2-service-card--large p,
.hm2-service-card--large .hm2-service-card__tag {
  color: var(--hm2-white);
}

.hm2-service-card--large p {
  color: rgba(255, 255, 255, .67);
}

.hm2-service-card--wide .hm2-service-card__top {
  align-self: stretch;
  flex-direction: column;
  margin: 0;
}

.hm2-service-card--wide h3 {
  margin-top: 0;
}

.hm2-service-card--wide .hm2-service-card__tag {
  bottom: 27px;
  position: absolute;
  right: 27px;
}

/* Sessions */
.hm2-sessions {
  background: var(--hm2-ink-deep);
  color: rgba(255, 255, 255, .75);
  position: relative;
}

.hm2-sessions::before {
  background: radial-gradient(circle, rgba(123, 83, 183, .22), transparent 68%);
  border-radius: 50%;
  content: "";
  height: 520px;
  left: -250px;
  position: absolute;
  top: 100px;
  width: 520px;
}

.hm2-section-head--light h2,
.hm2-section-head--light .hm2-kicker {
  color: var(--hm2-white);
}

.hm2-section-head--light .hm2-kicker {
  color: #c8adee;
}

.hm2-section-head--light > p {
  color: rgba(255, 255, 255, .58);
}

.hm2-steps {
  counter-reset: steps;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 0 0 52px;
  padding: 0;
  position: relative;
}

.hm2-steps::before {
  background: rgba(255, 255, 255, .15);
  content: "";
  height: 1px;
  left: 3%;
  position: absolute;
  right: 3%;
  top: 27px;
}

.hm2-steps li {
  align-items: flex-start;
  display: flex;
  gap: 18px;
  padding-right: 42px;
  position: relative;
}

.hm2-steps li > span {
  align-items: center;
  background: var(--hm2-ink-deep);
  border: 1px solid rgba(255, 255, 255, .23);
  border-radius: 50%;
  color: #d3bff0;
  display: flex;
  flex: 0 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .72rem;
  height: 55px;
  justify-content: center;
  position: relative;
  width: 55px;
  z-index: 1;
}

.hm2-steps h3 {
  color: var(--hm2-white);
  font-size: 1rem;
  margin: 6px 0 6px;
}

.hm2-steps p {
  color: rgba(255, 255, 255, .55);
  font-size: .72rem;
  line-height: 1.6;
  margin: 0;
}

.hm2-session-panel {
  background: var(--hm2-white);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .22);
  overflow: hidden;
}

.hm2-tabs {
  background: #f5f3f7;
  border-bottom: 1px solid rgba(23, 52, 84, .09);
  display: flex;
  gap: 7px;
  padding: 10px;
}

.hm2-tabs button {
  background: transparent;
  border: 0;
  border-radius: 14px;
  color: var(--hm2-muted);
  cursor: pointer;
  font-family: inherit;
  font-size: .78rem;
  font-weight: 650;
  padding: 13px 19px;
  transition: background-color .25s ease, color .25s ease, box-shadow .25s ease;
}

.hm2-tabs button:focus {
  outline: none;
}

.hm2-tabs button:focus-visible {
  box-shadow: 0 0 0 3px rgba(123, 83, 183, .22);
}

.hm2-tabs button.is-active {
  background: var(--hm2-white);
  box-shadow: 0 5px 18px rgba(23, 52, 84, .08);
  color: var(--hm2-purple);
}

.hm2-tab-pane {
  align-items: center;
  animation: hm2Fade .42s ease both;
  color: var(--hm2-ink);
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .58fr);
  min-height: 480px;
  padding: clamp(35px, 6vw, 72px);
}

.hm2-tab-pane[hidden] {
  display: none;
}

.hm2-tab-pane h3 {
  font-size: clamp(1.85rem, 3.2vw, 3.1rem);
  margin-bottom: 20px;
  max-width: 690px;
}

.hm2-tab-pane > div > p:not(.hm2-kicker):not(.hm2-small-note) {
  color: var(--hm2-muted);
  font-size: .87rem;
  max-width: 680px;
}

.hm2-tab-pane > img {
  border-radius: 24px;
  box-shadow: var(--hm2-shadow-soft) !important;
  height: 330px;
  object-fit: cover;
  width: 100%;
}

.hm2-mini-list,
.hm2-ethics-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 27px 0 0;
  padding: 0;
}

.hm2-mini-list li {
  align-items: center;
  color: #456179;
  display: flex;
  font-size: .78rem;
  gap: 11px;
}

.hm2-mini-list span {
  background: var(--hm2-purple);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--hm2-lilac);
  height: 6px;
  width: 6px;
}

.hm2-pricing {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}

.hm2-pricing article {
  background: var(--hm2-lilac-light);
  border: 1px solid rgba(123, 83, 183, .11);
  border-radius: 17px;
  padding: 18px;
}

.hm2-pricing article p {
  line-height: 1.25;
  margin-bottom: 9px;
}

.hm2-pricing strong,
.hm2-pricing span {
  display: block;
}

.hm2-pricing strong {
  color: var(--hm2-purple);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.hm2-pricing span {
  font-size: .72rem;
  font-weight: 650;
}

.hm2-pricing small,
.hm2-small-note {
  color: var(--hm2-muted);
  font-size: .64rem;
}

.hm2-pricing__featured {
  background: var(--hm2-ink) !important;
}

.hm2-pricing__featured span,
.hm2-pricing__featured small {
  color: rgba(255, 255, 255, .75);
}

.hm2-small-note {
  margin: 13px 0 0 !important;
}

.hm2-ethics-list li {
  background: var(--hm2-lilac-light);
  border-radius: 14px;
  color: var(--hm2-muted);
  font-size: .75rem;
  padding: 14px 16px;
}

.hm2-ethics-list strong {
  color: var(--hm2-ink);
}

.hm2-ethics-visual {
  align-items: center;
  background: var(--hm2-lilac-light);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  height: 330px;
  justify-content: center;
}

.hm2-ethics-visual svg {
  fill: none;
  height: 145px;
  stroke: var(--hm2-purple);
  stroke-width: 1;
  width: 145px;
}

.hm2-ethics-visual span {
  color: var(--hm2-muted);
  font-size: .64rem;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Locations */
.hm2-locations {
  background: var(--hm2-sky);
}

.hm2-locations__grid {
  align-items: center;
  display: grid;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: .9fr 1.1fr;
}

.hm2-locations__content h2 {
  margin-bottom: 25px;
}

.hm2-locations__content > p:not(.hm2-kicker) {
  color: var(--hm2-muted);
  font-size: .9rem;
  margin-bottom: 28px;
}

.hm2-text-link {
  align-items: center;
  color: var(--hm2-purple) !important;
  display: inline-flex;
  font-size: .82rem;
  font-weight: 700;
  gap: 10px;
}

.hm2-text-link svg {
  transition: transform .25s ease;
}

.hm2-text-link:hover svg {
  transform: translateX(5px);
}

.hm2-locations__map {
  background:
    radial-gradient(circle at 25% 38%, rgba(123, 83, 183, .18) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 60%, rgba(23, 52, 84, .16) 0 2px, transparent 3px),
    rgba(255, 255, 255, .55);
  background-size: 28px 28px, 34px 34px, auto;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(255, 255, 255, .6), var(--hm2-shadow-soft);
  height: 450px;
  position: relative;
  width: 450px;
  justify-self: center;
}

.hm2-map-line {
  border: 1px dashed rgba(123, 83, 183, .4);
  border-bottom-color: transparent;
  border-radius: 50%;
  height: 230px;
  left: 110px;
  position: absolute;
  top: 108px;
  transform: rotate(-18deg);
  width: 235px;
}

.hm2-map-pin {
  align-items: center;
  color: var(--hm2-ink);
  display: flex;
  font-size: .71rem;
  font-weight: 700;
  gap: 8px;
  position: absolute;
}

.hm2-map-pin i {
  background: var(--hm2-purple);
  border: 5px solid var(--hm2-white);
  border-radius: 50%;
  box-shadow: 0 7px 20px rgba(123, 83, 183, .35);
  height: 20px;
  width: 20px;
}

.hm2-map-pin--one { bottom: 100px; left: 65px; }
.hm2-map-pin--two { right: 57px; top: 115px; }
.hm2-map-pin--three { bottom: 65px; right: 65px; }

/* Testimonials */
.hm2-testimonials {
  background: var(--hm2-white);
}

.hm2-rating {
  align-items: center;
  display: flex;
  gap: 15px;
}

.hm2-rating > span {
  color: #e8a73c;
  font-size: 1.05rem;
  letter-spacing: .08em;
}

.hm2-rating p {
  line-height: 1.35;
  margin: 0;
}

.hm2-rating strong,
.hm2-rating small {
  display: block;
}

.hm2-rating strong { font-size: .75rem; }
.hm2-rating small { color: var(--hm2-muted); font-size: .66rem; margin-top: 3px; }

.hm2-testimonials__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.hm2-quote {
  background: var(--hm2-cream);
  border: 1px solid rgba(23, 52, 84, .07);
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 30px;
  transition: transform .35s ease, box-shadow .35s ease;
}

.hm2-quote:hover {
  box-shadow: var(--hm2-shadow-soft);
  transform: translateY(-6px);
}

.hm2-quote--featured {
  background: var(--hm2-lilac);
}

.hm2-quote__mark {
  color: var(--hm2-purple);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: .75;
  margin-bottom: 22px;
}

.hm2-quote > p {
  color: #526a80;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 30px;
}

.hm2-quote footer {
  align-items: center;
  display: flex;
  gap: 13px;
  margin-top: auto;
}

.hm2-quote footer > span {
  align-items: center;
  background: var(--hm2-ink);
  border-radius: 50%;
  color: var(--hm2-white);
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.hm2-quote footer p {
  line-height: 1.3;
  margin: 0;
}

.hm2-quote footer strong,
.hm2-quote footer small {
  display: block;
}

.hm2-quote footer strong { font-size: .77rem; }
.hm2-quote footer small { color: var(--hm2-muted); font-size: .64rem; margin-top: 4px; }

/* FAQ */
.hm2-faq {
  background: var(--hm2-lilac-light);
}

.hm2-faq__grid {
  align-items: start;
  display: grid;
  gap: clamp(55px, 8vw, 110px);
  grid-template-columns: .72fr 1.28fr;
}

.hm2-faq__intro {
  position: sticky;
  top: 110px;
}

.hm2-faq__intro h2 {
  margin-bottom: 24px;
}

.hm2-faq__intro > p:not(.hm2-kicker) {
  color: var(--hm2-muted);
  font-size: .84rem;
  margin-bottom: 28px;
}

.hm2-accordion {
  border-top: 1px solid var(--hm2-line);
}

.hm2-faq-item {
  border-bottom: 1px solid var(--hm2-line);
}

.hm2-faq-item h3 {
  margin: 0;
}

.hm2-faq-item button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--hm2-ink);
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 650;
  gap: 25px;
  justify-content: space-between;
  letter-spacing: -.015em;
  padding: 25px 0;
  text-align: left;
  width: 100%;
}

.hm2-faq-item button span {
  border: 1px solid rgba(123, 83, 183, .35);
  border-radius: 50%;
  flex: 0 0 auto;
  height: 29px;
  position: relative;
  width: 29px;
}

.hm2-faq-item button span::before,
.hm2-faq-item button span::after {
  background: var(--hm2-purple);
  content: "";
  height: 1px;
  left: 8px;
  position: absolute;
  top: 13px;
  transition: transform .25s ease;
  width: 11px;
}

.hm2-faq-item button span::after {
  transform: rotate(90deg);
}

.hm2-faq-item.is-open button {
  color: var(--hm2-purple-deep);
}

.hm2-faq-item.is-open button span::after {
  transform: rotate(0);
}

.hm2-faq-answer {
  animation: hm2Fade .35s ease both;
  padding: 0 60px 23px 0;
}

.hm2-faq-answer p {
  color: var(--hm2-muted);
  font-size: .81rem;
  margin: 0;
}

/* Contact */
.hm2-contact {
  background: var(--hm2-white);
  padding-bottom: 0;
}

.hm2-contact__shell {
  background: var(--hm2-ink-deep);
  border-radius: 32px;
  display: grid;
  gap: 0;
  grid-template-columns: .88fr 1.12fr;
  overflow: hidden;
}

.hm2-contact__details {
  color: rgba(255, 255, 255, .66);
  padding: clamp(40px, 6vw, 72px);
  position: relative;
}

.hm2-contact__details::after {
  background: radial-gradient(circle, rgba(123, 83, 183, .35), transparent 68%);
  bottom: -180px;
  content: "";
  height: 400px;
  left: -150px;
  pointer-events: none;
  position: absolute;
  width: 400px;
}

.hm2-contact__details .hm2-kicker {
  color: #c6adea;
}

.hm2-contact__details h2 {
  color: var(--hm2-white);
  margin-bottom: 22px;
}

.hm2-contact__details > p:not(.hm2-kicker) {
  font-size: .82rem;
  margin-bottom: 34px;
}

.hm2-contact__cards {
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.hm2-contact__cards > * {
  align-items: center;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  display: flex;
  gap: 14px;
  padding: 13px;
  transition: background-color .25s ease, transform .25s ease;
}

.hm2-contact__cards a:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateX(4px);
}

.hm2-contact__cards .hm2-icon {
  background: rgba(255, 255, 255, .1);
}

.hm2-contact__cards .hm2-icon svg {
  stroke: #d3bff0;
}

.hm2-contact__cards p {
  line-height: 1.35;
  margin: 0;
}

.hm2-contact__cards small,
.hm2-contact__cards strong {
  display: block;
}

.hm2-contact__cards small {
  color: rgba(255, 255, 255, .48);
  font-size: .61rem;
  margin-bottom: 3px;
}

.hm2-contact__cards strong {
  color: var(--hm2-white);
  font-size: .73rem;
  font-weight: 600;
}

.hm2-contact__form {
  background: var(--hm2-white);
  margin: 9px;
  padding: clamp(32px, 5vw, 58px);
  border-radius: 25px;
}

.hm2-form-heading {
  align-items: end;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.hm2-form-heading p {
  align-items: center;
  color: var(--hm2-ink);
  display: flex;
  font-size: .78rem;
  font-weight: 700;
  gap: 8px;
  margin: 0;
}

.hm2-form-heading p span {
  background: #42b883;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(66, 184, 131, .13);
  height: 7px;
  width: 7px;
}

.hm2-form-heading small {
  color: var(--hm2-muted);
  font-size: .62rem;
  text-align: right;
}

.home2 .hm2-contact__form .form-control,
.home2 .hm2-contact__form input[type="text"],
.home2 .hm2-contact__form input[type="email"],
.home2 .hm2-contact__form input[type="tel"],
.home2 .hm2-contact__form textarea,
.home2 .hm2-contact__form select {
  background: #f7f6f8 !important;
  border: 1px solid rgba(23, 52, 84, .1) !important;
  border-radius: 13px !important;
  box-shadow: none !important;
  color: var(--hm2-ink) !important;
  font-family: inherit;
  font-size: .75rem !important;
  min-height: 50px;
  outline: none;
  padding: 13px 15px !important;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.home2 .hm2-contact__form textarea {
  min-height: 120px;
  resize: vertical;
}

.home2 .hm2-contact__form .form-control:focus,
.home2 .hm2-contact__form input:focus,
.home2 .hm2-contact__form textarea:focus,
.home2 .hm2-contact__form select:focus {
  background: var(--hm2-white) !important;
  border-color: rgba(123, 83, 183, .5) !important;
  box-shadow: 0 0 0 4px rgba(123, 83, 183, .08) !important;
}

.home2 .hm2-contact__form button[type="submit"],
.home2 .hm2-contact__form input[type="submit"] {
  background: var(--hm2-purple) !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: var(--hm2-white) !important;
  font-family: inherit;
  font-size: .78rem !important;
  font-weight: 700;
  min-height: 50px;
  padding: 13px 25px !important;
}

.hm2-map {
  margin-top: 70px;
}

.hm2-map iframe {
  border: 0;
  display: block;
  height: 330px;
  width: 100%;
}

.hm2-google-reviews {
  background: var(--hm2-cream);
  padding-block: 82px;
}

.hm2-reviews-head {
  margin-bottom: 35px;
  text-align: center;
}

.hm2-reviews-head h2 {
  font-size: clamp(2rem, 3.5vw, 3.35rem);
}

.hm2-mobile-cta {
  display: none;
}

/* Motion */
.hm2-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.2, .75, .25, 1), transform .75s cubic-bezier(.2, .75, .25, 1);
}

.hm2-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hm2-trust-grid .hm2-reveal:nth-child(2),
.hm2-services__grid .hm2-reveal:nth-child(2),
.hm2-testimonials__grid .hm2-reveal:nth-child(2) {
  transition-delay: .08s;
}

.hm2-trust-grid .hm2-reveal:nth-child(3),
.hm2-services__grid .hm2-reveal:nth-child(3),
.hm2-testimonials__grid .hm2-reveal:nth-child(3) {
  transition-delay: .16s;
}

.hm2-services__grid .hm2-reveal:nth-child(4) { transition-delay: .08s; }
.hm2-services__grid .hm2-reveal:nth-child(5) { transition-delay: .16s; }

@keyframes hm2HeroIn {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hm2Float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -18px, 0); }
}

@keyframes hm2Scroll {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}

@keyframes hm2Fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Tablet */
@media (max-width: 1050px) {
  .hm2-hero {
    background-position: 58% 35%;
  }

  .hm2-hero__grid {
    gap: 40px;
    grid-template-columns: 1.1fr .8fr;
  }

  .hm2-hero h1 {
    font-size: clamp(3rem, 6.5vw, 5rem);
  }

  .hm2-about__grid {
    gap: 60px;
  }

  .hm2-about__visual {
    min-height: 540px;
  }

  .hm2-about__image-wrap {
    height: 520px;
  }

  .hm2-service-card {
    grid-column: span 3;
  }

  .hm2-locations__map {
    height: 390px;
    width: 390px;
  }

  .hm2-map-line {
    height: 200px;
    left: 95px;
    top: 95px;
    width: 205px;
  }
}

@media (max-width: 860px) {
  .hm2-hero {
    background:
      linear-gradient(90deg, rgba(248, 246, 251, .97), rgba(248, 246, 251, .75)),
      var(--hm2-hero-image) 62% center / cover no-repeat;
    padding-top: 82px;
  }

  .hm2-hero__grid,
  .hm2-about__grid,
  .hm2-locations__grid,
  .hm2-faq__grid,
  .hm2-contact__shell {
    grid-template-columns: 1fr;
  }

  .hm2-hero__content {
    max-width: 670px;
  }

  .hm2-hero-card {
    max-width: 470px;
  }

  .hm2-scroll-cue {
    display: none;
  }

  .hm2-intro__heading,
  .hm2-intro__body,
  .hm2-section-head {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .hm2-intro__heading .hm2-kicker {
    margin-bottom: 0;
  }

  .hm2-trust-grid {
    grid-template-columns: 1fr;
  }

  .hm2-about__visual {
    margin: 0 auto;
    max-width: 550px;
    width: 100%;
  }

  .hm2-certificate {
    right: -10px;
  }

  .hm2-steps li {
    padding-right: 20px;
  }

  .hm2-tab-pane {
    gap: 35px;
    grid-template-columns: 1fr;
  }

  .hm2-tab-pane > img,
  .hm2-ethics-visual {
    height: 260px;
  }

  .hm2-locations__map {
    height: min(450px, calc(100vw - 60px));
    width: min(450px, calc(100vw - 60px));
  }

  .hm2-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .hm2-quote {
    min-height: 0;
  }

  .hm2-faq__intro {
    position: static;
  }

  .hm2-contact__details {
    padding-bottom: 55px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hm2-container {
    width: min(100% - 28px, 1180px);
  }

  .hm2-hero {
    align-items: flex-start;
    background:
      linear-gradient(180deg, rgba(248, 246, 251, .91) 0%, rgba(248, 246, 251, .96) 62%, #f8f6fb 100%),
      var(--hm2-hero-image) 57% top / auto 420px no-repeat;
    min-height: auto;
    padding: 70px 0 70px;
  }

  .hm2-hero h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
    margin-bottom: 22px;
  }

  .hm2-hero__lead {
    font-size: .94rem;
  }

  .hm2-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hm2-btn {
    width: 100%;
  }

  .hm2-hero__proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .hm2-hero-card {
    border-radius: 24px;
    padding: 28px 23px;
  }

  .hm2-intro,
  .hm2-about,
  .hm2-services,
  .hm2-sessions,
  .hm2-locations,
  .hm2-testimonials,
  .hm2-faq,
  .hm2-contact,
  .hm2-google-reviews {
    padding: 72px 0;
  }

  .hm2-intro__heading h2,
  .hm2-about__content h2,
  .hm2-section-head h2,
  .hm2-locations__content h2,
  .hm2-faq__intro h2,
  .hm2-contact__details h2 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  .hm2-intro__body {
    margin-top: 30px;
  }

  .hm2-trust-card {
    padding: 22px;
  }

  .hm2-about__visual {
    min-height: 440px;
  }

  .hm2-about__image-wrap {
    border-radius: 130px 130px 28px 28px;
    height: 420px;
  }

  .hm2-about__visual::before {
    height: 150px;
    left: -30px;
    width: 150px;
  }

  .hm2-certificate {
    bottom: -18px;
    right: 0;
    width: 88%;
  }

  .hm2-services__grid {
    grid-template-columns: 1fr;
  }

  .hm2-service-card,
  .hm2-service-card--large,
  .hm2-service-card--wide {
    display: flex;
    grid-column: 1;
    min-height: 300px;
  }

  .hm2-service-card--wide .hm2-service-card__top {
    flex-direction: row;
  }

  .hm2-service-card--wide .hm2-service-card__tag {
    bottom: auto;
    position: static;
    right: auto;
  }

  .hm2-steps {
    gap: 27px;
    grid-template-columns: 1fr;
  }

  .hm2-steps::before {
    bottom: 20px;
    height: auto;
    left: 27px;
    right: auto;
    top: 20px;
    width: 1px;
  }

  .hm2-steps li {
    padding-right: 0;
  }

  .hm2-tabs {
    overflow-x: auto;
  }

  .hm2-tabs button {
    flex: 0 0 auto;
    padding-inline: 14px;
  }

  .hm2-tab-pane {
    min-height: 0;
    padding: 25px 22px 34px;
  }

  .hm2-tab-pane h3 {
    font-size: 2rem;
  }

  .hm2-pricing {
    grid-template-columns: 1fr;
  }

  .hm2-locations__map {
    height: calc(100vw - 46px);
    width: calc(100vw - 46px);
  }

  .hm2-map-line {
    height: 52%;
    left: 24%;
    top: 23%;
    width: 53%;
  }

  .hm2-map-pin--one { bottom: 20%; left: 11%; }
  .hm2-map-pin--two { right: 8%; top: 25%; }
  .hm2-map-pin--three { bottom: 12%; right: 10%; }

  .hm2-quote {
    padding: 26px;
  }

  .hm2-quote > p {
    font-size: .96rem;
  }

  .hm2-faq-item button {
    font-size: .85rem;
    gap: 15px;
  }

  .hm2-faq-answer {
    padding-right: 10px;
  }

  .hm2-contact {
    padding-bottom: 0;
  }

  .hm2-contact__shell {
    border-radius: 25px;
  }

  .hm2-contact__details,
  .hm2-contact__form {
    padding: 32px 22px;
  }

  .hm2-contact__form {
    margin: 7px;
  }

  .hm2-form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hm2-form-heading small {
    text-align: left;
  }

  .hm2-map {
    margin-top: 50px;
  }

  .hm2-mobile-cta {
    align-items: center;
    background: var(--hm2-purple);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 999px;
    bottom: 14px;
    box-shadow: 0 13px 35px rgba(67, 43, 105, .32);
    color: var(--hm2-white) !important;
    display: flex;
    font-size: .76rem;
    font-weight: 700;
    gap: 9px;
    justify-content: center;
    left: 50%;
    padding: 13px 22px;
    position: fixed;
    transform: translateX(-50%);
    width: calc(100% - 30px);
    z-index: 900;
  }

  .hm2-mobile-cta svg {
    fill: none;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.8;
    width: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home2 *,
  .home2 *::before,
  .home2 *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .hm2-reveal {
    opacity: 1;
    transform: none;
  }
}






