/*---------------------
    General body
-----------------------*/

* {
    font-family: 'Poppins' !important;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    transition: .3s ease;
}

body {
    margin: 0;
    font-size: 14px;
    overflow-x: hidden !important;
    background: rgba(233, 228, 228, 1);
}

.bodyOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: 300ms linear !important;
}

.bodyOverlay.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .63);
    z-index: 200;
    opacity: 1;
    visibility: visible;
    transition: 300ms linear !important;
}

/*---------------------
    Hero Section Starts
-----------------------*/

.hero_section {
    background: rgba(233, 228, 228, 1);
}

.hero_container {
    margin-top: 6em;
    padding: 0 70px;
    background: url(/IMAGES/hero_bg_lines.png) no-repeat;
    background-position: center bottom;
    background-size: 100% 100%;
    height: max-content !important;
}

.hero_image_wrap {
    position: relative;
    height: 100%;
}

.hero_heading {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.hero_container h1 {
    width: fit-content;
    margin: auto;
    margin-bottom: 1.5em;
    text-align: center !important;
    color: #000;
    font-size: clamp(25px, 2.9em, 6vw);
    line-height: 90px;
    font-weight: bolder !important;
    background: url(/IMAGES/h1_line02.png) no-repeat;
    background-size: 94% 23px;
    background-position-x: center;
    background-position-y: 60px;
    /* background-repeat: no-repeat !important; */
}

.hero_heading .hero_heading_p {
    color: #363333;
    font-size: 20px;
    text-align: left;
    line-height: 2.2;
}

.hero_heading h5 {
    font-size: 2em;
    text-align: left !important;
    font-weight: 600;
}

.hero_share_img {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    margin-top: 1em;
}

.hero_share_img img {
    width: 200px;
}

.hero-buton {
    padding: 10px 25px;
    background-color: #1BD18C;
    color: #fff;
    font-size: 15px;
    box-shadow: -5px 5px 0px whitesmoke;
    transition: .3s ease-in-out;
}

.hero-buton:hover {
    color: white;
    box-shadow: -10px 10px 0px whitesmoke !important;
    transition: .3s ease-in-out;
}

@media screen and (max-width: 1130px) {
    .hero_container {
        padding: 0px 30px 10px 30px !important;
        /* opacity: 0.9; */
    }
}



.productivity_wrap {
    /* padding: 0 70px; */
    background-color: #fff;
}

.terms_card {
    border-radius: 9.17px;
    padding: 4.5em 2.5em;
    border-top: 20px solid rgba(28, 207, 139, 1);
    color: black !important;
    box-shadow: 0px 3.6686668395996094px 54.599998474121094px 0px rgba(200, 189, 189, 0.25);
    margin-bottom: 2.5em;
}

.terms_card h5 {
    font-size: 1.7em;
    font-weight: 600;
    margin-bottom: 1em;
}

.terms_card p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 15px;
}


@media screen and (max-width: 1130px) {
    .productivity_wrap {
        padding: 0 30px;
    }
}

@media screen and (max-width: 576px) {
    .hero_container h1 {
        font-size: clamp(32px, 2.9em, 6vw);
        background-position-x: 0px;
        background-position-y: 45px;
        /* line-height: 1.4; */
    }

    .hero_heading h5 {
        font-size: 1.5em;
        text-align: left !important;
        font-weight: 600;
        margin-bottom: 0;
    }

    .hero_heading .hero_heading_p {
        color: #363333;
        font-size: 18px;
        text-align: left;
        line-height: 2.2;
    }

    .productivity_wrap {
        padding: 0 5px;
    }
}

@media screen and (max-width: 700px) {
    .hero_container {
        padding: 0px 20px 10px 20px !important;
        /* opacity: 0.9; */
    }

    .terms_card {
        width: 100% !important;
        border-radius: 12px;
        padding: 2.5em 1.5em !important;
        margin-bottom: 2em;
        border-top: 15px solid rgba(28, 207, 139, 1);
    }

    .terms_card h5 {
        font-size: 1.5em;
        font-weight: 600;
    }

    .terms_card p {
        font-size: 16px;
        font-weight: 300;
        margin-top: 1.4em !important;
        text-align: justify !important;

    }
}

.options2.fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
    transition: 300ms ease !important;
    z-index: 99 !important;
    background-image: none !important;
    background-color: #fff !important;
    box-shadow: 0 4px 10px rgba(183, 179, 179, 0.25);
}