@import url(base.css);

@font-face {
    font-family: "Arial";
    src: url("fonts/ArialMT.woff2") format("woff2"), url("fonts/ArialMT.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("fonts/Gotham-Black.woff2") format("woff2"), url("fonts/Gotham-Black.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("fonts/Gotham-Bold.woff2") format("woff2"), url("fonts/Gotham-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("fonts/Gotham-Book.woff2") format("woff2"), url("fonts/Gotham-Book.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Minion Pro";
    src: url("fonts/MinionPro-Regular.woff2") format("woff2"), url("fonts/MinionPro-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Helvetica Neue LT Pro";
    src: url("fonts/HelveticaNeueLTPro-Bd.woff2") format("woff2"), url("fonts/HelveticaNeueLTPro-Bd.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Helvetica Neue";
    src: url("fonts/HelveticaNeue.woff2") format("woff2"), url("fonts/HelveticaNeue.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Helvetica Neue";
}

header {
    position: relative;
    z-index: 9999;
}

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

.navbar-brand img {
    width: 100px;
}

.navbar {
    padding-top: 0;
    padding-bottom: 0;
}

.caresName {
    font-weight: bold;
    font-size: 20px;
    color: var(--font-color);
}

    .caresName span {
        font-weight: 100;
    }

.headerAction {
    border: 0;
    display: flex;
    align-items: center;
}

.logInBtn {
    background: var(--font-color);
    padding: 10px 20px;
    border-radius: 10px;
    font-family: Arial;
    font-size: 16px;
    margin-left: 12px;
    color: var(--white-color);
    cursor: pointer;
}

    .logInBtn a {
        padding: 10px 20px;
        color: var(--white-color);
        text-decoration: none;
    }

p {
    color: var(--body-text-color);
    font-size: 18px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 52vh;
    position: relative;
    padding: 0;
    background: var(--gray-color);
    overflow: hidden;
}

    #hero::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        background: url(img/hero-img.png) no-repeat top right;
        width: 61%;
        height: 100%;
        background-size: 100%;
    }

    #hero::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 60%;
        height: 100%;
        background-color: var(--gray-color);
        clip-path: polygon(0% 0%, 100% 0%, 70% 102%, 0% 100%);
    }

    #hero .container {
        position: relative;
        z-index: 999;
    }

        #hero .container .col-sm-6 {
            height: 52vh;
            display: flex;
            align-items: flex-start;
            flex-direction: column;
            justify-content: center;
            text-align: left;
        }

            #hero .container .col-sm-6 h1 {
                margin: 0 0 10px 0;
                font-size: 48px;
                font-weight: bold;
                line-height: 56px;
                color: var(--font-color);
            }

                #hero .container .col-sm-6 h1 span {
                    font-weight: 100;
                }

            #hero .container .col-sm-6 h2 {
                color: var(--font-color);
                margin-bottom: 50px;
                font-size: 24px;
            }

.msg {
    font-size: 18px;
    color: #54565a;
    font-weight: 600;
}

.info {
    font-weight: bold;
    font-size: 14px;
    color: #54565a;
}

.appName {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: var(--font-color);
}

    .appName span {
        font-weight: 100;
    }

.tagLineMsg {
    font-size: 30px;
    font-weight: bold;
    color: var(--font-color);
}

.loginStream .container .loginBox .row .contactUsFrom .mb-1 .capchaBox #captcha #captchaBox {
    margin-top: 4px;
}

.appInfoBox {
    position: relative;
    margin-top: -30px !important;
}

    .appInfoBox:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        left: 0;
        background: #0000001c;
        top: 60px;
    }

    .appInfoBox::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        left: 0;
        background: #0000001c;
        bottom: 90px;
    }

    .appInfoBox .appInfo {
        margin: 20px 0px;
    }

        .appInfoBox .appInfo h1 {
            font-weight: bold;
            color: var(--font-color);
            font-size: 30px;
        }

            .appInfoBox .appInfo h1 span {
                font-weight: 100;
            }

        .appInfoBox .appInfo p {
            color: var(--body-text-color);
            font-size: 20px;
        }

        .appInfoBox .appInfo .actionBtn {
            background-color: var(--font-color);
            color: var(--white-color);
            float: left;
            padding: 10px 18px;
            border-radius: 10px;
            cursor: pointer;
        }

.appImg {
    position: relative;
    z-index: 99;
}

/************ Trust and certainty start from here ************/
#trustCertainty {
    height: 355px;
    position: relative;
}

