@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* font-family: "Poppins", sans-serif; */

@font-face {
    font-family: EleynaDemoRegular;
    /* set name */
    src: url('../fonts/EleynaDemoRegular-MAVqx.otf');
    /* url of the font */
}

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

:root {
    /* Font */
    --font-eleyna: "EleynaDemoRegular";
    --font-poppins: "Poppins", sans-serif;

    /* Color */
    --dark-green: #4a5938;
    --back-color-sky-blue: #eef5f5;
    --back-pink-light: #f5bca5;
    --text-white: #fff5f1;
    --text-green: #4a5938;
    --bg-body: #fff5f1;
    --nav-border-color: #829b77;
    --link-text: #4a5938;

    /* Text Size */
    --text-body: 1rem;
    --text-h1: 4rem;
    --text-h2: 3.5rem;
    --text-sub-heading: .5em;
    --text-1-5: 1.5rem;
    --text-1-25: 1.25rem;
    --text-1: .1rem;

    /* p */
    --text-32: 32px;
    --text-38: 38px;
    --text-24: 24px;
    --text-28: 28px;
    --text-14: 14px;
    --text-16: 16px;
    --text-20: 20px;
    --text-40: 40px;
    --text-44: 44px;

    /* Font Weight */
    --fw-300: 300;
    --fw-400: 400;
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
    --fw-800: 800;

    /* Line Height */

    --lh-1: 1;
    --lh-1-5: 1.5;
    --lh-1-1: 1.1;

    /* p */
    --lh-31: 31px;
    --lh-32: 32px;
    --lh-34: 34px;
    --lh-42: 42px;
    --lh-21: 21px;
    --lh-24: 24px;
    --lh-26: 26px;
    --lh-44: 44px;

    /* Border Radius */

    --btn-radius: 4px;

    --p-width: 552px;
    --block-width: 642px;
}


html,
body {
    overscroll-behavior: none;
}

body {
    font-family: var(--font-poppins);
    background-color: var(--bg-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-eleyna);
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 4rem;
}

p {
    padding: 0;
    margin: 0;
    font-size: var(--text-body);
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    box-shadow: none;
    background-color: transparent;
    border: none;
    outline: none;
}

img {
    max-width: 100%;
    width: 100%;
}

.img-sec-pl {
    padding-left: 12px;
}

.img-sec-pr {
    padding-right: 12px;
}

.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-padding-top {
    padding-top: 80px;
}

.section-padding-bottom {
    padding-bottom: 80px;
}

.btn-green,
.btn-white {
    display: flex;
}

.bg-green {
    background-color: var(--dark-green);
}

.btn-green a {
    padding: 12px 24px;
    border: 1px solid var(--dark-green);
    border-radius: var(--btn-radius);
    background-color: var(--dark-green);
    color: var(--text-white);
    text-align: center;
    font-weight: 500;
    transition: color .2s, background-color .2s, border-color .2s;
    text-transform: capitalize;
    transition: all .3s;
}

.btn-green a:hover,
.btn-outlined a:hover,
.btn-outlined-white a:hover {
    background-color: var(--back-pink-light);
    transition: all .3s;
    color: var(--text-green);
    border-color: var(--text-green);
}

.btn-outlined {
    display: flex;
}

.btn-outlined a {
    padding: 12px 24px;
    border: 1px solid var(--dark-green);
    border-radius: var(--btn-radius);
    background-color: transparent;
    color: var(--text-green);
    text-align: center;
    font-weight: 500;
    text-transform: capitalize;
    transition: all .3s;
}

.btn-outlined-white {
    display: flex;
}

.btn-outlined-white a {
    padding: 12px 24px;
    border: 1px solid var(--text-white);
    border-radius: var(--btn-radius);
    background-color: transparent;
    color: var(--text-white);
    text-align: center;
    font-weight: 500;
    text-transform: capitalize;
    transition: all .3s;
    display: inline-block;
}

.btn-white a {
    padding: 12px 24px;
    border-radius: var(--btn-radius);
    background-color: var(--back-color-sky-blue);
    color: var(--text-green);
    text-align: center;
    font-weight: var(--fw-500);
    text-transform: capitalize;
    transition: all .3s;
    border: 1px solid transparent;
}

.btn-white a:hover {
    background-color: var(--back-pink-light);
    transition: all .3s;
    border: 1px solid transparent;
}

.section-title-white h2 {
    font-size: var(--text-h2);
    font-weight: var(400);
    text-transform: uppercase;
    line-height: var(--lh-1);
    color: var(--text-white);
}

.section-title-white span {
    font-weight: var(--fw-400);
    font-size: var(--text-1-25);
    letter-spacing: .1rem;
    color: var(--text-white);
    border-bottom: 3px solid var(--back-pink-light);
    padding-bottom: 8px;
    display: inline-flex;
}

.section-title-white img {
    width: 80px;
}

.section-title-green h1 {
    font-size: 4rem;
    font-weight: var(400);
    text-transform: uppercase;
    line-height: var(--lh-1);
    color: var(--dark-green);
}

.section-title-green h2 {
    font-size: var(--text-h2);
    font-weight: var(400);
    text-transform: uppercase;
    line-height: var(--lh-1);
    color: var(--dark-green);
}

.section-title-green h3 {
    font-size: 32px;
    font-weight: var(--fw-400);
    line-height: 1.3;
    color: var(--text-green);
    text-transform: uppercase;
}

.section-title-green h4 {
    font-size: 28px;
    font-weight: var(--fw-400);
    line-height: 1.3;
    color: var(--text-green);
}

.section-title-green span {
    font-weight: var(--fw-400);
    font-size: var(--text-1-25);
    letter-spacing: .1rem;
    color: var(--text-green);
    border-bottom: 3px solid var(--text-green);
    padding-bottom: 8px;
    display: inline-flex;
}

.container {
    max-width: 1440px;
    width: 100%;
}

.container-padding {
    padding: 80px 40px;
}


/* Header Start */

.sp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--back-color-sky-blue);
    border-bottom: 1px solid var(--nav-border-color);
    z-index: 999;
}

.sp-header .sp-nav-wrapper {
    height: 64px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.sp-nav-wrapper .sp-logo {
    width: 210px;
}

.sp-nav-wrapper .sp-nav-links ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 40px;
}

.sp-nav-wrapper .sp-nav-links ul li a {
    color: var(--link-text);
}

.sp-contact-no a {
    color: var(--link-text);
}

.sp-nav-wrapper .sp-right-nav .sp-small-btn {
    display: none;
}

.sp-nav-wrapper .sp-right-nav .sp-d-button {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sp-nav-wrapper .sp-right-nav .sp-d-button .btn-green a {
    padding: .5em 1em;
    text-transform: uppercase;
}

.sp-nav-wrapper .sp-nav-links .menu-item .has-menu a {
    color: var(--link-text);
    font-weight: var(--fw-400);
    font-size: 16px;
}

/* Parent menu item */
.sp-nav-links .has-menu {
    position: relative;
}

/* Submenu */
.sp-nav-links .has-sub-menu-item {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--bg-body);
    border: 1px solid var(--nav-border-color);
    padding: 12px 12px !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 99;
    border-radius: var(--btn-radius);
}

/* Submenu items */

.sp-nav-links .has-sub-menu-item {
    display: flex;
    flex-direction: column;
    width: auto;
    gap: 0px !important;
}

.sp-nav-links .has-sub-menu-item li {
    width: 100%;

}

.sp-nav-links .has-sub-menu-item li a {
    display: block;
    font-size: 15px;
    color: var(--link-text);
    white-space: nowrap;
    text-align: left;
    padding: 8px 12px;
    border-radius: var(--btn-radius);
    transition: all .2s;
}

.sp-nav-links .has-sub-menu-item li a:hover {
    background-color: var(--text-green);
    color: var(--text-white) !important;
    transition: all .2s;
}

.sp-nav-links .has-menu:hover>.has-sub-menu-item {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Add arrow only if submenu exists */
.sp-nav-links .has-menu:has(> .has-sub-menu-item)>a {
    position: relative;
    padding-right: 18px;
}

/* SVG arrow */
.sp-nav-links .has-menu:has(> .has-sub-menu-item)>a::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a5938' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.sp-nav-links .has-menu:hover>a::after {
    transform: translateY(-50%) rotate(180deg);
}


/* Header End */

/* Footer Start */

.sp-footer {
    padding: 80px 0 0 0;
    background-color: var(--back-color-sky-blue);
}

.sp-footer-wrapper {
    padding-bottom: 80px;
}

.sp-footer-wrapper .sp-footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2em;
}

.sp-footer-wrapper .sp-footer-top .sp-footer-logo {
    max-width: 320px;
}

