* {
    font-family: 'NotoSansDevanagari', sans-serif;

    --text-color: #A3A3A3;

    --transition: all .15s cubic-bezier(0.06, -0.42, 0.43, 1.01);

    --lpad: 50px;

    --mpad: 15px;
    --spad: 10px;

    --lgap: 30px;
    --mgap: 15px;
    --sgap: 10px;

    --lmar: 50px;
    --mmar: 25px;
    --smar: 10px;

    --primary-color: #1d4e86;
    --secondary-color: #327d3f;
    --tertiary-color: #2faecd;



    --heading-size: 30px;
    --heading-line: 30px;
    --heading-weight: 700;
    --heading-font: 'NotoSansDevanagari', sans-serif;
    --heading-color: #494949;

    --nheading-size: 22px;
    --nheading-line: 44px;
    --nheading-weight: 600;
    --nheading-font: 'NotoSansDevanagari', sans-serif;
    --nheading-color: #494949;


    --ntext-size: 18px;
    --ntext-line: 36px;
    --ntext-weight: 300;
    --ntext-font: 'NotoSansDevanagari', sans-serif;
    --ntext-color: #A3A3A3;

    --stext-size: 16px;
    --stext-line: 32px;
    --stext-weight: 300;
    --stext-font: 'NotoSansDevanagari', sans-serif;
    --stext-color: #A3A3A3;

    --min-screen-width: 800px
}

body {
    padding: 0;
    margin: 0;
}

/* basic */
/* `Text & `Headings */
.mHeading {
    font-size: 50px;
    line-height: 70px;
    font-weight: 700;
    font-style: normal;
}

.heading {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: var(--heading-size);
    line-height: var(--heading-line);
    font-weight: var(--heading-weight);
    margin-bottom: var(--mmar);
}

.nheading {
    color: var(--nheading-color);
    font-family: var(--nheading-font);
    font-size: var(--nheading-size);
    line-height: var(--nheading-line);
    font-weight: var(--nheading-weight);
    margin-bottom: var(--mmar);
}

.ntext {
    color: var(--ntext-color);
    font-family: var(--ntext-font);
    font-size: var(--ntext-size);
    line-height: var(--ntext-line);
    font-weight: var(--ntext-weight);
}

.nTextHeading {
    font-size: var(--nheading-size);
    line-height: var(--ntext-line);
    color: var(--nheading-color);
    font-style: normal;
    font-weight: var(--nheading-weight);
}

/* `colors */
.primaryColor {
    color: var(--primary-color);
}

.secondaryColor {
    color: var(--secondary-color);
}

.tertiaryColor {
    color: var(--tertiary-color);
}

.textA-j {
    text-align: justify
}

.textA-r {
    text-align: right
}

.s-gap {
    gap: var(--sgap);
}

.italic {
    font-style: italic;
}

.gap-25 {
    gap: var(--lgap);
}

/* `buttons */

a.buttonLink {
    color: var(--text-color);
    text-decoration: none;
}

.but {
    user-select: none;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 5px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
    height: 40px;
    font-weight: 500;
    font-style: normal;
    font-size: var(--text-size);
}

.but_pos {
    background: #1D4E88;
    color: white;
    font-family: 'Montserrat';
    font-weight: 600;
}

.but_bor {
    border-color: var(--text-color);
    color: var(--text-color);
}

.hindi-text {
    font-family: 'NotoSansDevanagari', sans-serif;
}

.wholepage {
    /* max-width: 1080px; */
    /* margin: auto; */
}

