﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    color: #444;
}
/*HELP START*/

.btn-theme {
    width: 250px;
    height: 50px;
    background: #20336b;
    box-shadow: 0px 0px 20px rgba(32, 146, 225, 0.15);
    border-radius: 4px;
    font-size: 17px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.2s ease-in;
    z-index: 1;
    position: relative;
    overflow: hidden;
    border: 0;
}

    .btn-theme .circle {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        background-image: radial-gradient(circle closest-side, #34A6F4, #168CDD);
        width: 1px;
        height: 1px;
        z-index: 3;
        -webkit-animation-name: ripple;
        animation-name: ripple;
        -webkit-animation-duration: 0.5s;
        animation-duration: 0.5s;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    .btn-theme:hover {
        color: #00baf2;
    }

@-webkit-keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0;
    }

    75% {
        transform: scale(450, 450);
        opacity: 0.75;
    }

    100% {
        transform: scale(700, 700);
        opacity: 0;
    }
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0;
    }

    75% {
        transform: scale(450, 450);
        opacity: 0.75;
    }

    100% {
        transform: scale(700, 700);
        opacity: 0;
    }
}

.form-group::-webkit-input-placeholder {
    /* Edge */
    color: #bdbdbd;
}

.form-group:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #bdbdbd;
}

.form-group::placeholder {
    color: #bdbdbd;
}

.form-group {
    margin-bottom: 15px;
}

    .form-group .form-control {
        height: 50px;
        width: 100%;
        background: #FFFFFF;
        border: 1px solid #A7CCE7;
        box-sizing: border-box;
        box-shadow: 0px 0px 15px rgb(32 146 225 / 10%);
        border-radius: 4px;
        margin: 5px 0px;
        font-size: 15px;
    }

    .form-group textarea.form-control {
        height: auto;
        width: 100%;
        background: #FFFFFF;
        border: 1px solid #A7CCE7;
        box-sizing: border-box;
        box-shadow: 0px 0px 15px rgb(32 146 225 / 10%);
        border-radius: 4px;
        margin: 5px 0px;
        font-size: 15px;
        resize: none;
    }

    .form-group label {
        font-size: 16px;
        color: #444444;
        min-height: 24px;
    }

    .form-group p {
        font-size: 15px;
        color: #707070;
        margin-bottom: 0;
    }

    .form-group label i {
        color: #FF5E5E;
    }

    .form-group .voice-texts {
        font-size: 15px;
        color: #707070;
        margin-top: 15px;
    }

        .form-group .voice-texts h5 {
            font-size: 15px;
        }

        .form-group .voice-texts ul {
            padding: 0;
        }

            .form-group .voice-texts ul li {
                list-style: none;
                padding-left: 15px;
                position: relative;
            }

                .form-group .voice-texts ul li:after {
                    content: '';
                    display: inline-block;
                    height: 5px;
                    width: 5px;
                    background-color: #707070;
                    border-radius: 100%;
                    position: absolute;
                    left: 0;
                    top: 8px;
                }

                .form-group .voice-texts ul li a {
                }

.btn:focus,
.btn:active,
.btn-secondary:active:focus {
    box-shadow: none;
    outline: 0;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}
/*HELP END*/

/*===================================
    ENTRY PAGE START
=====================================*/

main {
    background: url('../image/blur-hospital.jpg');
    position: relative;
    overflow: hidden;
    background-size: cover;
}

    main .top-right {
        width: 800px;
        height: 800px;
        right: -300px;
        top: -300px;
        position: absolute;
        background: #C5E3FA;
        border-radius: 100%;
    }

    main .bottom-left {
        position: absolute;
        left: -180px;
        bottom: -180px;
        width: 300px;
        height: 300px;
        background: #2092E1;
        border-radius: 100%;
    }

.card-vector {
    background-color: #20336b;
}

    .card-vector .intro-vector {
    }

        .card-vector .intro-vector img {
            max-height: 350px;
        }

.login-card {
    border-radius: 50px;
    overflow: hidden;
    border: 0;
    box-shadow: 0px 0px 30px rgba(32, 146, 225, 0.1);
}

    .login-card .login-logo img {
        width: 230px;
        margin: 20px 20px;
    }

    .login-card .login-logo p {
        color: #DCEFFD;
        font-size: 17px;
        font-weight: 300;
        margin: 0;
        margin-top: 15px;
    }

    .login-card .login-right {
        background-color: #F2F9FE;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 30px;
        position: relative;
        z-index: 2;
    }

    .login-card .form-title {
        margin-bottom: 20px;
    }

    .login-card .btn-theme {
        width: 100%;
    }

    .login-card h2.login-card-description {
        font-size: 25px;
        text-transform: uppercase;
        font-weight: 700;
        color: #2092E1;
    }

    .login-card .form-title p {
        font-weight: 300;
        padding-right: 50px;
        color: #444;
    }

    .login-card .login-right .login-box input {
        height: 50px;
        width: 100%;
        background: #FFFFFF;
        border: 1px solid #A7CCE7;
        box-sizing: border-box;
        box-shadow: 0px 0px 15px rgba(32, 146, 225, 0.1);
        border-radius: 4px;
        margin: 15px 0px;
        padding-left: 50px;
        font-size: 15px;
    }

    .login-card .login-right .fgt-pwd {
        justify-content: space-between;
        display: flex;
        margin-top: 20px;
        color: #444444;
        font-size: 15px;
    }

        .login-card .login-right .fgt-pwd span a {
            color: #2092E1;
            text-decoration: none;
        }

            .login-card .login-right .fgt-pwd span a:hover {
                text-decoration: underline;
            }

    .login-card .login-right .login-box .or {
        border-bottom: solid 1px #CCE7FC;
        text-align: center;
        position: relative;
        margin-top: 50px;
        margin-bottom: 30px;
    }

        .login-card .login-right .login-box .or span {
            width: 100%;
            text-align: center;
            position: absolute;
            top: -10px;
            text-align: center;
            left: 0;
        }

            .login-card .login-right .login-box .or span i {
                display: inline-block;
                width: 50px;
                height: 25px;
                background-color: #F2F9FE;
                text-decoration: none;
                color: #CCE7FC;
            }

    .login-card .login-right .login-box .form-group {
        position: relative;
    }

    .login-card .login-right .login-box .google-login {
        height: 50px;
        width: 100%;
        background: #FFFFFF;
        color: #444;
        border: 1px solid #A7CCE7;
        box-sizing: border-box;
        box-shadow: 0px 0px 15px rgb(32 146 225 / 10%);
        border-radius: 4px;
        margin: 15px 0px;
        font-size: 15px;
        font-weight: 700;
        position: relative;
        z-index: 1;
    }

        .login-card .login-right .login-box .google-login img {
            margin-right: 5px;
            height: 18px;
        }

    .login-card .login-right .login-box .form-group i {
        position: absolute;
        left: 15px;
        top: 0;
        height: 100%;
        display: flex;
        align-items: center;
    }

        .login-card .login-right .login-box .form-group i.showpwd {
            right: 15px;
            left: auto;
            color: #A7CCE7;
            font-size: 20px;
        }

        .login-card .login-right .login-box .form-group i img {
            height: 19px;
            opacity: 0.5;
        }

    .login-card .login-right .login-box .form-dec {
        font-size: 15px;
        color: #93bad6;
    }

    .login-card .login-right .login-box .form-dec {
        margin-top: 15px;
    }

        .login-card .login-right .login-box .form-dec ul {
            padding: 0;
            font-size: 15px;
        }

            .login-card .login-right .login-box .form-dec ul li {
                list-style: none;
                position: relative;
                padding-left: 15px;
            }

                .login-card .login-right .login-box .form-dec ul li:after {
                    content: '';
                    display: inline-block;
                    height: 6px;
                    width: 6px;
                    background-color: #93bad6;
                    border-radius: 100%;
                    position: absolute;
                    left: 0;
                    top: 8px;
                }