.sp-footer-wrapper .sp-footer-top .sp-footer-social-icon {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.sp-footer-wrapper .sp-footer-top .sp-footer-social-icon a {
    border: 1px solid var(--text-green);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.sp-footer-wrapper .sp-footer-top .sp-footer-social-icon a:hover {
    background-color: var(--back-pink-light);
    transition: all 0.3s;
}

.sp-footer-wrapper .sp-footer-center {
    display: grid;
    grid-template-columns: auto auto .7fr;
    grid-template-rows: auto;
    column-gap: 2em;
    row-gap: 2em;
}

.sp-footer-center .sp-f-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sp-footer-center .sp-f-contact .sp-c-info:nth-child(4) {
    display: flex;
    flex-direction: column;
}

.sp-footer-center .sp-f-contact .sp-c-info h4 {
    font-family: var(--font-poppins);
    font-size: var(--text-1-5);
    color: var(--text-green);
    font-weight: var(--fw-400);
    line-height: 1.3;
}



.sp-footer-center .sp-f-hour {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
}

.sp-footer-center .sp-f-hour .sp-h-main {
    display: flex;
    gap: 20px;
}

.sp-footer-center .sp-f-hour h4 {
    font-family: var(--font-poppins);
    font-size: var(--text-1-5);
    color: var(--text-green);
    font-weight: var(--fw-400);
    line-height: 1.3;
}

.sp-footer-center .sp-f-hour .sp-h-main ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.sp-footer-center .sp-f-hour .sp-h-main ul li {
    text-transform: uppercase;
    color: var(--text-green);
}

.sp-footer-center .sp-f-map .sp-c-map {
    width: 100%;
    height: 350px;
}

.sp-footer-center .sp-f-map .sp-c-map iframe {
    width: 100%;
    height: 100%;
}

.sp-footer-bottom-wrapper {
    padding: 1rem 0;
    border-top: 1px solid var(--nav-border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sp-footer-bottom-wrapper .sp-footer-b-links {
    display: flex;
    align-items: center;
    gap: 5px;
}

.sp-footer-bottom-wrapper .sp-footer-b-links span,
.sp-footer-bottom-wrapper .sp-footer-b-links a,
.sp-footer-bottom-wrapper .sp-footer-b-web a {
    color: var(--link-text);
    font-size: .75rem;
}

.sp-footer-bottom-wrapper .sp-footer-b-web a:nth-child(2) {
    font-weight: 700;
}

/* Footer End */


/* Hero Section Start */

.sp-hero-home {
    margin-top: 64px;
}

.sp-h-right-img,
.sp-h-title,
.sp-h-btn {
    will-change: transform, opacity;
}

.sp-hero-home .container-fluid {
    padding: 0;
}

.sp-hero-home .sp-hero-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    column-gap: 4rem;
    row-gap: 50px;
    /* height: calc(100dvh - 64px); */
}

.sp-hero-wrapper .sp-hero-img {
    width: 100%;
    overflow: hidden;
    height: calc(100vh - 64px);
}

.sp-hero-wrapper .sp-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-hero-wrapper .sp-hero-right {
    display: flex;
    align-items: center;
    padding: 3rem 1rem;
}

.sp-hero-wrapper .sp-hero-right .sp-right-inner {
    max-width: 648px;
    width: 100%;
}

.sp-right-inner .sp-h-right-img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.sp-right-inner .sp-h-right-img img {
    width: 280px;
    margin: 0 auto;
}

.sp-hero-v2 .sp-right-inner .sp-h-right-img img {
    width: 200px;
    margin: 0 auto;
    opacity: 0.6;
}

.sp-right-inner .sp-h-title {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.sp-right-inner .sp-h-title h1 {
    max-width: 350px;
    width: 100%;
    text-align: center;
    font-size: var(--text-1-25);
    font-weight: var(--fw-700);
    color: var(--text-green);
    letter-spacing: .1rem;
}

.sp-right-inner .sp-h-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Hero Section End */


/* About Section Start */

.sp-about-section {
    position: relative;
}

.sp-about-bg {
    position: absolute;
    max-width: 1440px;
    width: 100%;
    height: 100%;
    background-color: var(--back-color-sky-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
}

.sp-about-section .container-fluid {
    padding: 0;
    position: relative;
}

.sp-about-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    column-gap: 4rem;
    row-gap: 4rem;
}

.sp-about-wrapper .sp-about-left {
    height: 95vh;
    width: 100%;
}

.sp-about-wrapper .sp-about-left img {
    height: 100%;
    object-fit: cover;
    object-position: 20% 30%;
}

.sp-about-wrapper .sp-about-right {
    max-width: 671px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 12px;
}

.sp-about-wrapper .sp-about-right .section-title-green h2 {
    margin-top: 3rem;
    margin-bottom: 8px;
}

.sp-about-wrapper .sp-about-right .section-title-green h4 {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-green);
    text-transform: uppercase;
}

.sp-about-wrapper .sp-about-right .sp-right-text {
    max-width: 552px;
    width: 100%;
    margin-bottom: 1.5rem;
}

.sp-about-wrapper .sp-about-right .sp-right-text p {
    color: var(--text-green);
}

.sp-about-wrapper .sp-about-right .sp-about-logo-client {
    max-width: 552px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    column-gap: 20px;
    row-gap: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}


/* About Section End */

/* Intro Section Start */

.sp-intro-section .container-fluid {
    padding: 0;
}

.sp-intro-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    column-gap: 4rem;
    row-gap: 4rem;
}

.sp-intro-section .sp-intro-wrapper .section-title-green h2 {
    margin-top: 3rem;
}

.sp-intro-wrapper .sp-intro-left {
    display: flex;
    align-items: center;
    justify-content: end;
}

.sp-intro-wrapper .sp-intro-left .sp-introl-left-content {
    max-width: 648px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
}

.sp-intro-wrapper .sp-intro-left .sp-introl-left-content p {
    color: var(--text-green);
    max-width: 552px;
    width: 100%;
}

.sp-intro-right .sp-intro-img {
    height: 95vh;
    overflow: hidden;
}

.sp-intro-right .sp-intro-img img {
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Intro Section End */

/* Service Section Start */

.sp-service-section {
    background-color: var(--dark-green);
}

.sp-service-section .container-fluid {
    padding: 0;
}

.sp-service-section .section-title-white {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 3rem;
}

.sp-service-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    column-gap: 4rem;
    row-gap: 4rem;
}

.sp-service-wrapper .sp-ser-left {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 1rem;
}

.sp-service-wrapper .sp-ser-left .sp-ser-left-content {
    max-width: 648px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    gap: 2.5rem;
}

.sp-service-wrapper .sp-ser-left .sp-ser-left-content .section-title-white {
    text-align: left !important;
    display: flex;
    flex-direction: row;
    justify-content: start;
    margin-bottom: 0;
}

.sp-ser-left-content p {
    color: var(--text-white);
    max-width: 552px;
    width: 100%;
}

.sp-service-wrapper .sp-ser-right {
    height: 90vh;
}

.sp-service-wrapper .sp-ser-right img {
    height: 100%;
    object-fit: cover;
}

.sp-service-wrapper {
    margin-top: 20px;
}

.sp-service-wrapper:nth-child(1) {
    margin-top: 0;
}


/* Service Section End */

/* Banner Text Section Start */

.sp-banner-text-section {
    padding: 20px;
    overflow: hidden;
}

.sp-banner-text-section .container-fluid {
    padding: 0;
}

.sp-b-t-wrapper {
    /*max-width: 1440px;*/
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    min-height: 95dvh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: var(--btn-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.sp-banner-bg-layer {
    position: absolute;
    inset: 0;
    background-color: #0000008c;
}

.sp-b-t-wrapper .section-title-white {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    position: relative;
}

.sp-b-t-wrapper .section-title-white p {
    max-width: 803px;
    width: 100%;
    font-size: var(--text-1-25);
    line-height: 1.3;
    color: var(--text-white);
}

/* Banner Text Section End */

/* Complimentary Consult Section styling start */

.sp-complimentary-consult-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.sp-complimentary-consult-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    align-items: start;
    justify-content: start;
    gap: 4rem;
}

.sp-consult-details {
    padding-top: 3rem;
    padding-bottom: 3rem;
    display: flex;
    flex-direction: column;
    column-gap: 3rem;
    row-gap: 3rem;
}

.consult-title {
    padding-top: 3rem;
}

.consult-title h2 {
    color: var(--text-green);
    font-size: var(--text-h2);
    font-weight: var(400);
    text-transform: uppercase;
    line-height: var(--lh-1);
}

.consult-desc p {
    max-width: 552px;
    width: 100%;
    font-size: 1rem;
    text-align: left;
    color: var(--text-green);
    line-height: var(--lh-1-5);
}

.sp-consult-details .sp-consult-btn {
    display: flex;
    gap: .75rem;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.sp-consult-img-wrapper {
    width: 100%;
    height: 100vh;
    /* max-width: 648px; */
    max-height: 777.59px;
    box-shadow: 0 2px 5px #0003;
}

.sp-consult-img-wrapper img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.sp-complimentary-cards {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    column-gap: 1rem;
    row-gap: 1rem;
    grid-auto-columns: 1fr;
    display: grid;
}


.complimentary-card {
    padding: 2.5rem;
    border: 1.5px solif var(--dark-green);
    border-radius: var(--btn-radius);
    background-color: var(--dark-green);
}

.complimentary-card .card-content {
    display: flex;
    align-items: stretch;
    flex-flow: column;
    justify-content: center;
    gap: 1.5rem;
}

.card-content .card-icon-wrapper {
    align-self: center;
    align-items: center;
    width: 100%;
    width: 7rem;
    height: 7rem;
    display: flex;
    justify-content: center;
    border-radius: 100vw;
}

.card-content .card-icon-wrapper img {
    object-fit: cover;
}

.card-content .card-desc h3 {
    font-family: var(--font-poppins);
    color: var(--text-white);
    text-align: center;
    font-weight: 400;
    font-size: var(--text-1-5);
}

/* Complimentary Consult Section styling End */

/* The Sweet Section Start */

.sp-sweet-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    column-gap: 4rem;
    row-gap: 4rem;
}

.sp-sweet-wrapper .container-fluid {
    padding: 0;
    transform: none;
}

.sp-sweet-wrapper .sp-sweet-left .sp-sweet-inner-img {
    height: 100%;
    border-radius: var(--btn-radius);
    overflow: hidden;
    position: sticky;
}

.sp-sweet-right{
    display: flex;
    align-items: center;
}

.sp-sweet-wrapper .sp-sweet-left img {
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* .sp-sweet-wrapper .sp-sweet-right {
    padding-top: 4rem;
    padding-bottom: 4rem;
} */

.sp-sweet-home-title-wrapper{
    margin-bottom: 3rem;
}

.sp-sweet-home-title-wrapper .section-title-green{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.sp-sweet-home-title-wrapper .section-title-green span{
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.sp-sweet-home-title-wrapper p{
    max-width: 1000px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 18px;
    text-align: center;
}

.sp-sweet-home-title-wrapper .btn-green{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
}

.sp-sweet-wrapper .sp-sweet-right .sp-sweet-content {
    /* max-width: var(--block-width); */
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.sp-sweet-wrapper .sp-sweet-right .section-title-green h2 {
    margin-top: 3rem;
}

.sp-sweet-wrapper .sp-sweet-right .sp-sweet-content p {
    color: var(--text-green);
    max-width: var(--p-width);
    width: 100%;
}

.sp-sweet-wrapper .sp-sweet-right .sp-sweet-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sp-sweet-wrapper .sp-sweet-right .sp-sweet-cards .sp-sweet-card {
    width: 100%;
    background-color: var(--back-color-sky-blue);
    border: 1px solid var(--nav-border-color);
    padding: 1.5rem 2.5rem 1.5rem 1rem;
    display: flex;
    gap: 1rem;
    border-radius: var(--btn-radius);
    box-shadow: 11px 11px 11px -8px #3a3a3a1a;
}

.sp-sweet-cards .sp-sweet-card span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--back-pink-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--nav-border-color);
    flex-shrink: 0;
}

.sp-sweet-cards .sp-sweet-card .sp-s-card-content {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.sp-sweet-cards .sp-sweet-card .sp-s-card-content h4 {
    font-family: var(--font-poppins);
    font-size: var(--text-1-5);
    font-weight: var(--fw-400);
    line-height: 1.3;
    color: var(--text-green);
}

.sp-sweet-cards .sp-sweet-card .sp-s-card-content p {
    max-width: 100%;
    width: 100%;
    color: var(--text-green);
}

.sp-con-title-main-wrapper{
    margin-top: 3rem;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.sp-con-title-main-wrapper .section-title-green{
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.sp-con-title-main-wrapper .section-title-green p{
    margin-bottom: 0 !important;
}
 
.sp-con-title-main-wrapper .consult-btn{
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}


/* The Sweet Section End */

/* Consult Form Start */

.sp-consult-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    column-gap: 4rem;
    row-gap: 4rem;
    padding: 2.5rem;
    background-color: var(--dark-green);
    border-radius: var(--btn-radius);
    overflow: hidden;
}

.sp-consult-wrapper .sp-consult-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sp-consult-wrapper .sp-consult-left .section-title-white {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sp-consult-wrapper .sp-consult-left .section-title-white span {
    width: fit-content;
}

.sp-consult-wrapper .sp-consult-left p {
    color: var(--text-white);
}

.sp-consult-wrapper .sp-consult-left .consult-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.sp-consult-wrapper .sp-consult-right {
    padding: 30px 12px;
}

.sp-consult-wrapper .sp-consult-right .sp-consult-form-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sp-consult-right .sp-consult-form-wrapper .sp-form-input {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.sp-consult-right .sp-consult-form-wrapper .sp-form-input-check {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.sp-consult-form-wrapper .sp-form-input label {
    font-size: 18px;
    font-weight: var(--fw-400);
    color: #eef5f5FF;
}

.sp-consult-form-wrapper .sp-form-input input,
.sp-consult-form-wrapper .sp-form-input textarea {
    padding: 15px 15px;
    box-shadow: 0px 0px 0px 0px #FFFFFF;
    border-radius: 5px;
    background-color: #fff5f1FF;
    color: #4a5938FF;
    outline: none;
    border: 1px solid transparent;
}

.sp-consult-form-wrapper .sp-form-input input:focus,
.sp-consult-form-wrapper .sp-form-input textarea:focus {
    border-color: #3898ec !important;
}

.sp-consult-form-wrapper .sp-form-input span {
    font-size: 12px;
    font-weight: var(--fw-400);
    color: #fff5f1FF;
}

.sp-consult-form-wrapper .sp-form-input-check label {
    font-size: 18px;
    color: #eef5f5FF;
    font-weight: var(--fw-400);
}

.sp-consult-form-wrapper .sp-form-input-check label a {
    color: #335dff;
    text-decoration: underline;
}

.gform-field-label a {
    color: #335dff;
    text-decoration: underline;
}

.sp-consult-form-wrapper .sp-form-input-check input {
    margin-top: 8px;
}

.sp-consult-form-wrapper .sp-form-input input[type="submit"] {
    color: var(--text-green);
    transition: all .3s;
    font-size: 18px;
    font-weight: var(--fw-400);
}

.sp-consult-form-wrapper .sp-form-input input[type="submit"]:hover {
    background-color: var(--back-pink-light);
    transition: all .3s;
}

/* Consult Form End */

/* Cta Image Section Start */
.sp-full-cta-img-section {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sp-full-cta-img-section .section-title-white {
    display: flex;
    flex-direction: column;
    row-gap: 48px;
    align-items: center;
}

.sp-cta-img-content {
    z-index: 0;
    position: relative;
    width: 100%;
    height: 762px;
    display: flex;
    flex-direction: column;
    row-gap: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sp-cta-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.sp-cta-bg-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.548);
}

/* Cta Image Section End */

/* info Section Start */

.sp-info-section {
    background-color: var(--dark-green);
}

.sp-info-card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
}

.sp-info-card-wrapper .sp-info-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
    justify-content: center;
    align-items: center;
}

.sp-info-card-wrapper .sp-info-card .sp-info-title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
}

.sp-info-card-wrapper .sp-info-card .sp-info-title a {
    font-size: var(--text-1-25);
    text-align: center;
}

.sp-info-card-wrapper .sp-info-card .sp-info-title h4 {
    font-size: var(--text-1-5);
    font-weight: var(--fw-400);
    font-family: var(--font-poppins);
    line-height: 1.3;
}

.sp-info-card-wrapper .sp-info-card .sp-info-text {
    text-align: center;
    max-width: 243px;
    width: 100%;
}

.sp-info-card-wrapper .sp-info-card .sp-info-text a {
    font-size: 1rem;
    color: var(--text-white);
}

.sp-info-card-wrapper .sp-info-card:nth-child(2) .sp-info-text a {
    font-size: var(--text-1-25);
}

.sp-info-card-wrapper .sp-info-card .sp-info-time {
    display: flex;
    gap: 10px;
}

.sp-info-card-wrapper .sp-info-card .sp-info-time ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: minmax(0, auto) minmax(0, auto) minmax(0, auto) minmax(0, auto);
    grid-auto-columns: minmax(0, 1fr);
    column-gap: .75rem;
}

.sp-info-card-wrapper .sp-info-card .sp-info-time ul li {
    color: var(--text-white);
    font-weight: var(--fw-400);
    font-size: 1rem;
}


.sp-info-card-wrapper .sp-info-card:nth-child(1),
.sp-info-card-wrapper .sp-info-card:nth-child(2) {
    border-right: 1px solid var(--text-white);
}

/* .sp-info-card-wrapper .sp-info-card:nth-child(3):hover{
    background-color: var(--dark-green);
} */

.sp-info-card-wrapper .sp-info-card:hover {
    background-color: var(--back-pink-light);
}

/* info Section End */

.sp-hero-wrapper .sp-hero-right .section-title-green {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sp-hero-wrapper .sp-hero-right .section-title-green p {
    max-width: 552px;
    width: 100%;
    margin: 0 auto;
    color: var(--text-green);
}

/* get-to-know Section start */

.sp-g-k-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    column-gap: 4rem;
    row-gap: 4rem;
}

.sp-g-k-wrapper .sp-gk-left {
    display: flex;
    justify-content: flex-end;
    padding-top: 3rem;
}

.sp-g-k-wrapper .sp-gk-left .sp-gk-content {
    max-width: var(--block-width);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sp-gk-left .sp-gk-content .section-title-green h2 {
    margin-top: 3rem;
}

.sp-gk-left .sp-gk-content .sp-gk-text{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sp-banner-spacer {
  height: 100vh;
}

.sp-gk-left .sp-gk-content .sp-gk-text p {
    max-width: var(--p-width);
    width: 100%;
    color: var(--text-green);
}

.sp-gk-right .sp-gk-img {
    height: 95vh;
    overflow: hidden;
}

.sp-gk-right .sp-gk-img img {
    height: 100%;
    object-fit: cover;
    object-position: 0% 40%;
}

/* get-to-know Section End */

.sp-about-p-card {
    display: flex;
    gap: 15px;
}

.sp-about-p-card span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--back-pink-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--nav-border-color);
    flex-shrink: 0;
}

.sp-about-p-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sp-about-p-card .sp-a-p-text {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.sp-about-p-card .sp-a-p-text h4 {
    font-family: var(--font-poppins);
    font-size: var(--text-1-5);
    font-weight: var(--fw-400);
    line-height: 1.3;
    color: var(--text-green);
}

.sp-about-p-card .sp-a-p-text p {
    max-width: var(--p-width);
    color: var(--text-green);
}

.sp-about-p-card .sp-a-p-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sp-about-p-card .sp-a-p-text ul li {
    display: flex;
    gap: 15px;
    color: var(--text-green);
    font-weight: var(--fw-700);
}

.sp-about-p-card .sp-a-p-text ul li span {
    width: 24px;
    height: 24px;
    background-color: var(--dark-green);
    color: var(--text-white);
}

.sp-intro-inner .sp-intro-inner-text p {
    color: var(--text-white) !important;
}

.sp-intro-inner .sp-intro-wrapper .sp-intro-left .sp-introl-left-content {
    gap: 2rem;
}

.sp-intro-inner .sp-intro-list ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sp-intro-inner .sp-intro-list ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sp-intro-inner .sp-intro-list ul li {
    font-size: var(--text-1-25);
    color: var(--text-white);
}

.sp-intro-inner .sp-intro-list ul li span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-green);
}

.sp-intro-inner .sp-intro-wrapper:nth-child(odd) .sp-intro-left {
    order: 1;
}

.sp-intro-inner .sp-intro-wrapper:nth-child(odd) .sp-intro-right {
    order: 2;
}

.sp-intro-inner .sp-intro-wrapper:nth-child(even) .sp-intro-left {
    order: 2;
    justify-content: flex-start;
}

.sp-intro-inner .sp-intro-wrapper:nth-child(even) .sp-intro-right {
    order: 1;
}


.sp-gallery-section {
    padding-bottom: 80px;
}

.sp-gallery-wrapper:nth-child(odd) {
    display: grid;
    grid-template-columns: 4fr 5fr;
    column-gap: 20px;
    row-gap: 20px;
}

.sp-gallery-wrapper:nth-child(odd) .sp-g-cards {
    height: 686px;
    border-radius: var(--btn-radius);
    overflow: hidden;
}

.sp-gallery-wrapper:nth-child(odd) .sp-g-cards img {
    height: 100%;
    object-fit: cover;
}

.sp-gallery-wrapper:nth-child(even) {
    display: grid;
    grid-template-columns: 5fr 4fr;
    column-gap: 20px;
    row-gap: 20px;
    margin-top: 20px;
}

.sp-gallery-wrapper:nth-child(even) .sp-g-cards {
    height: 686px;
    border-radius: var(--btn-radius);
    overflow: hidden;
}

.sp-gallery-wrapper:nth-child(even) .sp-g-cards img {
    height: 100%;
    object-fit: cover;
}


/* ---------------------------- */

.sp-braces-left-img-right-content-section {
    background-color: var(--text-white);
}

.sp-braces-left-img-right-content-section .sp-Braces-inner {
    display: flex;
    gap: 64px;
    align-items: center;
}

.sp-braces-left-img-right-content-section {
    position: relative;
}

.sp-braces-left-img-right-content-section .sp-braces-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.sp-braces-left-img-right-content-section .sp-braces-img {
    position: absolute;
    left: 0;
    width: 48.4%;
    box-shadow: 0 2px 5px #0003;
    height: 95vh;
}

.sp-braces-left-img-right-content-section p {
    color: var(--text-green);
}

.sp-braces-left-img-right-content-section .sp-list-inner ul {
    margin-bottom: 0px;
}

.sp-braces-left-img-right-content-section .sp-list-inner {
    max-width: 590px;
    width: 100%;
}

.sp-braces-left-img-right-content-section .sp-list-inner ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 0px;
}

.sp-braces-left-img-right-content-section .sp-list-inner ul li {
    display: flex;
    gap: 12px;
    list-style: none;
    color: var(--dark-green);
    color: var(--text-green);
    font-weight: var(--fw-400);
    line-height: var(--lh-1-5);

}

.sp-braces-left-img-right-content-section .sp-Braces-content {
    max-width: 648px;
    width: 100%;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}


.sp-braces-left-img-right-content-section .sp-list-inner svg {
    padding: 1px;
    width: 28px;
    height: 26px;
    border-radius: 50px;
    background-color: var(--dark-green);


}

.sp-Braces-inner {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
}

.sp-braces-left-img-right-content-section .sp-list-inner p {
    width: 100%;
    color: var(--dark-green);
    font-weight: var(--fw-400);
    line-height: var(--lh-1-5);
}


.sp-braces-right-img-left-content-section {
    background-color: var(--text-white);
}

.sp-braces-right-img-left-content-section .sp-Braces-inner {
    display: flex;
    gap: 64px;
    align-items: center;
}

.sp-braces-right-img-left-content-section {
    position: relative;
}

.sp-braces-right-img-left-content-section .sp-braces-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;


}

.sp-braces-right-img-left-content-section .sp-braces-img {
    position: absolute;
    right: 0;
    width: 48.4%;
    box-shadow: 0 2px 5px #0003;
    height: 100%;
}

.sp-braces-right-img-left-content-section p {
    color: var(--text-green);
}

.sp-braces-right-img-left-content-section .sp-list-inner ul {
    margin-bottom: 0px;
}

.sp-braces-right-img-left-content-section .sp-list-inner {
    max-width: 590px;
    width: 100%;
}

.sp-braces-right-img-left-content-section .sp-list-inner ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 0px;
}

.sp-braces-right-img-left-content-section .sp-list-inner ul li {
    display: flex;
    gap: 12px;
    list-style: none;
    color: var(--dark-green);
    color: var(--text-green);
    font-weight: var(--fw-400);
    line-height: var(--lh-1-5);

}

.sp-braces-right-img-left-content-section .sp-Braces-content {
    max-width: 648px;
    width: 100%;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sp-braces-right-img-left-content-section .sp-list-inner svg {
    padding: 1px;
    width: 28px;
    height: 26px;
    border-radius: 50px;
    background-color: var(--dark-green);
}

.sp-braces-right-img-left-content-section .sp-list-inner p {
    width: 100%;
    color: var(--dark-green);
    font-weight: var(--fw-400);
    line-height: var(--lh-1-5);
}

.section-margin {
    margin-top: 80px;
    margin-bottom: 80px;
}

.sp-faq-section .sp-faq-section-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sp-faq-section .sp-faq-info-inner {
    max-width: 568px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sp-faq-section .sp-faq-info-faqs {
    max-width: 568px;
    width: 100%;
}

.sp-faq-section .sp-faq-section-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.sp-faq-section .sp-faq-section-inner .accordion-button {
    background-color: var(--dark-green);
    color: var(--text-white);
}

.sp-faq-section .accordion-button::after {
    background-image: url(../images/appliances/plus.png);
    transition: all 0.5s;
    position: absolute;
    right: 18px;
    position: absolute;
    right: 18px;
    width: 24px;
    height: 24px;
    background-size: cover;

}

.sp-faq-section .accordion-button:not(.collapsed)::after {
    background-image: url(../images/appliances/cross.png);
    position: absolute;
    right: 18px;
    position: absolute;
    right: 18px;
    width: 24px;
    height: 24px;
    background-size: cover;

}

.sp-faq-section .accordion-button::after {
    transition: all 0.5s;
}

.sp-faq-section .accordion-body ul {
    margin-top: 15px;
}

.sp-faq-section .accordion-body ul li {
    font-size: var(--text-body);
    color: var(--dark-green);
    margin-bottom: 6px;
}

.sp-faq-section .accordion-body {
    padding: 32px 32px 48px;
    background-color: #eef5f5;
}

.sp-faq-section .accordion-item {
    margin-bottom: 7px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--dark-green);
}

.sp-faq-section .accordion-body p {
    color: var(--dark-green);
}

.sp-faq-section .sp-faq-info-faqs h2 button:focus {
    box-shadow: none !important;
}

.sp-faq-section .sp-faq-info-faqs h2 button {

    padding: 5px 55px 8px 32px;
    height: 80px;
    font-family: var(--font-poppins);
}

.sp-faq-section .sp-faq-info-inner p {
    color: var(--text-green);
    font-weight: var(--fw-400);
}


.sp-about-green .sp-about-bg {
    background-color: var(--dark-green);
}

.sp-about-green .sp-about-right {
    max-width: 100%;
    width: 100%;
    display: flex;
    align-items: end;
    padding: 0 12px;
}

.sp-about-green .sp-about-right .sp-ab-content {
    max-width: var(--block-width);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sp-about-green .sp-about-right .sp-ab-content .sp-right-text p {
    color: var(--text-white);
}



/* ---------------------------- */

/* Patient Download form section styling starts*/

.sp-patient-download-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.sp-download-left-part {
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* .patient-download-content .section-title-green h2 {
    margin-top: 3rem;
} */

.patient-download-sub-heading h3 {
    color: var(--text-green);
    font-family: var(--font-poppins);
    font-size: var(--text-20);
    font-weight: var(--fw-400);
    border-bottom: 3px solid var(--dark-green);
    padding-bottom: 12px;
    display: inline;
}

/* .patient-download-sub-heading .divide-line {
    width: 100%;
    width: 190px;
    object-fit: cover;
    height: 3px;
    background-color: var(--dark-green);
    margin-top: .75rem;
} */

.patient-download-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.patient-download-content .download-desc {
    color: var(--text-green);
    font-size: var(--text-body);
    line-height: var(--lh-1-5);
    font-weight: var(--fw-400);
    max-width: 552px;
    width: 100%;
}

.sp-patient-download-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.sp-patient-download-right .patient-form-button {
    padding: 18px;
    border: 1.5px solid var(--dark-green);
    border-radius: var(--btn-radius);
    background-color: var(--dark-green);
    color: var(--text-white);
    text-align: center;
    align-items: center;
    width: 100%;
    transition: 0.5s ease-in-out;
    display: flex;
    position: relative;
    gap: 14px;
    overflow: hidden;
}

.patient-form-button .btn-patient {
    font-size: var(--text-body);
}

.patient-form-button .iconify {
    width: 40px;
    height: 40px;
}

.iconify.is-left {
    /* position: absolute; */
    left: 1.5rem;
}

.iconify.is-right {
    transform: translateX(10px);
    opacity: 0;
    transition: 0.5s ease-in-out;
    /* position: absolute; */
    right: 1.5rem;
}

.patient-form-button:hover {
    background-color: var(--back-pink-light);
    border: none;
}


.patient-form-button:hover .btn-patient {
    transform: translateX(-40px);
    transition: 0.5s ease-in-out;
    color: var(--text-green);
}

.patient-form-button:hover .is-left {
    transform: translateX(-30px);
    opacity: 0;
    transition: 0.5s ease-in-out;
    color: var(--text-green);
}

.patient-form-button:hover .is-right {
    opacity: 1;
    transform: translateX(-10px);
    transition: 0.5s ease-in-out;
    color: var(--text-green);
}


/* Patient Download form section styling ends*/

/* Patient-resources > insurance section styling starts */

.sp-patient-resource-insurance .sp-insurance-content {
    background-color: var(--dark-green);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    align-items: start;
    justify-content: start;
    gap: 4rem;
}

.sp-insurance-details {
    padding-top: 3rem;
    padding-bottom: 3rem;
    display: flex;
    flex-direction: column;
    column-gap: 3rem;
    row-gap: 2rem;
}

/* .sp-insurance-details .section-title-white {
    padding-top: 3rem;
} */

.sp-insurance-content P {
    font-size: var(--text-body);
    text-align: left;
    color: var(--text-white);
    line-height: var(--lh-1-5);
}

.sp-insurance-btn {
    padding-top: 3rem;
    display: flex;
    gap: .75rem;
    /* justify-content: flex-start; */
    align-items: center;
    flex-wrap: wrap;
}

.sp-insurance-btn .btn-outlined {
    border-radius: var(--btn-radius);
    border: 1px solid var(--text-white);
}

.sp-insurance-btn .btn-outlined a {
    color: var(--text-white);
}

.sp-insurance-img-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 0.8fr 1fr 0.8fr 1fr 0.8fr;
    gap: 8px;
    flex-wrap: wrap;
}

.insurance-grid-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    background-color: var(--text-white);
    padding: .4em;
}

.insurance-grid-item img {
    object-fit: cover;
    max-width: 100%;
    display: inline-block;
    filter: brightness(10%);
    opacity: 72%;
}

.sp-insurance-img-wrapper .insurance-grid-item:nth-child(1),
.sp-insurance-img-wrapper .insurance-grid-item:nth-child(2),
.sp-insurance-img-wrapper .insurance-grid-item:nth-child(3),
.sp-insurance-img-wrapper .insurance-grid-item:nth-child(6),
.sp-insurance-img-wrapper .insurance-grid-item:nth-child(7),
.sp-insurance-img-wrapper .insurance-grid-item:nth-child(8),
.sp-insurance-img-wrapper .insurance-grid-item:nth-child(11),
.sp-insurance-img-wrapper .insurance-grid-item:nth-child(12),
.sp-insurance-img-wrapper .insurance-grid-item:nth-child(13) {
    grid-column: span 2;
}

.sp-insurance-img-wrapper .insurance-grid-item:nth-child(4),
.sp-insurance-img-wrapper .insurance-grid-item:nth-child(5),
.sp-insurance-img-wrapper .insurance-grid-item:nth-child(9),
.sp-insurance-img-wrapper .insurance-grid-item:nth-child(10) {
    grid-column: span 3;
}


/* Patient-resources > insurance section styling ends */

/* Service Top Cta Section Start */
.sp-service-top-cta-sec .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.sp-service-top-cta-content {
    /* display: flex;
    align-items: center;
    justify-content: left; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    column-gap: 80px;
}

.sp-service-top-cta-sec {
    height: 100vh;
}

.sp-service-top-cta-left-info .section-title-green {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sp-service-top-cta-left-info .section-title-green h1 {
    font-size: var(--text-h1);
    text-transform: uppercase;
    color: var(--dark-green);
    line-height: var(--lh-1);
    margin-bottom: 6.4px;
    text-align: center;
}

.sp-service-top-cta-left-info .section-title-green h3 {
    font-size: var(--text-32);
    text-transform: uppercase;
    color: var(--dark-green);
    line-height: var(--lh-32);
    text-align: center;
}

.sp-service-top-cta-left-info .section-title-green h4 {
    text-transform: uppercase;
    color: var(--dark-green);
    line-height: var(--lh-32);
}

.sp-service-top-cta-left-img {
    width: 100%;
    height: 100vh;
}

.sp-service-top-cta-left-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-service-top-cta-left-info {
    width: 100%;
    height: 100vh;
    display: flex;
    /* flex-wrap: wrap; */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 24px;
    max-width: 650.6px;
    /* margin-left: 30px; */

    padding: 6rem 1rem 4rem 1rem;
}

.sp-service-top-cta-text-content p {
    max-width: 552.63px;
    margin-bottom: 24px;
    color: var(--dark-green);
    text-align: center;
}

.sp-service-top-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    flex-wrap: wrap;
}

/* Service Top Cta Section End */

/* Add Detail Section Start */
.sp-add-detail-sec {
    background-color: var(--dark-green);
}

.sp-add-detail-card a:hover {
    background-color: var(--back-pink-light);
}

.sp-add-detail-card a:hover .sp-add-detail-text p {
    color: var(--dark-green);
}

.sp-add-detail-card a:hover .sp-add-detail-card-title span {
    color: var(--dark-green);
}

.sp-add-detail-card a:hover .sp-add-detail-card-title svg path {
    fill: var(--dark-green);
}

.sp-add-detail-card-title svg path {
    transition: all ease 0.3s;
}

.sp-add-detail-inner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    row-gap: 24px;
    width: 243.16px;
}

.sp-add-detail-card-title {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 12px;
}

.sp-add-detail-text p {
    color: var(--text-white);
    transition: all ease 0.3s;
}

.sp-add-detail-text ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
}

