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

:root {
    --light-text: #fff;
    --primary-color: #BD9647;
    --dark-color: #000;
    --dark-bg: #000;
    --light-bg: #EDEFEF;
    --blue-light-bg: #F6F7FA;
}


/* fonts */

@font-face {
    font-family: Roboto-Regular;
    src: url(./Fonts/Roboto-Regular.ttf);
}

@font-face {
    font-family: Roboto-Medium;
    src: url(./Fonts/Roboto-Medium.ttf);
}

@font-face {
    font-family: Roboto-Light;
    src: url(./Fonts/Roboto-Light.ttf);
}

@font-face {
    font-family: Roboto-Bold;
    src: url(./Fonts/Roboto-Bold.ttf);
}

@font-face {
    font-family: Raleway-SemiBold;
    src: url(./Fonts/Raleway-SemiBold.ttf);
}

@font-face {
    font-family: Raleway-Medium;
    src: url(./Fonts/Raleway-Medium.ttf);
}

@font-face {
    font-family: Raleway-Bold;
    src: url(./Fonts/Raleway-Bold.ttf);
}

@font-face {
    font-family: Barlow-Bold;
    src: url(./Fonts/Barlow-Bold.ttf);
}

@font-face {
    font-family: Avenir;
    src: url(./Fonts/Avenir.ttc);
}

@font-face {
    font-family: abel-regular;
    src: url(./Fonts/abel-regular.ttf);
}

body {
    font-family: Roboto-Regular;
    counter-reset: number;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: Raleway-SemiBold;
}

section h2 {
    font-family: Raleway-Medium;
    font-weight: 500;
    font-size: 2em;
}

p,
li {
    font-size: 1.2em;
}

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


/* bgs */

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

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

.light-bg {
    background: var(--light-bg);
}


/* logo */

.logo-div {
    /* margin-top: 160px; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.logo-div .logo {
    max-width: 350px;
    width: 100%;
}


/* scrollable nav */

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0px;
}

.sticky+.hero-banner {}

.contact-form {
    width: 100%;
    background: var(--primary-color);
    color: var(--light-text);
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    z-index: 999;
}

.contact-form .left h3 {
    margin: 10px 0px;
    font-weight: 500;
    font-family: Roboto-Medium;
    letter-spacing: 2px;
}

.contact-form .left .form {
    width: 100%;
    display: flex;
}

.contact-form .left .form * {
    width: 100%;
}

.contact-form input {
    margin: 0px 10px;
    padding: 7px 5px;
    border: none;
    font-family: Roboto-Medium;
}

.contact-form .right h3 {
    margin: 10px 0px;
    font-weight: 500;
    font-family: Roboto-Medium;
    letter-spacing: 2px;
}

input::placeholder {
    font-family: Roboto-Medium;
    color: var(--dark-color);
}

.form-btn {
    margin-top: -8px;
    width: 100%;
    font-family: Roboto-Medium;
    background: var(--light-bg);
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 1em;
    border-radius: 20px;
    cursor: pointer;
}

.form-btn-2 {
    text-decoration: none;
    width: 100%;
    font-family: Roboto-Medium;
    background: var(--light-bg);
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 1em;
    border-radius: 20px;
    cursor: pointer;
    padding: 5px 70px;
    width: 100%;
}

.hero-banner {
    padding: 40px 20px;
    text-align: center;
    color: var(--light-text);
    font-size: 1.4em;
}


/* hero */

.hero {
    min-height: 800px;
    width: 100%;
    background: url(../images/hero-bg.jpeg);
    background-size: cover;
    overflow: hidden;
}


/* section-1 */

.section-1 {
    color: var(--light-text);
    text-align: center;
}

.section-1 .wrapper {
    overflow: hidden;
    max-width: 1000px;
    margin: auto;
    padding: 40px 50px;
}

.section-1 p {
    margin: 30px 0px;
    font-size: 1.4em;
}


/* section-2 */

.section-2 .wrapper {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
}

.section-2 .wrapper h2 {
    text-align: center;
}