.trustCertaintyBox::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url(img/trust-certainty-bg.jpg) no-repeat center left;
    width: 61%;
    height: 100%;
    background-size: 100%;
}

.trustCertaintyBox::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-color: var(--gray-color);
    clip-path: polygon(100% 110%, 0% 100%, 20% 0%, 100% 0%);
}

.trustCertaintyBox .container .row {
    position: relative;
    z-index: 99;
    height: 100%;
}

.trustCertaintyBox h1 {
    font-weight: bold;
    color: var(--font-color);
    font-size: 36px;
}

    .trustCertaintyBox h1 span {
        font-weight: 100;
    }

.trustCertaintyBox p {
    color: var(--body-text-color);
    font-size: 18px;
}

/************ Trust and certainty end here ************/
/************ validate cares ************/
.validate-cares h1 {
    font-size: 36px;
    color: var(--font-color);
    font-weight: 100;
}

    .validate-cares h1 span {
        font-weight: bold;
    }

.validate-cares p {
    color: var(--body-text-color);
    font-size: 18px;
}

.validate-cares .downloadMsg {
    color: var(--body-text-color);
    font-size: 18px;
    font-weight: bold;
}

.validate-cares .actionBtn {
    background-color: var(--font-color);
    color: var(--white-color);
    float: left;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
}

/************ validate cares ************/
.carbon-accounting {
    height: 355px;
    position: relative;
}

    .carbon-accounting::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        background: url(img/carbon-accounting-bg.jpg) no-repeat center right;
        width: 61%;
        height: 100%;
        background-size: 100%;
    }

    .carbon-accounting::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 60%;
        height: 100%;
        background-color: var(--gray-color);
        clip-path: polygon(0% 0%, 99% -1%, 70% 100%, 0% 100%);
    }

    .carbon-accounting .container {
        height: 100%;
        position: relative;
        z-index: 99;
    }

        .carbon-accounting .container .row {
            height: 100%;
        }

            .carbon-accounting .container .row h1 {
                font-size: 36px;
                color: var(--font-color);
                font-weight: 100;
            }

                .carbon-accounting .container .row h1 span {
                    font-weight: bold;
                }

            .carbon-accounting .container .row p {
                font-size: 18px;
                color: var(--body-text-color);
                margin-right: 50px;
            }

            .carbon-accounting .container .row .actionBtn {
                background-color: var(--font-color);
                color: var(--white-color);
                float: left;
                padding: 10px 18px;
                border-radius: 10px;
            }

    .carbon-accounting a {
        float: left;
        position: relative;
        z-index: 999;
    }

        .carbon-accounting a:before {
            display: none;
        }

        .carbon-accounting a .actionBtn:before {
            display: none;
        }

.qrCodeSection h2 {
    font-size: 28px;
    color: var(--font-color);
    font-weight: 200;
    text-align: center;
    width: 80%;
    margin: 0px auto;
}

    .qrCodeSection h2 span {
        font-weight: bold;
    }

.qrCodeSection .col-sm-6 {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

    .qrCodeSection .col-sm-6 .borderCenter {
        position: relative;
    }

        .qrCodeSection .col-sm-6 .borderCenter::before {
            content: "";
            position: absolute;
            left: 50%;
            right: 50%;
            top: 10px;
            bottom: 0;
            width: 1px;
            height: 100%;
            background: #00000040;
            display: flex;
            justify-content: center;
        }

        .qrCodeSection .col-sm-6 .borderCenter .qrTitle {
            color: var(--font-color);
            font-size: 16px;
            font-weight: 600;
            text-align: center;
            margin-top: 15px;
        }

        .qrCodeSection .col-sm-6 .borderCenter img {
            width: 50%;
            margin: 0 auto;
        }

.cta-section {
    text-align: center;
    padding: 20px 0px;
}

    .cta-section h2 {
        font-size: 28px;
        color: var(--font-color);
        font-weight: bold;
        text-align: center;
        width: 80%;
        margin: 0px auto;
    }

        .cta-section h2 span {
            color: #d83a4b;
        }

    .cta-section .actionBtn {
        background-color: var(--font-color);
        color: var(--white-color);
        padding: 10px 18px;
        border-radius: 10px;
        max-width: 200px;
        margin: 0px auto;
        margin-top: 20px;
    }

        .cta-section .actionBtn a {
            color: var(--white-color);
            text-decoration: none
        }

footer {
    background-color: var(--footer-bg-color);
    color: var(--white-color);
    font-size: 13px;
}

    footer a {
        color: var(--white-color);
        text-decoration: none;
        font-size: 13px;
    }

        footer a:hover {
            color: var(--white-color);
        }

    footer ul {
        list-style: none;
        margin-bottom: 0;
        display: flex;
        justify-content: flex-end;
    }

        footer ul li {
            text-align: right;
            margin-right: 10px;
            position: relative;
        }

            footer ul li:last-child {
                margin-right: 0px;
            }

            footer ul li:after {
                content: '|';
                position: absolute;
                right: -5.5px;
                opacity: 0.3;
            }

            footer ul li:last-child:after {
                display: none;
            }

            footer ul li a {
                color: var(--white-color);
                text-decoration: none;
                font-size: 13px;
            }

                footer ul li a:hover {
                    color: var(--white-color);
                }

.revolutionReinforcing h1 {
    font-size: 30px;
    color: var(--font-color);
    font-weight: bold;
}

    .revolutionReinforcing h1 span {
        font-weight: 100;
    }

.revolutionReinforcing h3 {
    font-size: 24px;
    color: var(--font-color);
    font-weight: bold;
}

.revolutionReinforcing p {
    font-size: 18px;
    color: var(--body-text-color);
}

#instantlyopens {
    height: 350px;
    position: relative;
}

