@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');

/*Global css*/
* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

html {
    font-size: 100%;
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    min-width: 320px;
    background-color: #ffffff;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #4F4F4F;
    overflow-x: hidden;
}

.clear {
    clear: both;
}

button, input[type="submit"] {
    cursor: pointer;
}

button, input[type="submit"], input[type="search"], a, i {
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

    button:focus, input[type="submit"]:focus, input[type="search"]:focus, a:focus, i:focus {
        outline: none;
    }

a {
    text-decoration: none;
    color: #00cfdd;
}

    a:hover {
        text-decoration: none;
        outline: 0;
        color: #000000;
        outline: none;
    }

    a:focus {
        outline: none !important;
        outline-offset: none !important;
        text-decoration: none !important;
        color: #00cfdd;
    }

.btn:focus {
    outline: none;
    box-shadow: none;
}

a, img {
    border: none;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

label {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #555555;
    margin-bottom: 10px;
    display: block;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    margin: 0 0 20px;
    font-family: 'Poppins', sans-serif;
    padding: 0;
    font-weight: 400;
    color: #12154C;
    display: block;
    position: relative;
}

h1, .h1 {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.3;
}

h2, .h2 {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.3;
}

h3, .h3 {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
}

h4, .h4 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
}

h5, .h5 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 15px;
}

ul, ol {
    list-style: none;
    margin: 0;
}

    ul li, ol li {
        list-style: none;
    }

p {
    display: block;
    line-height: 1.6;
    margin: 0;
    margin: 0 0 15px;
    font-weight: 400;
}

    p:last-child {
        margin: 0;
    }

b, strong {
    font-weight: 700;
}

/*color*/
.white-text {
    color: #ffffff;
}

/*hidden*/
.hidden {
    display: none;
}

/*list style*/
ul.text-list {
    margin-top: 20px;
}

    ul.text-list li {
        font-size: 16px;
        font-weight: 600;
        position: relative;
        padding-left: 36px;
        margin-bottom: 20px;
    }

        ul.text-list li:last-child {
            margin-bottom: 0;
        }

        ul.text-list li::before {
            content: "";
            background: url('../images/check-circle.svg') no-repeat;
            width: 25px;
            height: 25px;
            position: absolute;
            left: 0;
            top: 2px;
        }

    ul.text-list.white li::before {
        content: "";
        background: url('../images/arrow-uturn-right-circle.svg') no-repeat;
        width: 25px;
        height: 25px;
        position: absolute;
        left: 0;
        top: 2px;
    }

/*inputfield*/
.form-group {
    padding-bottom: 15px;
    margin: 0;
    position: relative;
}

.form-horizontal .form-group {
    margin-right: 0;
    margin-left: 0;
}

.form-control {
    box-shadow: none !important;
    height: 44px;
    font-family: 'Poppins', sans-serif;
    color: #555555;
    font-size: 16px;
    font-weight: 400;
    border: solid 1px #EBEBEB;
    border-radius: 3px;
    padding-left: 20px;
    padding-right: 20px;
}

    .form-control.error {
        position: relative;
        bottom: auto;
        color: #555 !important;
    }

    .form-control.disable {
        background: #F2F2F2;
    }

    .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
        background-color: #F2F2F2;
    }

    .form-control.gray {
        background: #F2F2F2;
    }

    .form-control.only-text {
        line-height: 30px;
    }

    .form-control::-webkit-input-placeholder {
        color: #B1B1B1;
        opacity: 1;
    }

    .form-control::-moz-placeholder {
        color: #B1B1B1;
        opacity: 1;
    }

    .form-control:-ms-input-placeholder {
        color: #B1B1B1;
        opacity: 1;
    }

    .form-control:-moz-placeholder {
        color: #B1B1B1;
        opacity: 1;
    }

    .form-control:focus {
        color: #555555;
        border-color: #EBEBEB;
    }