.sp-add-detail-card-title span {
    color: var(--text-white);
    font-size: var(--text-24);
    line-height: var(--lh-31);
    transition: all ease 0.3s;
}

.sp-add-detail-card {
    width: 100%;
    height: 172px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-add-detail-content .sp-add-detail-card:nth-child(2) {
    border-left: 2px solid white;
    border-right: 2px solid white;
}

.sp-add-detail-content .sp-add-detail-card .sp-add-detail-inner-card:nth-child(3) {
    width: 337.22px;
    width: 100%;
}

.sp-add-detail-card a {
    width: 479px;
    width: 100%;
    height: 172px;
    background-color: var(--dark-green);
    padding: 24px 16px;
    transition: all ease 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-add-detail-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
}

/* Add Detail Section End */


/* Why Should Section Start */
.sp-why-shou-sec .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.sp-why-shou-sec-content {
    /* display: flex;
    align-items: center;
    justify-content: right; */

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    column-gap: 80px;
}

.sp-why-shou-sec {
    height: 100vh;
    margin: 80px 0;
}

.sp-why-shou-left-info .section-title-green {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sp-why-shou-left-info .section-title-green h1 {
    font-size: var(--text-h1);
    text-transform: uppercase;
    color: var(--dark-green);
    line-height: var(--lh-1);
    margin-bottom: 6.4px;
}

.sp-why-shou-left-info .section-title-green h3 {
    font-size: var(--text-32);
    text-transform: uppercase;
    color: var(--dark-green);
    line-height: var(--lh-32);
}

.sp-why-shou-right-img {
    width: 100%;
    height: 100vh;
}

.sp-why-shou-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-why-shou-left-info {
    width: 100%;
    height: 100vh;
    display: flex;
    /* flex-wrap: wrap; */
    flex-direction: column;
    align-items: start;
    justify-content: center;
    row-gap: 24px;
    max-width: 618.6px;
    margin-right: 40px;
    margin-left: auto;
}

.sp-why-shou-text-content p {
    max-width: 552.63px;
    margin-bottom: 24px;
    margin-right: auto;
    color: var(--dark-green);
}

.sp-service-top-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sp-intro-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Why Should Section End */

/* Did You Know Section Start */
.sp-did-know-title {
    display: flex;
    align-items: start;
    row-gap: 16px;
}

.sp-did-know-title img {
    width: 80px;
    height: 97px;
}

.sp-did-know-text p {
    font-size: var(--text-24);
    line-height: var(--lh-34);
    color: var(--dark-green);
    max-width: 583px;
}

.sp-did-know-content {
    display: flex;
    align-items: start;
    justify-content: space-between;
    row-gap: 20px;
    background-color: var(--back-color-sky-blue);
    padding: 40px;
    border: 1px solid var(--dark-green);
    border-radius: 4px;
}

.sp-benifit-card-tick-img {
    background-color: var(--back-pink-light);
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--dark-green);
}

.sp-benifit-card-content h3 {
    font-family: var(--font-poppins);
    font-weight: var(--fw-400);
    color: var(--dark-green);
    font-size: 1.5rem;
}

.sp-benifit-card-content p {
    font-weight: var(--fw-400);
    color: var(--dark-green);
}

.sp-single-benifit-card {
    display: flex;
    align-items: start;
    padding: 40px 40px 40px 16px;
    background-color: var(--back-color-sky-blue);
    border: 1px solid var(--dark-green);
    border-radius: 4px;
    column-gap: 16px;
    height: 100%;
}

.sp-benifit-card-content {
    display: flex;
    flex-direction: column;
    row-gap: 12px;

}

.sp-benifits-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    column-gap: 16px;
}

