/* 0. Root, Base, Utilities */
:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-grey-bg: #706f79;
    --color-dark-bg: #141414;
    --font-heading: "Abel";
    --font-body: "Source Code Pro";
    --header-height: 0px;
    --site-max-width: 1240px;
    --site-gutter: clamp(24px, 3vw, 57px);
}

/* 1. Global Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
html,
body {
    height: 100%;
}

body {
    margin: 0;
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 125px;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border: 0;
}
a {
    color: inherit;
    text-decoration:none;
    outline:none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-white);
    margin: 0 0 24px;
}
h2 {
    font-size: 32px;
    line-height: 1.2em;
}
p {
    margin-top: 0;
    margin-bottom:25px;
}
p:last-child {
    margin-bottom:0px;
}


.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
}
.skip-link:focus {
    left: 16px;
    top: 16px;
    background: var(--color-white);
    padding: 8px 12px;
    z-index: 1000;
}
.section {
    display: grid;
    grid-template-columns: minmax(var(--site-gutter), 1fr) minmax(
            0,
            min(var(--site-max-width), calc(100vw - 2 * var(--site-gutter)))
        ) minmax(var(--site-gutter), 1fr);
}
.section__inner {
    grid-column: 2;
}
.container {
    max-width: 1240px;
    margin: 0 auto;
}

/*** 
====================================================================
   header css
====================================================================
***/
header.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: var(--color-black);
    width: 100%;
    height: 125px;
    padding: 20px 0 20px;
}
.header--scrolled {
    background-color: var(--color-black);
}
.header__top-bar {
    border-bottom: none;
    height: 100%;
}
.header__container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px 0;
    height: 100%;
}
.header__container > .header__logo {
    flex-shrink: 0;
}
.header__container > .header__nav {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
}
.header__logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.header__logo a {
    display: inline-block;
}
.header__logo img {
    width: 316px;
    height: 46px;
    display: block;
}
.header__logo-main {
    font-family: var(--font-body);
    font-size: 28px;
    letter-spacing: 0.1em;
    color: var(--color-white);
    font-weight: 400;
}
.header__logo-sub {
    font-family: var(--font-body);
    font-size: 16px;
    letter-spacing: 0.1em;
    color: var(--color-white);
    font-weight: 400;
    margin-top: 2px;
}
.header__nav-list {
    display: inline-flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    white-space: nowrap;
}
.header__nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 16px;
    text-transform: uppercase;
    line-height: 26px;
    font-weight: 400;
    position: relative;
    padding: 5px 0;
}
.header__nav-link--active {
    opacity: 1;
}
header.header .header__nav-item {
    margin: 0 1.2vw;
}
header.header .header__nav-item:first-child {
    margin-left: 0;
}
.header__nav-link--active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--color-white);
}
.header__dropdown .header__nav-link--active::after {
    content: unset;
}
.header__nav-item--dropdown {
    position: relative;
}
.header__dropdown-icon {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--color-white);
    margin-left: 8px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}
.header__nav-item--dropdown:hover .header__dropdown-icon {
    transform: rotate(180deg);
}
.header__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-black);
    list-style: none;
    min-width: 200px;
    padding: 0px 0px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    text-align: left;
}
.header__nav-item--dropdown:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
header.header .header__dropdown li {
    padding: 0;
    margin: 0;
}
header.header .header__dropdown a {
    display: block;
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 27px;
    padding: 10px 20px 10px 10px;
	line-height: 1;
}
header.header .header__dropdown a:hover {
    background-color: #fff;
    color: #000;
} 
@media (min-width: 1199px) {
    .header__toggle-submenu {
        border: none;
        cursor: pointer;
        width: 12px;
        height: 12px;
        background-image: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.1875 1.125L5.5 5.8125L0.8125 1.125' stroke='%23FFFFFF' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
        background-repeat: no-repeat no-repeat;
        background-position: center;
        position: absolute;
        right: -15px;
        top: 8px;
    }
}

.nav__arrow {
    display: none;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--color-white);
    transition: transform 0.3s ease;
    pointer-events: none;
}
.header__nav-item--open > .header__toggle-submenu .nav__arrow {
    transform: rotate(180deg);
}
.header__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.header__hamburger {
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}
.header__mobile-toggle.active .header__hamburger:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}
.header__mobile-toggle.active .header__hamburger:nth-child(2) {
    opacity: 0;
}
.header__mobile-toggle.active .header__hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}
.header__login {
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 27.2px;
    font-weight: 400;
}
.header__nav-item--mobile-login {
    display: none;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/*** 
====================================================================
  hero section css 
====================================================================
***/

.hero {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    padding: 40px 0 60px;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 1);
    opacity: 0.37;
    z-index: 0;
    pointer-events: none;
}
.hero__container {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    max-width: 846px;
    min-height: 600px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero__title {
    font-family: 'Abel', Arial, Helvetica, sans-serif;
    font-size: 85px;
    color: var(--color-white);
    text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 55px;
    min-height: 120px;
}
.hero__title-line {
    display: block;
}
.consult__cta {
    text-decoration: none;
    display: inline-block;
    padding: 14px 25px;
    border: 1px solid var(--color-white);
    border-radius: 0;
    color: var(--color-white);
    text-align: center;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.024px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.consult__cta:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

/*** 
====================================================================
  services section css 
====================================================================
***/
.services {
    background-color: var(--color-black);
    padding: 200px 0 200px;
    min-height: 100px;
}
.services__container {
    padding-left: 3vw;
    padding-right: 3vw;
}
.services__title {
    color: var(--color-white);
    text-align: center;
    font-family: var(--font-heading);
    font-size: 57.5px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.7;
    padding-bottom: 70px;
    margin: 0;
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
}
.services__card {
    background-color: transparent;
}
.services__card-image {
    width: 100%;
    margin-bottom: 6%;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}
.services__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.services__card-content {
    text-align: center;
}
.services__card-text {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 20.6px;
    font-style: normal;
    font-weight: 400;
    line-height: 26.77px;
    margin: 0;
}
.services__card-link {
    margin-top: 6%;
    display: inline-block;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 13.7px;
    font-style: normal;
    font-weight: 400;
    line-height: 23.28px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
}
.services__btn {
    display: flex;
    justify-content: center;
    margin-top: 70px;
}

/*** 
====================================================================
  instagram css 
====================================================================
***/
.instagram {
    position: relative;
    overflow: hidden;
    background-image: var(--instagram-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0 150px;
}
.instagram::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 1);
    opacity: 0.37;
    z-index: 0;
}
.instagram__container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin: 0;
    padding-inline: var(--site-gutter);
}
.instagram__content {
    width: 100%;
}
.instagram__title {
    margin: 0 0 41px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 43px;
    font-weight: 400;
    line-height: 58.17px;
    text-transform: uppercase;
}
.instagram__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 594px;
    width: 100%;
    margin: 0 auto;
}
.instagram__item {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    cursor: pointer;
}
.instagram__item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.3s ease, filter 0.3s ease;
}
.instagram__item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}
.instagram__play-overlay {
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}
.instagram__play-overlay svg {
    margin-left: 3px;
}
/*** 
====================================================================
  STORY SECTION css 
====================================================================
***/