select, select.form-control {
    background: #f8f9fe url('../images/drop-down.svg') no-repeat calc(100% - 15px) center;
    box-shadow: 0px 3px 25px rgba(0,0,0,0.14) !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 28px;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    font-family: 'Poppins', sans-serif;
    color: #4F4F4F;
    font-size: 16px;
    font-weight: 400;
    border: solid 1px #FFFFFF;
    border-radius: 5px;
    width: 100%;
    background-size: 15px;
    padding-left: 20px;
    cursor: pointer;
}

    select, select.form-control:focus {
        color: #555555;
    }

        select.input-sm {
            height: 44px;
        }

        select option, select.form-control option {
            padding: 0 10px;
        }

textarea.form-control {
    min-height: 120px;
    resize: vertical;
    height: auto;
}

.form-group label {
    display: block;
    width: 100%;
}

.relative {
    position: relative;
}

.align-right {
    text-align: right;
}

.container {
    max-width: 1200px;
    width: 100%;
    position: relative;
}

.full-widht {
    width: 100%;
    float: left;
}

.text-link {
    font-size: 16px;
    font-weight: 400;
    text-decoration: underline;
    color: #ffffff;
    display: inline-block;
}

/*button*/
.btn-custom {
    background: #00CFDD;
    color: #ffffff;
    font-weight: 400;
    font-size: 18px;
    height: 44px;
    line-height: 44px;
    border: none;
    border-radius: 3px;
    text-align: center;
    padding: 0 35px;
    cursor: pointer;
    display: inline-block;
}

    .btn-custom.small {
        font-size: 14px;
        height: 35px;
        line-height: 35px;
        padding: 0 20px;
    }

    .btn-custom:hover {
        background: #009aa4;
        color: #ffffff;
    }


/*=========IE10 and Above to 10, 11,12=====================*/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    select, select.form-control {
        background: #fff !important;
        padding-right: 7px !important;
    }
}
/*=========IE9 and Below to 9, 8, 7=====================*/
select, select.form-control {
    background: #fff\9 !important;
    padding-right: 7px\9 !important;
}

.pad-t0 {
    padding-top: 0 !important;
}

.pad-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.pad-lr0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.mrg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.mrg-t0 {
    margin-top: 0 !important;
}

.pad-t50 {
    padding-top: 50px;
}

.pad-b50 {
    padding-bottom: 50px;
}

.pad-t100 {
    padding-top: 100px;
}

.pad-b100 {
    padding-bottom: 100px;
}

.pad-t110 {
    padding-top: 120px;
}

.pad-b110 {
    padding-bottom: 120px;
}

/*z-index*/
.z-index-1 {
    z-index: 1;
}

/*owlCarouselarrow css start*/
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    font-size: 0;
    margin: 0;
}