.sp-benefit-card-sec .section-title-green {
    margin-bottom: 48px;
}

/* Did You Know Section End */



/* Process Card Section Strat */

.sp-timeline-section {
    padding: 100px 0;
    background-color: var(--dark-green);
}

.sp-timeline-section .section-title-white {
    text-align: center;
    margin-bottom: 60px;
}

.sp-timeline {
    position: relative;
}

.sp-timeline-line-bg {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: #829b77;
    /* light green */
    opacity: 0.3;
    transform: translateX(-50%);
    z-index: 0;
}

.sp-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 0;
    background: var(--back-pink-light);
    transform: translateX(-50%);
    transition: height 0.5s ease;
    z-index: 0;
}

.sp-timeline-item {
    position: relative;
    display: flex;
    align-items: start;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.3s ease;
    padding: 40px 0;
}

.sp-timeline-item.sp-active {
    opacity: 1;
    transform: translateY(0);
}

.sp-card {
    width: 41%;
    padding: 40px;
    background: var(--back-color-sky-blue);
    border: 1px solid var(--dark-green);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 24px;
}

.sp-process-card-img {
    width: 96px;
    height: 96px;
    background-color: var(--back-pink-light);
    border-radius: 50%;
    border: 1px solid var(--dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-process-card-content h3 {
    font-family: var(--font-poppins);
    font-size: var(--text-24);
    line-height: var(--lh-31);
    font-weight: var(--fw-400);
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 24px;
}

.sp-process-card-content p{
    color: var(--text-green);
}

.sp-process-card-inner-img {
    width: 64px;
    height: 64px;
}

.sp-process-card-inner-img img {
    width: 100%;
    height: 100%;
}

.sp-left {
    width: 46%;
    text-align: center;
    font-size: var(--text-32);
    line-height: var(--lh-42);
    font-weight: var(--fw-400);
}

.sp-left h3 {
    color: var(--text-white);
    font-family: var(--font-poppins);
    font-size: var(--text-32);
    line-height: var(--lh-42);
    font-weight: var(--fw-400);
}

.sp-right {
    text-align: left;
}

.sp-dot {
    position: absolute;
    left: 50%;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    transform: translateX(-50%) scale(0.7);
    transition: all 0.8s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-timeline-item.sp-active .sp-dot {
    background-color: #829b77;
    border-color: #fff;
    width: 53px;
    height: 53px;
    transform: translateX(-50%) scale(1.1);
}

.sp-sm-dot {
    width: 12px;
    height: 12px;
    background-color: var(--back-pink-light);
    border-radius: 50%;
}

/* Process Card Section End */

/* Blog Section Start */
.sp-single-blog {
    border: 1px solid var(--dark-green);
    border-radius: 4px;
    background-color: var(--back-color-sky-blue);
    height: 100%;
    box-shadow: 11px 11px 11px -8px #0000001a;
    /* overflow: hidden; */
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.sp-blog-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    column-gap: 16px;
    row-gap: 48px;
}

.sp-blog-img {
    width: 100%;
    /* height: 308px; */
}

.sp-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.sp-blog-content {
    padding: 2rem;
    column-gap: 1.5rem;
    row-gap: 1.5rem;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
    display: flex;
}

.sp-blog-title {
    display: flex;
    flex-direction: column;
    align-items: start;
    row-gap: 12px;
}

.sp-blog-title h3 {
    font-family: var(--font-poppins);
    font-size: var(--text-24);
    line-height: var(--lh-31);
    font-weight: var(--fw-400);
    color: var(--dark-green);
}

.sp-blog-title p {
    font-size: var(--text-14);
    line-height: var(--lh-21);
    font-weight: var(--fw-400);
    color: var(--dark-green);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sp-blog-text-area a {
    color: var(--dark-green);
    font-size: var(--text-16);
    line-height: var(--lh-24);
    font-weight: var(--fw-400);
}

.sp-blog-text-area a svg {
    transition: all ease 0.4s;
}

.sp-blog-text-area a:hover svg {
    transform: translateX(5px);
}

/* Blog Section End */


/* Cta Image Section Start */
.sp-full-cta-img-section {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sp-full-cta-img-section .section-title-white {
    display: flex;
    flex-direction: column;
    row-gap: 48px;
    align-items: center;
}

.sp-cta-img-content {
    z-index: 0;
    position: relative;
    width: 100%;
    height: 762px;
    display: flex;
    flex-direction: column;
    row-gap: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sp-cta-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.sp-cta-bg-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.548);
}

/* Cta Image Section End */


/* Blog Detail Banner Section Start */
.sp-blog-detail-banner-sec {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sp-blog-detail-banner-sec .section-title-white {
    display: flex;
    flex-direction: column;
    row-gap: 48px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 64px;
}

.sp-blog-detail-banner-sec .section-title-white p {
    max-width: 190px;
    color: var(--text-white);
}

.sp-blog-detail-banner-content {
    height: auto;
    z-index: 0;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 128px 0;
}

.sp-blog-detail-banner-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.sp-blog-detail-banner-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.548);
}

/* Blog detail content Start */
.sp-blog-detail-section {
    padding-top: 100px;
}

.sp-blog-detail-wrapper {
    max-width: 830px;
    margin: 0 auto;
    border-bottom: 1px solid var(--dark-green);
}

.sp-blog-detail-info {
    max-width: 100%;
}

.sp-blog-detail-top-link p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 8px;
    margin-bottom: 40px;
}

.sp-blog-detail-top-link p a {
    color: var(--dark-green);
}

.sp-blog-detail-info h2 {
   margin: 24px 0 16px 0;
    font-weight: var(--fw-600);
    color: var(--dark-green);
    font-size: var(--text-38);
    text-transform: uppercase;
    line-height: var(--lh-1);
}

.sp-blog-detail-info p {
    color: var(--dark-green);
}

.sp-blog-detail-info ul {
   margin-bottom: 24px;
    margin-top: 20px;
        padding-left: 22px;
}

.sp-blog-detail-info ul li {
  margin-bottom: 13px;
    color: var(--dark-green);
}

.sp-blog-detail-info ul li::marker {
    color: var(--dark-green);
}

.sp-blog-detail-info {
    margin-bottom: 64px;
}

.sp-blog-detail-social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 6.4px;
    margin-bottom: 48px;
}

.sp-blog-detail-social-icon p {
    font-weight: var(--fw-600);
    font-size: var(--text-20);
    line-height: var(--lh-26);
    color: var(--dark-green);
}

.sp-blog-detail-social-icon ul {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    margin-bottom: 0;
}

.sp-blog-detail-social-icon ul li {
    width: 40px;
    height: 40px;
    background-color: var(--dark-green);
    border: 1px solid var(--dark-green);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease 0.4s;
}

.sp-blog-detail-social-icon ul li a {
    color: var(--text-white);
}

.sp-blog-detail-social-icon ul li:hover {
    background-color: var(--back-pink-light);
}

.sp-blog-detail-social-icon ul li a svg path {
    transition: all ease 0.4s;
}

.sp-blog-detail-social-icon ul li:hover a {
    color: var(--dark-green);
}

.sp-blog-detail-social-icon ul li:first-child a svg path:nth-child(2) {
    fill: var(--dark-green);
}

.sp-blog-detail-social-icon ul li:first-child:hover a svg path:nth-child(2) {
    fill: var(--back-pink-light);
}

/* Blog detail content End */

/* Blog Detail Banner Section End */

/* Recent Article Section Start */
.sp-recent-artical-sec .section-title-green {
    text-align: center;
    margin-bottom: 48px;
}

.sp-recent-artical-blog {
    margin-bottom: 48px;
}

.sp-recent-artical-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Recent Article Section End */

/* Care Access Section Start */
.sp-care-acc-card {
    background-color: var(--back-color-sky-blue);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    row-gap: 24px;
    text-align: start;
}

.sp-care-acc-img {
    width: 60px;
    height: 78px;
}

.sp-care-acc-img img {
    width: 100%;
    height: 100%;
}

/* .sp-care-acc-card {
    width: 50%;
} */

.sp-care-acc-btns {
    display: flex;
    column-gap: 12px;
    margin-top: 24px;
}

.sp-care-acc-card-list {
    display: flex;
    align-items: center;
    justify-content: start;
}

.sp-care-acc-card-list ul {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    row-gap: 36px;
}

.sp-care-acc-card-list ul li {
    display: flex;
    align-items: start;
    color: var(--text-white);
    font-size: var(--text-24);
    line-height: var(--lh-31);
    font-weight: var(--fw-400);
    column-gap: 16px;
    text-align: start;
}

.sp-care-acc-card-content {
    z-index: 0;
    position: relative;
    width: 100%;
    height: 762px;
    display: flex;
    flex-direction: column;
    row-gap: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sp-care-acc-inner-content {
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    column-gap: 48px;
}


.sp-care-acc-banner-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.sp-care-acc-banner-bg-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.548);
}

