/* Custom Fonts */
@font-face {
    font-family: "Gotham";
    src: url('../font/Gotham/Gotham-Light.otf') format("opentype");
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: "Gotham";
    src: url('../font/Gotham/Gotham-Thin.otf') format("opentype");
    font-style: normal;
    font-weight: 200;
}

@font-face {
    font-family: "Gotham";
    src: url('../font/Gotham/Gotham-Regular.otf') format("opentype");
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Gotham";
    src: url('../font/Gotham/Gotham-Medium.otf') format("opentype");
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: "Gotham";
    src: url('../font/Gotham/Gotham-Bold.otf') format("opentype");
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "Gotham";
    src: url('../font/Gotham/Gotham-Black.otf') format("opentype");
    font-style: normal;
    font-weight: 900;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul,
li {
    list-style: none;
}

button {
    background: transparent;
    border: none;
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}

.main {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.common-heading {
    color: #868686;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    text-transform: uppercase;
}

/* Header */
.header-wrapper {
    width: 100%;
    position: relative;
    z-index: 999;
}

.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 50px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

.header-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(180deg,
            rgba(47, 47, 47, 0.95) 0%,
            rgba(47, 47, 47, 0.50) 70%,
            rgba(47, 47, 47, 0) 100%);
}

.header a img {
    width: 168px;
    height: auto;
    position: relative;
    z-index: 4;
}

.header nav {
    position: relative;
    z-index: 9;
}

.header nav>ul {
    display: flex;
    gap: 20px;
    height: 100%;
}

.header nav>ul>li {
    height: 100%;
    display: flex;
    align-items: center;
}

.header nav a {
    color: #FFF;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.header nav .submenu a:hover{
	color: #64002A;
}

.submenu {
    width: 260px;
    background: #FFF;
    box-shadow: 0 0 100px 0 #2F2F2F;
    padding: 30px 48px 30px 24px;
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: ease all 0.3s;
}

.submenu ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.submenu ul a {
    color: #868686;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.has-submenu{
	position: relative;
	padding-right: 16px; 
}

	.has-submenu::after {
  font-family: "ETmodules";
        content: "\33";
        position: absolute;
        right: -10px;
        transition: transform 0.3s ease;
        color: #fff;
        top: 22px;
        height: fit-content;
        line-height: 14px;
        font-size: 24px;
}
	
	.has-submenu.active::after {
  transform: rotate(180deg);
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
}

/* =========================
   BURGER BUTTON
========================= */

.burger {
    display: none;
    width: 32px;
    height: 22px;
    position: relative;
    z-index: 9999;
    cursor: pointer;
    background: none;
    border: none;
}

.burger span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #fff;
    left: 0;
    transition: 0.3s ease;
}

.burger span:nth-child(1){ top: 0; }
.burger span:nth-child(2){ top: 9px; }
.burger span:nth-child(3){ bottom: 0; }

/* X animation */

.burger.active span:nth-child(1){
    transform: rotate(45deg);
    top: 9px;
}

.burger.active span:nth-child(2){
    opacity: 0;
}

.burger.active span:nth-child(3){
    transform: rotate(-45deg);
    bottom: 9px;
}


/* =========================
   MOBILE MENU
========================= */

.bg-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 90;
}

.bg-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero-section {
    width: 100%;
    height: 100vh;
    background-image: url('../images/hero-section-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 180px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    color: #FFF;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 54px;
    text-transform: uppercase;
}

.hero-content p {
    color: #FFF;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin: 10px 0 36px;
}

.btn a {
    display: flex;
    padding: 18px 24px;
    border-radius: 89px;
    background: #C0C0C0;
    position: relative;
    z-index: 9;
    transition: ease all 0.3s;
}

.btn a span {
    color: #FFF;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    position: relative;
    z-index: 9;
    transition: ease all 0.3s;
}

.btn a:hover span {
    color: #5A5A5A;
}

.btn a::before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 89px;
    background: linear-gradient(90deg, #EECCDA 0%, #FFB9D6 100%);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 0;
    transition: ease all 0.3s;
}

.btn a:hover::before {
    opacity: 1;
}

/* Dr Maria Quote Section */
.dr-quote-section {
    width: 100%;
    padding: 50px 70px;
}

.dr-quote-content {
    width: 100%;
    border-radius: 20px;
    border: 10px solid rgba(253, 234, 226, 0.12);
    background: #FDEAE2;
    padding: 24px;
    display: flex;
    justify-content: space-between;
}

.dr-quote-content>div {
    width: 100%;
}

.dr-quote {
    padding: 46px;
}

.dr-quote p {
    color: #868686;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    text-transform: uppercase;
    max-width: 613px;
}

.quote-divider {
    width: 185px;
    height: 1px;
    background: #868686;
    margin: 40px 0 50px;
}

.dr-quote h3 {
    color: #868686;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    text-transform: uppercase;
}

.quote-sec-img {
    max-width: 530px;
}

.quote-sec-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

/* About Gyneco */
.about-gyneco {
    width: 100%;
    background: #F5F5F5;
    padding: 50px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.about-gyneco>div {
    width: 100%;
}

.about-gyneco-content {
    margin-bottom: 17px;
}

.about-gyneco-content p {
    color: #868686;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 22px;
    max-width: 659px;
}

.about-gyneco-content .btn {
    margin-top: 28px;
}

.about-gyneco-slider {
    max-width: 618px;
    padding-bottom: 50px;
}

.about-gyneco-slider .splide__slide {
    border-radius: 20px;
}


.about-gyneco-slider img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

.about-gyneco-slider .splide__pagination {
    bottom: 0;
}

.about-gyneco-slider .splide__pagination__page {
    width: 16px;
    height: 16px;
    background: #D9D9D9;
    opacity: 1;
    border: 1px solid #D9D9D9;
}

.about-gyneco-slider .splide__pagination__page.is-active {
    background: transparent;
    transform: scale(1.25);
}

/* Aesthetic Gynaecology */
.aesthetic-gynaecology {
    width: 100%;
    padding: 70px 50px;
}

.aesthetic-gynaecology .common-heading {
    margin-bottom: 36px;
    text-align: center;
}

.aesthetic-gynaecology>div {
    display: flex;
	justify-content: center;
    gap: 20px;
}

.aesthetic-gynecology-card {
    position: relative;
    z-index: 99;
    overflow: hidden;
    border-radius: 12px;
    overflow: hidden;
}

.aesthetic-gynecology-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: ease all 0.3s;
}

.aesthetic-gynecology-card h3 {
    width: 100%;
    text-align: center;
    color: #FFF;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    position: absolute;
    bottom: 36px;
    left: 0;
    z-index: 9;
}

.aesthetic-card-overlay {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.16);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 7;
    transition: ease all 0.3s;
}