/* `navbar */
.navbar {
    /* position: absolute;
    top: 0;
    left: 0;
    right: 0; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(140.18643deg, rgba(47, 173, 206, 0.23) 11%, rgba(151, 186, 73, 0.18) 104%);
    padding: 44px;
    gap: 40px;
}

.navbar .logoImg img {
    height: 60px;
}

.navbar .logoImg .logo-small img {
    height: 30px;
}

.nav-text {
    color: #2FADCF;
    font-family: 'NotoSansDevanagari', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;

}



.herosection,
.welcomeNotePage,
.aboutFounderPage,
.whyPage,
.partnersPage,
.testimonialsPage,
.quotePage,
.footer {
    padding: var(--lpad);
    position: relative;
}


/* `Hero Section Style */
.herosection {
    min-height: 400px;
    height: 80vh;
    max-height: 1000px;
    padding: 0;
    /* min-width: var(--min-screen-width); */
    box-sizing: border-box;
    display: flex;
    position: relative;
    flex-direction: column;
    background-image: url('../img/hero-image.jpg');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;

}

.hero-text-panel {
    position: absolute;
    right: 0;
    top: 20%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.hero-section-text {
    max-width: 600px;
    background: rgba(47, 173, 206, 0.76);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.00);
    border-radius: 7px 0px 0px 7px;
    padding: 20px;
    color: #FFFFFF;

    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
}

.hero-section-text:nth-child(2) {
    max-width: 500px;
}

/* `About page */
.section.welcomeNotePage {
    /* min-height: 100vh; */
    background: #F5F5F5;

    box-sizing: border-box;
    display: flex;
    gap: var(--lgap);
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 100px 0;
    /* min-width: var(--min-screen-width); */
}

.welcomeNotePage .section-heading {
    color: #75BA4C;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    /* 0.72 */
    text-align: center;

}

.welcomeNotePage .ntext {
    color: #6C6C6C;
    font-family: 'NotoSansDevanagari', sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 1.231 */
    margin: 0 auto;
    max-width: 60vw;
    text-align: center;
}

.welcomeNotePage .strip {
    margin-top: 100px;
}

.strip {
    position: relative;
    background: linear-gradient(270deg, rgba(117, 186, 73, 0.00) -2%, rgba(117, 186, 73, 0.18) 34%, rgba(117, 186, 73, 0.18) 64%, rgba(117, 186, 73, 0.00) 100%);
}

.strip.have-image {
    padding: 0 250px;
}

.strip .strip-text {
    padding: 16px;
    color: #373737;
    font-family: 'NotoSansDevanagari', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 44px;
    /* 1.375 */
    text-align: center;

}

.strip .strip-image img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
}

.strip .strip-image.end img {
    right: 0;
}

.strip .strip-image.bottom img {
    bottom: 0;
}

.secondary-strip {
    background: linear-gradient(270deg, rgba(47, 173, 207, 0.00) -2%, rgba(47, 173, 207, 0.18) 34%, rgba(47, 173, 207, 0.18) 64%, rgba(47, 173, 207, 0.00) 100%);
}

.secondary-strip .strip-text {
    color: #2FADCF;
}

.whyPage {
    padding: 100px 50px;
}


.whyPage .section-heading {
    color: #75BA49;
    font-family: 'NotoSansDevanagari', sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    text-align: center;
    /* padding-bottom: 20px; */
}

.why-choose-us-parent {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.tile {
    background: rgba(255, 255, 255, 0.00);
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.10), 0px 4px 6px -1px rgba(0, 0, 0, 0.10), 0px 0px 0px 0px rgba(0, 0, 0, 0.00), 0px 0px 0px 0px rgba(0, 0, 0, 0.00);
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-basis: calc((100% - 40px) / 3);
    overflow: hidden;
    box-sizing: border-box;
}

.tile .title {
    color: #75BA49;
    font-family: 'NotoSansDevanagari', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 1.167 */
}

.tile .description {
    color: #6C6C6C;
    font-family: 'NotoSansDevanagari', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 1.5 */
}


.partnersPage .section-heading {
    color: #2FADCF;
    font-family: 'NotoSansDevanagari', sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    text-align: center;
}

.slider-parent {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 0;
}

.slider-item {
    background: #FFFFFF;
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.10), 0px 10px 15px -3px rgba(0, 0, 0, 0.10), 0px 0px 0px 0px rgba(0, 0, 0, 0.00), 0px 0px 0px 0px rgba(0, 0, 0, 0.00);
    border: 3px solid #2FADCF;
    border-radius: 12px;
}