.section-2 .wrapper ul {
    list-style: none;
    margin-top: 30px;
}

.section-2 .wrapper ul li {
    margin: 5px 0px;
}

.section-2 .wrapper ul li::before {
    content: "\2713";
    color: var(--primary-color);
    font-size: 1.2em;
    font-weight: bold;
    margin-right: 10px;
}

.section-cards .text {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
}

.section-cards .wrapper .text>h2,
.section-cards .wrapper .text>p {
    text-align: center;
    margin: 10px 0px;
}

.section-cards .wrapper .card-grid {
    max-width: 1920px;
    padding: 20px 50px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.section-cards .wrapper .card-grid img {
    width: 100%;
    max-width: 150px;
    margin-bottom: 20px;
}

.section-cards .wrapper .card {
    text-align: center;
    margin: 20px;
}

.section-cards .wrapper .card .card-heading {
    font-family: Raleway-SemiBold;
    font-weight: 500;
}


/* safety */

.safety-text h2 {
    margin-bottom: 20px;
}

.safety-section {
    background: var(--blue-light-bg);
}

.safety-section .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1920px;
    margin: auto;
}

.safety-section .wrapper img {
    max-width: 700px;
    width: 100%;
}

.safety-section .wrapper .safety-text {
    text-align: center;
    padding: 0px 5%;
}

.safety-section .wrapper * {
    width: 100%;
}


/*Convenient-section  */

.Convenient-section .wrapper {
    display: flex;
    align-items: center;
    max-width: 1920px;
    margin: auto;
}

.Convenient-section .wrapper img {
    max-width: 700px;
    width: 100%;
}

.Convenient-section .wrapper .safety-text {
    text-align: center;
    padding: 0px 5%;
}


/*Savings-section  */

.Savings-section {
    background: #E4F2F4
}

.Savings-section .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1920px;
    margin: auto;
}

.Savings-section .wrapper img {
    max-width: 700px;
    width: 100%;
}

.Savings-section .wrapper .safety-text {
    text-align: center;
    padding: 0px 5%;
}


/* Quality-section */

.Quality-section .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1920px;
    margin: auto;
}

.Quality-section .wrapper img {
    max-width: 700px;
    width: 100%;
}

.Quality-section .wrapper .safety-text {
    text-align: center;
    padding: 0px 5%;
}


/* COUNSELING-section */

.COUNSELING-section {
    background: #E4E4E5;
}

.COUNSELING-section .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1920px;
    margin: auto;
}

.COUNSELING-section .wrapper img {
    max-width: 700px;
    width: 100%;
}

.COUNSELING-section .wrapper .safety-text {
    padding: 0px 5%;
}

.COUNSELING-section .wrapper .safety-text h2 {
    text-align: center;
}

.grid-sys {
    padding: 20px;
    gap: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}


/* how works section */

.how-works-section .wrapper {
    max-width: 1920px;
    margin: auto;
    padding: 40px 20px;
}

.how-works-section .wrapper .card-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.how-works-section .wrapper .working-card img {
    width: 100%;
    max-width: 180px;
}

.how-works-section .wrapper .working-card {
    position: relative;
    padding: 20px;
    background: #ECECEE;
    margin: 0px 10px;
}

.how-works-section .wrapper .working-card::before {
    content: " "counter(number) "";
    counter-increment: number;
    top: 0px;
    position: absolute;
    font-size: 6em;
    color: #dbdada;
}

.card-text .strong {
    font-weight: 600;
}

.how-works-section .card-text * {
    margin: 10px 0px;
}

.how-works-section .wrapper .card-inner h4 {
    font-size: 1.4em;
}


/* Virtual-section */

.Virtual-section .wrapper {
    max-width: 1920px;
    margin: auto;
    padding: 40px 20px;
}

.Virtual-section .wrapper .text {
    max-width: 900px;
    margin: auto;
}

.Virtual-section .wrapper .text * {
    margin: 30px 0px;
    text-align: center;
}

.Virtual-section .wrapper .virtual-list {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}


/* Therapy-section */