.aesthetic-card-hover-overlay {
    width: 100%;
    height: 200px;
    position: absolute;
    bottom: -100px;
    left: 0;
    z-index: 8;
    background: rgba(47, 47, 47, 0.40);
    filter: blur(50px);
    transition: ease all 0.3s;
}

.aesthetic-gynecology-card:hover img {
    transform: scale(1.1);
}

.aesthetic-gynecology-card:hover .aesthetic-card-overlay {
    background: rgba(0, 0, 0, 0.20);
}

.aesthetic-gynecology-card:hover .aesthetic-card-hover-overlay {
    background: rgba(47, 47, 47, 0.70);
}



/* About Dr Maria */
.about-section {
    width: 100%;
    padding: 50px;
    display: flex;
    gap: 20px;
    background: #F5F5F5;
}

.dr-img {
    width: 45%;
}

.dr-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.about-content {
    width: 55%;
    padding: 48px 40px;
    border-radius: 20px;
    background: #FFF;
}

.about-content .common-heading {
    margin-bottom: 12px;
}

.about-content h3 {
    color: #868686;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    text-transform: uppercase;
    max-width: 599px;
    margin-bottom: 20px;
}

.about-content p {
    color: #868686;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    max-width: 645px;
    margin-bottom: 20px;
}

.about-content .btn {
    margin-top: 20px;
}

/* Functional Medicine */
.functional-medicine {
    width: 100%;
    padding: 50px 50px 70px;
}

.functional-medicine-wrapper {
    width: 100%;
    border-radius: 20px;
    border: 10px solid rgba(253, 234, 226, 0.12);
}

.functional-medicine-content {
    width: 100%;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px 20px 0 0;
    background: #CBCAC5;
}

.functional-medicine-content>div {
    width: calc(100% - 60px);
    border-radius: 20px;
    background: #FDEAE2;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.functional-medicine-content p {
    color: #868686;
    text-align: center;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 16px 0 24px;
}

.functional-medicine-wrapper>img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0 0 20px 20px;
}

/* Gyneco Clinic as featured in */
.clinic-featured-sec {
    width: 100%;
    padding: 50px;
    background: #FAFAFA;
}

.clinic-featured-sec h2 {
    color: #868686;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 37px;
    /* 154.167% */
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center;
}

.clinic-featured-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.clinic-featured-content>div {
    width: 100%;
    padding: 20px;
    border-radius: 12px;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clinic-featured-content>div>img {
    width: auto;
    height: auto;
    object-fit: cover;
}

/* Google Reviews */
.reviews-section {
    width: 100%;
    padding: 50px;
}

.reviews-section .common-heading {
    margin-bottom: 36px;
}

.review-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 20px;
    background: #FEF6F2;
}

.user-details {
    width: 100%;
    display: flex;
    gap: 16px;
}

.user-details img:first-of-type {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 40px;
}

.user-details>div {
    width: 100%;
}

.user-details h6 {
    color: #868686;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    margin-bottom: 8px;
}

.user-details p {
    color: rgba(0, 0, 0, 0.50);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
}