.owl-theme .owl-nav {
    margin-top: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    left: -33px;
    right: -33px;
    margin: 0;
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
    width: 14px;
    height: 25px;
    background-image: url(../images/arrow-left.svg) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.owl-carousel .owl-nav button.owl-next {
    background-image: url(../images/arrow-left.svg) !important;
    transform: scale(-1);
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    background-color: transparent;
}

.owl-theme .owl-dots .owl-dot span {
    width: 7px;
    height: 7px;
    background: rgba(255,255,255,0.5);
    margin: 5px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #ffffff;
}
/*owlCarouselarrow css end*/

/*scroller css start*/
.height {
    max-height: 535px;
}

.scrollbar-path-vertical, .scrollbar-path-horizontal {
    position: absolute;
    background-color: #f8f9fe;
    z-index: 4 !important;
}

.scrollbar-path-horizontal {
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
}

.scrollbar-path-vertical {
    right: 10px;
    top: 0;
    height: 100%;
    width: 4px;
}

.scrollbar-handle {
    position: relative;
    top: 0;
    left: 0;
    background-color: #ccc;
}

.scrollbar-path-vertical .scrollbar-handle {
    height: 20%;
    width: 100%;
}

.scrollbar-path-horizontal .scrollbar-handle {
    width: 20%;
    height: 100%;
}

.scrollbar-path-vertical, .scrollbar-path-horizontal, .scrollbar-handle {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.scrollbar-content {
    padding: 0 20px 0 0;
    width: 100%;
}

/*jspopup*/
.alertify .ajs-header {
    padding: 10px 20px;
}

.alertify .ajs-dialog .ajs-header {
    background-color: #00c4c0 !important;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 18px;
}

.alertify .ajs-body .ajs-content {
    padding: 15px 0 0 0 !important;
}

.alertify .ajs-footer .ajs-buttons.ajs-primary .ajs-button {
    margin: 0 0 10px 15px;
}

.alertify .ajs-dialog .ajs-buttons .ajs-button.ajs-ok {
    background: #00CFDD;
    color: #ffffff;
    font-weight: 400;
    font-size: 18px;
    height: 44px;
    line-height: 44px;
    border: none;
    border-radius: 3px;
    text-align: center;
    padding: 0 35px;
    margin: 0 15px 15px 0 !important;
    cursor: pointer;
    display: inline-block;
}

    .alertify .ajs-dialog .ajs-buttons .ajs-button.ajs-ok:hover {
        background: #009aa4;
        color: #ffffff;
    }

.alertify .ajs-dialog .ajs-buttons .ajs-button.ajs-cancel {
    background-color: #8D8D8D;
    color: #ffffff;
    padding: 0 35px;
    border-radius: 3px;
    height: 44px;
    line-height: 44px;
    border: none;
    margin-left: 11px !important;
}

    .alertify .ajs-dialog .ajs-buttons .ajs-button.ajs-cancel:hover {
        background: #333333;
    }

.alertify .ajs-maximize, .alertify .ajs-close {
    display: none !important;
    pointer-events: none !important;
}


.msg-box {
    font-size: 14px;
    color: #ffffff;
    padding: 7px 27px 7px 10px;
    display: flex;
    position: relative;
}

    .msg-box .close {
        position: absolute;
        right: 8px;
        top: 50%;
        opacity: 1;
        text-shadow: none;
        color: #fff;
        transform: translateY(-50%);
    }

        .msg-box .close:hover {
            color: #ffffff;
        }

    .msg-box p {
        font-size: 14px;
        line-height: 18px;
    }

        .msg-box p a {
            color: #ffffff;
        }

            .msg-box p a:hover {
                color: #333333;
            }

    .msg-box.mrg-25 {
        margin: 25px 25px 0;
    }

    .msg-box span {
        text-transform: uppercase;
    }

    .msg-box i {
        display: inline-block;
        vertical-align: middle;
        font-size: 14px;
        min-width: 16px;
        text-align: center;
        margin-right: 10px;
        margin-top: 2px;
    }

    .msg-box.success {
        background: #73CB63;
        border: solid 1px #39B922;
    }

    .msg-box.info {
        background: #00C4C0;
        border: solid 1px #24B6F7;
    }

    .msg-box.warning, .msg-box.danger {
        background: #FF5A0A;
        border: solid 1px #E36000;
    }
/*pulse animtion*/

.custom-check, .custom-radio {
    display: inline-block;
    margin-right: 15px;
    margin-top: 10px;
}

    .custom-check input[type=checkbox]:not(old) {
        width: 24px;
        height: 24px;
        z-index: 1;
    }

    .custom-check input[type=checkbox]:not(old) {
        width: 2em;
        margin: 0;
        padding: 0;
        font-size: 1em;
        opacity: 0;
        position: absolute;
    }

    .custom-check label, .custom-radio label {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #555555;
        font-weight: 400;
        position: relative;
        padding-left: 35px;
        padding-top: 0 !important;
        margin: 0;
        text-align: left !important;
        width: auto;
        display: inline-block;
    }

    .custom-check input[type=checkbox]:not(old):checked:before {
        display: block;
        background: #00CFDD;
        border-color: #00CFDD;
        text-align: center;
        font-family: "FontAwesome";
        content: "\f00c";
        font-size: 14px;
        display: block;
        color: #ffffff;
        margin: 0;
    }

    .custom-check input[type=checkbox]:not(old) + label > span {
        display: inline-block;
        width: 24px;
        height: 24px;
        margin: 0;
        line-height: 100%;
        background: #ffffff;
        vertical-align: bottom;
        border: solid 1px #EBEBEB;
        border-radius: 3px;
        position: absolute;
        left: 0;
        top: -2px;
        overflow: hidden;
    }
.custom-check input[type=checkbox]:not(old):checked + label > span:before {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00CFDD;
    text-align: center;
    font-family: "FontAwesome";
    content: "\f00c";
    font-size: 14px;
    color: #ffffff;
    margin: 0;
    width: 100%;
    height: 100%;
}

@keyframes stretch {
    0% {
        transform: scale(.5);
        border-radius: 100%;
    }

    100% {
        transform: scale(1.0);
    }
}

/*spin animation*/
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/*-------Global-Responsivecss--------*/
@media only screen and (max-width:1700px) {
    body {
        font-size: 15px;
    }

    h1, .h1 {
        font-size: 50px;
    }

    h2, .h2 {
        font-size: 38px;
    }

    h3, .h3 {
        font-size: 30px;
    }

    ul.text-list li {
        font-size: 15px;
    }
}

@media only screen and (max-width:1440px) {
    body {
        font-size: 14px;
    }

    h1, .h1 {
        font-size: 40px;
    }

    h2, .h2 {
        font-size: 34px;
    }

    h3, .h3 {
        font-size: 25px;
    }

    .pad-t100 {
        padding-top: 60px;
    }

    .pad-b100 {
        padding-bottom: 60px;
    }

    .form-control {
        font-size: 14px;
        height: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    select, select.form-control {
        font-size: 14px;
    }

    .btn-custom {
        font-size: 16px;
    }

    ul.text-list li {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .text-link {
        font-size: 14px;
    }
}

@media only screen and (max-width:1366px) {
    .container {
        max-width: 1100px;
    }

    .btn-custom {
        font-size: 15px;
        height: 40px;
        line-height: 40px;
        padding: 0 30px;
    }
}

@media only screen and (max-width:1199px) {
    h1, .h1 {
        font-size: 38px;
    }

    h2, .h2 {
        font-size: 30px;
    }

    h3, .h3 {
        font-size: 22px;
    }

    h5, .h5 {
        font-size: 18px;
    }

    .container {
        max-width: 980px;
    }

    .owl-theme .owl-nav {
        left: 0;
        right: 0;
    }
}

@media only screen and (max-width:991px) {
    h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
        margin-bottom: 15px;
    }

    .pad-t100 {
        padding-top: 40px;
    }

    .pad-b100 {
        padding-bottom: 40px;
    }

    .pad-t50 {
        padding-top: 30px;
    }

    .pad-b50 {
        padding-bottom: 30px;
    }

    .btn-custom.small {
        font-size: 13px;
        padding: 0 15px;
    }
}

@media only screen and (max-width:767px) {
    h1, .h1 {
        font-size: 30px;
    }

    h2, .h2 {
        font-size: 25px;
    }

    h3, .h3 {
        font-size: 18px;
    }

    h4, .h4 {
        font-size: 18px;
    }

    h5, .h5 {
        font-size: 16px;
    }

    .wow {
        visibility: visible !important;
        -webkit-animation: none !important;
        -moz-animation: none !important;
        -o-animation: none !important;
        -ms-animation: none !important;
        animation: none !important;
    }
}

@media only screen and (max-width:575px) {
    body {
        font-size: 13px;
    }

    h1, .h1 {
        font-size: 26px;
    }

    h2, .h2 {
        font-size: 20px;
    }

    h3, .h3 {
        font-size: 16px;
    }

    .pad-t100 {
        padding-top: 30px;
    }

    .pad-b100 {
        padding-bottom: 30px;
    }

    .btn-custom {
        font-size: 13px;
        height: 35px;
        line-height: 35px;
        padding: 0 20px;
    }

        .btn-custom.small {
            font-size: 12px;
            padding: 0 15px;
            height: 30px;
            line-height: 29px;
        }

    ul.text-list li {
        font-size: 13px;
    }

    .text-link {
        font-size: 13px;
    }
}

@media only screen and (max-width:479px) {
}