.Therapy-section .wrapper {
    max-width: 1920px;
    margin: auto;
    padding: 40px 20px;
}

.Therapy-section .wrapper h2 {
    margin: 30px 0px;
}

.Therapy-section .therapy-cards-div {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.Therapy-section .wrapper h2 {
    margin: 30px 0px;
}

.Therapy-section .wrapper .therapy-card {
    text-align: center;
    padding: 30px;
    background: var(--primary-color);
    margin: 20px 10px;
    color: var(--light-text);
}

.Therapy-section .wrapper .therapy-card .big-font {
    font-size: 4em;
}

.Therapy-section .wrapper .therapy-card h3 {
    font-size: 1.3em;
    margin-bottom: 20px;
}


/* health section */

.health-concerns {
    background: #D3D4CF;
}

.health-concerns .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1920px;
    margin: auto;
}

.health-concerns .wrapper img {
    max-width: 700px;
    width: 100%;
}

.health-concerns .wrapper .safety-text {
    padding: 0px 5%;
}

.health-concerns .wrapper .safety-text h2 {
    text-align: center;
}

.health-concerns .wrapper h3 {
    margin-bottom: 50px;
}

.heath-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
}


/* section feature */


/* Therapy-section */

.feature-section {
    background: #ffffff;
}

.feature-section .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1920px;
    margin: auto;
}

.feature-section .wrapper h2 {
    margin: 30px 0px;
}

.feature-section .wrapper .safety-text {
    max-width: 600px;
    text-align: center;
    padding: 30px;
}

.feature-section .wrapper img {
    width: 100%;
    max-width: 700px;
}

.feature-section .wrapper h2 {
    margin: 30px 0px;
}