.instantlyopensBox::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url(img/cares-cloud-2.jpg) no-repeat top left;
    width: 61%;
    height: 100%;
    background-size: 100%;
}

.instantlyopensBox::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-color: var(--gray-color);
    clip-path: polygon(100% 100%, 0% 100%, 20% -1%, 100% 0%);
}

.instantlyopensBox .container .row {
    position: relative;
    z-index: 99;
    height: 100%;
}

    .instantlyopensBox .container .row p {
        color: var(--body-text-color);
        font-size: 24px;
    }

.imageSection {
    height: 350px;
    position: relative;
}

    .imageSection::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background: url(img/page-2-img.jpg) no-repeat center left;
        width: 100%;
        height: 100%;
        background-size: 100%;
    }

.page-3 {
    height: 480px;
    position: relative;
}

    .page-3::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background: url(img/page-3.jpg) no-repeat center left;
        width: 100%;
        height: 100%;
        background-size: 100%;
    }

.page-4 {
    height: 480px;
    position: relative;
}

    .page-4::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background: url(img/page-4-bg.jpg) no-repeat center left;
        width: 100%;
        height: 100%;
        background-size: 100%;
    }

#hero-page3 {
    width: 100%;
    height: 52vh;
    background: var(--gray-color);
    position: relative;
    padding: 0;
}

    #hero-page3::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background: url(img/page-3-hero-img.jpg) no-repeat center center;
        width: 61%;
        height: 100%;
        background-size: 100%;
    }

    #hero-page3::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 60%;
        height: 100%;
        background-color: var(--gray-color);
        clip-path: polygon(100% 110%, 0% 100%, 20% 0%, 100% 0%);
    }

    #hero-page3 .container {
        z-index: 999;
        position: relative;
        /*margin-top: -125px;*/
    }

        #hero-page3 .container .col-sm-5 {
            margin-top: 50px
        }

        #hero-page3 .container h1 {
            margin: 0 0 10px 0;
            font-size: 36px;
            font-weight: bold;
            line-height: 56px;
            margin-bottom: 0;
            color: var(--font-color);
        }

        #hero-page3 .container h3 {
            margin: 0 0 10px 0;
            font-size: 30px;
            font-weight: 100;
            line-height: 56px;
            color: var(--font-color);
            margin-bottom: 0;
            line-height: 35px;
        }

        #hero-page3 .container h2 {
            color: var(--body-text-color);
            margin-bottom: 50px;
            position: absolute;
            font-size: 20px;
            right: 50px;
            font-weight: bold;
            margin-top: 10px;
        }

        #hero-page3 .container .banner-img {
            position: absolute;
            right: 0px;
            margin-top: 40px;
        }

            #hero-page3 .container .banner-img img {
                width: 88%;
            }