.story {
    position: relative;
    padding: 40px 0 40px;
    height: 900px;
    overflow: hidden;
}
.story::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--story-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
.story__container {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    max-width: 1144px;
}
.story__content {
    display: grid;
    grid-template-columns: 550px auto;
    column-gap: 75px;
    align-items: center;
    height: 100%;
}
.story__title {
    grid-column: 1;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 85.1px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.23;
    text-transform: uppercase;
    margin-bottom: 0;
}
.story__text {
    margin-right: -100px;
}
.story__text p {
    font-size: 16px;
    color: var(--color-white);
    font-weight: 400;
    line-height: 27.2px;
    margin-bottom: 37px;
    margin-top: 19px;
}

/*** 
====================================================================
  7. FEATURE SECTIONS css 
====================================================================
***/
.feature {
    position: relative;
    padding: 170px 0 180px;
    overflow: hidden;
}
.feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--feature-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
.feature__container {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    max-width: 1144px;
}
.feature__inner {
    display: grid;
    grid-template-columns: 620px auto;
    column-gap: 66px;
}
.feature__title {
    font-family: var(--font-heading);
    font-size: 85.1px;
    color: var(--color-white);
    margin-bottom: 49px;
    font-weight: 400;
    line-height: 1.23;
    text-transform: uppercase;
}
.feature__text {
    margin-bottom: 46px;
}
.feature__text p {
    color: var(--color-white);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27.2px;
}
.feature__btn {
    display: flex;
    column-gap: 50px;
}
.feature__cta {
    display: inline-block;
    padding: 16px 25px;
    border: 1px solid var(--color-white);
    background-color: var(--color-white);
    border-radius: 0;
    color: var(--color-black);
    text-decoration: none;
    font-size: 10.2px;
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.024px;
    text-transform: uppercase;
}
.feature__cta-2 {
    display: inline-block;
    padding: 16px 25px;
    border: 1px solid var(--color-white);
    border-radius: 0;
    color: var(--color-white);
    text-decoration: none;
    font-size: 10.2px;
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.024px;
    text-transform: uppercase;
}
.feature__image {
    width: 100%;
    justify-self: end;
    height: auto;
}
.feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feature__cta-2:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}
.feature__cta:hover {
    background-color: transparent;
    color: var(--color-white);
}

/*** 
====================================================================
  7. SHOWCASE BLOCK css 
====================================================================
***/

.showcase {
    position: relative;
    padding-top: 120px;
    overflow: hidden;
}
.showcase--dark {
    background: rgba(0, 0, 0, 0.99);
}
.showcase__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}
.showcase__inner--image-left {
    display: grid;
    grid-template-columns: 420px auto;
    column-gap: 100px;
    align-items: center;
}
.showcase__media {
    margin: 0;
}
.showcase__content {
    color: var(--color-white);
}
.showcase__title {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 85.1px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.23;
    text-transform: uppercase;
}
.showcase__text {
    margin-bottom: 28px;
}
.showcase__text p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27.2px;
    margin: 0 0 46px;
}
.showcase__text p:last-child {
    margin-bottom: 0;
}
/*** 
====================================================================
  8. Summary Section css 
====================================================================
***/

.summary {
    position: relative;
    padding: 130px 0 140px;
    overflow: hidden;
    background-image: var(--summary-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: none;
}
.summary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(3px);
    z-index: 0;
}
.summary__container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1144px;
    margin: 0 auto;
}
.summary__title {
    color: var(--color-white);
    text-align: center;
    font-family: var(--font-heading);
    font-size: 85.1px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.23;
    text-transform: uppercase;
    margin-bottom: 71px;
}
.summary__columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 61px;
    margin: 0 auto 49px;
    text-align: left;
}
.summary__column p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27.2px;
}
.summary__column p:last-child {
    margin-bottom: 0;
}

/*** 
====================================================================
  9. HIGHLIGHTS SECTION css 
====================================================================
***/

.highlights {
    position: relative;
    padding: 160px 0 260px;
    overflow: hidden;
    background-color: var(--color-grey-bg);
    background-image: linear-gradient(
        0deg,
        var(--color-grey-bg) 0%,
        var(--color-grey-bg) 100%
    );
}
.highlights::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--highlights-bg-image);
    background-size: cover;
    background-position: center;
}
.highlights__container {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}
.highlights__title {
    color: var(--color-white);
    text-align: center;
    font-family: var(--font-heading);
    font-size: 85px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 80px;
}
.highlights__grid {
    display: grid;
    /* grid-template-columns: 320px auto auto; */
    column-gap: 90px;
    align-items: flex-start;
    max-width: 1040px;
    margin: 0 auto;
}
.highlights__item {
    text-align: center;
}
.highlights__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 24px;
}
.highlights__icon-symbol {
    font-size: 20px;
    color: var(--color-white);
    line-height: 1;
}
.highlights__text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27.2px;
    margin-bottom: 29px;
}
.highlights__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 10px 32px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease,
        border-color 0.3s ease;
}
.highlights__button--solid {
    background-color: var(--color-white);
    color: var(--color-black);
    border: 1px solid var(--color-white);
}
.highlights__button--outline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}
.highlights__button--solid:hover {
    background-color: transparent;
    color: var(--color-white);
}
.highlights__button--outline:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