.feature-section .wrapper .grid-sys {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.feature-section .wrapper .grid-sys img {
    max-width: 70px;
    width: 100%;
}

.feature-section .wrapper .small-card p {
    font-size: 0.8em;
}

.feature-section .wrapper .small-card h3 {
    font-weight: 800;
    font-family: Roboto-Bold;
}


/* .feature-section .wrapper .small-card {
padding:10px;
} */


/* section-you-know */

.section-you-know {
    background: #EDEFEF;
}

.section-you-know .wrapper {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
}

.section-you-know .wrapper .elite-bagde {
    font-family: Barlow-Bold;
}

.section-you-know .wrapper .elite-bages {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.section-you-know .wrapper .elite-bagde .strong {
    font-family: Barlow-Bold;
}

.section-you-know .wrapper .text * {
    text-align: center;
    margin: 30px 0px;
}

.section-you-know .wrapper .elite-bagde {
    position: relative;
    max-width: 250px;
    width: 100%;
}

.section-you-know .wrapper .elite-bagde img {
    position: relative;
    max-width: 250px;
    width: 100%;
}

.section-you-know .wrapper .elite-bagde .elite-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    padding: 20px;
    text-align: center;
}

.section-you-know .wrapper .elite-bagde .elite-inner .elite-head {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.section-you-know .wrapper .elite-bagde p {
    font-family: abel-regular;
}


/* above  footer */

.above-footer {
    padding: 50px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}


/* dark-bg */

.dark-bg .footer-wrapper {
    max-width: 1100px;
    color: var(--light-text);
    margin: auto;
    padding: 20px;
}

.dark-bg .footer-wrapper .logo-div {
    justify-content: flex-start;
    padding-left: 0px;
}

.footer-cols {
    margin: auto;
    border-top: 1px solid var(--primary-color);
    padding: 20px 0px;
    display: flex;
    justify-content: space-between;
}

.copyright {
    text-align: center;
}

footer.dark-bg {
    border-bottom: 10px solid var(--primary-color);
}

.col.links {
    display: flex;
    gap: 20px;
}

.i-bg {}

.i-bg i {
    background: var(--light-bg);
    padding: 15px;
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.5em;
}

section .wrapper>img {
    max-width: 700px !important;
    min-width: 600px !important;
}

@media screen and (max-width: 1000px) {
    section .wrapper>img {
        max-width: 600px !important;
        min-width: 400px !important;
    }
    .hero {
        min-height: 600px;
    }
    p,
    li {
        font-size: 1em;
    }
}


/* desktop-hidden */

.d-hidden {
    display: none;
}

.m-hidden {
    display: block;
}

@media screen and (max-width: 800px) {
    .d-hidden {
        display: block;
    }
    .m-hidden {
        display: none;
    }
    .contact-form {
        padding: 20px 0px;
        justify-content: center;
    }
    .contact-form .left {
        display: none;
    }
    section>.wrapper {
        flex-direction: column;
    }
    section .wrapper .safety-text {
        text-align: center;
        padding: 40px 5% !important;
    }
    .section-cards .wrapper .card-grid {
        grid-template-columns: 1fr 1fr;
    }
    .Convenient-section .wrapper {
        flex-direction: column-reverse;
    }
    .Quality-section .wrapper {
        flex-direction: column-reverse;
    }
    .how-works-section .wrapper .card-grid {
        gap: 20px;
        grid-template-columns: 1fr 1fr;
    }
    .Therapy-section .therapy-cards-div {
        grid-template-columns: 1fr 1fr;
    }
    .section-you-know .wrapper .elite-bages {
        display: grid;
        justify-content: center;
        align-items: center;
        justify-items: center;
        grid-template-columns: 1fr 1fr;
    }
    .grid-sys {
        text-align: left !important;
        padding: 0px 20px;
    }
    .heath-list {
        text-align: left !important;
        padding: 0px 20px;
    }
    .Virtual-section .wrapper .virtual-list {
        padding: 0px 20px;
    }
    .hero {
        min-height: 500px;
    }
    footer .text-center {
        text-align: left;
    }
}

@media screen and (max-width: 600px) {
    .how-works-section .wrapper .card-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }
    .hero {
        min-height: 400px;
    }
    .Therapy-section .therapy-cards-div {
        grid-template-columns: 1fr;
    }
    .footer-cols {
        flex-direction: column;
        gap: 40px;
        text-align: left !important;
    }
    .section-you-know .wrapper .elite-bages {
        display: grid;
        justify-content: center;
        align-items: center;
        grid-template-columns: 1fr;
    }
    .section-1 .wrapper {
        overflow: hidden;
        max-width: 1000px;
        margin: auto;
        padding: 40px 20px;
    }
    .Virtual-section .wrapper .virtual-list {
        padding: 0px 20px;
        flex-direction: column;
    }
    .hero-banner {
        padding: 40px 20px;
        text-align: center;
        color: var(--light-text);
        font-size: 0.7em;
    }
}

@media screen and (max-width: 480px) {
    .feature-section .wrapper .grid-sys {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 400px) {
    section .wrapper>img {
        max-width: 700px !important;
        min-width: 100% !important;
    }
    .grid-sys {
        text-align: left !important;
        padding: 0px 20px;
        grid-template-columns: 1fr;
    }
    .heath-list {
        grid-template-columns: 1fr;
    }
    .section-cards .wrapper .card-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}


/* popup form css */


/* Button used to open the contact form - fixed at the bottom of the page */


/* The popup form - hidden by default */

.form-popup {
    display: none;
    position: absolute;
    top: 0px;
    color: var(--light-text);
    z-index: 99999;
}


/* Add styles to the form container */

.form-container {
    width: 100%;
    z-index: 99999 !important;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.959);
}


/* Full-width input fields */

.form-container input[type=text],
.form-container input[type=tel],
.form-container input[type=email],
.form-container input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1;
}


/* When the inputs get focus, do something */

.form-container input[type=text]:focus,
.form-container input[type=password]:focus {
    background-color: #ddd;
    outline: none;
}


/* Set a style for the submit/login button */

.form-container .btn {
    background-color: var(--primary-color);
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
    opacity: 0.8;
}


/* Add a red background color to the cancel button */

.form-container .cancel {
    background-color: red;
}


/* Add some hover effects to buttons */

.form-container .btn:hover,
.open-button:hover {
    opacity: 1;
}