@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&display=swap');

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    *,
    *:focus {
        outline: none;
    }

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #000000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ul {
    list-style: none;
}

.page-left-side {
    display: inline-block;
    width: 50%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    /* z-index: 99;*/
}

.slideshow,
.slideshow::after {
    width: 100%;
    height: 100%;
}

    .slideshow::after {
        content: '';
        background: #000;
    }

.img-bg-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    color: transparent; /*hides span's text*/
    background-size: cover; /* covers whole viewport */
    background-position: 100% 100%;
    background-repeat: none;
    opacity: 0;
    z-index: 1;
    animation: backgroundSlideshow 60s linear infinite 0s;
}

.slideshow li:nth-child(1) .img-bg-slide {
    background-image: url('../images/bg1.jpg');
}

.slideshow li:nth-child(2) .img-bg-slide {
    background-image: url('../images/bg2.jpg');
    animation-delay: 15s;
}

.slideshow li:nth-child(3) .img-bg-slide {
    background-image: url('../images/bg3.jpg');
    animation-delay: 30s;
}

.slideshow li:nth-child(4) .img-bg-slide {
    background-image: url('../images/bg4.jpg');
    animation-delay: 45s;
}

@keyframes backgroundSlideshow {
    0% {
        opacity: 0;
    }

    12.5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    37.5% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.page-right-side {
    display: inline-block;
    width: 50%;
    overflow-x: hidden;
    float: right;
    position: relative;
}

header {
    padding-top: 15px;
    position: relative;
    z-index: 1;
}

a.logo {
    margin: 0 auto;
    display: table;
}

.logo img {
    width: 100%;
    max-width: 180px;
}

#toggle {
    display: block;
    width: 28px;
    height: 30px;
    position: absolute;
    z-index: 9;
    left: 30px;
    padding-top: 15px;
}

    #toggle span:after,
    #toggle span:before {
        content: "";
        position: absolute;
        left: 0;
        top: -9px;
    }

    #toggle span:after {
        top: 9px;
    }

    #toggle span {
        position: relative;
        display: block;
    }

        #toggle span,
        #toggle span:after,
        #toggle span:before {
            width: 100%;
            height: 3px;
            background-color: #4197cb;
            transition: all 0.3s;
            backface-visibility: hidden;
            border-radius: 2px;
        }

    #toggle.on span {
        background-color: transparent;
    }

        #toggle.on span:before {
            transform: rotate(45deg) translate(5px, 5px);
            background-color: #fff;
        }

        #toggle.on span:after {
            transform: rotate(-45deg) translate(7px, -8px);
            background-color: #fff;
        }

    #toggle.on + #menu {
        opacity: 1;
        visibility: visible;
        top: 0;
    }

#menu {
    position: absolute;
    top: -500px;
    color: #fff;
    width: 220px;
    padding-top: 50px;
    font-family: sans-serif;
    background: #4197cb;
    opacity: 0;
    visibility: hidden;
    transition: all .4s;
}

    #menu:after {
        position: absolute;
        bottom: -200px;
        left: 0;
        content: "";
        display: block;
        border-right: 220px solid transparent;
        border-top: 200px solid #4197cb;
    }

    #menu ul, #menu li, #menu li a {
        list-style: none;
        display: block;
        margin: 0;
        padding: 0;
        position: relative;
        z-index: 9;
        font-weight: 700;
    }

        #menu li a {
            padding: 10px 10px 10px 25px;
            color: #fff;
            text-decoration: none;
            transition: all .2s;
            text-transform: uppercase;
            margin-right: 20px;
            margin-top: 10px;
        }

            #menu li a:hover,
            #menu li a:focus {
                background: #fff;
                color: #000;
                box-shadow: 5px 5px 10px 0px #00000040;
            }

a#toggle.on:before {
    content: "";
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    cursor: initial;
}

footer {
    width: 100%;
    position: relative;
    z-index: 0;
}

.brand-logos {
    width: 100%;
    display: table;
    text-align: center;
    margin-bottom: 30px;
}