/* Care Access Section End */
.sp-testi-section {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sp-testi-main-content-wrapper {
    z-index: 0;
    position: relative;
    width: 100%;
    height: 519px;
    display: flex;
    flex-direction: column;
    row-gap: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sp-testimonial {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

.sp-testimonial-arrows {
    display: flex;
    column-gap: 30px;
}

.sp-testimonial ul li p {
    color: #fff5f1;
    font-size: 24px;
    line-height: 130%;
    font-weight: var(--fw-400);
    text-align: start;
    max-width: 672px;
}

.sp-testimonial ul li {
    display: flex;
    align-items: start;
    justify-content: center;
    column-gap: 16px;
}

.sp-testimonial ul li svg {
    opacity: 0.3;
}

.sp-testimonial ul li .sp-testi-inner-content-text {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    row-gap: 12px;
}

.sp-testimonial ul li h4 {
    color: #fff5f199;
    font-size: var(--text-24);
    line-height: var(--lh-31);
    font-weight: var(--fw-400);
    font-family: var(--font-poppins);
}

.sp-test-sec-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.sp-test-sec-bg-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.548);
}

.sp-testi-prev,
.sp-testi-next {
    background-color: transparent;
    border: none;
    width: 32px;
    height: 32px;
    color: white;
}

/* Privacy Policy Section Start */
.sp-pp-sec-content {
    background-color: var(--back-color-sky-blue);
    border-radius: 4px;
    border: 1px solid var(--dark-green);
    padding: 64px 32px;
}

.sp-pp-inner-content {
    max-width: 893px;
    margin: 0 auto;
}

.sp-pp-sec-content .section-title-green {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.sp-pp-sec-content .section-title-green h1 {
    font-size: var(--text-h1);
    text-transform: uppercase;
    color: var(--dark-green);
    line-height: var(--lh-1);
    text-align: center;
}

.sp-pp-sec-content .section-title-green h4 {
    text-transform: uppercase;
    color: var(--dark-green);
    line-height: var(--lh-32);
    margin-top: 6.4px;
}

.sp-tc-content-detail {
    margin-bottom: 24px;
}

.sp-tc-content-detail h6 {
    color: var(--dark-green);
    font-size: var(--text-16);
    line-height: var(--lh-24);
    font-weight: var(--fw-700);
    font-family: var(--font-poppins);
    margin-top: 24px;
}

.sp-pp-content-wrapper .sp-tc-content-detail ul {
    list-style-type: disc;
    padding-left: 24px;
    margin-bottom: 48px;
}

.sp-tc-content-detail a {
    color: var(--dark-green);
    text-decoration: 1px underline var(--dark-green);
}

.sp-pp-inner-content .sp-tc-content-detail p {
    margin-bottom: 0;
}

.sp-pp-sec-content .section-title-green span {
    display: inline-block;
    margin-bottom: 48px;
}

.sp-pp-sec-content h3 {
    font-size: var(--text-40);
    line-height: var(--lh-44);
    font-weight: var(--fw-400);
    color: var(--dark-green);
    font-family: var(--font-poppins);
    margin: 24px 0 16px 0;
}

.sp-pp-sec-content ul {
    list-style-type: none;
    padding-left: 0;
    color: var(--dark-green);
}

.sp-pp-sec-content p {
    margin-bottom: 24px;
    color: var(--dark-green);
}

.sp-pp-inner-dot-list p {
    margin-bottom: 0;
}

.sp-pp-inner-dot-list ul {
    list-style-type: disc;
    padding-left: 24px;
    color: var(--dark-green);
    margin-bottom: 24px;
}

.sp-pp-inner-dot-list ul li {
    margin-bottom: 4px;
}

.sp-pp-inner-dot-list ul li::marker {
    color: var(--dark-green);
}

.sp-pp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 48px;
}

.sp-pp-content-wrapper {
    padding: 128px 40px 80px 40px;
}

/* Privacy Policy Section End */

/* 404 Page Style Start */
.sp-404-inner-content {
    max-width: 552px;
    margin: 0 auto;
}

.sp-404-inner-content p {
    font-size: var(--text-20);
    line-height: var(--lh-26);
    font-weight: var(--fw-400);
}

/* 404 Page Style End */


/* Before After teeth section styling starts */

.sp-teeth-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 3rem;
}