#hero-page4 {
    width: 100%;
    height: 52vh;
    position: relative;
    padding: 0;
    background: var(--gray-color);
    overflow: hidden;
}

    #hero-page4::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        background: url(img/carbon-accounting-bg.jpg) no-repeat top right;
        width: 61%;
        height: 100%;
        background-size: 100%;
    }

    #hero-page4::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 60%;
        height: 100%;
        background-color: var(--gray-color);
        clip-path: polygon(0% 0%, 100% 0%, 70% 102%, 0% 100%);
    }

    #hero-page4 .container {
        position: relative;
        z-index: 999;
    }

        #hero-page4 .container .col-sm-6 {
            height: 52vh;
            display: flex;
            align-items: flex-start;
            flex-direction: column;
            justify-content: center;
            text-align: left;
        }

            #hero-page4 .container .col-sm-6 h1 {
                margin: 0 0 10px 0;
                font-size: 48px;
                font-weight: bold;
                line-height: 56px;
                color: var(--font-color);
            }

                #hero-page4 .container .col-sm-6 h1 span {
                    font-weight: 100;
                }

            #hero-page4 .container .col-sm-6 h2 {
                color: var(--font-color);
                margin-bottom: 50px;
                font-size: 24px;
            }

.page4-hero::after {
    content: "";
    background: url(img/carbon-accounting-bg.png) no-repeat center right !important;
    width: 60%;
    height: 100%;
    position: absolute;
    z-index: 99;
    right: 0;
    background-size: 100%;
    background-repeat: no-repeat;
}

.page4-hero h1 {
    font-size: 38px !important;
}

.page4-hero p {
    margin-right: 20px;
}

.loginSelection {
    min-height: calc(100vh - 111px);
    position: relative;
    justify-content: center;
}

    .loginSelection::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        background: url(img/selection-bg.jpg) no-repeat center center;
        width: 100%;
        height: 100%;
        background-size: cover;
        opacity: 0.3;
    }

    .loginSelection .container {
        position: relative;
        z-index: 99;
    }

        .loginSelection .container .row {
            display: flex;
            justify-content: center;
            position: relative;
            z-index: 99;
        }

            .loginSelection .container .row .col-sm-6 a {
                text-decoration: none;
            }

                .loginSelection .container .row .col-sm-6 a .optionBox {
                    background-color: var(--selction-box-bg);
                    color: var(--white-color);
                    border-radius: 8px;
                    min-height: 300px;
                    padding: 20px 35px;
                    position: relative;
                    display: flex;
                    align-items: center;
                    width: 80%;
                    text-decoration: none;
                }

                    .loginSelection .container .row .col-sm-6 a .optionBox h2 {
                        font-weight: bold;
                        font-size: 36px;
                        width: 100%;
                        color: var(--white-color);
                    }

                    .loginSelection .container .row .col-sm-6 a .optionBox h3 {
                        font-size: 20px;
                        color: var(--white-color);
                        width: 100%;
                        font-weight: 200;
                    }

                    .loginSelection .container .row .col-sm-6 a .optionBox .logoBox {
                        text-align: right;
                    }

            .loginSelection .container .row .col-sm-6:nth-child(1) {
                float: right;
            }

                .loginSelection .container .row .col-sm-6:nth-child(1) .optionBox {
                    float: right;
                }

            .loginSelection .container .row .col-sm-6:nth-child(2) {
                float: left;
            }