/*** 
====================================================================
  10. NEWSLETTER SECTION css 
====================================================================
***/
.newsletter {
    background-color: var(--color-black);
    padding: 215px 0 290px;
}
.newsletter__container {
    width: 100%;
    text-align: center;
}
.newsletter__title {
    color: var(--color-white);
    text-align: center;
    font-family: var(--font-heading);
    font-size: 43px;
    font-style: normal;
    font-weight: 400;
    line-height: 61px;
    margin-bottom: 16px;
}
.newsletter__subtitle {
    color: var(--color-white);
    text-align: center;
    font-family: var(--font-body);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 40px;
}
.newsletter__form {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
}
.newsletter__form p {
    display: flex;
}
.newsletter__input {
    padding: 23px 33px;
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(0, 0, 0, 0.3);
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: var(--color-white);
    width: 100%;
    height: 66px;
}
.newsletter__input::placeholder {
    color: rgba(0, 0, 0, 0.3);
}
.newsletter__button {
    padding: 0 33px;
    border: 1px solid var(--color-white);
    background-color: var(--color-black);
    color: var(--color-white);
    text-align: center;
    font-family: var(--font-body);
    font-size: 10.2px;
    font-style: normal;
    font-weight: 400;
    line-height: 19.2px;
    letter-spacing: 1.024px;
    cursor: pointer;
    margin-left: 17px;
    width: 116px;
    height: 66px;
    white-space: nowrap;
}
.newsletter__form .wpcf7-spinner {
    position: absolute;
    right: 0;
    bottom: -25px;
}
.newsletter__note {
    color: var(--color-white);
    text-align: center;
    font-family: var(--font-body);
    font-size: 13.7px;
    font-style: normal;
    font-weight: 400;
    line-height: 23.28px;
    margin: 40px 0 0;
}

/*** 
====================================================================
  11. BRANDS css 
====================================================================
***/
.brands {
    background-color: var(--color-white);
    padding-top: 100px;
    padding-bottom: 130px;
}
.brands__container {
    margin: 0;
    padding-inline: var(--site-gutter);
}
.brands__label {
    color: var(--color-black);
    font-family: var(--font-heading);
    font-size: 43.6px;
    font-style: normal;
    font-weight: 400;
    line-height: 58.17px;
    margin: 0 0 29px;
   text-align:center;
}
.brands__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 162px;
    flex-wrap: wrap;
}
.brands__logo-image {
    display: block;
    object-fit: contain;
}

/*** 
====================================================================
  12. footer css 
====================================================================
***/
.footer {
    background-color: var(--color-black);
    padding: 60px 0 80px;
}
.footer__container {
    text-align: center;
    color: var(--color-white);
}
.footer__grid {
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 325px;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 114px;
}
.footer__heading {
    color: var(--color-white);
    text-align: center;
    font-family: var(--font-body);
    font-size: 13.7px;
    font-style: normal;
    font-weight: 700;
    line-height: 23.28px;
    margin-bottom: 22.28px;
}
.footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer__links li {
    margin-bottom: 22.28px;
}
.footer__links li a {
    color: var(--color-white);
    text-align: center;
    font-family: var(--font-body);
    font-size: 13.7px;
    font-style: normal;
    font-weight: 400;
    line-height: 23.28px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.footer__address,
.footer__phone {
    color: var(--color-white);
    text-align: center;
    font-family: var(--font-body);
    font-size: 13.7px;
    font-style: italic;
    font-weight: 300;
    line-height: 23.28px;
    margin-bottom: 29px;
}
.footer__social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

/* Common Css */
.mainhead {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 120%;
    margin: 0 0 25px;
}
.heading {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 120%;
    text-transform: uppercase;
    margin: 0 0 25px;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.text-black {
    color: var(--color-black);
}
.commen-content h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 120%;
    margin: 0 0 25px;
}
.commen-content h3 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 120%;
    margin: 0 0 30px;
}
.commen-content ul {
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}
.commen-content ul:last-child {
    margin-bottom: 0;
}
.commen-content ul li {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    color: var(--color-white);
    margin: 0 0 10px;
    padding-left: 25px;
}
.commen-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    border: 1px solid var(--color-white);
    border-radius: 50%;
}
.commen-content ul li::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--color-white);
    border-radius: 50%;
}
.commen-content ul li a {
    text-decoration: underline;
}
.commen-content-black h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    color: var(--color-black);
    line-height: 120%;
    margin: 0 0 25px;
}
.commen-content-black h3 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 400;
    color: var(--color-black);
    line-height: 120%;
    margin: 0 0 30px;
}
.commen-content-black ul {
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}
.commen-content-black ul:last-child {
    margin-bottom: 0;
}
.commen-content-black ul li {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    color: var(--color-black);
    margin: 0 0 10px;
    padding-left: 25px;
}
.commen-content-black ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    border: 1px solid var(--color-black);
    border-radius: 50%;
}
.commen-content-black ul li::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--color-black);
    border-radius: 50%;
}
.commen-content-black ul li a {
    text-decoration: underline;
}
.theme-btn {
    position: relative;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    border: 1px solid var(--color-white);
    padding: 10px 42px 12px;
    text-align: center;
    width: auto;
    min-width: 240px;
    height: 60px;
    text-transform: uppercase;
    line-height: 1.42857143;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.theme-btn:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}
.white-btn {
    position: relative;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-black);
    background-color: var(--color-white);
    border: 1px solid var(--color-white);
    padding: 10px 42px 12px;
    text-align: center;
    width: auto;
    min-width: 300px;
    height: 66px;
    text-transform: uppercase;
    line-height: 1.42857143;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.white-btn:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-white);
}
.black-btn {
    position: relative;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    background-color: var(--color-black);
    border: 1px solid var(--color-black);
    padding: 10px 42px 12px;
    text-align: center;
    width: auto;
    min-width: 240px;
    height: 60px;
    text-transform: uppercase;
    line-height: 1.42857143;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.black-btn:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-black);
}
.contact-form__field p:last-child {
    margin-bottom: 0;
}