.entry-form .copyright {
    text-align: right;
    margin-top: 20px;
    font-size: 15px;
    color: #444;
}

    .entry-form .copyright a {
        color: #2092E1;
        text-decoration: none;
    }

        .entry-form .copyright a:hover {
            text-decoration: underline;
        }
/*===================================
    ENTRY PAGE END
=====================================*/

/*===================================
    REGISTRATION PAGE START
====================================*/

.main-bg {
    background-color: #DCEFFD;
}

.registration {
}

    .registration .heading {
        font-size: 30px;
        text-transform: uppercase;
        font-weight: 700;
        color: #2092E1;
        margin-bottom: 50px;
        text-align: center;
    }

.address-type {
    display: flex;
}

    .address-type .form-check {
        width: 100%;
        background: #FFFFFF;
        border: 1px solid #A7CCE7;
        box-sizing: border-box;
        box-shadow: 0px 0px 15px rgba(31, 146, 224, 0.1);
        border-radius: 50px;
        height: 50px;
        margin: 5px;
    }

        .address-type .form-check .select-box {
            display: flex;
            width: 100%;
            justify-content: center;
            height: 100%;
            align-items: center;
        }

    .address-type .form-check-input {
        margin-top: 0;
        margin-right: 5px;
        border: solid 2px #1F92E0;
    }
/**/

.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: white;
    cursor: inherit;
    display: block;
}

.profile-photo #img-upload {
    width: 140px;
    height: 140px;
    border-radius: 100%;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 7%);
    border: solid 1px #fff;
    content: "\f4da";
    font-family: bootstrap-icons !important;
    position: relative;
    background-color: #fff;
    object-fit: cover;
}

.profile-photo {
    text-align: center;
    margin-top: -100px;
}

    .profile-photo #img-upload.user-pic {
        z-index: 2;
    }

    .profile-photo .upload-photo {
        display: inline-block;
        position: relative;
    }

    .profile-photo .user-icon {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 60px;
        color: #AFDAF9;
    }

    .profile-photo .form-group {
        display: inline-block;
        position: relative;
    }

    .profile-photo .input-group {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: inline-table;
    }

        .profile-photo .input-group .btn {
            position: relative;
            z-index: 2;
            height: 100%;
            width: 100%;
            opacity: 0;
            overflow: hidden;
        }
/*step2*/

.download-sample {
}

    .download-sample .download-file {
        color: #1F92E0;
        text-decoration: none;
        display: inline-block;
        background-color: #fff;
        padding: 5px 15px;
        border: dashed 2px;
        border-radius: 5px;
    }

.download-file i.file-icon {
    color: #2092E1;
}

.download-file i.down-arrow {
    color: #2092E1;
}

.cv-upload .input-group {
    height: 130px;
    background-color: #fff;
    border: dotted 2px #A7CCE7;
    border-radius: 5px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #1F92E0;
}

    .cv-upload .input-group i {
        font-size: 30px;
        color: #1F92E0;
    }

.cv-upload .custom-file-input.selected:lang(en)::after {
    content: "" !important;
}

.cv-upload .custom-file {
    overflow: hidden;
}

.cv-upload .custom-file-input {
    white-space: nowrap;
    display: none;
}

.policy-switch {
    display: flex;
    justify-content: space-between;
    margin-block: 10px;
}

.policy .policy-switch h5 {
    margin: 0;
    color: #444;
}

.policy-switch .form-switch .form-check-input {
    width: 45px;
    margin: 0;
    height: 25px;
}

.registration .card {
    background: none;
    border: 0;
    padding-top: 50px;
    padding-bottom: 30px;
}

#msform fieldset {
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative;
    padding: 30px;
    background: #F2F9FE;
    box-shadow: 0px 0px 30px rgb(32 146 225 / 10%);
    border-radius: 25px;
    margin-top: 70px;
}

.form-card {
    text-align: left;
}

#msform fieldset:not(:first-of-type) {
    display: none;
}

#msform .action-button {
    width: 100px;
    background: #673AB7;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0px 10px 5px;
    float: right;
}

    #msform .action-button:hover,
    #msform .action-button:focus {
        background-color: #1F92E0;
    }

#msform .action-button-previous {
    width: 100px;
    background: #616161;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px 10px 0px;
    float: right;
}

    #msform .action-button-previous:hover,
    #msform .action-button-previous:focus {
        background-color: #000000;
    }

.card {
    z-index: 0;
    border: none;
    position: relative;
}

.steps {
    font-size: 25px;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right;
}