.loginStream {
    position: relative;
    justify-content: center;
    background: url(img/login-stream-bg.jpg) no-repeat center bottom;
    background-size: cover;
}

    .loginStream::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #ffffffd9;
        z-index: 99;
    }

    .loginStream .container {
        position: relative;
        z-index: 999;
    }

        .loginStream .container .loginBox {
            background-color: var(--white-color);
            position: relative;
            width: 80%;
            margin: 0px auto;
            box-shadow: 0px 0px 20px #0000003b;
        }

            .loginStream .container .loginBox::after {
                content: "";
                position: absolute;
                width: 50%;
                height: 100%;
                background: url(img/login-img.jpg) no-repeat center center;
                background-size: cover;
                right: 0;
                top: 0;
            }

            .loginStream .container .loginBox .row {
                height: 100%;
            }

                .loginStream .container .loginBox .row .login-info {
                    display: flex;
                    align-items: center;
                }

                    .loginStream .container .loginBox .row .login-info .topInfo {
                        width: 90%;
                        margin: 0px auto;
                        display: flex;
                        align-items: center;
                    }

                        .loginStream .container .loginBox .row .login-info .topInfo .log-title {
                            width: 70%;
                        }

                            .loginStream .container .loginBox .row .login-info .topInfo .log-title h2 {
                                font-family: "Helvetica Neue LT Pro";
                                font-size: 38px;
                                color: var(--font-color);
                            }

                            .loginStream .container .loginBox .row .login-info .topInfo .log-title h3 {
                                font-weight: 100;
                                color: var(--font-color);
                            }

                            .loginStream .container .loginBox .row .login-info .topInfo .log-title h4 {
                                font-weight: 100;
                                color: var(--font-color);
                                font-size: 18px
                            }

                            .loginStream .container .loginBox .row .login-info .topInfo .log-title.contact-title {
                                width: 100%;
                            }

                        .loginStream .container .loginBox .row .login-info .topInfo .streamLogo {
                            text-align: right;
                            width: 30%;
                        }

                            .loginStream .container .loginBox .row .login-info .topInfo .streamLogo img {
                                width: 100%;
                            }

                .loginStream .container .loginBox .row .formBox {
                    width: 90%;
                    margin: 0px auto;
                }

                    .loginStream .container .loginBox .row .formBox .submitBtn {
                        width: 100%;
                        background-color: var(--font-color);
                        color: var(--white-color);
                    }

                .loginStream .container .loginBox .row p {
                    text-align: center;
                    margin-bottom: 2px;
                    font-size: 16px;
                    color: var(--gray-font-color);
                }

                    .loginStream .container .loginBox .row p a {
                        color: var(--gray-font-color);
                        text-decoration: none;
                        transition: all 0.5s;
                    }

                        .loginStream .container .loginBox .row p a:hover {
                            color: var(--font-color);
                        }

                .loginStream .container .loginBox .row .contactUsFrom .mb-1 {
                    display: flex;
                    margin-bottom: 10px !important;
                }

                    .loginStream .container .loginBox .row .contactUsFrom .mb-1 label {
                        min-width: 150px;
                    }

                    .loginStream .container .loginBox .row .contactUsFrom .mb-1 .capchaBox {
                        width: 100%;
                        display: flex;
                        align-items: center;
                    }

                        .loginStream .container .loginBox .row .contactUsFrom .mb-1 .capchaBox input {
                            width: 50%;
                        }

                        .loginStream .container .loginBox .row .contactUsFrom .mb-1 .capchaBox #captcha {
                            user-select: none;
                            font-style: italic;
                            font-size: x-large;
                            text-align: center;
                        }

                        .loginStream .container .loginBox .row .contactUsFrom .mb-1 .capchaBox .inline {
                            display: inline-block;
                        }

@media (min-width: 1200px) {
    .loginStream {
        min-height: calc(100vh - 111px);
    }

        .loginStream .loginBox {
            max-height: calc(100vh - 111px);
            height: 70vh;
        }

    #hero-page3 .container h2 {
        color: var(--body-text-color);
        margin-bottom: 50px;
        position: absolute;
        font-size: 20px;
        right: 50px;
        font-weight: bold;
        margin-top: 10px;
        margin-right: 50px;
    }

    #hero-page3 .container .banner-img {
        margin-top: 40px !important;
        max-width: 100% !important;
    }

    .loginSelection {
        min-height: calc(100vh - 111px);
        position: relative;
        justify-content: center;
    }

        .loginSelection::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            background: url(img/selection-bg.jpg) no-repeat center center;
            width: 100%;
            height: 100%;
            background-size: cover;
            opacity: 0.3;
        }

        .loginSelection .container {
            position: relative;
            z-index: 99;
        }

            .loginSelection .container .row {
                display: flex;
                justify-content: center;
                position: relative;
                z-index: 99;
            }

                .loginSelection .container .row .col-sm-6 a {
                    text-decoration: none;
                }

                    .loginSelection .container .row .col-sm-6 a .optionBox {
                        background-color: var(--selction-box-bg);
                        color: var(--white-color);
                        border-radius: 8px;
                        min-height: 300px;
                        padding: 20px 35px;
                        position: relative;
                        display: flex;
                        align-items: center;
                        width: 80% !important;
                        text-decoration: none;
                    }

                        .loginSelection .container .row .col-sm-6 a .optionBox h2 {
                            font-weight: bold;
                            font-size: 36px;
                            width: 100%;
                            color: var(--white-color);
                        }

                        .loginSelection .container .row .col-sm-6 a .optionBox h3 {
                            font-size: 20px;
                            color: var(--white-color);
                            width: 100%;
                            font-weight: 200;
                        }

                        .loginSelection .container .row .col-sm-6 a .optionBox .logoBox {
                            text-align: right;
                        }

                .loginSelection .container .row .col-sm-6:nth-child(1) {
                    float: right;
                }

                    .loginSelection .container .row .col-sm-6:nth-child(1) .optionBox {
                        float: right !important;
                    }

                .loginSelection .container .row .col-sm-6:nth-child(2) {
                    float: left !important;
                }

    .tagLineMsg {
        font-size: 30px !important;
        font-weight: bold;
        color: var(--font-color);
    }

    .appInfoBox {
        position: relative;
        margin-top: -30px !important;
    }

        .appInfoBox:before {
            display: block !important;
            top: 30px !important;
        }

        .appInfoBox::after {
            display: block !important;
            bottom: 105px !important;
        }

        .appInfoBox .appInfo {
            margin: 20px 0px;
        }

            .appInfoBox .appInfo h1 {
                font-weight: bold;
                color: var(--font-color);
                font-size: 30px !important;
            }

                .appInfoBox .appInfo h1 span {
                    font-weight: 100;
                }

            .appInfoBox .appInfo p {
                color: var(--body-text-color);
                font-size: 20px !important;
            }

            .appInfoBox .appInfo .actionBtn {
                background-color: var(--font-color);
                color: var(--white-color);
                float: left;
                padding: 10px 18px;
                border-radius: 10px;
                cursor: pointer;
            }
}