/* Sevices Main Page CSS */
.cms-injection {
    position: relative;
    padding: 100px 0 200px;
}
.cms-injection .injection-inner {
    display: grid;
    grid-template-columns: 520px auto;
    column-gap: 30px;
    row-gap: 30px;
}
.cms-injection .img-holder {
    position: relative;
}
.cms-injection .injection-imgbig {
    max-width: 580px;
    height: 600px;
}
.cms-injection .injection-imgsmall {
    position: absolute;
    right: -80px;
    bottom: -100px;
    width: 260px;
    height: 290px;
}
.cms-injection .injection-lft img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cms-injection .injection-rht {
    padding-left: 100px;
}
.cms-injection .title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    color: var(--color-white);
    margin: 0 0 10px;
}
.cms-injection .content {
    font-weight: 300;
    font-style: italic;
    padding: 0 0 30px;
}
.cms-injection .service-box:not(:last-child) {
    margin: 0 0 30px;
}
.cms-injection .service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
}
.cms-injection .service-link {
    position: relative;
    font-size: 14px;
    font-weight: 300;
    color: var(--color-white);
    display: flex;
    align-items: center;
    padding: 10px 20px 10px 30px;
    background-color: #191919;
    transition: all 0.3s ease-in-out;
}
.cms-injection .service-link::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -7px;
    width: 14px;
    height: 14px;
    border: 1px solid var(--color-white);
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}
.cms-injection .service-link::after {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    margin-top: -3px;
    width: 6px;
    height: 6px;
    background-color: var(--color-white);
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}
.cms-injection a.service-link:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}
.cms-injection a.service-link:hover::before {
    border-color: var(--color-black);
}
.cms-injection a.service-link:hover::after {
    background-color: var(--color-black);
}
.cms-more {
    background-color: var(--color-white);
    padding: 25px 0;
    margin-bottom: 40px;
}
.cms-more .heading {
    text-align: center;
}
.cms-more .heading a {
    text-decoration: underline;
}
.cms-more .heading a:hover {
    color: #b1b1b1;
}
.cms-content {
    padding: 0 0 40px;
}
.cms-content .header-content {
    max-width: 980px;
    margin: 0 auto;
}
.cms-treatment {
    position: relative;
    padding: 40px 0 100px;
}
.cms-treatment .treatments-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.cms-treatment .treatments-lft {
    position: relative;
    margin: 60px 0;
    padding: 40px 60px;
    background-color: var(--color-dark-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}
.cms-treatment .treatments-rht {
    margin-left: -120px;
}
.cms-treatment img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.cms-treatment .consult__cta {
    font-size: 14px;
    min-width: 240px;
    height: 60px;
}

/* Team Page Css */
.profile-banner {
    position: relative;
    padding: 100px 0 0;
    z-index: 1;
}
.profile-banner-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% - 70px);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}
.profile-box {
    position: relative;
    display: flex;
    margin-bottom: 40px;
}
.profile-box .profile-img {
    max-width: 380px;
    flex: 0 0 380px;
    height: 450px;
    overflow: hidden;
    background: #f6f6f7;
    border-radius: 8px;
}
.profile-box .profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.profile-box .mainhead {
    font-size: 42px;
    color: var(--color-white);
    text-transform: uppercase;
    margin: 0 0 20px;
}
.profile-box .position {
    font-size: 20px;
    font-weight: 600;
    color: #999;
    line-height: 1;
    text-transform: uppercase;
    margin: 0 0 20px;
}
.profile-box .profile-content {
    padding: 0 0 80px 50px;
    max-width: 520px;
}
.profile-box .content {
    color: var(--color-white);
}
.singleprofile-content {
    padding: 40px 0;
}
.singleprofile-wrapper {
    display: grid;
    grid-template-columns: 310px auto;
    background-color: var(--color-dark-bg);
    margin-bottom: 40px;
    border-radius: 15px;
    padding: 40px;
}
.singleprofile-wrapper .content-rht a{text-decoration:underline;}
.singleprofile-wrapper:last-child {
    margin: 0;
}
.team-one {
    position: relative;
    padding: 40px 0;
}
.team-one .section-header {
    text-align: center;
    padding: 0 0 40px;
}
.team-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.team-top .team-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-dark-bg);
    padding: 20px;
}
.team-top .team-img {
    width: 100%;
    height: 520px;
    margin: 0 0 20px;
}
.team-top .team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.team-top .name {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 400;
    color: var(--color-white);
    text-transform: capitalize;
    line-height: 1.2;
    margin: 0 0 10px;
}
.team-top .position {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 140%;
    text-transform: capitalize;
    margin: 0 0 15px;
}
.team-top .show-text {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 150%;
}
.morecontent span {
    display: none;
}
.morelink {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-white);
    line-height: 1;
    text-decoration: underline;
}
.team-two {
    position: relative;
    padding: 40px 0 100px;
}
.team-two .section-header {
    text-align: center;
    padding: 0 0 40px;
}
.team-bot {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.team-bot .team-box {
    display: block;
    background-color: var(--color-dark-bg);
    padding: 20px;
}
.team-bot .team-img {
    width: 100%;
    height: 420px;
    margin: 0 0 20px;
}
.team-bot .team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.team-bot .name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-white);
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 18px;
}
.team-bot .position {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 140%;
    text-transform: capitalize;
    text-align: center;
    margin: 0 0 18px;
}