.user-details img:last-of-type {
    width: 24px;
    height: 24px;
    object-fit: cover;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating img {
    width: 24px;
    height: 24px;
    object-fit: cover;
}

.review-wrapper>p {
    color: #868686;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.reviews-section .splide__arrow--next {
    right: unset;
    left: calc(50% + 30px);
}

.reviews-section .splide__arrow--prev {
    left: calc(50% - 30px);
}

.reviews-section .splide__arrow {
    width: 3em;
    height: 3em;
    background: #fff;
    opacity: 1;
    display: none;
    transform: translateX(-50%);
}


.show-toggle {
    color: #868686;
    font-weight: 500;
    cursor: pointer;
    margin-left: 4px;
    transition: 0.3s ease;
}

.show-toggle:hover {
    color: #000;
}

.show-toggle.expanded {
    color: #000;
}

.review-text {
    transition: all 0.3s ease;
}

/* Social Wall */
.social-wall {
    width: 100%;
    padding: 70px;
    background: #F5F5F5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-wall .common-heading {
    text-align: center;
    margin-bottom: 36px;
}

.social-wall-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.social-wall-content>div {
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 9;
    cursor: pointer;
}

.social-wall-content>div>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: ease all 0.3s;
}

.social-wall-card-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: ease all 0.3s;
    background: rgba(192, 192, 192, 0.77);
}

.social-wall-card-overlay img {
    width: 65px;
    height: 65px;
    object-fit: cover;
}

.social-wall-content>div:hover .social-wall-card-overlay {
    opacity: 1;
}


/* Consultaion Section */
.consultation-section {
    width: 100%;
    padding: 50px 50px 70px;
}

.consultation-content-wrapper {
    width: 100%;
    padding: 36px 50px;
    display: flex;
    justify-content: space-between;
    background-image: url('../images/Bougainvillea.png');
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}

.consultation-content-wrapper>div {
    width: 100%;
}

.form-heading {
    max-width: 440px;
}

.form-heading .common-heading {
    max-width: 437px;
    margin-top: 56px;
    color: #fff;
}

.form-wrapper {
    max-width: 575px;
    border-radius: 30px;
    background: #FFF;
}

.form-wrapper form {
    width: 100%;
    padding: 36px 36px 43px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-wrapper form input,
.form-wrapper form textarea {
    width: 100%;
    padding: 19px 24px 18px;
    border-radius: 30px;
    border-radius: 14px;
    border: 1px solid #868686;
    outline: none;
    color: #868686;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.form-wrapper form input::placeholder,
.form-wrapper form textarea::placeholder {
    color: #868686;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.form-wrapper form input{
	margin-bottom: 16px;
}

.form-wrapper form div {
    width: 100%;
    display: flex;
    gap: 14px;
}

.form-wrapper form textarea {
    height: 200px;
    resize: none;
}

.form-wrapper form button {
    display: inline-flex;
    padding: 18px 24px;
    border-radius: 89px;
    background: #C0C0C0;
    position: relative;
    z-index: 5;
    margin-top: 8px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: normal !important;
    border: none;
}

.form-wrapper form button::after{
	right: 8px;
}

.form-wrapper form button:hover{
	padding: 18px 40px 18px 24px;
}

.form-wrapper form button span {
    color: #FFF;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
    text-align: center;
}

.form-wrapper form button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #EECCDA 0%, #FFB9D6 100%);
    opacity: 0;
    z-index: 1;
    transition: ease all 0.4s;
}

.form-wrapper form button:hover::before {
    opacity: 1;
}

/* Map Section */
.map-section {
    width: 100%;
}

.map-section iframe {
    width: 100%;
}

/* Footer */
.footer {
    width: 100%;
    border-radius: 70px 70px 0 0;
    background: #F5F5F5;
    margin-top: -70px;
    position: relative;
}

.footer-content {
    width: 100%;
    display: flex;
    gap: 40px;
    padding: 70px 50px 0;
}

.footer-content>div {
    flex: 1;
}

.footer-divider {
    width: calc(100% - 100px);
    height: 1px;
    margin: 50px auto 36px;
    background: #868686;
}


.footer-content>div h6 {
    color: #868686;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 29px;
    text-transform: uppercase;
}

.footer-content>div>ul>li {
    margin-bottom: 14px;
}

.footer-content>div>ul>li:first-child {
    margin-bottom: 10px;
}

.footer-content>div>ul>li:last-child {
    margin-bottom: 0;
}

.footer-content>div ul a {
    color: #868686;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer-content>div>div {
    margin-bottom: 24px;
}

.footer-content>div>div h6 {
    margin-bottom: 4px;
}

.footer-content>div>div:last-child {
    margin-bottom: 0;
}

.footer-content>div>div p,
.footer-content>div>div a {
    color: #868686;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    max-width: 276px;
}

.footer-content>div>div:nth-child(2) p {
    max-width: 351px;
    white-space: nowrap;
}

.social-media-links {
    display: flex;
    gap: 16px;
}

.social-media-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    background: #FFF;
    padding: 11px;
}

.social-media-links a img {
    width: auto;
    height: 100%;
    object-fit: cover;
}

.footer-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.footer-logo img {
    width: 272px;
    height: auto;
    object-fit: cover;
}

.copyright-content {
    width: 100%;
    padding: 18px 50px;
    background: rgba(255, 255, 255, 0.52);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright-content p,
.copyright-content p a {
    color: #868686;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    display: inline-block;
}