.slider-heading {
    color: #FFFFFF;
    font-family: "Inter";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 1.167 */
    text-align: center;
    background: #2FADCF;
    padding: 15px;
}

.slider-image img {
    max-height: 60vh;
}




.testimonialsPage .section-heading {
    color: #75BA49;
    font-family: 'NotoSansDevanagari', sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    text-align: center;
}

.testimonial-parent {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonial-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #FFFFFF;
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.10), 0px 10px 15px -3px rgba(0, 0, 0, 0.10), 0px 0px 0px 0px rgba(0, 0, 0, 0.00), 0px 0px 0px 0px rgba(0, 0, 0, 0.00);
    border-radius: 12px;
    padding: 32px;

}

.user-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-image {
    width: 64px;
    height: 64px;
    border-radius: 100px;
    overflow: hidden;
}

.user-col {
    display: flex;
    flex-direction: column;
}

.user-name {
    color: #75BA49;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 1.5 */

}

.quote-icon {
    width: 50px;
}

.user-review {
    color: #6C6C6C;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 1.5 */

}


.quotePage {
    min-height: 60vh;
    background: #F5F5F5;
    box-sizing: border-box;
    display: flex;
    gap: var(--lgap);
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    align-items: center;
    /* min-width: var(--min-screen-width); */
}


.quotePage .quote-icon {
    width: 100px;
    transform: rotate(180deg);
}

.quotePage .ntext {
    color: #6C6C6C;
    font-family: 'NotoSansDevanagari', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    max-width: 50vw;
    /* 1.143 */
    text-align: center;
}

.quotePage .strip {
    width: 100%;
}

.quotePage .strip .strip-text {
    color: #75BA49;
}



.footer .logo img {
    height: 60px;
}

.footer .logo .logo-small img {
    height: 30px;
}


/* `house of brands */
#brandsContainer {
    display: flex;
    flex-direction: column;
    gap: var(--lgap);
    padding-left: var(--lpad);
}

.brand-container {
    display: flex;
    position: relative;
}

.brand-content {
    display: flex;
    padding-left: 10px;
    padding-right: 10vw;
}

.nheading-subline {
    font-family: var(--ntext-font);
    font-weight: var(--ntext-weight);
    font-style: italic;
}