/* plastic surgery css */
.page-banner {
    position: relative;
    padding: 60px 0;
}
.page-banner-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}
.page-banner-bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.page-banner .mainhead {
    font-size: 56px;
    color: var(--color-white);
    line-height: 1.2;
    text-transform: capitalize;
    margin: 0 0 20px;
}
.surgery-content {
    padding: 100px 0 40px;
}
.surgery-content .surgery-wrapper {
    background-color: var(--color-dark-bg);
    margin-bottom: 40px;
    border-radius: 20px;
    padding: 40px;
}
.surgery-content .btn-box {
    text-align: center;
}
.image-gallery {
    position: relative;
    padding: 40px 0 80px;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 15px;
}
.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    background-color: var(--color-dark-bg);
    padding: 15px;
    transition: 0.25s;
}
.gallery img:hover {
    transform: scale(1.05);
}
.popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
    z-index: 99999;
}
.popup.open {
    display: flex;
    animation: fadeIn 0.35s ease;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
#popupImg {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
#popupImg.show {
    opacity: 1;
    transform: scale(1);
}
#imgCount {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--color-white);
    font-size: 18px;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.45);
    padding: 6px 12px;
    border-radius: 6px;
    backdrop-filter: blur(3px);
}
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 50px;
    color: var(--color-white);
    cursor: pointer;
    padding: 10px;
    z-index: 1;
}
#prevBtn {
    left: 20px;
}
#nextBtn {
    right: 20px;
}
#closeBtn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 38px;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
}

/* location page css */
.cms-location {
    position: relative;
    padding: 100px 0;
}
.cms-location .section-header {
    text-align: center;
    padding: 0 0 60px;
}
.cms-location .location-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.cms-location .location-box {
    background-color: #121212;
    padding: 25px;
}
.iframe-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
	margin: 0 0 40px;
}
.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.cms-location .location-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    color: var(--color-white);
    margin: 0 0 30px;
}
.cms-location .location-address ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.cms-location .location-address ul li {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 135%;
    padding-left: 40px;
    text-align: left;
}
.cms-location .location-address ul li a {
    color: rgba(255, 255, 255, 0.7);
}
.cms-location .location-address ul li a:hover {
    color: var(--color-white);
}
.cms-location .location-address ul li svg {
    position: absolute;
    top: 2px;
    left: 0;
}

/* contact page css */
.contact-banner {
    position: relative;
    padding: 60px 0 140px;
}
.contact-banner-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}
.contact-banner-bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.contact-banner .mainhead {
    font-size: 56px;
    color: var(--color-white);
    line-height: 1.2;
    text-transform: capitalize;
    margin: 0 0 20px;
}
.cms-contact {
    position: relative;
    background-color: var(--color-white);
}
.cms-contact .contact-inner {
    position: relative;
    display: grid;
    grid-template-columns: 340px auto;
    column-gap: 30px;
    row-gap: 30px;
    top: -40px;
}
.cms-contact .image-holder {
    background-color: var(--color-black);
    text-align: center;
    margin: 0 0 30px;
}
.cms-contact .btn-box {
    padding: 20px;
}
.cms-contact .iframe-container {
    height: 400px;
}
.cms-contact .contact-box {
    background-color: var(--color-white);
    box-shadow: 0 5px 34px rgba(0, 0, 0, 0.11);
    padding: 35px 25px;
}
.cms-contact .contact-title {
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    color: var(--color-black);
    margin: 0 0 40px;
}
.cms-contact .contact-address ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.cms-contact .contact-address ul li {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
    line-height: 135%;
    padding-left: 40px;
    text-align: left;
}
.cms-contact .contact-address ul li a {
    color: rgba(0, 0, 0, 0.7);
}
.cms-contact .contact-address ul li a:hover {
    color: var(--color-black);
}
.cms-contact .contact-address ul li svg {
    position: absolute;
    top: 2px;
    left: 0;
}
.cms-contact .contact-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    row-gap: 30px;
    margin: 0 0 30px;
}
.cms-contact .form-wrapper {
    background-color: var(--color-white);
    box-shadow: 0 5px 34px rgba(0, 0, 0, 0.11);
    padding: 25px;
}
.appointment-inner .content p {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 400;
    color: var(--color-black);
    line-height: 1.3;
}
.appointment-inner .content a {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: underline;
}
.appointment-inner .content a:hover {
    text-decoration: none;
    color: var(--color-black);
}
.contact-form__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
	margin-top:20px;
}
.contact-form__row p {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 0;
}
.contact-form__field input {
    width: 100%;
}
.contact-form__input,
.contact-form__textarea {
    width: 100%;
    padding: 12px 15px;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: var(--color-white);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-black);
    transition: border-color 0.3s ease;
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
    color: rgba(0, 0, 0, 0.5);
    opacity: 1;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: var(--color-black);
}
.contact-form__textarea {
    resize: vertical;
    height: 160px;
    min-height: 120px;
}
.contact-form__submit {
    margin-top: 10px;
}
.contact-form__button {
    display: inline-block;
    padding: 14px 40px;
    background-color: var(--color-black);
    color: var(--color-white);
    border: 1px solid var(--color-black);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    width: auto !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.contact-form__button:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}
.contact-form__button:active {
    transform: scale(0.98);
}
.page-section {
    padding: 60px 0;
}