.logo-item {
    width: calc(100%/3);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

    .logo-item img {
        max-width: 100%;
        max-height: 100%;
        height: 40px;
        -webkit-transition: transform 0.5s ease;
        -webkit-transition: -webkit-transform 0.5s ease;
        transition: -webkit-transform 0.5s ease;
        transition: transform 0.5s ease;
        transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    }

        .logo-item img:last-of-type {
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -150%);
            transform: translate(-50%, -150%);
        }

        .logo-item img:first-of-type {
            opacity: .6;
        }

    .logo-item:hover img:first-of-type {
        -webkit-transform: translateY(150%);
        transform: translateY(150%);
    }

    .logo-item:hover img:last-of-type {
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

section.main-content {
    position: relative;
    z-index: 0;
    margin: 70px 30px;
    min-height: calc(100vh - 390px);
}

.page-title {
    margin: 15px 0 30px;
    text-align: center;
}

    .page-title > p {
        font-size: 18px;
        font-weight: 700;
        color: #202945;
    }

    .page-title > span {
        font-size: 14px;
        font-weight: 300;
        color: #202945;
    }

form#serviceQuery {
    padding: 30px 0;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
}

.bottom-content {
    width: 100%;
    background-color: #f5f5f5;
    padding: 10px 10px 0;
    display: inline-block;
}

.copyright {
    float: left;
    font-size: 12px;
    color: #202945;
}

.social-icons {
    float: right;
}

    .social-icons img {
        width: 18px;
    }

    .social-icons a {
        display: inline-block;
        margin: 0 3px;
        cursor: pointer;
    }

.form-item {
    position: relative;
    margin-bottom: 15px
}

    .form-item input {
        display: block;
        width: 100%;
        height: 48px;
        background: transparent;
        border: solid 1px #ccc;
        transition: all .3s ease;
        padding: 0 15px
    }

        .form-item input:focus {
            border-color: #4197cb;
        }

    .form-item label {
        position: absolute;
        cursor: text;
        z-index: 2;
        top: 14px;
        left: 10px;
        font-size: 12px;
        font-weight: bold;
        background: #fff;
        padding: 0 10px;
        color: #999;
        transition: all .3s ease
    }

    .form-item input:focus + label,
    .form-item input:valid + label {
        font-size: 11px;
        top: -5px
    }

    .form-item input:focus + label {
        color: #4197cb;
    }

.alert-note, .alert-code {
    font-size: 12px;
    color: red;
    padding-left: 10px;
}

    .alert-note b, .alert-code b {
        font-size: 24px;
        position: absolute;
        left: 0px;
        top: -5px;
    }

.success-note {
    font-size: 12px;
    color: cornflowerblue;
    padding-left: 10px;
}

    .success-note b {
        font-size: 24px;
        position: absolute;
        left: 0px;
        top: -5px;
    }

.btnYts {
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    font-size: 15px;
    font-weight: 700;
    min-width: 170px;
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    padding: 0 15px;
    letter-spacing: 1px;
    border: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    color: #fff !important;
    background-color: #4197cb;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

    .btnYts:focus,
    .btnYts.active,
    .btnYts:active {
        -webkit-box-shadow: none;
        box-shadow: none;
        outline: none;
    }

    .btnYts:not(.btnYts__link):not(.btnYts__bordered):before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background-color: #202945;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
        -webkit-transition: transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
        -webkit-transition: -webkit-transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
        transition: -webkit-transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
        transition: transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
        transition: transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9), -webkit-transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
    }

    .btnYts:not(.btnYts__link):not(.btnYts__bordered):hover:before {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }

.contact-info {
    width: 50%;
    float: left;
    margin-top: 20px;
    padding: 15px;
    border-left: 2px solid #4197cb;
}

    .contact-info ul {
        width: 100%;
        float: left;
        margin-bottom: 15px;
    }

    .contact-info li {
        float: left;
    }

        .contact-info li:nth-child(1) {
            width: 30px;
        }

        .contact-info li:nth-child(2) {
            width: calc(100% - 30px);
            padding-right: 30px;
        }

        .contact-info li p {
            font-size: 14px;
        }

        .contact-info li img {
            width: 24px;
        }

        .contact-info li p span {
            font-size: 10px;
            margin-top: -2px;
            display: block;
        }

        .contact-info li p b {
            font-weight: 700;
        }

.service-info-content {
    display: inline-block;
    width: 100%;
}

.service-info-item {
    width: calc(50% - 20px);
    float: left;
    margin: 10px;
}