.sp-teeth-content .before-after-teeth-lists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    max-width: 512px;
    max-height: 166.19px;
}

.teeth-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.before-teeth,
.after-teeth {
    display: flex;
    position: relative;
}

.before-teeth .teeth-label,
.after-teeth .teeth-label {
    z-index: 1;
    position: absolute;
    background-color: #ffffffa3;
    padding: 4px;
    color: black;
    border-radius: var(--btn-radius);
    font-size: var(--text-body);
    inset: 1vh 0% auto auto;
}

.teeth-label.is-before {
    right: 6%;
}

.teeth-label.is-after {
    inset: 1vh auto auto 6%;
}

.before-after-teeth-lists img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Before After teeth section styling ends */


/* Real Patient Start */

.sp-real-wrapper {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    column-gap: 4rem;
    row-gap: 4rem;
}

.sp-real-wrapper .sp-real-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    justify-content: center;
}

.sp-real-wrapper .sp-real-left .section-title-white h2 {
    margin-top: 3rem;
}

.sp-real-wrapper .sp-real-left p {
    max-width: var(--p-width);
    color: var(--text-white);
}

.sp-real-wrapper .sp-real-right .sp-real-img {
    height: 613px;
    border-radius: var(--btn-radius);
    overflow: hidden;
}

.sp-real-wrapper .sp-real-right .sp-real-img img {
    height: 100%;
    object-fit: cover;
}