.services {
    display: flex;
    gap: var(--sgap);
    margin: var(--mmar) 0;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.service-item-img {
    height: 50px;
    width: 50px;
    border-radius: 25px;
    border: 1px solid rgb(149, 149, 149);
    overflow: hidden;
}

.service-item-head {
    font-size: var(--stext-size);
    color: var(--nheading-color);
    font-family: var(--stext-font);
    font-weight: var(--stext-weight);
    text-align: center;
}

.sideLine-vertical {
    min-width: 1px;
    background-color: #A3A3A3;
    position: absolute;
    top: calc(var(--lpad) + 40px);
    bottom: 50px;
    left: 100px;
}

.sidePoint {
    min-width: 50px;
    position: relative;
}

.sideLine {
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    top: 21px;
}

.sideLinerPointer-outer {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ff000000;
    border-radius: 5px;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 15px;
    background: white;
}

.sideLinerPointer-inner {
    background-color: #268BA5;
    width: 4px;
    height: 4px;
    border-radius: 5px;
}

.saatvik-vaidya-logo,
.sabka-vaidya-logo,
.veda-24-7-logo {
    width: 200px;
}

/* `founders page */
.section.aboutFounderPage {
    background-image: url('../img/aboutFounderBg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    box-sizing: border-box;
    display: flex;
    gap: var(--lgap);
}

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

.founderImage .founderImage-inner {
    position: relative;
}

.founderImage img {
    width: 300px;
    border-radius: 10px;
    z-index: 1;
    position: relative;
}

.founderImage .image-border {
    border: 1px solid white;
    border-radius: 10px;
    position: absolute;
    left: 10px;
    bottom: 20px;
    right: -10px;
    top: -10px;
    z-index: 0;
}


/* `quote page */
.quoteImage img {
    width: 30vw;
}


/* footer */
.footer {
    background-color: #1C4E86;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.footer .child {
    padding: var(--lpad);
}

.footerLogoImg {
    width: 200px;
    margin-bottom: var(--mmar);
}

.socialMedia {
    font-size: 30px;
}

.footer-img {}

.aboutFounderPage .ntext,
.aboutFounderPage .heading,
.footer .ntext,
.footer .heading,
.footer .nheading,
.footer .ntextHeading,
.footer .nTextHeading,
.aboutFounderPage .ntext,
.aboutFounderPage .heading,
.aboutFounderPage .nheading,
.aboutFounderPage .ntextHeading {
    color: white;
}






/* `animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

/* Initial state for animations */
.animate-on-scroll {
    position: relative;
    overflow: hidden;
}

@media (max-width: 1200px) {
    /* Large screens */

    html {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    /* Tablets */
}

@media (max-width: 768px) {
    /* Landscape phones */
}

@media (max-width: 576px) {
    * {
        --lpad: 30px;

        --heading-size: 24px;
        --heading-line: 24px;

        --nheading-size: 16px;
        --nheading-line: 32px;

        --ntext-size: 12px;
        --ntext-line: 24px;

        --stext-size: 8px;
        --stext-line: 16px;
    }

    .mHeading {
        font-size: 30px;
        line-height: 35px;
        text-align: center;
    }

    .heroText {
        align-items: center;
        padding-bottom: 6vh;
    }

    .heroText .ntext {
        text-align: center;
    }

    .herosection {
        align-items: end;
    }

    .founderImage-side,
    .aboutImage-side {
        display: none;
    }

    .founderImage-between,
    .aboutImage-between {
        display: block;
    }

    .aboutImage img {
        width: calc(100vw - 2* var(--lpad));
        margin-bottom: var(--mmar);
    }

    .founderImage {
        align-self: center;
        margin-bottom: 10px;
    }

    .founderImage .image-border,
    .founderImage img {
        width: 200px;
    }

    .founderImage .image-border {
        right: unset;
    }

    .section-heading {
        text-align: center;
    }

    #brandsContainer {
        padding-left: 0;
    }

    .sideLine-vertical {
        /* left: var(--lpad); */
        display: none;
    }

    .res_dflexcol {
        flex-direction: column-reverse;
    }

    .aboutFounderPage {
        background-size: unset;
    }

    .quoteImage {
        display: none;
    }

    .res_dflexac {
        align-items: center;
    }

    .res_textc {
        text-align: center;
    }

    .footer {
        gap: var(--mgap)
    }

    .res_overflowHide {
        overflow: hidden;
        align-items: center;
        gap: var(--mgap);
    }

    .service-item {
        flex-basis: calc((100% - 10px) / 2);
    }

    .services {
        flex-wrap: wrap;
    }

    .sidePoint {
        /* top: 30px; */
        display: none;
    }

    .brand-content {
        padding-right: 0;
        padding-left: 0;
        align-items: center;
    }

    .nheading-subline {
        text-align: center;
    }

    .brand-content .nheading {
        font-size: var(--heading-size);
        line-height: var(--heading-line);
    }

    .saatvik-vaidya-logo,
    .sabka-vaidya-logo,
    .veda-24-7-logo {
        width: 100px;
    }

    .nav-links {
        display: none;
    }

    .section.aboutFounderPage {
        height: unset;
        background-color: var(--secondary-color);
        background-image: unset;
    }

    .but_bor {
        transform: scale(0.7);
    }
}

/* Kruti Dev 240 Regular.ttf */

@font-face {
    font-family: 'NotoSansDevanagari';
    src: url('../fonts/Kruti\ Dev\ 240\ Regular.ttf') format('truetype');
}