/* faq page css */
.cms-faq {
    position: relative;
    padding: 100px 0 60px;
}
.cms-faq .section-header {
    text-align: center;
    padding: 0 0 60px;
}
.cms-faq .heading {
    margin: 0;
}
.cms-faq .faq-img img {
    border-radius: 15px;
}
.cms-faq .faq-inner {
    display: grid;
    grid-template-columns: 33.33333% auto;
    column-gap: 40px;
}
.question-block {
    max-width: 790px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.question-block .question-item {
    position: relative;
    background-color: var(--color-black);
    border: 1px solid var(--color-white);
    border-radius: 15px;
    overflow: hidden;
}
.question-block .question {
    position: relative;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: var(--color-white);
    min-height: 80px;
    padding-left: 30px;
    padding-right: 80px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background-color: var(--color-black);
    transition: all 0.3s ease-in-out;
}
.question-block .question-item.opened .question {
    color: var(--color-black);
    background-color: var(--color-white);
    border-bottom-left-radius: 0;
}
.question-block .question::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    background-color: var(--color-white);
    width: 64px;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg width='19' height='20' viewBox='0 0 19 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.496 8.104V12.136H11.888V19.304H7.408V12.136H0.8V8.104H7.408V0.935997H11.888V8.104H18.496Z' fill='black'/%3E%3C/svg%3E");
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    transition: all 0.3s ease-in-out;
}
.question-block .question-item.opened .question::before {
    background-color: var(--color-black);
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='5' viewBox='0 0 18 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.584 4.952V0.471999H17.104V4.952H0.584Z' fill='white'/%3E%3C/svg%3E");
}
.question-block .answer {
    position: relative;
    font-size: 16px;
    font-weight: 300;
    line-height: 150%;
    color: var(--color-white);
    padding: 0 30px;
    overflow: hidden;
    max-height: 0;
    transition: all 0.3s ease-in-out;
}
.question-item.opened .answer {
    padding: 30px;
}
.question-block .answer strong {
    font-weight: 600;
}
.question-block .answer a {
    text-decoration: underline;
    color: var(--color-white);
    font-weight: 400;
}
.question-block .answer a:hover {
    text-decoration: none;
}
.cms-answare {
    position: relative;
    padding: 80px 0 60px;
    background: var(--color-white);
}
.cms-answare .answare-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.cms-answare .answare-lft {
    position: relative;
    margin: 60px 0;
    padding: 40px 60px;
    background-color: var(--color-dark-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}
.cms-answare .answare-rht {
    margin-left: -120px;
    height: 480px;
}
.cms-answare .img-holder {
    height: 100%;
}
.cms-answare img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    border-radius: 20px;
}
.cms-answare .consult__cta {
    font-size: 14px;
    min-width: 240px;
    height: 60px;
}

/* membership page css */
.cms-membership {
    position: relative;
    padding: 80px 0 40px;
    background: var(--color-white);
}
.cms-membership .membership-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.cms-membership .membership-lft {
    position: relative;
    margin: 60px 0;
    padding: 40px 60px;
    background-color: var(--color-dark-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}
.cms-membership .membership-rht {
    margin-left: -120px;
    height: 480px;
}
.cms-membership .img-holder {
    height: 100%;
}
.cms-membership img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    border-radius: 20px;
}
.cms-membership .consult__cta {
    font-size: 14px;
    min-width: 240px;
    height: 60px;
}
.cms-pricing {
    padding: 40px 0;
    background-color: var(--color-white);
}
.pricing-table {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    background: #fff;
}
.pricing-table .ptable-item {
    width: 33.33%;
    padding: 0 15px;
    margin-bottom: 30px;
}
.pricing-table .ptable-single {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f6f8fa;
    border: 1px solid #ddd;
    height: 100%;
    padding: 0 0 100px;
    transition: all 0.3s ease-in-out;
}
.pricing-table .ptable-single:hover {
    border-color: var(--color-black);
}
.pricing-table .ptable-header,
.pricing-table .ptable-body,
.pricing-table .ptable-footer {
    position: relative;
    width: 100%;
    text-align: center;
    overflow: hidden;
}
.pricing-table .ptable-header {
    margin: 0 30px;
    padding: 30px 0 45px;
    width: auto;
    z-index: 1;
}
.pricing-table .ptable-header::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    clip-path: polygon(100% 0, 100% 75%, 50% 100%, 0 75%, 0 0);
    z-index: -1;
}
.pricing-table .ptable-title h2 {
    color: var(--color-white);
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 2px;
}
.pricing-table .ptable-price h2 {
    margin: 0;
    color: var(--color-white);
    font-size: 36px;
    font-weight: 700;
    margin-left: 15px;
}
.pricing-table .ptable-price h2 small {
    position: absolute;
    font-size: 18px;
    font-weight: 300;
    margin-top: 16px;
    margin-left: -15px;
}
.pricing-table .ptable-price h2 span {
    margin-left: 3px;
    font-size: 16px;
    font-weight: 300;
}
.pricing-table .ptable-body {
    padding: 20px 0;
}
.pricing-table .included {
    font-size: 16px;
    color: var(--color-black);
    font-weight: 600;
    padding: 15px 0;
}
.pricing-table .ptable-description ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.pricing-table .ptable-description ul li {
    color: #424242;
    font-size: 14px;
    font-weight: 400;
    padding: 7px;
    border-bottom: 1px solid #dedede;
}
.pricing-table .ptable-description ul li:last-child {
    border: none;
}
.pricing-table .ptable-footer {
    position: absolute;
    bottom: 0;
    padding-bottom: 30px;
}
.pricing-table .ptable-item.featured-item .ptable-action a {
    color: #2a293e;
    background: #ff6f61;
}
.pricing-table .ptable-item.featured-item .ptable-action a:hover {
    color: #ff6f61;
    background: #2a293e;
}
.membership-include {
    position: relative;
    background-color: #f6f8fa;
    z-index: 1;
}
.membership-include .include-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    align-items: center;
}
.membership-include .include-lft {
    position: relative;
    padding: 60px 60px 60px;
    padding-right: 0;
}
.membership-include .include-lft::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 80%;
    height: 100%;
    background-color: var(--color-black);
    z-index: -1;
}
.membership-include .include-img {
    height: 600px;
}
.membership-include .include-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.membership-include .include-rht {
    padding: 60px 60px 60px;
    padding-left: 40px;
}
.membership-include .heading {
    color: var(--color-black);
}
.include-list ul {
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}
.include-list ul:last-child {
    margin-bottom: 0;
}
.include-list ul li {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    color: var(--color-black);
    margin: 0 0 10px;
    padding-left: 25px;
}
.include-list ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    border: 1px solid var(--color-black);
    border-radius: 50%;
}
.include-list ul li::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--color-black);
    border-radius: 50%;
}
.include-list ul li a {
    text-decoration: underline;
}
.membership-include .content p {
    color: var(--color-black);
    padding: 30px 0 0;
}
.membership-include .include-detail {
    border-radius: 20px;
    background-color: #e5e5e5;
    padding: 30px;
    margin: 40px 0 0;
}
.membership-include .title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
}
.membership-include .include-content p {
    color: var(--color-black);
}