/* Real Patient end */

/* team page start */

.sp-team-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    column-gap: 4rem;
    row-gap: 4rem;
    height: 100dvh;
    align-items: center;
    justify-content: center;
}

.sp-team-wrapper .sp-team-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.sp-team-wrapper .sp-team-left .section-title-white h2 {
    margin-top: 3rem;
}

.sp-team-wrapper .sp-team-left p {
    max-width: var(--p-width);
    width: 100%;
    color: var(--text-white);
}

.sp-team-wrapper .sp-team-right .sp-team-img {
    height: 613px;
    border-radius: var(--btn-radius);
    overflow: hidden;
}

.sp-team-wrapper .sp-team-right .sp-team-img img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* team page end */


/* Left right section start */

.sp-lr-wrapper:nth-child(odd) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    column-gap: 4rem;
    row-gap: 4rem;
}

.sp-lr-wrapper:nth-child(odd) .sp-lr-left {
    order: 1;
}

.sp-lr-wrapper:nth-child(odd) .sp-lr-right {
    order: 2;
}

.sp-lr-wrapper .sp-lr-left .sp-lr-img {
    height: 95vh;
    border-radius: var(--btn-radius);
    overflow: hidden;
}

.sp-lr-wrapper .sp-lr-left .sp-lr-img img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sp-lr-wrapper .sp-lr-right {
    display: flex;
    align-items: center;
}

.sp-lr-wrapper:nth-child(even) .sp-lr-right {
    justify-content: end;
}

.sp-lr-wrapper .sp-lr-right .sp-lr-content {
    max-width: var(--block-width);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sp-lr-wrapper .sp-lr-right .sp-lr-content p {
    max-width: var(--p-width);
    width: 100%;
    color: var(--text-green);
}

.sp-lr-wrapper:nth-child(even) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    column-gap: 4rem;
    row-gap: 4rem;
}

.sp-lr-wrapper:nth-child(even) .sp-lr-left {
    order: 2;
}

.sp-lr-wrapper:nth-child(even) .sp-lr-right {
    order: 1;
}

/* Left right section end */


.sp-lr-right ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
    margin-bottom: 0;
}

.sp-lr-right ul li {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--text-green);
    position: relative;
    padding-left: 30px;
}