.item-title {
    font-size: 12px;
    font-weight: 700;
    color: #4597cb;
    padding-left: 5px;
    margin-bottom: 3px;
}

.item-desc {
    border: 1px solid #d6efff;
    background-color: #eef8ff;
    height: 50px;
    font-size: 14px;
    padding: 5px 10px;
    overflow-x: hidden;
    overflow-y: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

    .item-desc.long {
        height: 100px;
        overflow-y: auto;
        display: block;
    }

p.little-note {
    font-size: 12px;
    padding: 15px;
    color: #1f2945;
}

@media (max-width: 800px) {
    .page-left-side {
        display: none;
    }

    .page-right-side {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .bottom-content > div {
        float: initial;
        text-align: center;
        padding: 5px;
    }

    .contact-info {
        width: 100%;
    }

    .service-info-item {
        width: calc(100% - 20px);
    }
}

/* sms remaining time start */

#timer {
    position: absolute;
    top: 7px;
    right: 0;
    width: 50px;
}

.base-timer {
    position: relative;
    width: 34px;
    height: 34px;
}

.base-timer__svg {
    transform: scaleX(-1);
}

.base-timer__circle {
    fill: none;
    stroke: none;
}

.base-timer__path-elapsed {
    stroke-width: 8px;
    stroke: grey;
}

.base-timer__path-remaining {
    stroke-width: 8px;
    stroke-linecap: round;
    transform: rotate(90deg);
    transform-origin: center;
    transition: 1s linear all;
    fill-rule: nonzero;
    stroke: currentColor;
}

    .base-timer__path-remaining.green {
        color: rgb(65, 184, 131);
    }

    .base-timer__path-remaining.orange {
        color: orange;
    }

    .base-timer__path-remaining.red {
        color: red;
    }

.base-timer__label {
    position: absolute;
    width: 34px;
    height: 34px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}
/* sms remainin time end */




/*Loading*/
.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ellipsis div {
        position: absolute;
        top: 33px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: #cef;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .lds-ellipsis div:nth-child(1) {
            left: 8px;
            animation: lds-ellipsis1 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(2) {
            left: 8px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(3) {
            left: 32px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(4) {
            left: 56px;
            animation: lds-ellipsis3 0.6s infinite;
        }

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

.btnYts-reload {
    text-transform: capitalize;
    /* position: relative; */
    /* z-index: 1; */
    font-size: 15px;
    /* font-weight: 600; */
    min-width: 45px;
    /* width: 1
    px
    ; */
    height: 35px;
    line-height: 60px;
    text-align: center;
    /* padding: 0 15
    px
    ; */
    letter-spacing: 1px;
    border: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    color: #fff;
    background-color: #4197cb;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

    .btnYts-reload:focus,
    .btnYts-reload.active,
    .btnYts-reload:active {
        -webkit-box-shadow: none;
        box-shadow: none;
        outline: none;
    }

    .btnYts-reload:not(.btnYts__link):not(.btnYts__bordered):before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background-color: #202945;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
        -webkit-transition: transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
        -webkit-transition: -webkit-transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
        transition: -webkit-transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
        transition: transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
        transition: transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9), -webkit-transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
    }

    .btnYts-reload:not(.btnYts__link):not(.btnYts__bordered):hover:before {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }

.loading {
    text-align: center;
}

.sep-2 {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, #f0f0f0, #00b9ff, #59d941, #f0f0f0);
    margin: 1em 0em 1em 0em;
    /*  position: static;*/
}


.thumbnailDiv {
    width: 60px;
    position: relative;
    min-width: 40px;
    margin-right: 6px;
    border-radius: 3px;
    background: #ffffff;
    padding: 5px;
    height: 75px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.19), 0 1px 3px 0 rgba(0, 0, 0, 0.19) !important;
    border: 0.5px solid #bebdbd !important;
    margin-bottom: 10px;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .thumbnailDiv {
        -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.19), 0 1px 3px 0 rgba(0, 0, 0, 0.19) !important;
    }
}

.thumbnailimage {
    width: 100%;
    object-fit: contain;
    height: 65px;
}

hr {
    height: 1px;
    background: white;
    border: none;
    outline: none;
    margin: 3em 3em 5em;
    /*  position: relative; */
}

    hr#three {
        background-image: linear-gradient(to right, #3498db, #10d7af, #3498db);
    }


.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