@media (min-width: 768px) {
    #hero {
        height: 52vh;
    }

        #hero::before {
            background-size: cover;
        }

        #hero .container .col-sm-6 {
            height: 52vh;
        }

            #hero .container .col-sm-6 h1 {
                margin-top: 40px;
                font-size: 38px;
            }

            #hero .container .col-sm-6 h2 br {
                display: none;
            }

    #hero-page3 {
        height: 52vh;
    }

        #hero-page3::before {
            background-size: cover;
        }

        /* #hero-page3 .container {
        margin-top: -300px;
    }*/

        #hero-page3 .container h1 {
            line-height: initial;
        }

        #hero-page3 .container .banner-img {
            max-width: 550px;
            text-align: right;
        }

    .tagLineMsg {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .appInfoBox::before {
        display: none;
    }

    .appInfoBox::after {
        display: none;
    }

    .appInfoBox .appInfo h1 {
        font-size: 22px;
        margin-bottom: 0;
    }

    .appInfoBox .appInfo P {
        font-size: 16px;
    }

    .appInfoBox .col-sm-2 img {
        width: 100%;
    }

    .appInfoBox .col-sm-2 .appName {
        font-size: 14px;
    }

    .trustCertaintyBox::before {
        background-size: cover;
    }

    .trustCertaintyBox h1 {
        font-size: 26px;
    }

    .trustCertaintyBox P {
        font-size: 16px;
    }

    .validate-cares h1 {
        font-size: 26px;
    }

    .validate-cares P {
        font-size: 16px;
    }

    .validate-cares .downloadMsg {
        font-size: 14px;
    }

    .validate-cares .row .row .col-sm-8 {
        width: 50%;
    }

    .validate-cares .row .row .col-sm-4 {
        width: 50%;
    }

    .carbon-accounting::before {
        background-size: cover;
    }

    .carbon-accounting .container .row h1 {
        font-size: 26px;
    }

    .carbon-accounting .container .row p {
        font-size: 16px;
    }

    .qrCodeSection h2 {
        font-size: 20px;
    }

    .cta-section h2 {
        font-size: 20px;
    }

    .instantlyopensBox::before {
        background-size: cover;
    }

    .loginSelection .container .row .col-sm-6 {
        margin-bottom: 15px;
    }

        .loginSelection .container .row .col-sm-6:nth-child(1) .optionBox {
            float: none;
            width: 100%;
        }

        .loginSelection .container .row .col-sm-6:nth-child(2) .optionBox {
            float: none;
            width: 100%;
        }

        .loginSelection .container .row .col-sm-6 a .optionBox {
            width: 100%;
            padding-top: 0px;
            padding-bottom: 0px;
        }

            .loginSelection .container .row .col-sm-6 a .optionBox .optionInfo .row h2 {
                font-size: 26px;
            }

            .loginSelection .container .row .col-sm-6 a .optionBox .optionInfo .row .col-sm-6 {
                width: 50% !important;
            }

            .loginSelection .container .row .col-sm-6 a .optionBox .optionInfo .row .logoBox img {
                width: 80%;
            }

    .loginStream {
        min-height: calc(100vh - 111px);
    }

        .loginStream .loginBox {
            max-height: calc(100vh - 111px);
            height: 70vh;
        }
}