.sp-lr-right ul li::after {
    position: absolute;
    content: '';
    width: 24px;
    height: 24px;
    background-color: var(--dark-green);
    left: 0;
    top: 0;
    border-radius: 50%;
    background-image: url('../images/check-green.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.sp-lr-right ul li span {
    width: 24px;
    height: 24px;
    background-color: var(--text-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    flex-shrink: 0;
}

.sp-faq-section-inner .section-title-green img {
    width: 100px;
}

.sp-faq-section-inner .section-title-green h2 {
    margin-top: 3rem;
}

.sp-intro-l-btn {
    display: flex;
    gap: 20px;
}


/* Contact Page Start*/
.sp-contact-section .section-title-green {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.sp-contact-section .section-title-green img {
    width: 64px;
    height: 78px;
}

.sp-contact-section .section-title-green h2 {
    margin-top: 0 !important;
}

.sp-contact-section .section-title-green p {
    margin-bottom: 48px;
}

.sp-contact-section .consult-btn {
    display: flex;
    column-gap: 12px;
}


.sp-contact-section .consult-btn .btn-outlined {
    display: flex;
}

.sp-contact-section .sp-consult-right {
    background-color: var(--dark-green);
    padding: 40px;
    border-radius: 4px;
}

.sp-contact-section .sp-consult-right .sp-consult-form-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.sp-contact-form-inner-img {
    max-width: 450px;
}

.sp-contact-form-top-img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

/* Contact Page End*/

/* Location Service Section Start */
.sp-location-s-sec {
    background-color: var(--back-color-sky-blue);
}

.sp-location-s-sec .section-title-green {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 24px;
    max-width: 803px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 48px;
}

.sp-location-s-sec .section-title-green p {
    color: var(--dark-green);
}

.sp-location-s-card {
    background-color: var(--dark-green);
    border-radius: 4px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 24px;
}

.sp-location-s-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    row-gap: 12px;
    max-width: 653px;
}

.sp-location-s-content h4 {
    font-size: var(--text-24);
    line-height: var(--lh-31);
    font-weight: var(--fw-400);
    color: var(--text-white);
    font-family: var(--font-poppins);
}

.sp-location-s-content p {
    font-size: var(--text-16);
    line-height: var(--lh-24);
    font-weight: var(--fw-400);
    color: var(--text-white);
}

.sp-location-s-card-img {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-location-s-card-img img {
    width: 100%;
    height: auto;
    filter: contrast(200%) invert();
}

.sp-location-s-card-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

/* Location Service Section End */


/* Location Consult Card Section Start */
.sp-location-con-content .section-title-green {
    max-width: 50%;
    width: 100%;
    min-height: 424px;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    color: var(--dark-green);
    padding: 48px 0;
}

.sp-location-con-content .section-title-green p {
    max-width: 552px;
}

.sp-location-con-content .section-title-green p:last-child {
    margin-bottom: 48px;
}

.sp-location-con-content {
    display: flex;
    align-items: start;
    justify-content: center;
    column-gap: 64px;
}

.sp-location-con-card-wrapper {
    background-color: #fff;
    padding: 80px 40px;
}

.sp-location-con-list {
    max-width: 50%;
    width: 100%;
    background-color: var(--back-color-sky-blue);
    border-radius: 4px;
    border: 1px solid var(--dark-green);
    padding: 40px;
}

.sp-location-con-list ul {
    list-style-type: none;
    padding-left: 0;
    /* display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: start; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    row-gap: 12px;
    column-gap: 12px;
    margin-bottom: 0;
}

.sp-location-con-list ul li {
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.sp-location-con-list ul li svg {
    background-color: var(--dark-green);
    border-radius: 50%;
    color: var(--bg-body);
    min-width: 24px;
    min-height: 24px;
}

.sp-location-con-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 12px;
}

/* Location Consult Card Section End */


.sp-small-nav {
    display: none;
}



@media screen and (max-width: 1024px) {
    .sp-small-nav {
        display: block;
        position: absolute;
        background-color: var(--back-color-sky-blue);
        width: 100%;
        height: 0;
        left: 0;
        top: 65px;
        padding: 1.5rem 6% 5rem;
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        overflow-y: auto;
    }

    /* Show menu */
    .sp-small-nav.active {
        visibility: visible;
        opacity: 1;
        height: calc(100vh - 64px);
        transition: height 0.3s ease;
    }

    .sp-small-nav .sp-small-menu-link {
        display: flex;
        flex-direction: column;
        gap: 20px;
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
    }

    .sp-small-nav .sp-small-menu-link li {
        width: 100%;
        position: relative;
    }

    .sp-small-nav .sp-small-menu-link li a {
        color: var(--text-green);
        font-weight: var(--fw-400);
        text-transform: capitalize;
        display: block;
    }

    .sp-small-nav .sp-small-menu-link li .sp-small-has-sub-menu {
        background-color: var(--text-white);
        list-style: none;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 10px 1rem;
        margin-top: 10px;
        display: none;
    }

    /* Arrow button */
    .sp-submenu-toggle {
        position: absolute;
        right: 0;
        top: 0;
        transform: translateY(-50%);
        cursor: pointer;
        width: 20px;
        height: 20px;
    }

    .sp-submenu-toggle::before {
        content: "";
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url('../images/down-chevron-svgrepo-com.svg');
        background-repeat: no-repeat;
        background-position: center;
        font-size: 14px;
        transition: transform 0.3s ease;
        width: 30px;
        height: 30px;
    }

    /* Rotate arrow when open */
    li.active>.sp-submenu-toggle::before {
        transform: rotate(180deg);
    }

    .sp-small-nav .sp-small-menu-link li .sp-small-has-sub-menu li {
        padding: 5px 0;
    }

    .sp-small-contact-btn {
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .sp-small-contact-btn .btn-green a {
        display: block;
        width: 100%;
    }

    .sp-small-contact-btn a {
        text-align: center;
    }
}


/* ======================================================= */













/* ==========================  css  =================================== */







.bo-white-popup iframe {

    width: 100%;

    height: 800px;

    margin-top: 43px;

}



.bo-white-popup h4 {

    font-family: var(--font-poppins);

    font-size: var(--text-32);

    font-weight: var(--fw-400);

    margin-top: 32px;

}



.mf-inner {

    margin-top: 39px;

    text-align: center;

}



.bo-white-popup {

    position: relative;

    background: var(--back-color-sky-blue);

    padding: 40px 40px 29px;

    width: auto;

    width: 65%;

    max-width: 766px;

    margin: 20px auto;

    transition: 1s all;

    color: var(--dark-green);

    padding: 2.25rem;

    border-radius: 4px;

    box-shadow: -1px 0 3px #fff, 8px 8px 16px -8px #0003;

}



.mfp-close-btn-in .mfp-close:hover {

    background-color: var(--back-pink-light);

    transition: all .3s;

}



.mfp-close-btn-in .mfp-close {

    color: #ffffff;

    border: 1.5px solid var(--dark-green);

    width: 56px;

    transition: all .3s;

    height: 56px;

    background: var(--dark-green);

    border-color: #4a5938;

    border-radius: 4.4px;

    opacity: 1;

    font-size: 46px;

    margin-right: 28px;

    margin-top: 26px;
    display: flex;
    align-items: center;
    justify-content: center;

}



.mfp-fade.mfp-bg {

    opacity: 0;

    -webkit-transition: all 0.15s ease-out;

    -moz-transition: all 0.15s ease-out;

    transition: all 0.15s ease-out;

}



/* overlay animate in */

.mfp-fade.mfp-bg.mfp-ready {

    opacity: 0.8;

}



/* overlay animate out */

.mfp-fade.mfp-bg.mfp-removing {

    opacity: 0;

}



.mfp-fade.mfp-wrap .mfp-content {

    opacity: 0;

    transition: all 0.4s ease-out;
    max-height: 100vh;
    overflow-y: auto;

}



.mfp-fade.mfp-wrap.mfp-ready .mfp-content {

    opacity: 1;

}



.mfp-fade.mfp-wrap.mfp-removing .mfp-content {

    opacity: 0;

}





.gform-theme--foundation .gform_fields {

    row-gap: 16px !important;

}

legend {

    font-size: 12px !important;

    color: var(--text-white) !important;

}

.sp-consult-form-wrapper label {



    font-size: 18px !important;

    font-weight: var(--fw-400) !important;

    color: #eef5f5FF !important;

}



.sp-consult-form-wrapper input[type="submit"] {

    color: var(--text-green) !important;

    transition: all .3s !important;

    font-size: 18px !important;

    background-color: var(--back-color-sky-blue) !important;

    font-weight: var(--fw-400) !important;

    width: 100% !important;

    height: 62px !important;

    border-radius: 5px !important;

    margin-top: 15px !important;

}



.sp-consult-form-wrapper input[type="submit"]:hover {

    background-color: var(--back-pink-light) !important;

    transition: all .3s;

}





.sp-sweet-content .ginput_container textarea:focus {

    border-color: #3898ec !important;

}



.sp-sweet-content .ginput_container textarea {

    /* your styles here */



    font-family: 'Poppins' !important;

    font-size: 16px !important;

    font-weight: 400 !important;



    padding: 15px 15px !important;

    height: 56px !important;

    box-shadow: 0px 0px 0px 0px #FFFFFF !important;

    border-radius: 5px !important;

    background-color: #fff5f1FF !important;

    color: #4a5938FF !important;

    outline: none !important;

    border: 1px solid transparent !important;

}



fieldset label {

    line-height: 1.25rem !important;

}



.sp-consult-form-wrapper .ginput_container input:not([type="checkbox"]):focus {

    border-color: none !important;



}

.sp-consult-form-wrapper .ginput_container textarea:focus {

    border-color: none !important;



}

#gform_submit_button_1{
    text-align: center;
}

.sp-consult-form-wrapper .ginput_container input:not([type="checkbox"]) {

    /* your styles here */



    font-family: 'Poppins' !important;

    font-size: 16px !important;

    font-weight: 400 !important;



    padding: 15px 15px !important;

    height: 56px !important;

    box-shadow: 0px 0px 0px 0px #FFFFFF !important;

    border-radius: 5px !important;

    background-color: #fff5f1FF !important;

    color: #4a5938FF !important;

    outline: none !important;

    border: 1px solid transparent !important;

}



.sp-consult-form-wrapper .ginput_container input[type="checkbox"] {

    width: 15px !important;

    height: 15px !important;

}







.sp-consult-right .gform_heading {

    display: none !important;



}





.about-schedule-section .btn-white a {

    border-color: white;

    background: no-repeat;

    color: white;

}



.about-schedule-section .btn-white a:hover {

    background-color: var(--back-pink-light);

    transition: all .3s;

    color: var(--text-green);

    border-color: var(--text-green);

}





.sp-faq-info-inner .section-title-green span {

    margin-top: 32px;

}



.sp-top-bg-color-banner {

    padding-top: 146px;

    background: #4a593921;

    padding-bottom: 70px;

    text-align: center;

}



.sp-pp-inner-content ul li {

    list-style: disc;

}



.sp-pp-inner-content ul {

    padding-left: 20px;

}




/* Home Video Banner Start */
.sp-home-v {
    position: relative;
    width: 100%;
    height: calc(100vh - 64px);
    overflow: hidden;
    margin-top: 64px;
    position: relative;
}

.sp-home-banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.sp-home-v::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.37);
    /* opacity control */
    z-index: 2;
}

.sp-home-v-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: -50px;
}

.sp-home-v-content .sp-h-title h1 {
    color: var(--text-white);
    font-size: 3rem;
    line-height: 1.1;
    font-weight: var(--fw-700);
    max-width: 1000px;
}

/* Home Video Banner End */


.sp-blog-detail-inner-banner-img {
    border-radius: 30px;
    overflow: hidden;
    margin: 40px 0;
}

.sp-blog-detail-inner-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.sp-blog-detail-inner-banner-img img:hover {
    transform: scale(1.07);
    transition: all 0.5s ease;
}


.sp-blog-detail-wrapper .section-title-green h1 {
    font-weight: var(--fw-700);
    text-align: start;
}

.blog-detail-next-prev-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}






@media screen and (max-width: 992px) {
    .sp-hero-v2 .sp-right-inner .sp-h-btn{
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
 
}

@media screen and (max-width: 1024px) {
    .sp-hero-v2 .sp-right-inner .sp-h-right-img img{
        width: 100px;
    }
    .sp-hero-v2 .sp-right-inner .sp-h-right-img{
        margin-bottom: 2.5rem;
    }
    .sp-hero-v2 .sp-home-v-content .sp-h-title h1{
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px){
    .sp-blog-detail-info h2 {
        font-size: var(--text-32);
    }
    .sp-home-v{
        height: calc(68vh - 64px);
    }
    .sp-home-v-content{
        padding: 0 1.5rem;
        margin-top: -50px;
    }
    .sp-hero-v2 .sp-right-inner .sp-h-right-img{
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 575px){
    .sp-blog-detail-info h2 {
        font-size: var(--text-28);
    }
    .sp-hero-v2 .sp-home-v-content .sp-h-title h1{
        font-size: 1.5rem;
    }
    .sp-home-v{
        height: auto;
        padding-top: 200px;
        padding-bottom: 60px;
    }
}




@media screen and (max-width: 375px) {

    .sp-blog-detail-info {
    margin-bottom: 33px;
    }

    .sp-blog-detail-info h2 {
        font-size: var(--text-24);
    }

    
}


.sp-consult-form-wrapper .ginput_container input:not([type="checkbox"]):focus{
    border-color: none;
}

.sp-home-banner-video-mobile {
    display: none;
}


.gform_button:focus{
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
}

#input_1_6_1:focus{
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
}

.gform-theme--framework .gfield_error textarea:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus {
    border: transparent !important;
    outline: none !important;
    border: none !important;
}

.sp-sweet-content .ginput_container textarea:focus{
    border: transparent !important;
    outline: none !important;
    border: none !important;
}

.gform-theme--framework input[type]:where(:not(.gform-text-input-reset):not([type=hidden])):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus{
        border: transparent !important;
    outline: none !important;
    border: none !important;
}