/* 404 page */
.error-404 {
    padding: 100px 0;
    background-color: var(--color-white);
}
.error-404__content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.error-404__lead {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-black);
    margin: 0 0 24px;
}
.error-404__list {
    list-style: disc;
    text-align: left;
    display: inline-block;
    margin: 0 auto 24px;
    padding-left: 20px;
    color: var(--color-black);
    line-height: 1.6;
}
.error-404__hint {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-black);
    margin: 0 0 24px;
}
.error-404__wrap {
    display: flex;
    justify-content: center;
}
.error-404__button {
    position: relative;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-black);
    border: 1px solid var(--color-black);
    padding: 10px 42px 12px;
    text-align: center;
    width: auto;
    min-width: 300px;
    height: 76px;
    text-transform: uppercase;
    line-height: 1.42857143;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.error-404__button:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

/* Search page css */
.search-page {
    padding: 100px 0;
}
.search__header {
    max-width: 640px;
    margin: 0 auto 50px;
}
.searchform {
    display: flex;
    align-items: center;
    gap: 12px;
}
.searchform .search-field {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid var(--color-black);
    background-color: var(--color-white);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-black);
}
.searchform .search-field:focus {
    outline: none;
    border-color: var(--color-black);
}
.search-submit-btn {
    width: 60px;
    height: 52px;
    border: 1px solid var(--color-white);
    background-color: var(--color-black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.search-submit-btn:hover {
    background-color: var(--color-white);
    border-color: var(--color-black);
}
.search-submit-btn svg path {
    transition: fill 0.3s ease;
}
.search-submit-btn:hover svg path {
    fill: var(--color-black);
}
.search__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.search-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #0b0b0b;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 100%;
}
.search-card .thumb img {
    width: 100%;
    height: auto;
    display: block;
}
.search-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.search-article__title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 1.4;
}
.search-article__title a {
    color: var(--color-white);
    text-decoration: none;
}
.search-article__title a:hover {
    text-decoration: underline;
}
.search-content .excerpt {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}
.search-card .read-more {
    margin-top: auto;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    width: fit-content;
    transition: color 0.3s ease, border-color 0.3s ease;
}
.search-card .read-more:hover {
    color: var(--color-white);
    border-color: var(--color-white);
}
.search__empty {
    text-align: center;
    font-size: 18px;
    color: var(--color-white);
    margin-top: 30px;
}

/* surgery banner css */
.surgery-banner {
    position: relative;
    background-color: #f6f8fa;
    z-index: 1;
}
.surgery-banner .surgery-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    align-items: center;
}
.surgery-banner .surgery-lft {
    position: relative;
    padding: 60px 60px 60px;
    padding-right: 0;
}
.surgery-banner .surgery-lft::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 80%;
    height: 100%;
    background-color: var(--color-black);
    z-index: -1;
}
.surgery-banner .surgery-img {
    height: 600px;
}
.surgery-banner .surgery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.surgery-banner .surgery-rht {
    padding: 60px 60px 60px;
    padding-left: 40px;
}
.surgery-banner .mainhead {
    color: var(--color-black);
}
.surgery-banner .content p {
    color: var(--color-black);
}
.surgery-banner .content a{
	text-decoration:underline;
}
.cms-surgery {
    position: relative;
    background-color: var(--color-white);
    padding: 80px 0;
}
.cms-surgery .surgery-content {
    background: #f6f8fa;
    border: 1px solid #ddd;
    color: #424242;
    margin-bottom: 40px;
    border-radius: 20px;
    padding: 40px;
}
.cms-surgery .surgery-content p {
    color: #424242;
}
.cms-surgery .surgery-content:last-child {
    margin: 0;
}
.cms-surgery .surgery-content a {
    text-decoration: underline;
    font-weight: 400;
    color: var(--color-black);
}
.cms-surgery .surgery-content a:hover {
    text-decoration: none;
}

.patient-reviews__embed .iframe-container {
    margin: 0;
}

/* Press page css */
.cms-press {
    position: relative;
    background-color: var(--color-white);
    padding: 80px 0;
}
.cms-press .section-header {
    text-align: center;
    padding: 0 0 60px;
}
.cms-press .heading {
    color: var(--color-black);
    margin: 0;
}
.cms-press .press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.cms-press .press-item {
    width: 100%;
}
.cms-press .press-box {
    position: relative;
    height: 100%;
    transition: all 0.3s ease-in-out;
}
.cms-press .press-box .press-img {
    background-color: var(--color-white);
    height: 440px;
    border-radius: 10px;
    overflow: hidden;
}
.cms-press .press-box .press-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1);
    transition: 0.3s ease-in-out;
}
.cms-press .press-box:hover .press-img img {
    transform: scale(1.05);
}
.cms-press .press-box .press-content {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 30px);
    background-color: var(--color-white);
    border: 1px solid var(--color-white);
    box-shadow: 0 4px 27px rgba(0, 0, 0, 0.09);
    border-radius: 10px;
    padding: 25px 30px 30px;
    margin-top: -60px;
    transition: all 0.3s ease-in-out;
}
.cms-press .press-box:hover .press-content {
    border-color: var(--color-black);
}
.cms-press .press-box .press-title {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 400;
    line-height: 130%;
    color: var(--color-black);
    min-height: 90px;
    margin: 0 0 15px;
    transition: all 0.3s ease-in-out;
}
.cms-press .press-box .btn-box {
    padding: 0;
}
.cms-press .press-box .more-btn {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1px;
    color: var(--color-black);
    text-transform: uppercase;
    padding-right: 25px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}
.cms-press .press-box .more-btn:hover {
    color: var(--color-black);
}
.cms-press .press-box .more-btn svg {
    margin-left: 10px;
    margin-top: 2px;
    transition: all 0.3s ease-in-out;
}
.cms-press .press-box:hover .more-btn svg {
    rotate: 45deg;
}
.cms-press .press-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}
.cms-press .press-pagination .page-numbers {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.cms-press .press-pagination .page-numbers li {
    margin: 0;
    padding: 0;
}
.cms-press .press-pagination .page-numbers a,
.cms-press .press-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-black);
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}
.cms-press .press-pagination .page-numbers a:hover,
.cms-press .press-pagination .page-numbers .current {
    background-color: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}