@media (max-width: 576px) {
    header .container {
        display: flex;
    }

    header .container .headerAction .logInBtn {
        margin-left: 6px;
        padding: 10px 6px;
    }

    header .container .headerAction .logInBtn a {
        padding: 10px 5px;
    }
    #hero, #hero .container .col-sm-6, #hero-page4, #hero-page4 .container .col-sm-6 {
        height: 30vh;
    }

    #hero-page3 {
        height: 55vh;
    }

    #hero-page4 .container .col-sm-6 p {
        margin-bottom: 0px
    }

    #hero::before {
        display: none;
    }

    #hero .container .col-sm-6 h1 {
        font-size: 26px;
    }

    #hero .container .col-sm-6 h2 {
        font-size: 16px;
    }

    .messageBox .row .col-sm-2 {
        text-align: center;
    }

    .messageBox .row .col-sm-2 img {
        width: 35%;
        margin: 0px auto;
    }

    .messageBox .row .msg {
        font-size: 14px;
    }

    .tagLineMsg {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .trustCertaintyBox:before {
        display: none;
    }

    .carbon-accounting::before {
        display: none;
    }

    .carbon-accounting .container .row h1 {
        font-size: 26px;
    }

    .carbon-accounting .container .row p {
        font-size: 16px;
    }

    .qrCodeSection h2 {
        font-size: 20px;
    }

    .qrCodeSection .col-sm-6 .borderCenter::before {
        display: none;
    }

    .appInfoBox::before {
        display: none;
    }

    .appInfoBox::after {
        display: none;
    }

    .appInfoBox .appInfo h1 {
        font-size: 24px;
    }

    .appInfoBox .appInfo p {
        font-size: 16px;
    }

    .appInfoBox .col-sm-2 {
        text-align: center;
    }

    .trustCertaintyBox h1 {
        font-size: 26px;
    }

    .trustCertaintyBox p {
        font-size: 16px;
    }

    .validate-cares h1 {
        font-size: 26px;
    }

        .validate-cares h1 br {
            display: none;
        }

    .validate-cares p {
        font-size: 16px;
    }

    .validate-cares .downloadMsg {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .cta-section h2 {
        font-size: 20px;
    }

    .loginSelection .container .row .col-sm-6 {
        margin-bottom: 15px;
    }

        .loginSelection .container .row .col-sm-6:nth-child(1) .optionBox {
            float: none;
            width: 80%;
            margin: 0px auto;
        }

        .loginSelection .container .row .col-sm-6:nth-child(2) .optionBox {
            float: none;
            width: 80%;
            margin: 0px auto;
        }

        .loginSelection .container .row .col-sm-6 a .optionBox {
            width: 100%;
            padding-top: 0px;
            padding-bottom: 0px;
            min-height: 200px;
        }

            .loginSelection .container .row .col-sm-6 a .optionBox .optionInfo .row h2 {
                font-size: 26px;
            }

            .loginSelection .container .row .col-sm-6 a .optionBox .optionInfo .row .col-sm-6 {
                width: 50% !important;
            }

            .loginSelection .container .row .col-sm-6 a .optionBox .optionInfo .row .logoBox img {
                width: 60%;
            }

    .loginStream {
        min-height: calc(100vh - 111px);
    }

        .loginStream .container .loginBox {
            margin-top: 50px;
            padding-top: 30px;
            padding-bottom: 30px;
            width: 100%;
        }

            .loginStream .container .loginBox::after {
                display: none;
            }

            .loginStream .container .loginBox .row .contactUsFrom .mb-1 {
                display: block;
                margin-bottom: 10px !important;
            }

                .loginStream .container .loginBox .row .contactUsFrom .mb-1 label {
                    min-width: 100%;
                }

    .instantlyopensBox {
        height: 200px !important;
    }

        .instantlyopensBox:before {
            display: none;
        }

        .instantlyopensBox .col-sm-6:nth-child(1) {
            display: none;
        }

        .instantlyopensBox .container .row p {
            font-size: 18px;
        }

    #hero-page3::before {
        display: none;
    }

    /*#hero-page3 .container {
        margin-top: -180px;
    }*/

    #hero-page3 .container h1 {
        font-size: 26px;
        line-height: initial;
    }

    #hero-page3 .container h2 {
        position: initial;
        margin-bottom: 0;
        margin-top: 0;
        font-size: 16px;
    }

    #hero-page3 .container h3 {
        font-size: 18px;
    }

    #hero-page3 .container .banner-img {
        margin-top: 0;
		position: relative;
    }

    #hero-page4::before {
        display: none;
    }

    #hero-page4 .container .col-sm-6 h1 {
        font-size: 26px;
        line-height: initial;
    }

    .imageSection {
        height: 200px;
    }

        .imageSection::before {
            background-size: cover;
        }

    .page-3 {
        height: 200px;
    }

        .page-3::before {
            background-size: cover;
        }

    .page-4 {
        height: 200px;
    }

        .page-4::before {
            background-size: cover;
        }

    .revolutionReinforcing h1 {
        font-size: 20px;
    }

    .revolutionReinforcing h3 {
        font-size: 18px;
    }

    .revolutionReinforcing p {
        font-size: 16px;
    }

    footer ul {
        display: block;
        padding-left: 0;
    }

        footer ul li {
            text-align: left
        }

            footer ul li::after {
                display: none;
            }
}