.fieldlabels {
    color: gray;
    text-align: left;
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
    padding: 0;
}

    #progressbar .active {
        color: #1f92e0;
    }

    #progressbar li {
        list-style-type: none;
        font-size: 15px;
        width: 25%;
        float: left;
        position: relative;
        font-weight: 400;
        color: #444444;
        text-transform: uppercase;
        text-align: center;
    }

    #progressbar #account:before {
        font-family: "bootstrap-icons";
        content: "\f4da";
    }

    #progressbar #personal:before {
        font-family: "bootstrap-icons";
        content: "\f473";
    }

    #progressbar #payment:before {
        font-family: "bootstrap-icons";
        content: "\f531";
    }

    #progressbar #confirm:before {
        font-family: "bootstrap-icons";
        content: "\f62f";
    }

    #progressbar li:before {
        width: 80px;
        height: 80px;
        line-height: 57px;
        display: block;
        font-size: 26px;
        color: #1f92e0;
        background: white;
        border-radius: 50%;
        margin: 0 auto 10px auto;
        padding: 2px;
        border: solid 10px #AFDAF9;
    }

    #progressbar li:after {
        content: '';
        width: 100%;
        height: 8px;
        background: #AFDAF9;
        position: absolute;
        left: 0;
        top: 38px;
        z-index: -1;
    }

    #progressbar li.first:after {
        border-radius: 20px 0px 0px 20px;
    }

    #progressbar li.last:after {
        border-radius: 0px 20px 20px 0px;
    }

    #progressbar li.active:before,
    #progressbar li.active:after {
        background: #1F92E0;
        color: #fff;
    }

.fit-image {
    width: 100%;
    object-fit: cover;
}
/*===================================
    REGISTRATION PAGE END
=====================================*/

/*===================================
     HEADER  PAGE START
=====================================*/

header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
}

    header .user-menu {
        display: flex;
        align-items: center;
        background: linear-gradient(90deg, #0B588C 0%, #1F8FDD 100%);
        padding-right: 25px;
        border-radius: 40px 0px 0px 40px;
    }

        header .user-menu .btn-user {
            display: flex;
            align-items: center;
            color: #fff;
        }

            header .user-menu .btn-user span {
                display: inline-block;
                border-radius: 100%;
                overflow: hidden;
                height: 50px;
                width: 50px;
                margin-right: 5px;
                border: solid 3px #fff;
            }

                header .user-menu .btn-user span img {
                    height: 50px;
                    width: 100%;
                    object-fit: cover;
                }

            header .user-menu .btn-user i {
                text-decoration: none;
                font-style: inherit;
            }

    header .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .7rem;
        padding-left: .7rem;
        color: #333;
        font-size: 16px;
    }

    header .navbar-nav {
        padding-right: 50px;
    }

    header .navbar .navbar-brand {
        padding-left: 15px;
    }

    header .dropdown-menu {
        padding: 0;
        border: 0;
        box-shadow: 0px 0px 30px rgb(31 146 224 / 22%);
        overflow: hidden;
        background-color: rgb(255 255 255 / 80%);
    }

    header .dropdown-item:focus,
    header .dropdown-item:hover {
        color: #ffffff;
        background-color: #1f92e0;
    }

    header .dropdown-item {
    }

    header .navbar-expand-lg .navbar-nav .dropdown-menu,
    header .dropdown-menu {
        position: absolute;
        left: auto;
        right: 0;
    }
/*===================================	
    HEADER PAGE END
=====================================*/

/*===================================	
    LANDING PAGE START
=====================================*/