.cms-press .press-pagination .page-numbers .prev,
.cms-press .press-pagination .page-numbers .next {
    padding: 0 20px;
}

/*** 
====================================================================
  contact page css
====================================================================
***/
.contact-info {
    position: relative;
    background-color: #fff;
    padding: 80px 0 40px;
}
.contact-info .contact-info-inner {
    display: grid;
    grid-template-columns: 540px auto;
    align-items: center;
}
.contact-info .info-lft {
    padding: 40px 60px 40px;
    padding-left: 0;
}
.contact-info .section-header {
    padding: 0 0 30px;
}
.contact-info .heading {
    color: #000;
}
.contact-info .header-content {
    color: rgba(0, 0, 0, 0.5);
}
.contact-info .info-bot {
    display: grid;
    grid-template-columns: auto 180px;
    column-gap: 30px;
}
.contact-info .title {
    font-family: "Abel", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 15px;
}
.contact-info .content {
    color: rgba(0, 0, 0, 0.5);
}

.contact-info .iframe-container {
    margin: 0;
    border-radius: 20px;
}
/*** 
====================================================================
  contact all location css
====================================================================
***/
.all-location {
    position: relative;
    background-color: #fff;
    padding: 40px 0 80px;
}
.all-location .section-header {
    text-align: center;
    padding: 0 0 40px;
}
.all-location .heading {
    margin: 0;
    color: #000;
}


.all-location .location-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
}
.all-location .location-img {
    overflow: hidden;
    border-radius: 20px;
    margin: 0 0 30px;
}
.all-location .location-title {
    font-family: "Abel", sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    color: #000;
    margin: 0 0 30px;
}
.all-location .location-item-wrapper {
    display: grid;
    grid-template-columns: auto auto auto;
    column-gap: 15px;
}
.all-location .heading-title {
    font-family: "Abel", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 15px;
}
.all-location .location-list {
    color: rgba(0, 0, 0, 0.5);
}
.all-location .location-list br {
    display: none;
}
.all-location .address {
    color: rgba(0, 0, 0, 0.5);
    padding: 0 0 40px;
}
.all-location .location-list a {
    color: rgba(0, 0, 0, 0.5);
}
.all-location .location-list a:hover {
    color: #000;
}
.all-location .address .direction {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1px;
    color: #000;
    text-transform: uppercase;
    padding-right: 25px;
    display: flex;
    align-items: center;
    margin-top: 15px;
    transition: all 0.3s ease-in-out;
}
.all-location .address .direction svg {
    width: 10px;
    margin-left: 7px;
    margin-top: 2px;
    transition: all 0.3s ease-in-out;
}
.all-location .address .direction:hover svg {
    rotate: 45deg;
}



/*** 
====================================================================
  faq page css
====================================================================
***/

.cms-contact-form {
    position: relative;
    background-color: #fff;
    padding: 40px 0 80px;
}
.cms-contact-form .section-header {
    max-width: 740px;
    margin: 0 auto;
    text-align: center;
    padding: 0 0 60px;
}
.cms-contact-form .heading {
    color: #000;
    margin: 0 0 20px;
}
.cms-contact-form .header-content {
    color: rgba(0, 0, 0, 0.5);
}
.cms-contact-form .form-img img {
    border-radius: 20px;
}

.cms-contact-form .form-inner {
    display: grid;
    grid-template-columns: 30% auto;
    column-gap: 60px;
}
ul.jpl-sitemap__list.jpl-sitemap__list--pages {
    padding-left: 40px;
	margin-bottom:20px;
}
.hf-html-sitemap .children{
	padding-left:20px;
}

/* Commercial Page */
/* surgery banner css */
.commercial-banner {
    position: relative;
    background-color: #f6f8fa;
    z-index: 1;
}
.commercial-banner .commercial-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    align-items: center;
}
.commercial-banner .commercial-lft {
    position: relative;
    padding: 60px 60px 60px;
    padding-right: 0;
}
.commercial-banner .commercial-lft::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 80%;
    height: 100%;
    background-color: var(--color-black);
    z-index: -1;
}
.commercial-banner .commercial-img {
    height: 600px;
}
.commercial-banner .commercial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.commercial-banner .commercial-rht {
    padding: 60px 60px 60px;
    padding-left: 40px;
}
.commercial-banner .mainhead {
    color: var(--color-black);
}
.commercial-banner .content p {
    color: var(--color-black);
}
.commercial-banner .content a{
	text-decoration:underline;
}
.commercial-gallery{
	background-color:var(--color-white);
	padding:80px 0;
}
.cms-contact .wpcf7-response-output, .cms-contact-form .wpcf7-response-output{
	color:var(--color-black);
}
.consult__cta{
    text-decoration: none;
}
.showcase .showcase__text ul {
    list-style-position: inside;
    margin-bottom: 25px;
}
p a {
    text-decoration: underline;
}
p a:hover {
    text-decoration: none;
}
.header-menu-wraper {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header__phone a {
    display: flex;
    align-items: center;
    gap: 3px;
}
.header__phone a svg {
    width: 20px;
    height: 20px;
    display: inline-block;
}
.header__phone a:hover{
	color:rgba(255, 255, 255, 0.7)
}


header.header .header__dropdown li .header__dropdown li {
    text-wrap: auto;
}


.header__nav-list .header__dropdown .header__nav-item--dropdown:hover > .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
	left: 100%;
    top: 0;
} 

.header__nav-list .header__dropdown .header__nav-item--dropdown .header__dropdown {
    position: absolute;
    top: 0;
    left:100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
	max-width:200px;
}

.header__dropdown .header__nav-item--dropdown .header__toggle-submenu {
    right: 8px !important;
    top: 12px;
	width: 10px;
    height: 10px;
}

.callUs-sec {
    display: flex;
    justify-content: center;
}

.callus-btn {
    text-decoration: none;
    display: inline-block;
    padding: 14px 25px;
    border: 1px solid var(--color-black);
    border-radius: 0;
    color: var(--color-black);
    text-align: center;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.024px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.callus-btn:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}