@media only screen and (min-device-width: 576px) and (max-device-width: 767px) {

    .container,
    .container-sm {
        max-width: 720px;
    }

    .loginSelection .container .row .col-sm-6 {
        margin-bottom: 15px;
    }

        .loginSelection .container .row .col-sm-6:nth-child(1) .optionBox {
            float: none;
            width: 100%;
        }

        .loginSelection .container .row .col-sm-6:nth-child(2) .optionBox {
            float: none;
            width: 100%;
        }

        .loginSelection .container .row .col-sm-6 a .optionBox {
            width: 100%;
            padding-top: 0px;
            padding-bottom: 0px;
        }

            .loginSelection .container .row .col-sm-6 a .optionBox .optionInfo .row h2 {
                font-size: 24px;
            }

            .loginSelection .container .row .col-sm-6 a .optionBox .optionInfo .row .col-sm-6 {
                width: 50% !important;
            }

            .loginSelection .container .row .col-sm-6 a .optionBox .optionInfo .row .logoBox img {
                width: 100%;
            }

    .loginStream {
        min-height: calc(100vh - 111px);
    }

        .loginStream .loginBox {
            max-height: calc(100vh - 111px);
            height: 70vh;
        }

            .loginStream .loginBox::after {
                display: none;
            }

            .loginStream .loginBox .col-sm-6 {
                width: 100%;
            }

    .appInfoBox::before {
        display: none;
    }

    .appInfoBox::after {
        display: none;
    }

    .appInfoBox .appInfo h1 {
        font-size: 22px;
        margin-bottom: 0;
    }

    .appInfoBox .appInfo P {
        font-size: 16px;
    }

    .appInfoBox .col-sm-2 img {
        width: 100%;
    }

    .appInfoBox .col-sm-2 .appName {
        font-size: 14px;
    }

    .trustCertaintyBox::before {
        background-size: cover;
    }

    .trustCertaintyBox h1 {
        font-size: 26px;
    }

    .trustCertaintyBox P {
        font-size: 16px;
    }

    .validate-cares h1 {
        font-size: 26px;
    }

    .validate-cares P {
        font-size: 16px;
    }

    .validate-cares .downloadMsg {
        font-size: 14px;
    }

    .validate-cares .row .row .col-sm-8 {
        width: 50%;
    }

    .validate-cares .row .row .col-sm-4 {
        width: 50%;
    }

    .carbon-accounting::before {
        background-size: cover;
    }

    .carbon-accounting .container .row h1 {
        font-size: 20px;
    }

    .carbon-accounting .container .row p {
        font-size: 16px;
    }

    .qrCodeSection h2 {
        font-size: 20px;
    }

    .cta-section h2 {
        font-size: 20px;
    }

    #hero {
        height: 52vh;
    }

        #hero::before {
            background-size: cover;
        }

        #hero .container .col-sm-6 {
            height: 52vh;
        }

            #hero .container .col-sm-6 h1 {
                margin-top: 40px;
                font-size: 38px;
            }

            #hero .container .col-sm-6 h2 br {
                display: none;
            }

    #hero-page3::before {
        display: none;
    }

    /*#hero-page3 .container {
        margin-top: -180px;
    }*/

    #hero-page3 .container .col-sm-7 {
        display: none;
    }

    #hero-page3 .container .col-sm-5 {
        width: 100%;
    }




    #hero-page3 .container h1 {
        font-size: 26px;
        line-height: initial;
    }

    #hero-page3 .container h2 {
        position: initial;
        margin-bottom: 0;
        margin-top: 0;
        font-size: 16px;
    }

    #hero-page3 .container h3 {
        font-size: 18px;
    }

    #hero-page3 .container .banner-img {
        margin-top: -30PX;
        text-align: right;
        margin-right: 30px
    }

        #hero-page3 .container .banner-img img {
            width: 75%;
        }

    .tagLineMsg {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .instantlyopensBox::before {
        background-size: cover;
    }
}
