body, html {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Nunito';
    font-size: 14px;
    letter-spacing: normal;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

a, a:hover {
    text-decoration: none;
}

/* ===== Buttons ===== */
.btn {
    border-radius: 30px;
}

    .btn:not(:disabled):not(.disabled):active, .btn:focus {
        outline: none;
        box-shadow: none;
    }

.btn-primary {
    background: #10253e;
    color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

    .btn-primary:hover, .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:focus {
        background: rgba(16, 37, 62, 0.7);
    }

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    border-color: transparent;
    color: #fff;
}

    .btn-secondary:hover, .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:focus {
        background: rgba(0, 0, 0, 0.3);
        border-color: transparent;
    }

.btn-outline-primary {
    border: 1px solid #10253e;
}

.btn-outline-secondary {
    border: 1px solid #fff;
    color: #fff;
}

    .btn-outline-secondary:hover, .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:focus {
        background: rgba(255, 255, 255, 0.1);
        border-color: #fff;
        color: rgba(255, 255, 255, 0.8);
    }

.btn-primary-gradient {
    background: #5ed2fb;
    background: -moz-linear-gradient(-45deg, #5ed2fb 0%, #0c9aff 65%, #0c9aff 100%);
    background: -webkit-linear-gradient(-45deg, #5ed2fb 0%,#0c9aff 65%, #0c9aff 100%);
    background: linear-gradient(135deg, #5ed2fb 0%,#0c9aff 65%, #0c9aff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5ed2fb', endColorstr='#0c9aff',GradientType=1 );
    color: #fff;
}


.btn-lg {
    padding: 12px 30px;
    border-radius: 50px;
}

.btn-icon {
    position: relative;
}

    .btn-icon .icon {
        background: rgba(255, 255, 255, 0.3);
        width: 30px;
        height: 30px;
        text-indent: -999px;
        display: inline-block;
        border-radius: 50px;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

.icon-play:before {
    position: absolute;
    left: 55%;
    top: 50%;
    transform: translate(-50%, -50%);
    content: "";
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 9px solid #fff;
}

/* ===== Form Elements ===== */
.form-control {
    width: 100%;
    border-radius: 50px;
    border: none;
    padding: 5px 30px;
    background: rgba(255, 255, 255, 0.45);
    color: #666;
    font-size: 16px;
    font-size: calc(14px + 2 * ((100vw - 320px) / 1600));
    border: 1px solid #e5e5e5;
    min-height: 50px;
}

    .form-control::placeholder {
        font-size: 16px;
        font-size: calc(14px + 2 * ((100vw - 320px) / 1600));
        color: #d4d3d3;
    }

    .form-control:focus {
        border: 1px solid #0c9aff;
        box-shadow: none;
        outline: none;
    }

/* Custom Form */
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.custom-control-input:focus ~ .custom-control-label::before {
    border: none;
    box-shadow: none;
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
    transform: translate(0, -50%);
    left: calc(-2.1rem + 5px);
}

.custom-control {
    display: flex;
    align-items: center;
}

    .custom-control input {
        height: auto;
    }

.custom-control-label::before,
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.custom-control-input:focus ~ .custom-control-label::before {
    border: 1px solid #d4d3d3;
}

.custom-control-input:checked ~ .custom-control-label::before {
    background-color: #0c9aff;
    border-color: #0c9aff;
}

.custom-checkbox.custom-radio .custom-control-label::before {
    border-radius: 1rem;
}

/* ===== Header ===== */
.header {
    background: url(../images/home-header-bg.jpg) right top no-repeat;
    background-size: cover;
    height: 842px;
    height: calc(100vh - 50px);
    max-height: 842px;
    margin-bottom: 150px;
}

    .header .navbar-brand {
        max-width: 171px;
        padding: 0;
        margin: 0 5% 0 0;
    }

        .header .navbar-brand img {
            width: 100%;
        }

    .header .btn {
        font-size: 16px;
        font-size: calc(12px + 4 * ((100vw - 320px) / 1600));
        font-family: 'Nunito-Bold';
        font-weight: normal;
    }

    .header .top-act-menu li:not(:first-child) {
        margin-left: 20px;
    }

    .header .top-act-menu .btn {
        width: 122px;
    }


    /* Main Navigation */
    .header .navbar {
        padding: 27px 0 15px;
        font-size: 17px;
        font-size: calc(14px + 3 * ((100vw - 320px) / 1600));
    }

    .header .main-navigation li {
        padding-left: 15px;
        padding-right: 15px;
    }

        .header .main-navigation li a {
            color: #fff;
        }

        .header .main-navigation li.active {
            background-color: rgba(0, 0, 0, 0.2);
            border-radius: 30px;
        }

    /* ===== Home Carousel ===== */
    .header .home-carousel {
        height: 85%;
        position: relative;
    }

        .header .home-carousel .carousel, .header .home-carousel .carousel .carousel-inner {
            height: 100%;
            display: flex;
            align-items: center;
        }
        /*.header .home-carousel .carousel .carousel-inner .carousel-item{
    padding-bottom: 20%;
}*/
        .header .home-carousel .carousel-inner .slider-left {
            max-width: 42%;
        }

            .header .home-carousel .carousel-inner .slider-left h3 {
                font-family: 'Nunito-Black';
                font-size: 60px;
                font-size: calc(36px + 24 * ((100vw - 320px) / 1600));
                line-height: 72px;
                line-height: calc(48px + 24 * ((100vw - 320px) / 1600));
                color: #fff;
                margin-bottom: 30px;
            }

            .header .home-carousel .carousel-inner .slider-left p {
                font-size: 24px;
                font-size: calc(12px + 12 * ((100vw - 320px) / 1600));
                line-height: 36px;
                line-height: calc(24px + 12 * ((100vw - 320px) / 1600));
                color: #fff;
                margin-bottom: 35px;
            }

        .header .home-carousel .slider-left .btn {
            width: 39%;
        }

            .header .home-carousel .slider-left .btn:not(:last-child) {
                margin-right: 20px;
            }


.home-carousel .carousel-indicators {
    left: 3%;
    top: 250px;
    justify-content: left;
    width: 21px;
    margin: 0;
    flex-direction: column;
    z-index: 99999;
}

    .home-carousel .carousel-indicators li {
        counter-increment: myIndex;
        position: relative;
        width: 100%;
        height: 21px;
        border-radius: 20px;
        background: transparent;
        font-size: 11px;
        color: #fff;
        text-indent: 0;
        text-align: center;
        line-height: 21px;
        margin-bottom: 18px;
        border: 1px solid transparent;
        opacity: 1;
    }

        .home-carousel .carousel-indicators li.active {
            border-color: #fff;
        }

        .home-carousel .carousel-indicators li:not(:last-child).active:after {
            content: "";
            width: 1px;
            height: 18px;
            position: absolute;
            top: 21px;
            left: 50%;
            transform: translateX(-50%);
            background: #fff;
        }

        .home-carousel .carousel-indicators li:before {
            content: counter(myIndex);
            position: absolute;
            left: 0;
            width: 100%;
        }


.home-carousel .slider-img {
    position: absolute;
    width: 53%;
    height: 100%;
    right: 2%;
    top: -22%;
    /*transform: translateY(-20%);*/
}

.skip-to-content {
    height: 39px;
}

    .skip-to-content img {
        max-height: 100%;
        margin-top: 46px;
    }

.form-body .form-group, .box-center .form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-body label, .box-center label {
    position: absolute;
    background-color: #fff;
    padding: 1px 10px;
    color: #212529;
    font-size: 12px;
    margin-bottom: 0;
    top: -11px;
    left: 25px;
    z-index: 999;
}

.box-center .form-group.mb-15 {
    margin-bottom: 15px;
}

.form-body .form-control, .box-center .form-control {
    background-color: transparent;
    border: 1px solid #aeaeae;
    border-radius: 70px;
    height: 42px;
    font-size: 14px;
    padding: 5px 26px;
    font-weight: normal;
}

    .form-body .form-control[disabled], .box-center .form-control[disabled] {
        background-color: #e4e4e4;
    }

.form-body .form-footer .btn, .box-center .form-footer .btn {
    font-size: 16px;
    height: 44px;
    width: 100%;
    max-width: 371px;
}

    .form-body .form-footer .btn:hover, .box-center .form-footer .btn:hover {
        color: #fff;
    }

.form-body .form-control:focus, .box-center .form-control:focus {
    border-color: #0c9aff;
}

.form-body .formFocused label, .box-center .formFocused label {
    color: #0c9aff;
}

.form-body .form-dropdown {
    position: relative;
}

    .form-body .form-dropdown select {
        appearance: none;
        -webkit-appearance: none;
    }

    .form-body .form-dropdown::before {
        content: "";
        position: absolute;
        right: 32px;
        top: 50%;
        transform: translateY(-50%);
        border-top: 0.4em solid #d4d3d3;
        border-right: .3em solid transparent;
        border-left: .3em solid transparent;
    }

.form-body .form-textarea textarea, .box-center .form-textarea textarea {
    padding: 10px;
    height: 108px;
    border: 1px solid #aeaeae;
    border-radius: 15px;
    resize: none;
}

/* ===== Homepage Content ===== */
.content-area > section {
    padding: 80px 0;
}

.content-area h3 {
    font-size: 56px;
    font-size: calc(40px + 16 * ((100vw - 320px) / 1600));
    font-family: 'Nunito-Bold';
    font-weight: normal;
}


/* ===== Business Growth ===== */
section.business-growth {
    padding-top: 55px;
}

.business-growth h3 {
    font-size: 45px;
    font-size: calc(31px + 14 * ((100vw - 320px) / 1600));
    color: #10253e;
    text-align: center;
}


/* ===== What is Virtfiit ===== */
section.what-is-virtfiit {
    background: url(../images/homepage-bg-image-1.png) center top no-repeat;
    background-size: cover;
    padding: 300px 0 200px;
}

.video-wrapper-title {
    max-width: 950px;
    margin: 0 auto 70px;
}

.what-is-virtfiit h3 {
    color: #0c9aff;
    text-align: center;
    margin-bottom: 30px;
}

.what-is-virtfiit p {
    color: #fff;
    font-size: 22px;
    font-size: calc(16px + 6 * ((100vw - 320px) / 1600));
    line-height: 40px;
    line-height: calc(34px + 6 * ((100vw - 320px) / 1600));
    text-align: center;
}

.virfiit-videos {
    margin: 0;
    margin-top: 30px;
    padding: 0;
}

    .virfiit-videos li {
        text-align: center;
        list-style: none;
    }

    .virfiit-videos .video-wrapper {
        position: relative;
        text-align: center;
        display: inline-block;
    }

    .virfiit-videos .video-play {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 43px;
        height: 43px;
        background: url(../images/video-play.png) center no-repeat;
    }

    .virfiit-videos .video-caption {
        font-size: 26px;
        font-size: calc(14px + 12 * ((100vw - 320px) / 1600));
        color: #fff;
        text-align: center;
        padding-top: 18px;
    }


/* ===== Homepage - Free Demo ===== */
section.homepage-free-demo {
    padding: 135px 0 180px;
}

.homepage-free-demo .row {
    position: relative;
}

.free-demo-img {
    position: absolute;
    right: 0;
    top: 18px;
    max-height: 100%;
}

.homepage-free-demo h3 {
    display: block;
    color: #0c9aff;
    margin-bottom: 12px;
}

.homepage-free-demo p {
    font-size: 22px;
    font-size: calc(16px + 6 * ((100vw - 320px) / 1600));
    line-height: 40px;
    line-height: calc(34px + 6 * ((100vw - 320px) / 1600));
    color: #10253e;
}

.free-demo-head {
    max-width: 750px;
    margin-bottom: 30px;
}

.demo-form {
    max-width: 1270px;
    width: 96%;
    padding: 70px 30% 55px 65px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0d9aff+1,5ed1fb+100 */
    background: #0d9aff; /* Old browsers */
    background: -moz-linear-gradient(top, #0d9aff 1%, #5ed1fb 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #0d9aff 1%,#5ed1fb 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #0d9aff 1%,#5ed1fb 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0d9aff', endColorstr='#5ed1fb',GradientType=0 ); /* IE6-9 */
}

    .demo-form form input {
        width: 100%;
        border-radius: 50px;
        border: none;
        padding: 13px 30px;
        background: rgba(255, 255, 255, 0.45);
        margin-bottom: 30px;
        color: #fff;
        font-size: 22px;
    }

        .demo-form form input:focus {
            outline: none;
        }

        .demo-form form input::placeholder {
            color: #fff;
        }

    .demo-form form .btn {
        width: 100%;
        max-width: 234px;
        height: 50px;
        font-size: 16px;
        border-radius: 40px;
        text-transform: uppercase;
        font-family: 'Nunito-Bold';
        font-weight: normal;
    }


/* ===== Homepage - App Features - Common Styling ===== */
.homepage-app-features h3 {
    color: #0c9aff;
    margin-bottom: 55px;
}

.homepage-app-features .features-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.homepage-app-features li a {
    display: block;
    padding: 20px;
    padding-left: 90px;
    padding-top: 30px;
    background-position: 22px 20px;
    background-repeat: no-repeat;
    margin-bottom: 10px;
    border-radius: 10px;
    text-decoration: none;
}

.homepage-app-features h5 {
    font-size: 28px;
    font-family: 'Nunito-SemiBold';
    font-weight: normal;
    margin-bottom: 20px;
}

.homepage-app-features p {
    font-size: 18px;
    line-height: 40px;
}

.homepage-app-features li a.active h5, .homepage-app-features li a.active p {
    color: #fff;
}


/* ===== Homepage - Programming ===== */
section.homepage-programming, section.homepage-scale {
    background: #10253e;
    clip-path: polygon(0 12%, 100% 0%, 100% 88%, 0% 100%);
    padding: 160px 0 120px;
}

.homepage-programming h5, .homepage-programming p, .homepage-scale h5, .homepage-scale p {
    color: #3c5776;
}

.programing-feature-display img, .scale-feature-display img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -100px;
    max-width: 750px;
}

.homepage-programming li a, .homepage-scale li a {
    text-decoration: none;
}

    .homepage-programming li a.active, .homepage-scale li a.active {
        background-color: #11406d;
    }

    .homepage-programming li a.pro-icon-1 {
        background-image: url(../images/pro-icon-1.png);
    }

        .homepage-programming li a.pro-icon-1.active {
            background-image: url(../images/pro-icon-1-active.png);
        }

    .homepage-programming li a.pro-icon-2 {
        background-image: url(../images/pro-icon-2.png);
    }

        .homepage-programming li a.pro-icon-2.active {
            background-image: url(../images/pro-icon-2-active.png);
        }

    .homepage-programming li a.pro-icon-3 {
        background-image: url(../images/pro-icon-3.png);
    }

        .homepage-programming li a.pro-icon-3.active {
            background-image: url(../images/pro-icon-3-active.png);
        }

/* ===== Homepage - Know Your Data ===== */
section.homepage-kyd {
    padding-top: 40px;
}

.homepage-kyd li a.active {
    background-color: #092b52;
}

.homepage-kyd li a.kyd-icon-1 {
    background-image: url(../images/kyd-icon-1.png);
}

    .homepage-kyd li a.kyd-icon-1.active {
        background-image: url(../images/kyd-icon-1-active.png);
    }

.homepage-kyd li a.kyd-icon-2 {
    background-image: url(../images/kyd-icon-2.png);
}

    .homepage-kyd li a.kyd-icon-2.active {
        background-image: url(../images/kyd-icon-2-active.png);
    }

.homepage-kyd li a.kyd-icon-3 {
    background-image: url(../images/kyd-icon-3.png);
}

    .homepage-kyd li a.kyd-icon-3.active {
        background-image: url(../images/kyd-icon-3-active.png);
    }

.homepage-kyd h5, .homepage-kyd p {
    color: #10253e;
}

/* ===== Homepage - Scale ===== */
.homepage-scale li a.scale-icon-1 {
    background-image: url(../images/scale-icon-1.png);
}

    .homepage-scale li a.scale-icon-1.active {
        background-image: url(../images/scale-icon-1-active.png);
    }

.homepage-scale li a.scale-icon-2 {
    background-image: url(../images/scale-icon-2.png);
}

    .homepage-scale li a.scale-icon-2.active {
        background-image: url(../images/scale-icon-2-active.png);
    }

.homepage-scale li a.scale-icon-3 {
    background-image: url(../images/pro-icon-3.png);
}

    .homepage-scale li a.scale-icon-3.active {
        background-image: url(../images/pro-icon-3-active.png);
    }


/* ===== Homepage - Get the Virtfiit ===== */
.get-virtfiit h3 {
    color: #10253e;
    margin-bottom: 20px;
}

    .get-virtfiit h3 span {
        color: #0c9aff;
    }

.get-virtfiit p {
    font-size: 20px;
    line-height: 40px;
    color: #10253e;
    margin-bottom: 30px;
}


/* ===== Footer ===== */
.footer {
    background: url(../images/footer-bg.png) right top no-repeat;
    background-size: cover;
    padding: 240px 0 0;
}

.footer-logo {
    flex: 0 0 19%;
    max-width: 19%;
}

    .footer-logo img {
        max-width: 223px;
    }

.footer h6 {
    font-size: 20px;
    font-size: calc(12px + 8 * ((100vw - 320px) / 1600));
    font-family: 'Nunito-Bold';
    font-weight: normal;
    color: #fff;
    margin-bottom: 25px;
    margin-top: 10px;
}

.footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer li {
    line-height: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    font-size: calc(12px + 4 * ((100vw - 320px) / 1600));
}

    .footer li, .footer li a {
        color: #afdeff;
        text-decoration: none;
    }

.contact-column {
    padding-left: 80px;
}

ul.contact-icon {
    margin-bottom: 40px;
}

.contact-icon li a {
    padding-left: 30px;
}

.contact-icon .email-icon {
    background: url(../images/email-icon.png) left top no-repeat;
}

.contact-icon .phone-icon {
    background: url(../images/phone-icon.png) left top no-repeat;
}

.social-icon {
    display: flex;
}

    .social-icon li {
        margin-right: 10px;
    }

    .social-icon a {
        width: 29px;
        height: 29px;
        display: block;
        text-decoration: none;
        text-indent: -9999px;
    }

    .social-icon .instagram-icon {
        background-image: url(../images/instagram-icon.png);
    }

    .social-icon .facebook-icon {
        background-image: url(../images/facebook-icon.png);
    }

    .social-icon .youtube-icon {
        background-image: url(../images/youtube-icon.png);
    }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    margin-top: 30px;
}

    .footer-bottom > div {
        justify-content: center;
        color: #fff;
    }

    .footer-bottom p {
        color: #fff;
        font-size: 18px;
        font-family: 'Nunito-SemiBold';
        font-weight: normal;
        margin: 34px 0;
    }


/* ===== Account Section ===== */
.full-overlay-bg {
    background: url(../images/full-overlay-bg.png) center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

    .full-overlay-bg:before {
        content: '';
        left: 0;
        right: 0;
        top: 0;
        bottom: -50px;
        position: absolute;
        background-color: rgba(51, 174, 254, 0.9);
        z-index: -1;
    }

    .full-overlay-bg main {
        width: 100%;
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.full-overlay-header {
    margin-top: 28px;
}

    .full-overlay-header .btn {
        width: 122px;
    }

.trial-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.box-center {
    /*position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);*/
}

    .box-center .logo {
        width: 240px;
        margin-bottom: 60px;
    }

.box-md .white-box {
    max-width: 621px;
}

.box-center p {
    font-size: 14px;
}

    .box-center p span {
        font-family: 'Nunito-ExtraBold';
        font-weight: normal;
    }

.white-box {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: -9px 0 15px rgba(0, 0, 0, 0.1);
    padding: 30px 50px;
    width: 80vw;
    margin-bottom: 50px;
}

    .white-box h4 {
        font-size: 30px;
        font-family: 'Nunito-Bold';
        font-weight: normal;
        margin: 0;
        text-align: center;
        margin-bottom: 30px;
    }

.login-main .white-box {
    max-width: 390px;
    margin-bottom: 50px;
}

.white-box form input, .account-section input, .account-section select {
    border-radius: 40px;
    border: 1px solid #e5e5e5;
    font-size: 12px;
    /*color: #ccc !important;*/
    /*height: 100%;*/
    padding: 13px;
    padding-left: 42px;
    background-repeat: no-repeat;
    background-position: 13px 11px;
    color: #666;
    top: 2px;
}

    .white-box form input:focus, .account-section input:focus, .account-section select:focus {
        border: 1px solid #0c9aff;
        box-shadow: none;
        outline: none;
    }

.white-box form .control-label {
    position: absolute;
    background-color: transparent;
    padding: 1px 10px;
    color: #aeaeae;
    font-size: 12px;
    margin-bottom: 0;
    top: -11px;
    left: 10px;
    z-index: 1
}
    /*.white-box form :not(.form-group-alt) label:not(.custom-control-label):before {}*/
    .white-box form .control-label:before {
        content: '';
        background: #fff;
        left: 0;
        right: 0;
        top: 0;
        position: absolute;
        height: 12px;
        z-index: -1;
    }

.white-box form .form-group.formFocused label {
    color: #0c9aff;
}

.form-group label .required {
    color: #fd2121;
    position: relative;
    top: -5px;
    font-weight: normal;
}

.form-dropdown {
    position: relative;
}

    .form-dropdown span {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-60%);
    }

    .form-dropdown::after {
        content: "";
        position: absolute;
        right: 17px;
        top: 50%;
        transform: translateY(-50%);
        border-style: solid;
        border-width: 11px 8px 0 8px;
        border-color: #d4d3d3 transparent transparent transparent;
    }

.account-section select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

    .white-box form input::placeholder, .account-section select::placeholder {
        font-size: 12px;
        color: #aeaeae;
    }

.white-box .btn:hover {
    color: #fff;
}

/*.account-section .email-icon input{
    background-image: url(../images/account-email-icon.png);
}
.account-section .email-icon input:focus{
    background-image: url(../images/account-email-icon-active.png);
}
.account-section .password-icon input{
    background-image: url(../images/account-password-icon.png);
}
.account-section .password-icon input:focus{
    background-image: url(../images/account-password-icon-active.png);
}*/


.form-check {
    font-size: 12px;
    color: #aeaeae;
    padding: 0;
    display: flex;
    margin-bottom: 30px;
}

    .form-check a {
        color: #10253e;
    }

.form-checkbox {
    position: relative;
    padding-left: 35px;
}

.form-check-input {
    margin: 0;
    left: 15px;
    height: auto !important;
    border: 1px solid #c6c6c6;
}

.white-bottom-text {
    font-size: 11px;
    color: #aeaeae;
}

    .white-bottom-text a {
        color: #10253e;
        font-family: 'Nunito-Bold';
        font-weight: normal;
    }

.box-footer {
    color: #fff;
    font-size: 11px;
    margin-bottom: 15px;
}

    .box-footer a {
        color: #fff;
        margin: 0 5px 5px;
        display: inline-block;
    }

/* ===== Free Trial Box ===== */
.free-trial-box form {
    max-width: 331px;
    margin-top: 30px !important;
}

.free-trial-box .form-check, .free-trial-box .white-bottom-text p {
    font-size: 11px;
    color: #10253e;
}


/* ===== Setup Admi ===== */
.setup-admin .white-box {
    max-width: 571px;
    padding: 30px;
}

.setup-admin form {
    max-width: 291px;
}
/*.setup-admin .form-group{
    margin-bottom: 35px;
}*/

/*.account-section .name-icon input{
    background-image: url(../images/user-icon.png);
}
.account-section .name-icon input:focus{
    background-image: url(../images/user-icon-active.png);
}
.account-section .city-icon input{
    background-image: url(../images/location-icon.png);
}
.account-section .city-icon input:focus{
    background-image: url(../images/location-icon-active.png);
}*/

input:-webkit-autofill {
    background-color: #fff !important;
}

.account-section .email-icon input,
.account-section .password-icon input,
.account-section .user-icon input,
.account-section .name-icon input,
.account-section .phone-icon input,
.account-section .location-icon input,
.account-section .city-icon input,
.account-section .building-icon input {
    padding-left: 40px;
}

.account-section .email-icon::before,
.account-section .password-icon::before,
.account-section .user-icon::before,
.account-section .name-icon::before,
.account-section .phone-icon::before,
.account-section .location-icon::before,
.account-section .city-icon::before,
.account-section .building-icon::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 16px;
    /*transform: translateY(-50%);*/
    width: 18px;
    height: 18px;
}

.account-section .email-icon::before {
    background-image: url(../images/account-email-icon.png);
}

.account-section .formFocused.email-icon::before {
    background-image: url(../images/account-email-icon-active.png);
}

.account-section .password-icon::before {
    background-image: url(../images/account-password-icon.png);
}

.account-section .formFocused.password-icon::before {
    background-image: url(../images/account-password-icon-active.png);
}

.account-section .user-icon::before, .account-section .name-icon::before {
    background-image: url(../images/user-icon.png);
}

.account-section .formFocused.user-icon::before, .account-section .formFocused.name-icon::before {
    background-image: url(../images/user-icon-active.png);
}

.account-section .phone-icon::before {
    background-image: url(../images/call-icon.png);
}

.account-section .formFocused.phone-icon::before {
    background-image: url(../images/call-icon-active.png);
}

.account-section .location-icon::before, .account-section .city-icon::before {
    background-image: url(../images/location-icon.png);
}

.account-section .formFocused.location-icon::before, .account-section .formFocused.city-icon::before {
    background-image: url(../images/location-icon-active.png);
}

.account-section .building-icon::before {
    background-image: url(../images/building-icon.png);
}

.account-section .formFocused.building-icon::before {
    background-image: url(../images/building-icon-active.png);
}


.verification-box .white-box {
    max-width: 501px;
    text-align: center;
}

.verification-fields .form-group {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.account-section .verification-fields input {
    width: 32px;
    padding: 8px 5px;
    border-radius: 10px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.07);
    margin-left: 13px;
    margin-right: 13px;
    text-align: center;
    font-size: 20px;
    font-family: 'Nunito-Bold';
    font-weight: normal;
    border-color: #eee;
}

p.resend-code {
    font-size: 11px;
    color: #aeaeae;
}

.resend-code a {
    color: #10253e;
    font-family: 'Nunito-Bold';
    font-weight: normal;
}

.verification-box .btn {
    max-width: 251px;
}


/* ===== Create Account ===== */
.box-center.onboarding-section {
    left: auto;
    top: 50px;
    transform: translate(0, 0);
    position: relative;
    text-align: center;
}

.onboarding-section .white-box {
    max-width: 856px;
    background: #f0f9ff;
    padding-left: 52px;
    padding-right: 52px;
    margin-left: auto;
    margin-right: auto;
}

.onboarding-section .form-group-alt {
    background: #fff;
    padding: 50px 48px;
    border-radius: 20px;
    box-shadow: 1px 0 20px 10px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

.onboarding-section .form-group-alt-2 {
    padding: 15px 48px;
}

.onboarding-section .form-group-alt label {
    color: #000;
    font-size: 16px;
    font-family: 'Nunito-Bold';
    font-weight: 300;
    text-align: left;
    display: block;
    position: relative;
    left: 0;
    top: 0;
    padding-left: 0;
}

    .onboarding-section .form-group-alt label.small {
        color: #c9c9c9;
        font-family: 'Nunito';
        font-size: 12px;
        line-height: 20px;
        margin-bottom: 15px;
    }

.onboarding-section .form-group-alt input {
    border: none;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    margin-top: 10px;
}

    .onboarding-section .form-group-alt input, .onboarding-section .form-group-alt input::placeholder {
        font-size: 14px;
        left: 13px;
    }

        .onboarding-section .form-group-alt input:focus {
            border: none;
        }

.onboarding-section .form-group-alt .form-dropdown select {
    padding-left: 22px;
}

.onboarding-section .form-group-alt .form-dropdown::after {
    right: 32px;
}

.onboarding-section .btn {
    min-width: 89px;
}

.onboarding-section .form-check {
    margin-bottom: 10px;
}

    .onboarding-section .form-check:last-child {
        margin-bottom: 0;
    }

.onboarding-section .checkbox-group label {
    margin-bottom: 0;
    font-size: 14px;
    color: #10253e;
}

.onboarding-section .checkbox-group .form-check-input {
    position: relative;
    margin: 0;
    /*visibility: hidden;*/
    z-index: 999;
    opacity: 0;
    width: 15px;
    height: 15px !important;
}

.onboarding-section .checkbox-group .custom-checkbox {
    width: 15px;
    height: 15px;
    display: inline-block;
    background: rgba(12, 154, 255, 0.2);
    border-radius: 4px;
    margin-right: 12px;
    margin-top: 3px;
    position: relative;
}

.onboarding-section .checkbox-group .form-check-input:checked + .custom-checkbox {
    background: rgba(12, 154, 255, 1);
}

    .onboarding-section .checkbox-group .form-check-input:checked + .custom-checkbox:before,
    .onboarding-section .checkbox-group .form-check-input:checked + .custom-checkbox:after {
        content: "";
        position: absolute;
        background: #fff;
        width: 1px;
        height: 9px;
    }

    .onboarding-section .checkbox-group .form-check-input:checked + .custom-checkbox:before {
        transform: rotate(-45deg);
        height: 5px;
        top: 7px;
        left: 4.7px;
    }

    .onboarding-section .checkbox-group .form-check-input:checked + .custom-checkbox:after {
        transform: rotate(45deg);
        top: 3px;
        left: 8.7px;
    }

.onboarding-section .checkbox-group.form-check-radio .custom-checkbox {
    border-radius: 50px;
}


/* Wizard Pagination */
.wizard-pagination {
    text-align: center;
    width: 100% !important;
    margin: 0 !important;
    margin-bottom: 1rem !important;
}

    .wizard-pagination li {
        display: inline-block;
        margin: 0 5px;
        font-size: 0;
    }

        .wizard-pagination li a {
            display: block;
            background: #87cdff;
            width: 8px;
            height: 5px;
            border-radius: 10px;
        }

        .wizard-pagination li.active a {
            background: #0c9aff;
            width: 28px;
        }


/* ===== Sub Pages - Common ===== */
.sub-header header {
    height: 405px;
    background-image: url(../images/sub-header-bg.png);
    background-position: left top;
    background-size: cover;
    margin-bottom: calc(50px + 10 * ((100vw - 320px) / 1600));
}

    .sub-header header h1 {
        font-size: 60px;
        font-size: calc(30px + 30 * ((100vw - 320px) / 1600));
        color: #fff;
        font-family: 'Nunito-ExtraBold';
        font-weight: normal;
        text-align: center;
        margin-top: 100px;
    }


/* Founder's Message */
section.founder-message {
    padding-bottom: 180px;
}

.founder-message .col {
    flex: 0 0 40%;
    max-width: 40%;
}

.founder-message .founder-message-content {
    flex: 0 0 60%;
    max-width: 60%;
    padding-left: 3.5%;
}

.founder-message h3 {
    font-size: calc(30px + 10 * ((100vw - 320px) / 1600));
    font-family: 'Nunito-Bold';
    font-weight: normal;
    color: #0c9aff;
    position: relative;
    margin-bottom: calc(30px + 10 * ((100vw - 320px) / 1600));
}

    .founder-message h3:after {
        content: "";
        position: absolute;
        left: -25px;
        top: -35px;
        width: 89px;
        height: 89px;
        background: rgb(12,154,255);
        background: linear-gradient(180deg, rgba(12,154,255,1) 0%, rgba(94,210,251,1) 100%);
        opacity: 0.2;
        border-radius: 50%;
    }

.founder-message p {
    font-size: 24px;
    font-size: calc(12px + 12 * ((100vw - 320px) / 1600));
    line-height: 40px;
    line-height: calc(28px + 12 * ((100vw - 320px) / 1600));
    text-align: justify;
}

.founder-details {
    max-width: 350px;
    margin-top: calc(80px + 30 * ((100vw - 320px) / 1600));
}

    .founder-details h5, .founder-details p {
        text-align: center;
    }

    .founder-details h5 {
        color: #0c9aff;
        font-size: 28px;
        font-size: calc(16px + 12 * ((100vw - 320px) / 1600));
        font-family: 'Nunito-Bold';
        font-weight: normal;
    }

    .founder-details p {
        font-size: 24px;
        font-size: calc(12px + 12 * ((100vw - 320px) / 1600));
        color: #10253e;
    }

        .founder-details p span {
            font-family: 'Nunito-Bold';
            font-weight: normal;
        }

/* Virtfiit Stats */
.virtfiit-stats-main {
    background-color: #ecf7ff;
    border-bottom-right-radius: calc(250px + 150 * ((100vw - 320px) / 1600));
}

    .virtfiit-stats-main h3 {
        font-size: 56px;
        font-size: calc(40px + 16 * ((100vw - 320px) / 1600));
        font-family: 'Nunito-Bold';
        font-weight: normal;
        color: #0c9aff;
        margin-bottom: 30px;
    }

    .virtfiit-stats-main p {
        font-size: 24px;
        font-size: calc(12px + 12 * ((100vw - 320px) / 1600));
        line-height: 36px;
        line-height: calc(24px + 12 * ((100vw - 320px) / 1600));
    }

.virtfiit-stats {
    text-align: center;
}

    .virtfiit-stats li {
        list-style: none;
        padding: calc(5px + 15 * ((100vw - 320px) / 1600));
    }

        .virtfiit-stats li div {
            width: calc(130px + 97 * ((100vw - 320px) / 1600));
            height: calc(130px + 97 * ((100vw - 320px) / 1600));
            padding: 30px;
            margin: 0 auto;
            border-radius: calc(60px + 15 * ((100vw - 320px) / 1600));
            background: rgba(12,154,255, 0.2);
            background: linear-gradient(180deg, rgba(12,154,255,0.2) 0%, rgba(94,210,251,0.2) 100%);
            justify-content: center;
            align-items: center;
        }

        .virtfiit-stats li:nth-child(1) div, .virtfiit-stats li:nth-child(3) div {
            padding-right: 50px;
        }

        .virtfiit-stats li:nth-child(2) div, .virtfiit-stats li:nth-child(4) div {
            padding-left: 50px;
        }

        .virtfiit-stats li:nth-child(1) div {
            border-bottom-right-radius: calc(120px + 30 * ((100vw - 320px) / 1600));
        }

        .virtfiit-stats li:nth-child(2) div {
            border-bottom-left-radius: calc(120px + 30 * ((100vw - 320px) / 1600));
        }

        .virtfiit-stats li:nth-child(3) div {
            border-top-right-radius: calc(120px + 30 * ((100vw - 320px) / 1600));
        }

        .virtfiit-stats li:nth-child(4) div {
            border-top-left-radius: calc(120px + 30 * ((100vw - 320px) / 1600));
        }

    .virtfiit-stats img {
        margin-bottom: 15px;
    }

    .virtfiit-stats h6 {
        font-size: 34px;
        font-size: calc(22px + 12 * ((100vw - 320px) / 1600));
        font-family: 'Nunito-Bold';
        font-weight: normal;
        color: #10253e;
        margin-bottom: 0;
    }

    .virtfiit-stats p {
        font-size: 20px;
        font-size: calc(12px + 8 * ((100vw - 320px) / 1600));
        color: #10253e;
    }

/* Our Team - Our Mission - Our Vision */
.our-mission {
    background-color: #ecf7ff;
    border-top-left-radius: calc(250px + 150 * ((100vw - 320px) / 1600));
}

section.our-vision {
    background: url(../images/v-bg-1.png) center bottom no-repeat;
    background-size: contain;
    padding-top: 100px;
    padding-bottom: 250px;
}

.our-team-content, .our-vision-content {
    padding-left: 40px;
}

.our-team h3, .our-mission h3, .our-vision h3 {
    color: #0c9aff;
    margin-bottom: 30px;
}

.our-team p, .our-mission p, .our-vision p {
    font-size: 24px;
    font-size: calc(12px + 12 * ((100vw - 320px) / 1600));
    line-height: 36px;
    line-height: calc(24px + 12 * ((100vw - 320px) / 1600));
}

    .our-team p:last-child, .our-mission p:last-child, .our-vision p:last-child {
        margin-bottom: 0;
    }


/* ===== Free Access ===== */
section.free-access-main {
    padding-top: 20px;
}

.free-access-main .free-access-col {
    position: relative;
}

    .free-access-main .free-access-col:before {
        content: "";
        position: absolute;
        background-color: #10253e;
        border-bottom-right-radius: calc(100px + 100 * ((100vw - 320px) / 1600));
        width: 91%;
        height: 100%;
        z-index: 0;
    }

    .free-access-main .free-access-col > div {
        z-index: 1;
        position: relative;
        background: url(../images/v-bg-2.png) 15px top no-repeat;
        background-size: contain;
        height: calc(160px + 115 * ((100vw - 320px) / 1600));
    }

.free-access-col a {
    display: block;
    font-size: 16px;
    font-size: calc(12px + 4 * ((100vw - 320px) / 1600));
    text-transform: uppercase;
    padding-top: 12px;
    padding-bottom: 12px;
}

.free-access-col h4 {
    font-size: 40px;
    font-size: calc(24px + 16 * ((100vw - 320px) / 1600));
    font-family: 'Nunito-Bold';
    font-weight: normal;
    margin-bottom: 20px;
    color: #fff;
}

    .free-access-col h4 span {
        color: #0c9aff;
    }

.free-access-col p {
    font-size: 20px;
    font-size: calc(14px + 6 * ((100vw - 320px) / 1600));
    line-height: 40px;
    line-height: calc(34px + 6 * ((100vw - 320px) / 1600));
    color: #fff;
}

    .free-access-col p:last-child {
        margin-bottom: 0;
    }


/* ===== Contact Us ===== */
.form-box {
    box-shadow: -10px 10px 50px rgba(0, 0, 0, 0.08);
    border-radius: 30px;
}

    .form-box > div > .col {
        padding: 50px 40px;
    }

        .form-box > div > .col.form-group-main {
            padding-left: 55px;
        }

        .form-box > div > .col.contact-information-content {
            padding-right: 40px;
        }

    .form-box h3 {
        font-size: 39px;
        font-size: calc(24px + 15 * ((100vw - 320px) / 1600));
        text-align: center;
        color: #10253e;
    }

    .form-box p {
        font-size: 20px;
        font-size: calc(18px + 2 * ((100vw - 320px) / 1600));
        line-height: 42px;
        line-height: calc(34px + 8 * ((100vw - 320px) / 1600));
        text-align: center;
        color: #10253e;
    }

.form-group-main form {
    margin-top: 60px;
}

.form-group-main .form-group {
    margin-bottom: 30px;
}

.form-group-main .form-control {
    min-height: 64px;
}

.form-group-main .form-dropdown select {
    appearance: none;
    -webkit-appearance: none;
}

.form-group-main .form-dropdown:after {
    right: 38px;
}

.form-group-main textarea {
    height: 164px;
    border-radius: 10px;
    resize: none;
    padding-top: 25px;
}

.form-group-main .btn {
    min-height: 50px;
    box-shadow: 2px 0 10px rgba(27, 164, 254, 0.4);
    text-transform: uppercase;
    margin-top: 20px;
}

.form-group-main .btn-primary-gradient {
    background: #5ed2fb;
    background: -moz-linear-gradient(35deg, #5ed2fb 0%, #0c9aff 65%, #0c9aff 100%);
    background: -webkit-linear-gradient(35deg, #5ed2fb 0%, #0c9aff 65%,#0c9aff 100%);
    background: linear-gradient(35deg, #5ed2fb 0%, #0c9aff 65%,#0c9aff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5ed2fb', endColorstr='#0c9aff',GradientType=1 );
}

.contact-information-content {
    background-color: #10253e;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

    .contact-information-content h3 {
        margin-bottom: calc(54px + 10 * ((100vw - 320px) / 1600));
        margin-top: calc(30px + 10 * ((100vw - 320px) / 1600));
    }

    .contact-information-content h3, .contact-information-content p, .contact-information-content a {
        color: #fff;
    }

    .contact-information-content p, .contact-information-content a {
        margin-bottom: 0;
        font-size: 24px;
        font-size: calc(20px + 4 * ((100vw - 320px) / 1600));
        line-height: 29px;
        line-height: calc(40px + 4 * ((100vw - 320px) / 1600));
    }

    .contact-information-content a {
        text-decoration: none;
    }

    .contact-information-content ul {
        padding: 0;
        list-style: none;
    }

    .contact-information-content li {
        text-align: center;
    }

        .contact-information-content li:not(:last-child) {
            margin-bottom: calc(54px + 10 * ((100vw - 320px) / 1600));
        }

        .contact-information-content li span {
            width: 58px;
            height: 58px;
            display: inline-block;
            background-size: 100%;
            margin-bottom: calc(18px + 6 * ((100vw - 320px) / 1600));
        }

            .contact-information-content li span.contact-icon-location {
                background-image: url(../images/contact-icon-1.png);
            }

            .contact-information-content li span.contact-icon-email {
                background-image: url(../images/contact-icon-2.png);
            }

            .contact-information-content li span.contact-icon-phone {
                background-image: url(../images/contact-icon-3.png);
            }

.company-location {
    margin-top: calc(100px + 72 * ((100vw - 320px) / 1600));
}

    .company-location iframe {
        border-radius: calc(16px + 4 * ((100vw - 320px) / 1600));
    }


/* ===== Pricing ===== */
.pricing-plan {
    background: url(../images/v-bg-3.png) center 280px no-repeat;
    background-size: contain;
}

.pricing-header h3 {
    font-size: 56px;
    font-size: calc(40px + 16 * ((100vw - 320px) / 1600));
    font-family: 'Nunito-Bold';
    font-weight: normal;
    color: #0c9aff;
}

.pricing-header p {
    font-size: 26px;
    font-size: calc(20px + 6 * ((100vw - 320px) / 1600));
    line-height: 40px;
    line-height: calc(34px + 6 * ((100vw - 320px) / 1600));
}

.nav-pills {
    margin-left: auto;
    margin-right: auto;
}

.nav-tabs {
    border: none;
}

    .nav-tabs li {
        margin-left: 26px;
        margin-right: 26px;
    }

.nav-pills .nav-tabs a {
    position: relative;
    display: flex;
    box-sizing: border-box;
    border: 2px solid transparent;
    border-radius: 10px;
    width: 240px;
    color: #10253e;
    background: #fff;
    justify-content: center;
    font-size: 30px;
    font-size: calc(24px + 6 * ((100vw - 320px) / 1600));
    line-height: 74px;
    line-height: calc(60px + 14 * ((100vw - 320px) / 1600));
    font-family: 'Nunito-Bold';
    font-weight: normal;
}

    .nav-pills .nav-tabs a:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
        margin: -4px;
        border-radius: 12px;
        background: #d4d3d3;
    }

    .nav-pills .nav-tabs a.active {
        background: #d5f0ff;
        color: #0c9aff;
    }

        .nav-pills .nav-tabs a.active:before {
            background: #5ed2fb;
            background: -moz-linear-gradient(365deg, #5ed2fb 0%, #0c9aff 100%);
            background: -webkit-linear-gradient(365deg, #5ed2fb 0%, #0c9aff 100%);
            background: linear-gradient(365deg, #5ed2fb 0%, #0c9aff 100%);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5ed2fb', endColorstr='#0c9aff',GradientType=1 );
        }

.selected-plan {
    position: absolute;
    background: #10253e;
    width: calc(24px + 4 * ((100vw - 320px) / 1600));
    height: calc(24px + 4 * ((100vw - 320px) / 1600));
    border-radius: calc(24px + 4 * ((100vw - 320px) / 1600));
    right: calc(-16px + 6 / 2 * ((100vw - 320px) / 1600));
    top: calc(-16px + 6 / 2 * ((100vw - 320px) / 1600));
}

    .selected-plan:before, .selected-plan:after {
        content: "";
        position: absolute;
        left: 9.5px;
        top: 11px;
        width: 0.1rem;
        height: 14px;
        background: #fff;
        border-radius: 8px;
    }

    .selected-plan:before {
        transform: rotate(-40deg);
        height: 8px;
    }

    .selected-plan:after {
        transform: rotate(45deg);
        top: 6px;
        left: 15px;
    }

.plan-offer {
    position: absolute;
    top: -20px;
    right: -58px;
    width: 116px;
    height: 31px;
    text-align: center;
    color: #fff;
    background: #ed1212;
    border-radius: 6px;
    font-size: 16px;
    font-size: calc(14px + 3 * ((100vw - 320px) / 1600));
    line-height: calc(29px + 3 * ((100vw - 320px) / 1600));
    font-family: 'Nunito';
    font-weight: normal;
}

.pricing-plan .price-box {
    border-radius: calc(14px + 6 * ((100vw - 320px) / 1600));
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    background: #fff;
}

    .pricing-plan .price-box > h4, .pricing-plan .price-box > p, .pricing-plan .price-box > div {
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 25px;
        padding-right: 25px;
    }

    .pricing-plan .price-box h4 {
        font-size: 44px;
        font-size: calc(38px + 6 * ((100vw - 320px) / 1600));
        line-height: 140px;
        line-height: calc(94px + 46 * ((100vw - 320px) / 1600));
        color: #fff;
        font-family: 'Nunito-Bold';
        font-weight: normal;
        text-align: center;
        background: #5ed2fb;
        background: -moz-linear-gradient(365deg, #5ed2fb 0%, #0c9aff 100%);
        background: -webkit-linear-gradient(365deg, #5ed2fb 0%, #0c9aff 100%);
        background: linear-gradient(365deg, #5ed2fb 0%, #0c9aff 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5ed2fb', endColorstr='#0c9aff',GradientType=1 );
        border-top-left-radius: calc(14px + 6 * ((100vw - 320px) / 1600));
        border-top-right-radius: calc(14px + 6 * ((100vw - 320px) / 1600));
    }

    .pricing-plan .price-box .price {
        font-size: 52px;
        font-size: calc(40px + 12 * ((100vw - 320px) / 1600));
        font-family: 'Nunito-ExtraBold';
        font-weight: normal;
        color: #10253e;
        text-align: center;
    }

        .pricing-plan .price-box .price span {
            font-size: 26px;
            font-size: calc(16px + 10 * ((100vw - 320px) / 1600));
            font-family: 'Nunito';
            font-weight: normal;
            display: block;
        }

    .pricing-plan .price-box select {
        border-radius: 10px;
        background-color: #f6f6f6;
        border: 1px solid #d4d3d3;
        padding-top: calc(9px + 10 * ((100vw - 320px) / 1600));
        padding-bottom: calc(9px + 10 * ((100vw - 320px) / 1600));
        font-size: 22px;
        font-size: calc(16px + 6 * ((100vw - 320px) / 1600));
        appearance: none;
        -webkit-appearance: none;
    }

    .pricing-plan .price-box .form-dropdown::after {
        right: 42px;
    }

    .pricing-plan .price-box p {
        font-size: 16px;
        font-size: calc(10px + 6 * ((100vw - 320px) / 1600));
        text-align: center;
        margin-top: 30px;
        margin-bottom: 30px;
    }

        .pricing-plan .price-box p:last-child {
            margin-top: 20px;
            margin-bottom: 25px;
        }

        .pricing-plan .price-box p a {
            color: #0c9aff;
            font-style: italic;
        }

.plan-features h5 {
    color: #0c9aff;
    font-size: 30px;
    font-size: calc(22px + 8 * ((100vw - 320px) / 1600));
    font-family: 'Nunito-Bold';
    font-weight: normal;
    margin-bottom: calc(24px + 6 * ((100vw - 320px) / 1600));
}

.plan-features ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    background: url(../images/icon-check.png) left 4px no-repeat;
    padding-left: calc(25px + 10 * ((100vw - 320px) / 1600));
    padding-bottom: calc(15px + 10 * ((100vw - 320px) / 1600));
    flex: 0 0 50%;
    max-width: 50%;
    font-size: 20px;
    font-size: calc(14px + 6 * ((100vw - 320px) / 1600));
}

.special-feature {
    color: #0c9aff;
    font-family: 'Nunito-Bold';
    font-style: italic;
}

/* Brand App */
.brand-app {
    background-color: #10253e;
    border-top-right-radius: calc(175px + 125 * ((100vw - 320px) / 1600));
}

.brand-app-content {
    padding-left: calc(60px + 20 * ((100vw - 320px) / 1600));
}

.brand-app h3 {
    font-size: 56px;
    font-size: calc(40px + 16 * ((100vw - 320px) / 1600));
    font-family: 'Nunito-Bold';
    font-weight: normal;
    color: #0c9aff;
    margin-bottom: calc(20px + 12 * ((100vw - 320px) / 1600));
}

.brand-app p {
    font-size: 26px;
    font-size: calc(14px + 12 * ((100vw - 320px) / 1600));
    line-height: 40px;
    line-height: calc(28px + 12 * ((100vw - 320px) / 1600));
    color: #fff;
    margin-bottom: calc(16px + 12 * ((100vw - 320px) / 1600));
}

.brand-app .btn {
    font-size: 26px;
    font-size: calc(14px + 12 * ((100vw - 320px) / 1600));
}


/* FAQ */
section.faq-main {
    background: url(../images/v-bg-3.png) center no-repeat;
    padding: 140px 0 170px;
}

.faq-main h3 {
    text-align: center;
    color: #0c9aff;
    margin-bottom: calc(70px + 12 * ((100vw - 320px) / 1600));
}

.faq-main .accordion {
    max-width: 912px;
}

    .faq-main .accordion .card {
        border: none;
        border-bottom: 1px solid #d4d3d3;
    }

    .faq-main .accordion .card-header {
        padding: 0;
        border: none;
        background: none;
    }

    .faq-main .accordion h4 button {
        font-size: 26px;
        font-size: calc(20px + 6 * ((100vw - 320px) / 1600));
        line-height: 40px;
        line-height: calc(34px + 6 * ((100vw - 320px) / 1600));
        color: #10253e;
        display: block;
        width: 100%;
        text-align: left;
        border: none;
        position: relative;
        padding-top: calc(18px + 6 * ((100vw - 320px) / 1600));
        padding-bottom: calc(18px + 6 * ((100vw - 320px) / 1600));
        padding-left: 0;
    }

        .faq-main .accordion h4 button:hover, .faq-main .accordion h4 button:focus {
            text-decoration: none;
        }

        .faq-main .accordion h4 button span {
            background-color: rgba(12, 154, 255, 0.2);
            width: 25px;
            height: 25px;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            border-radius: 30px;
        }

            .faq-main .accordion h4 button span:before, .faq-main .accordion h4 button span:after {
                content: "";
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                width: 12px;
                height: 2px;
                background-color: #0c9aff;
            }

            .faq-main .accordion h4 button span:after {
                transform: translate(-50%, -50%) rotate(90deg);
            }

        .faq-main .accordion h4 button:not(.collapsed) span:after {
            background-color: transparent;
        }

    .faq-main .accordion .card-body {
        padding-left: calc(80px + 30 * ((100vw - 320px) / 1600));
        padding-right: 0;
        padding-top: 10px;
        color: #10253e;
        font-size: 20px;
        font-size: calc(16px + 4 * ((100vw - 320px) / 1600));
        line-height: 30px;
        line-height: calc(26px + 4 * ((100vw - 320px) / 1600));
    }

        .faq-main .accordion .card-body p {
            position: relative;
        }

            .faq-main .accordion .card-body p:after {
                content: "";
                position: absolute;
                left: -25px;
                top: 0;
                background: #0c9aff;
                width: 4px;
                height: 100%;
            }

.login-main.account-section {
    padding: 83px 0;
}

.verification-box.account-section {
    padding: 83px 0;
}

.custom-form-input .custom-checkbox {
    padding-left: 0;
}

    .custom-form-input .custom-checkbox label {
        position: relative;
        padding-left: 0;
        color: #aeaeae;
        font-size: 12px;
        padding-top: 1px !important;
        top: -3px;
    }

.custom-control-label::before, .custom-control-label::after {
    left: -1.1rem !important;
    width: 0.75rem;
    height: 0.75rem;
}

.custom-form-input a {
    color: #10253e;
    font-size: 12px;
}

.custom-form-input .form-checkbox {
    padding-left: 18px !important;
}


.staticErrorLabel {
    position: relative !important;
    left: 0px !important;
    top: 0px !important;
    padding: 0 !important;
    display: block !important;
    margin-bottom: 3px !important;
    margin-top: 3px !important;
    font-size: 14px !important;
    color: #ED2C00 !important;
    font-weight: 400 !important;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 13px;
    /*color: #aeaeae;*/
}

    .password-toggle .view-password {
        margin: 6px 4px;
        background-image: url(../images/visibility-off.svg);
        background-position: center;
        background-size: 100%;
        width: 16px;
        height: 12px;
        display: block;
    }

    .password-toggle.show-password {
        top: 14px;
    }

        .password-toggle.show-password .view-password {
            /*color: #0c9aff;*/
            background-image: url(../images/visibility-on.svg);
            height: 10px;
        }

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

/* -- quantity box -- */

.quantity {
    display: inline-block;
    margin: 15px 556px 15px 0px;
}

    .quantity .input-text.qty {
        width: 50px;
        height: 29px;
        padding: 0 5px;
        text-align: center;
        background-color: transparent;
        border: 1px solid #efefef;
    }

    .quantity.buttons_added {
        text-align: left;
        position: relative;
        white-space: nowrap;
        vertical-align: top;
    }

        .quantity.buttons_added input {
            display: inline-block;
            margin: 0;
            vertical-align: top;
            box-shadow: none;
        }

        .quantity.buttons_added .minus,
        .quantity.buttons_added .plus {
            padding: 0px 10px 1px;
            height: 30px;
            background-color: rgba(12, 154, 255, 0.2);
            border: 1px solid #efefef;
            cursor: pointer;
            border-radius: 6px;
        }

        .quantity.buttons_added .minus {
            border-right: 0;
        }

        .quantity.buttons_added .plus {
            border-left: 0;
        }

    /*.quantity.buttons_added .minus:hover,
            .quantity.buttons_added .plus:hover {
                background: #eeeeee;
            }*/

    .quantity input::-webkit-outer-spin-button,
    .quantity input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        -moz-appearance: none;
        margin: 0;
    }

    .quantity.buttons_added .minus:focus,
    .quantity.buttons_added .plus:focus {
        outline: none;
    }

.pac-container {
    border-top: none !important
}

.white-box form .control-label {
    background-color: #fff
}

.onboarding-section .form-group-alt input#MobileNumber {
    max-width: 380px
}

.timezoneSelect2 .form-dropdown span {
    position: unset !important;
    transform: none !important;
    width: 100% !important;
}

.timezoneSelect2 .select2-container--default .select2-selection--single {
    border-color: #dedede !important;
    border-radius: 50px !important;
    height: 43px;
    padding: 7px 10px 7px 10px;
}

.timezoneSelect2 .form-dropdown::after {
    display: none !important
}

.timezoneSelect2 .select2-container--default .select2-selection--single .select2-selection__rendered {
    text-align: left;
    padding-right: 45px
}

.timezoneSelect2 .select2-container--default .select2-selection--single .select2-selection__arrow {
    position: absolute !important;
    right: 35px !important;
    left: auto;
    top: 7px;
    width: auto !important;
}

.select2-container--default .select2-results > .select2-results__options {
    background-color: #fff !important;
    width: 100% !important
}

.timezoneSelect2 #timezone-error {
    position: absolute;
    bottom: -31px;
    top: auto;
    left: 18px !important;
    right: auto;
}

.user-login-type {
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0 !important
}

.login-main .white-box.user-login-page {
    height: auto !important;
    width: 100% !important;
    padding: 30px 20px !important
}

    .login-main .white-box.user-login-page a {
        width: 220px !important
    }


/* Country Field css start */

.countryFieldWrap {
    display: flex;
    /* align-items:center;*/
}

.countryFieldWrap label.dd-selected-text {
    display: none !important;
}

.countryFieldWrap .form-group {
    margin: 0;
}

.countryFieldWrap .dd-container {
    width: 52px !important;
}

.countryFieldWrap .dd-options {
    width: 260px !important;
}
/*.countryFieldWrap .dd-container .dd-select {
    width: 130px !important;
    min-width: 130px !important;
}*/
.countryFieldWrap .dd-container .dd-select a {
    height: 50px;
    background-color: transparent;
    border: 0px solid #aeaeae;
    border-radius: 0;
    border-bottom: 1px solid #aeaeae;
    padding: 0 10px 0px 4px;
}   

.countryFieldWrap .numberphongroup {
    flex: 1;
}

.countryFieldWrap .numberphongroup input.form-control {
    margin-top: 0px;
    border-bottom: 1px solid #aeaeae;
}

.countryFieldWrap .dd-select .dd-pointer {
    right: 10px !important;
}

.countryFieldWrap .dd-container .dd-options a {
    padding: 10px;
}

/* Country Field css End */



/* Country field css start */
/*.customcountryWrap {
    display: flex;
    border: 1px solid #aeaeae;
    border-radius: 24px;
}

.customcountryWrap .dd-container {
    width: 84px !important;
}

.customcountryWrap input.form-control {
    padding-left: 0px;
    border: 0;
    margin: 0;
}

.customcountryWrap .dd-container a.dd-selected {
    border: 0px;
}*/

/* Country field css End */



@media (max-width: 767px) {
    .white-box {
        width: calc(100% - 15px);
        margin: auto;
        padding: 20px 15px 30px
    }

        .white-box h4 {
            font-size: 22px
        }

    .box-center .logo {
        width: 180px;
        margin-bottom: 40px
    }

    .login-main .white-box.user-login-page {
        float: none;
        text-align: center;
        margin-bottom: 30px;
        width: 100% !important
    }

    .login-main.account-section {
        width: 100%
    }

    .login-main .white-box {
        margin-bottom: 100px
    }

    .trial-section .float-right {
        float: none !important
    }

        .trial-section .float-right a {
            margin: auto;
            transform: translateX(-6px)
        }

    .login-main.account-section {
        padding: 50px 0
    }
}

@media (max-width: 480px) {
    .white-box h4 {
        font-size: 20px
    }
}

@media screen and (max-width:767px) {
    .white-box.start-free-trial {
        width: calc(100% - 0) !important;
    }

    #step-3 .form-group-alt,
    .onboarding-section .white-box,
    #MainStep1 .form-group-alt {
        padding: 30px 20px;
    }
}


.spanTextLine {
    color: #ffffff;
    margin-top: -32px;
    font-size:13px;
}

.createAccountLine {
    margin-top: 30px;
}

@media (max-width: 480px) {
    .spanTextLine {
        margin-top: 0px;
        margin-left: 20px;
        margin-right: 20px;
    }
    .createAccountLine {
        margin-top: 0px;
    }
}

@media screen and (max-width:767px) {
    .spanTextLine {
        margin-top: 0px;
        margin-left: 20px;
        margin-right: 20px;
    }
    .createAccountLine {
        margin-top: 0px;
    }
}