.landing-main {
    height: 100vh;
    background-color: #D9F0FF;
    padding: 0 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

    .landing-main .top-left {
        height: 290px;
        width: 290px;
        background-color: #ACDBFB;
        display: inline-block;
        position: absolute;
        top: -100px;
        left: -135px;
        border-radius: 100%;
    }

    .landing-main .landing-text {
        position: relative;
        z-index: 1;
    }

        .landing-main .landing-text .dots {
            position: absolute;
            left: -30px;
            top: 0;
        }

        .landing-main .landing-text .title-text {
            margin-bottom: 20px;
            position: relative;
        }

            .landing-main .landing-text .title-text h4 {
                color: #1E91E0;
                font-weight: 900;
                font-size: 45px;
                line-height: 1.5;
                background: linear-gradient(to right, #0097FF, #656ACC);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

                .landing-main .landing-text .title-text h4 span {
                    display: inline-block;
                    background-image: linear-gradient(to right, #0097FF, #656ACC);
                    color: #fff;
                    padding: 0px 10px;
                    -webkit-text-fill-color: initial;
                }

        .landing-main .landing-text .sub-text {
            margin-bottom: 20px;
        }

            .landing-main .landing-text .sub-text h5 {
                font-size: 22px;
                color: #555;
                font-weight: 400;
            }

            .landing-main .landing-text .sub-text p {
                margin: 0;
                color: #333;
                font-size: 18px;
                font-weight: 300;
            }

        .landing-main .landing-text .btn-call {
            background-color: #069745;
            color: #fff;
            padding: 15px 25px;
            border-radius: 8px;
            margin-bottom: 20px;
            background: radial-gradient(63.11% 63.11% at 31.97% 19.67%, rgba(255, 255, 255, 0.49) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #069745;
            box-shadow: 4px 19px 62px rgb(0 93 40 / 35%);
            font-weight: 500;
            font-size: 20px;
            text-shadow: 3px 0px 0px rgb(0 0 0 / 20%);
            transition: 0.3s ease-in-out;
        }

            .landing-main .landing-text .btn-call:hover {
                background: radial-gradient(103.44% 292.28% at 22.47% 93.12%, rgba(255, 255, 255, 0.49) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #069745;
                box-shadow: 4px 19px 62px rgba(0, 0, 0, 0.34);
            }

            .landing-main .landing-text .btn-call i {
                margin-left: 5px;
            }

        .landing-main .landing-text .os {
            position: relative;
        }

            .landing-main .landing-text .os p {
                margin: 0;
                margin-bottom: 11px;
                font-size: 18px;
                font-weight: 500;
                color: #444;
            }

            .landing-main .landing-text .os .os-icon {
                display: flex;
            }

            .landing-main .landing-text .os a {
                background: #F0F9FF;
                box-shadow: 0px 0px 15px rgb(47 146 203 / 30%);
                justify-content: center;
                align-items: center;
                display: flex;
                height: 80px;
                width: 80px;
                border-radius: 50px;
                margin-right: 12px;
            }

                .landing-main .landing-text .os a img {
                }

    .landing-main .landing-img {
        text-align: end;
        position: relative;
        z-index: 1;
    }

        .landing-main .landing-img img {
            height: 540px;
        }

    .landing-main .landing-vector {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
    }
/*======== TIMELINE PAGE START ==========*/

.timeline-main {
    position: relative;
}

    .timeline-main .top-right {
        position: absolute;
        right: 50px;
        top: 50px;
        font-size: 45px;
        display: inline-block;
        z-index: 1;
        color: #fff;
        line-height: 1.2;
        background: linear-gradient(to right, #ffffff 0%, #7BCFF1 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 700;
    }

.timeline {
    position: relative;
    background: linear-gradient(252.46deg, #246EAF 0%, #0B588C 94.02%);
    padding: 8rem 5rem;
    margin: 0 auto 0 auto;
    overflow: hidden;
}

    .timeline:before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        margin-left: -2px;
        border-right: 2px dashed rgb(255 255 255 / 50%);
        height: 100%;
        display: block;
    }

.timeline-row {
    padding-left: 50%;
    position: relative;
    margin-bottom: 30px;
}

.timeline-box {
    position: relative;
    overflow: hidden;
}

    .timeline-box .welcome-demo {
        position: absolute;
        bottom: 0;
        right: 0;
    }

.timeline-row .timeline-content {
    position: relative;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(90deg, #C0FDFE 4.69%, #D6FEFF 47.4%, #2094DF 100%);
    border: 3px solid rgba(19, 96, 152, 0.47);
    box-sizing: border-box;
    box-shadow: 0px 11px 10px rgb(0 0 0 / 30%);
    backdrop-filter: blur(4px);
    border-radius: 10px;
}

    .timeline-row .timeline-content.graybox {
        background: linear-gradient(89.75deg, #D5D5D5 0.2%, #FFFFFF 99.76%);
        border: 3px solid rgba(255, 255, 255, 0.5);
        box-sizing: border-box;
        box-shadow: 12px 6px 30px rgba(0, 0, 0, 0.58);
        border-radius: 10px;
    }

    .timeline-row .timeline-content:before {
        content: "";
        position: absolute;
        top: 20px;
        right: -52px;
        width: 20px;
        height: 20px;
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        border-radius: 100px;
        z-index: 10;
        background-color: #1b66a2;
        border: solid 3px rgb(255 255 255 / 50%);
        box-shadow: 0px 0px 0px 10px #1964a0;
    }

    .timeline-row .timeline-content .tineline-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

        .timeline-row .timeline-content .tineline-title h4 {
            font-weight: bold;
            font-size: 24px;
            line-height: 28px;
            color: #135F97;
            text-shadow: 0px 1px 0px #FFFFFF;
            width: 70%;
            margin: 0;
        }

    .timeline-row .timeline-content.graybox .tineline-title h4 {
        color: #444;
    }

    .timeline-row .timeline-content .tineline-title span {
        background: rgba(249, 250, 255, 0.4);
        backdrop-filter: blur(41px);
        border-radius: 11px;
        height: 79px;
        width: 79px;
        text-align: center;
        justify-content: center;
        align-items: center;
        display: flex;
    }

    .timeline-row .timeline-content.graybox .tineline-title span {
        background: linear-gradient(90deg, rgba(32, 146, 225, 0.14) 0%, rgba(32, 146, 225, 0.5) 105.06%);
        backdrop-filter: blur(16px);
        border-radius: 11px;
    }

    .timeline-row .timeline-content .tineline-title span img {
    }

    .timeline-row .timeline-content p {
        margin-top: 20px;
        color: #115E95;
        margin-bottom: 0;
    }

    .timeline-row .timeline-content.graybox p {
        color: #444;
    }

.timeline-row:nth-child(even) .timeline-content {
    margin-left: 40px;
    text-align: left;
}

    .timeline-row:nth-child(even) .timeline-content:before {
        left: -54px;
        right: initial;
    }

.timeline-row:nth-child(odd) {
    padding-left: 0;
    padding-right: 50%;
}

    .timeline-row:nth-child(odd) .timeline-content {
        margin-right: 40px;
    }

.timeline-row .timline-block {
    display: flex;
    height: 100%;
    align-items: center;
}

    .timeline-row .timline-block .timeline-text {
        color: #fff;
        text-align: right;
        padding-right: 30px;
        font-size: 18px;
    }

        .timeline-row .timline-block .timeline-text h5 {
            font-size: 28px;
        }

        .timeline-row .timline-block .timeline-text p {
            margin: 0;
        }

        .timeline-row .timline-block .timeline-text.right-side {
            text-align: left;
            padding-left: 30px;
        }

.timeline-box .bottom-left {
    position: absolute;
    left: -10px;
    bottom: -140px;
}
/*======== TIMELINE PAGE END ==========*/

/*======== Business Growth Start ==========*/

.business-growth {
    text-align: center;
    padding: 0px 0px 26px 0px;
}

    .business-growth .title-text {
    }

        .business-growth .title-text h4 {
            font-size: 23px;
            text-align: left;
            font-weight: 700;
            line-height: 34px;
            color: #444444;
        }

    .business-growth .body-text {
    }

        .business-growth .body-text p {
            font-size: 20px;
            text-align: left;
            font-weight: 300;
            color: #444444;
            line-height: 34px;
            margin: 0;
            padding-top: 10px;
        }

            .business-growth .body-text p span {
                color: #F16E22;
                font-weight: 400;
            }

    .business-growth .business-image {
        position: relative;
    }

        .business-growth .business-image .msg-3d {
            position: absolute;
            left: 130px;
            top: 60px;
            -webkit-animation: mover 1s infinite alternate;
            animation: mover 1s infinite alternate;
        }

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.spark-3d {
    position: absolute;
    right: 50px;
    bottom: 220px;
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

.business-growth .business-image img {
}

.business-growth a {
}

.business-growth .btn-call {
    color: #fff;
    padding: 23px 70px;
    border-radius: 25px;
    margin-bottom: 20px;
    background: radial-gradient(63.11% 63.11% at 31.97% 19.67%, rgba(255, 255, 255, 0.49) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #069745;
    box-shadow: 4px 19px 62px rgb(0 93 40 / 35%);
    font-weight: 500;
    font-size: 24px;
    text-shadow: 3px 0px 0px rgb(0 0 0 / 20%);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
}

    .business-growth .btn-call i {
        margin-left: 5px;
    }

    .business-growth .btn-call:hover {
        background: radial-gradient(103.44% 292.28% at 22.47% 93.12%, rgba(255, 255, 255, 0.49) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #069745;
        box-shadow: 4px 19px 62px rgba(0, 0, 0, 0.34);
        border-radius: 25px;
    }
/*======== Business Growth End ==========*/

/*======== Our Client Start ==========*/

.our-client {
    background: url(../images/clients.png) center no-repeat #ffffff;
    background-size: cover;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0px 0px 15px rgb(0 0 0 / 4%);
}

    .our-client .client-title {
        position: relative;
        z-index: 2;
    }

    .our-client::after {
        content: '';
        bottom: 0;
        display: inline-block;
        right: 20px;
        height: 500px;
        width: 100%;
        background-color: #ABD5F2;
        border-radius: 100%;
        filter: blur(152px);
        position: absolute;
    }

    .our-client .client-title {
    }

        .our-client .client-title h4 {
            font-size: 25px;
            font-weight: 600;
            text-transform: uppercase;
        }

    .our-client .star {
        margin: 23px 0 67px 0;
        pointer-events: revert;
        position: relative;
        z-index: 2;
    }

        .our-client .star img {
        }

    .our-client .client-text {
        margin-bottom: 35px;
    }

        .our-client .client-text p {
            margin: 0;
            font-size: 18px;
            font-weight: 300;
            padding: 0 136px;
            line-height: 33px;
            color: #000;
        }

    .our-client .client-details {
    }

        .our-client .client-details .client-photo {
            margin-bottom: 11px;
        }

            .our-client .client-details .client-photo img {
                object-fit: cover;
                border-radius: 100%;
                border: 3px solid #fff;
                display: inline-block;
            }

        .our-client .client-details .client-name {
        }

            .our-client .client-details .client-name h5 {
                font-size: 22px;
                font-weight: 600;
                margin-bottom: 0px;
            }

            .our-client .client-details .client-name p {
                margin: 0;
                font-size: 15px;
                font-weight: 400;
            }

    .our-client .slick-dots li button:before {
        background: #EAF6FF;
        border: 2px solid #2092E1;
        box-shadow: 0px 0px 15px rgb(32 146 225 / 40%);
        border-radius: 100%;
        color: #fff;
        height: 16px;
        width: 16px;
        content: '';
        opacity: 9;
    }

    .our-client .slick-dots li.slick-active button:before {
        color: #2092E1;
        background-color: #2092E1;
        opacity: 100;
        height: 16px;
        width: 16px;
    }

    .our-client .slick-dotted.slick-slider {
        position: relative;
        z-index: 2;
    }

    .our-client .slick-slider .slick-list,
    .slick-slider .slick-track {
        position: relative;
        z-index: 1;
    }

    .our-client .slick-dots {
        position: relative;
    }
/*======== Our Client End ==========*/

/*===================================	
    LANDING PAGE END
=====================================*/

/*===================================	
   Daily Timesheet PAGE start
=====================================*/

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

i,
span {
    display: inline-block;
}
/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
}
/*===================================	
   Daily Timesheet PAGE END
=====================================*/

/*===================================	
   inquiry PAGE start
=====================================*/

.inquiry {
    background-color: #ACDBFB;
    color: #263238;
    padding-top: 50px;
    box-shadow: 0px 0px 45px rgb(28 76 108 / 27%);
    position: relative;
}

    .inquiry .inquiry-texts {
        padding-left: 100px;
    }

    .inquiry .contact-info .inq-vector img {
    }

    .inquiry .contact-info .country-list {
        margin-top: 15px;
    }

    .inquiry .contact-info h4 {
        font-size: 35px;
        font-weight: 600;
        color: #333;
    }

    .inquiry .contact-info .online {
        margin-top: 10px;
        display: flex;
        justify-content: left;
        align-items: center;
        height: 100%;
    }

        .inquiry .contact-info .online span {
            width: 16px;
            height: 16px;
            background-color: #0DA91C;
            border-radius: 100%;
        }

        .inquiry .contact-info .online p {
            font-size: 25px;
            padding-left: 11px;
            color: #444;
            margin: 0;
            font-weight: 300;
        }

    .inquiry .timimg {
        margin-top: 20px;
    }

        .inquiry .timimg h2 {
            font-size: 25px;
            color: #444444;
        }

        .inquiry .timimg p {
            font-size: 18px;
            color: #444;
            margin-top: 20px;
        }

    .inquiry .select-hidden {
        display: none;
        visibility: hidden;
        padding-right: 10px;
    }

    .inquiry .select {
        cursor: pointer;
        display: inline-block;
        position: relative;
        font-size: 16px;
        color: #fff;
        width: 300px;
        height: 50px;
    }

    .inquiry .select-styled {
        border-radius: 3px;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: #16629c;
        padding: 8px 15px;
        -moz-transition: all 0.2s ease-in;
        -o-transition: all 0.2s ease-in;
        -webkit-transition: all 0.2s ease-in;
        transition: all 0.2s ease-in;
        display: flex;
        align-items: center;
        height: 100%;
    }

        .inquiry .select-styled:after {
            content: "";
            width: 0;
            height: 0;
            border: 7px solid transparent;
            border-color: #fff transparent transparent transparent;
            position: absolute;
            top: 23px;
            right: 10px;
        }

        .inquiry .select-styled:hover {
            background-color: #115d94;
        }

        .inquiry .select-styled:active, .inquiry .select-styled.active {
            background-color: #115d94;
        }

            .inquiry .select-styled:active:after, .inquiry .select-styled.active:after {
                top: 14px;
                border-color: transparent transparent #fff transparent;
            }

    .inquiry .select-options {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 999;
        margin: 0;
        padding: 0;
        list-style: none;
        background-color: #ffffff;
        max-height: 250px;
        overflow-y: scroll;
    }

        .inquiry .select-options li {
            margin: 0;
            padding: 5px 0;
            text-indent: 15px;
            border-top: 1px solid #e1e1e1;
            -moz-transition: all 0.15s ease-in;
            -o-transition: all 0.15s ease-in;
            -webkit-transition: all 0.15s ease-in;
            transition: all 0.15s ease-in;
            font-size: 14px;
            color: #444;
        }

            .inquiry .select-options li:hover {
                color: #115d94;
                background: #fff;
            }

            .inquiry .select-options li[rel="hide"] {
                display: none;
            }

    .inquiry .calander-block {
        position: relative;
    }

    .inquiry .calander-block {
        position: relative;
    }

        .inquiry .calander-block .schedule {
            position: absolute;
            left: 170px;
            top: 170px;
        }

        .inquiry .calander-block .va-intererview {
            position: absolute;
            right: 50px;
            top: 170px;
            animation-delay: 1s;
        }

        .inquiry .calander-block .sale-request {
            position: absolute;
            right: 10px;
            top: 420px;
            animation-delay: 1.5s;
        }

    .inquiry .mobile-cal {
        display: none;
    }
/*===================================	
   inquiry PAGE END
=====================================*/
/*===================================	
   Footer Start
=====================================*/
footer {
}

    footer .top-footer {
        background-color: #333333;
        color: #fff;
        min-height: 112px;
        display: flex;
        align-items: center;
    }

        footer .top-footer .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            footer .top-footer .top-bar .soical-media {
                display: flex;
            }

                footer .top-footer .top-bar .soical-media a {
                    display: inline-block;
                    height: 36px;
                    width: 36px;
                    border: solid 1px #F4F7FA;
                    border-radius: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-right: 10px;
                }

                    footer .top-footer .top-bar .soical-media a:hover {
                        background-color: #2092E1;
                    }

            footer .top-footer .top-bar .signup-box {
            }

                footer .top-footer .top-bar .signup-box h5 {
                    margin: 0;
                    font-size: 15px;
                    margin-bottom: 10px;
                }

                footer .top-footer .top-bar .signup-box .form-group {
                    position: relative;
                    margin: 0;
                }

                    footer .top-footer .top-bar .signup-box .form-group input {
                        width: 430px;
                        height: 50px;
                        border-radius: 10px;
                        border: 0;
                        padding: 15px;
                    }

                footer .top-footer .top-bar .signup-box .btn-subscribe {
                    position: absolute;
                    right: 0;
                    height: 100%;
                    background-color: #1f92e0;
                    border-radius: 0;
                    color: #fff;
                    padding: 0px 30px;
                    display: flex;
                    align-items: center;
                    top: 0;
                    border-radius: 0px 9px 9px 0px;
                    text-transform: uppercase;
                }

                    footer .top-footer .top-bar .signup-box .btn-subscribe:hover {
                        background-color: #16629c;
                    }

    footer .footer-middle {
        padding-top: 30px;
        background-color: #444444;
        color: #fff;
    }

        footer .footer-middle .footer-menu {
        }

            footer .footer-middle .footer-menu ul {
                padding: 0;
                padding: 0;
                margin: 15px 0px;
                font-size: 14px;
            }

        footer .footer-middle .footer-text {
            padding: 15px;
            border: solid 1px #666666;
            border-radius: 5px;
            font-size: 14px;
            font-weight: 300;
        }

        footer .footer-middle .footer-menu ul li {
            list-style: none;
            padding-left: 15px;
            position: relative;
            line-height: 1.8;
        }

            footer .footer-middle .footer-menu ul li a:after {
                content: '';
                display: inline-block;
                height: 5px;
                width: 5px;
                background-color: rgb(255 255 255 / 54%);
                border-radius: 100%;
                position: absolute;
                left: 0;
                top: 9px;
            }

            footer .footer-middle .footer-menu ul li.head {
                font-size: 15px;
                font-weight: 700;
                color: #fff;
                text-transform: uppercase;
                margin-bottom: 10px;
                padding-left: 0;
                padding-bottom: 8px;
            }

                footer .footer-middle .footer-menu ul li.head:after {
                    content: '';
                    display: inline-block;
                    height: 2px;
                    width: 25px;
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    background-color: rgb(255 255 255 / 51%);
                }

    footer .top-footer .soical-media {
        background-color: #333333;
        color: #fff;
    }

    footer .footer-bottom {
        background-color: #333333;
        text-align: center;
        color: #fff;
        font-weight: 300;
        padding: 10px 0px;
        font-size: 12px;
    }

        footer .footer-bottom p {
            margin: 0;
            font-size: 14px;
        }
/*===================================	
   Footer End
=====================================*/
/*==================================
    MEDIA QUERY START
====================================*/
@media(max-width:1600px) {
    .landing-main .landing-text .title-text h4 {
        font-size: 35px;
    }

    .landing-main .landing-text .sub-text h5 {
        font-size: 22px;
    }

    .landing-main .landing-text .sub-text p,
    .landing-main .landing-text .btn-call {
        font-size: 17px;
    }

    .landing-main .landing-text .os a {
        height: 60px;
        width: 60px;
    }

        .landing-main .landing-text .os a img {
            height: 30px;
        }

    header .navbar .navbar-brand img {
        height: 65px;
    }

    header .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 14px;
    }

    .timeline-box .welcome-demo img {
        max-width: 860px;
    }

    .inquiry .contact-info h4,
    .timeline-main .top-right {
        font-size: 35px;
    }

    .inquiry .timimg h2 {
        font-size: 30px;
    }

    .inquiry .timimg p {
        font-size: 18px;
    }

    .inquiry .calander-block .schedule {
        width: 320px;
    }

    .inquiry .calander-block .va-intererview {
        width: 300px;
    }

    .inquiry .calander-block .sale-request {
        width: 300px;
    }
}

@media(max-width:1440px) {
    .landing-main .landing-text .title-text h4 {
        font-size: 30px;
    }

    .landing-main .landing-text .sub-text h5 {
        font-size: 20px;
    }

    .landing-main .landing-text .sub-text p,
    .landing-main .landing-text .btn-call {
        font-size: 16px;
    }

    .landing-main .landing-text .os a {
        height: 60px;
        width: 60px;
    }

        .landing-main .landing-text .os a img {
            height: 30px;
        }

    header .navbar .navbar-brand img {
        height: 65px;
    }

    header .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 14px;
    }

    .timeline {
        padding: 6rem 2rem;
    }

    .timeline-row .timline-block .timeline-text h5 {
        font-size: 22px;
    }

    .timeline-row .timline-block .timeline-text p {
        font-size: 16px;
        margin: 0;
    }

    header .dropdown-item {
        font-size: 14px;
    }

    header .user-menu .btn-user span {
        height: 40px;
        width: 40px;
    }

        header .user-menu .btn-user span img {
            height: 40px;
        }

    header .user-menu .btn-user {
        font-size: 14px;
    }

    .timeline-row .timeline-content .tineline-title h4 {
        font-size: 22px;
    }

    .timeline-row .timeline-content .tineline-title span img {
        height: 35px;
    }

    .timeline-row .timeline-content .tineline-title span {
        height: 70px;
        width: 70px;
    }

    .timeline-box .welcome-demo img {
        max-width: 700px;
    }

    .inquiry .contact-info .online p {
        font-size: 20px;
    }

    .inquiry .contact-info h4, .timeline-main .top-right, .inquiry .timimg h2 {
        font-size: 25px;
    }

    .inquiry .timimg p {
        font-size: 16px;
    }

    .inquiry .calander-block .schedule {
        width: 300px;
    }

    .inquiry .calander-block .va-intererview {
        width: 280px;
    }

    .inquiry .calander-block .sale-request {
        width: 280px;
    }
}

@media(max-width:1200px) {
    .landing-main .landing-text .title-text h4 {
        font-size: 27px;
    }

    .landing-main .landing-text .sub-text h5 {
        font-size: 18px;
    }

    .landing-main .landing-text .sub-text p,
    .landing-main .landing-text .btn-call, .business-growth .btn-call {
        font-size: 14px;
        margin: 0;
    }

    .landing-main .landing-text .os {
        position: relative;
        margin-top: 15px;
    }

    .inquiry .contact-info h4,
    .timeline-main .top-right {
        font-size: 30px;
    }

    .timeline-row .timeline-content .tineline-title h4 {
        font-size: 20px;
    }

    .timeline-row .timeline-content p {
        margin-top: 17px;
        color: #115E95;
    }

    .timeline-row .timeline-content {
        padding: 20px;
    }

    .business-growth .title-text h4 {
        font-size: 20px;
        line-height: 30px;
    }

    .business-growth .body-text p {
        font-size: 16px;
        line-height: 28px;
    }

    .business-growth .btn-call {
        font-size: 14px;
        margin: 0;
    }

    .our-client .client-title h4 {
        font-size: 20px;
    }

    .our-client .client-text p {
        font-size: 16px;
        padding: 0 50px;
        line-height: 28px;
    }

    .our-client .client-details .client-photo img {
        height: 80px;
        width: 80px;
    }

    .our-client .client-details .client-name h5 {
        font-size: 19px;
    }

    .inquiry .contact-info h4,
    .timeline-main .top-right,
    .inquiry .contact-info .online p,
    .inquiry .timimg h2 {
        font-size: 25px;
    }

    .inquiry .timimg p {
        font-size: 16px;
    }

    .our-client .star {
        margin: 13px 0 37px 0;
    }

    .landing-main .landing-text .title-text h4 {
        font-size: 22px;
    }

    .inquiry .calander-block .schedule {
        width: 230px;
        left: 50px;
        top: 119px;
    }

    .inquiry .calander-block .va-intererview {
        width: 250px;
        width: 250px;
        top: 120px;
    }

    .inquiry .calander-block .sale-request {
        width: 250px;
        width: 250px;
        top: 300px;
    }
}

@media(max-width:1024px) {
    .login-card .login-right .login-box input {
        height: 45px;
    }

    .btn-theme {
        height: 45px;
    }

    .login-card .login-right .login-box .google-login {
        height: 45px;
    }

    main .bottom-left {
        left: -191px;
        bottom: -171px;
        width: 286px;
        height: 286px;
    }

    main .top-right {
        width: 650px;
        height: 650px;
        right: -320px;
        top: -322px;
    }

    .login-card .login-right .login-box .or {
        margin-top: 36px;
        margin-bottom: 18px;
    }

    .login-card .login-right .login-box .form-dec ul, .login-card .login-right .login-box input, .entry-form .copyright, .landing-main .landing-text .os p, .login-card .login-right .login-box .form-dec {
        font-size: 14px;
    }

    .login-card .login-logo img {
        width: 180px;
    }

    .login-card .login-logo p {
        font-size: 15px;
    }

    .login-card .form-title p {
        font-weight: 300;
        padding-right: 0;
        color: #444;
    }

    .login-card h2.login-card-description {
        font-size: 22px;
    }

    .registration .heading {
        font-size: 25px;
    }

    .timeline-box .welcome-demo img {
        max-width: 540px;
    }

    header .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem;
        font-size: 12px;
    }

    header .navbar-nav {
        padding-right: 20px;
    }

    header .user-menu {
        padding-right: 0;
    }

        header .user-menu .btn-user {
            font-size: 12px;
        }

    header .navbar .navbar-brand img {
        height: 55px;
    }

    .inquiry .calander-block .schedule {
        width: 220px;
    }

    .inquiry .calander-block .va-intererview {
        width: 200px;
    }

    .inquiry .calander-block .sale-request {
        width: 200px;
        top: 250px;
    }
}

@media(max-width:991px) {
    header .navbar-brand {
        padding-left: 20px;
    }

    .timeline {
        padding: 15px;
    }

        .timeline:after {
            border: 0;
        }

        .timeline .timeline-row:nth-child(odd) {
            padding: 0;
        }

            .timeline .timeline-row:nth-child(odd) .timeline-content {
                margin: 0;
            }

                .timeline .timeline-row:nth-child(odd) .timeline-content:before {
                    display: none;
                }

                .timeline .timeline-row:nth-child(odd) .timeline-content:after {
                    display: none;
                }

        .timeline .timeline-row:nth-child(even) {
            padding: 0;
        }

            .timeline .timeline-row:nth-child(even) .timeline-time {
                position: relative;
                top: 0;
                left: 0;
                margin: 0 0 10px 0;
                text-align: left;
            }

    .landing-main .landing-text {
        margin-top: 350px;
    }

    .business-growth {
        text-align: center;
        padding: 0px 0px 26px 0px;
    }

    header .navbar-collapse {
        background: #0B588C;
        background: linear-gradient(90deg, #0B588C 0%, #1F8FDD 100%);
    }

    header .navbar-expand-lg .navbar-nav .dropdown-menu,
    header .navbar-expand-lg .dropdown-menu {
        position: inherit;
        left: auto;
        right: auto;
        border-radius: 0;
    }

    header .navbar-nav {
        padding-right: 0;
    }

    header .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 14px;
        display: flex;
        align-items: center;
        color: #fff;
        border-bottom: solid 1px rgb(255 255 255 / 12%);
    }

    header .navbar-expand-lg .dropdown-toggle::after {
        position: absolute;
        right: 10px;
    }

    header .navbar {
        padding-top: 0;
    }

    header .user-menu .btn-user i {
        display: none;
    }

    header .user-menu {
        display: initial;
        align-items: center;
        background: none;
        padding-right: 0;
        border-radius: 0;
        position: absolute;
        right: 50px;
        top: 5px;
    }

        header .user-menu .btn-user span {
            height: 45px;
            width: 45px;
            box-shadow: 0px 0px 15px rgb(0 0 0 / 24%);
        }

            header .user-menu .btn-user span img {
                height: 45px;
            }

    header .navbar-expand-lg .user-menu .dropdown-menu {
        position: absolute;
        right: 0;
    }

    header .user-menu .btn-user span {
        border: solid 2px #fff;
    }

    header .navbar-toggler {
        padding: 0;
        margin-right: 15px;
        color: #19649f;
        font-size: 32px;
    }

    .timeline-main .top-right {
        display: none;
    }

    .timeline-box .welcome-demo {
        display: none;
    }

    .timeline-row:nth-child(even) .timeline-content:before {
        display: none;
    }

    .business-growth {
        padding: 50px 0;
    }

    .inquiry .inquiry-texts {
        padding-left: 50px;
    }

    footer .top-footer .top-bar {
    }

    footer .top-footer .top-bar {
        flex-direction: column;
        text-align: center;
        padding: 20px 0px;
    }

        footer .top-footer .top-bar .signup-box {
            padding-top: 15px;
        }

    .inquiry .mobile-cal {
        display: block;
    }

    .inquiry .desktop-cal {
        display: none;
    }
}

@media(max-width:768px) {
    .registration .heading {
        font-size: 20px;
    }

    .registration .heading {
        margin-bottom: 30px;
    }

    #progressbar li:before {
        width: 70px;
        height: 70px;
        line-height: 47px;
        font-size: 22px;
    }

    .btn-theme {
        width: 100%;
    }

    .form-group p {
        font-size: 14px;
    }

    #msform fieldset {
        padding: 15px;
    }

    .policy-switch h5 {
        margin: 0;
    }

    .policy .policy-switch h5 {
        font-size: 20px;
    }

    .policy p {
        font-size: 14px;
        color: #444;
    }

    .login-card .login-right .login-box .or {
        margin-top: 50px;
    }

    #sidebar {
        min-width: 80px;
        max-width: 80px;
        text-align: center;
        margin-left: -80px !important;
    }

        #sidebar.active {
            margin-left: 0 !important;
        }

        #sidebar .sidebar-header h3,
        #sidebar .CTAs {
            display: none;
        }

        #sidebar .sidebar-header strong {
            display: block;
        }

        #sidebar ul li a {
            padding: 20px 10px;
        }

            #sidebar ul li a span {
                font-size: 0.85em;
            }

            #sidebar ul li a i {
                margin-right: 0;
                display: block;
            }

        #sidebar ul ul a {
            padding: 10px !important;
        }

        #sidebar ul li a i {
            font-size: 1.3em;
        }

    #sidebar {
        margin-left: 0;
    }

    #sidebarCollapse span {
        display: none;
    }

    .landing-main .landing-text {
        margin-top: 100px;
    }

    .landing-main {
        height: auto;
    }

    .landing-main {
        padding: 0;
    }

        .landing-main .landing-vector {
            display: none;
        }

        .landing-main .landing-img img {
            height: auto;
        }

        .landing-main .landing-img {
            padding: 30px 0px;
        }

    .timeline-row:nth-child(even) .timeline-content {
        margin-left: 0;
    }

    .timeline-row .timline-block .timeline-text {
        padding-right: 20px;
    }

        .timeline-row .timline-block .timeline-text.right-side {
            padding-left: 20px;
        }

    .timeline .timeline-row:nth-child(even) {
        padding: 0;
        margin-bottom: 5px;
    }

    .timeline-box .bottom-left img {
        width: 150px;
    }

    .timeline-box .bottom-left {
        left: -10px;
        bottom: -60px;
    }

    .timeline {
        padding-top: 40px;
    }

    .our-client {
        padding: 50px 15px;
    }

        .our-client .client-text p {
            padding: 0;
        }

    .inquiry .inquiry-texts {
        padding-left: 0;
        padding: 0px 15px;
        text-align: center;
    }

    .inquiry .contact-info .online {
        justify-content: center;
    }

    .business-growth .business-image .msg-3d {
        position: absolute;
        left: 50px;
        top: 60px;
        height: 50px;
    }

    .business-growth .business-image .spark-3d {
        height: 50px;
    }

    footer .top-footer .top-bar .signup-box .btn-subscribe {
        font-size: 14px;
    }
}

@media(max-width:512px) {
    #progressbar li {
        font-size: 12px;
    }

        #progressbar li:after {
            top: 30px;
        }

    .form-group label {
        font-size: 15px;
    }
}

.contactdetails {
    color: #20336b;
    font-size: 16px;
    font-weight: bold;
    text-align: right;
}

    .contactdetails div {
        padding: 5px 0px;
    }

.divideline::after {
    content: '';
    background-color: #00baf2;
    display: block;
    height: 4px;
    margin: 20px auto 5px;
    width: 403px
}

.card-vector .imgbottom {
    display: flex;
    align-items: flex-end;
}

.dividedline {
    background-color: #00baf2;
    height: 2px;
    margin-top: 12px;
    margin-bottom: 12px;
}
