@charset "UTF-8";

/* @import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap"); */

@font-face {
    font-family: 'DM Serif Display Regular';
    font-style: normal;
    font-weight: normal;
    src: local('DM Serif Display Regular'), url('../fonts/DMSerifDisplay-Regular.woff') format('woff');
}

@font-face {
    font-family: 'interregular';
    src: url('../fonts/inter-regular-webfont.woff2') format('woff2'), url('../fonts/inter-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DM Serif Display Italic';
    font-style: normal;
    font-weight: normal;
    src: local('DM Serif Display Italic'), url('../fonts/DMSerifDisplay-Italic.woff') format('woff');
}

*,
::after,
::before {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

::selection {
    color: var(--colorwhite);
    background-color: var(--colorblack);
}


/* Scrollbar CSS */


/* Works on Firefox */

* {
    scrollbar-width: thin;
    scrollbar-color: #707070 transparent;
}


/* Works on Chrome, Edge, and Safari */

*::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: #707070;
    border-radius: 0px;
    border: 0px solid transparent;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

@media (min-width: 1700px) {
    .container {
        max-width: 1644px;
    }
    .viewcover h2 {
        font-size: 42px;
        line-height: 42px;
    }
    .viewcover img {
        width: 75px;
    }
    .viewcover.travelbox .box-padding {
        padding: 33px 28px;
    }
    #callback {
        height: 740px;
    }
    .viewcover {
        height: 550px;
    }
    .callback-body {
        height: 550px;
    }
    .callback-head {
        padding: 45px 65px;
    }
    .callback-body {
        padding: 45px 65px;
    }
}

:root {
    --sectionbg: #f6f2ee;
    --colorblue: #2160AD;
    --colorgrey: #63656a;
    --colorblack: #000000;
    --colorwhite: #ffffff;
    --darkmaroon: #3a0413;
    --offwhite: #f6f2ee;
    --lightgrey: #f3f6f9;
    --color-blue: #0f1940;
}

.color-lightgrey {
    background-color: #F5F5F5;
}

.color-maroon {
    color: var(--colorblue);
}

.color-grey {
    color: var(--colorgrey);
}

.color-black {
    color: var(--colorblack);
}

.color-white {
    color: var(--colorwhite);
}

.color-blue {
    color: var(--color-blue);
}

.bg-maroon {
    background-color: var(--colorblue);
    margin-top: 60px;
}

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

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

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'DM Serif Display Regular';
}

a,
p,
span {
    font-family: "interregular", sans-serif;
}

h1 {
    font-size: 45px;
    line-height: 50px;
    font-weight: 400;
}

h2 {
    font-size: 39px;
    line-height: 39px;
}

h3 {
    font-size: 32px;
    line-height: 40px;
}

h4 {
    font-size: 27px;
    line-height: 27px;
}

h5 {
    font-size: 21px;
    line-height: 21px;
    font-weight: 700;
}

h6 {
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
}

hr {
    color: #ffffff;
    border: 1px solid #ffffff;
    opacity: 1;
    margin: 0;
}

.justify-conent-center {
    display: flex;
    justify-content: center;
}

.logos {
    padding: 0;
    list-style: none;
    margin: 10px;
}

.logos li {
    display: inline-block;
    padding: 0 6px;
}

.logos li::before {
    border-left: 1px solid #cccccc;
    content: "";
    width: 1px;
    height: 95px;
    position: absolute;
}

.logos li:first-child::before {
    border-left: 0px solid #cccccc;
}

.logos li a img {
    width: 180px;
}

.btns-bunch {
    list-style: none;
    padding: 0;
    margin: 0;
    float: right;
}

.btns-bunch li {
    display: inline-block;
    margin-right: 30px;
}

.buy-btn {
    display: none;
}

.default-btn {
    color: var(--colorblack);
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    width: 180px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--colorblue);
    border-radius: 58px;
    -webkit-border-radius: 58px;
    -moz-border-radius: 58px;
    -ms-border-radius: 58px;
    -o-border-radius: 58px;
    padding: 8px 8px 8px 28px;
    transition: all ease-in-out, 0.5s;
    -webkit-transition: all ease-in-out, 0.5s;
    -moz-transition: all ease-in-out, 0.5s;
    -ms-transition: all ease-in-out, 0.5s;
    -o-transition: all ease-in-out, 0.5s;
}

.default-btn:hover {
    color: var(--colorwhite);
    border: 1px solid var(--colorblue);
    background-color: var(--colorblue);
    transition: all ease-in-out, 0.5s;
    -webkit-transition: all ease-in-out, 0.5s;
    -moz-transition: all ease-in-out, 0.5s;
    -ms-transition: all ease-in-out, 0.5s;
    -o-transition: all ease-in-out, 0.5s;
}

.default-btn.active {
    color: var(--colorwhite);
    border: 1px solid var(--colorblue);
    background-color: var(--colorblue);
    transition: all ease-in-out, 0.5s;
    -webkit-transition: all ease-in-out, 0.5s;
    -moz-transition: all ease-in-out, 0.5s;
    -ms-transition: all ease-in-out, 0.5s;
    -o-transition: all ease-in-out, 0.5s;
}

.default-btn.active:hover {
    color: var(--colorblue);
    background-color: var(--colorwhite);
    border: 1px solid var(--colorblue);
    transition: all ease-in-out, 0.5s;
    -webkit-transition: all ease-in-out, 0.5s;
    -moz-transition: all ease-in-out, 0.5s;
    -ms-transition: all ease-in-out, 0.5s;
    -o-transition: all ease-in-out, 0.5s;
}

.default-btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0rem rgb(13 110 253 / 0%);
}

.home-form {
    /* background: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.73)) 0% 0% / cover no-repeat; */
    background-repeat: no-repeat;
    background-position: center top;
    padding: 210px 0px;
    background-size: cover;
    background-repeat: no-repeat;
}

.home {
    background: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.73)) 0% 0% / cover no-repeat, url("../images/home-new.jpg");
    background-size: cover;
}

.motor {
    background: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.73)) 0% 0% / cover no-repeat, url("../images/motor-new.jpg");
    background-position: top;
    background-size: cover;
}

.pab {
    background: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.73)) 0% 0% / cover no-repeat, url("../images/pab-new.jpg");
    background-position: center top;
    background-size: cover;
}

.travel {
    background: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.73)) 0% 0% / cover no-repeat, url("../images/travel-new.jpg");
    background-position: center top;
    background-size: cover;
}

.visitor {
    background: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.73)) 0% 0% / cover no-repeat, url("../images/visitor-new.jpg");
    background-position: center top;
    background-size: cover;
}

.sme {
    background: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.73)) 0% 0% / cover no-repeat, url("../images/sme-new.jpg");
    background-position: 10% center;
    background-size: cover;
}

.health {
    background: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.73)) 0% 0% / cover no-repeat, url("../images/health-new.jpg");
    background-position: 10% center;
    background-size: cover;
}

.f-weight-light {
    font-weight: 300;
}

.red-star {
    color: var(--colorblue);
    font-size: 30px;
}

.why-us p {
    margin: 0 !important;
}

footer {
    background-color: var(--colorwhite);
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
    .logos li a img {
        width: 150px;
    }
    .logos li::before {
        height: 80px;
    }
    .sme-box {
        margin-top: 12% !important;
    }
    .viewcover h2 {
        margin-bottom: 40px !important;
    }
    .home {
        background-size: cover !important;
        background-position: 60% !important;
    }
    .why-us h2 {
        margin-bottom: 40px;
    }
    .footer {
        padding: 80px 20px !important;
    }
}

@media only screen and (max-width: 1366px) {
    .sme-box {
        margin-top: 8% !important;
    }
}

@media (max-width: 1366px) and (min-width: 1200px) {
    .viewcover p {
        font-size: 16px !important;
    }
    .viewcover.travelbox .box-padding {
        padding: 28px 10px !important;
    }
}

@media (min-width: 280px) and (max-width: 575px) {
    .logos li::before {
        height: 50px;
    }
    .viewcover .box-padding {
        padding: 10px !important;
    }
    .viewcover hr {
        display: none;
    }
    .viewcover .border-right {
        border-right: unset !important;
    }
    .border-bottom-small {
        border-bottom: 2px solid #ffffff !important;
        width: 100% !important;
        margin: 0 !important;
    }
    .footer {
        padding: 80px 10px !important;
    }
    .footer img {
        width: 200px !important;
    }
    .btns-bunch {
        margin: 0 auto;
        float: none;
        display: table;
    }
    .btns-bunch li {
        display: inline-block;
        margin: 0 3px;
    }
    .logos li a img {
        width: 105px;
    }
    .logos {
        margin: 6px auto;
        display: table;
    }
    .default-btn {
        font-size: 12px;
        line-height: 12px;
        padding: 12px 12px;
    }
    .home {
        padding: 135px 0px;
        margin-top: 25px;
        background-size: cover;
        background-repeat: no-repeat;
        height: 650px;
        background-position: 70%;
    }
    .motor {
        padding: 135px 0px;
        margin-top: 25px;
        background-size: cover;
        background-repeat: no-repeat;
        height: 650px;
        background-position: 50%;
    }
    .pab {
        padding: 135px 0px;
        margin-top: 25px;
        background-size: 500%;
        background-repeat: no-repeat;
        height: 650px;
        background-position: center 115%;
    }
    .travel {
        padding: 135px 0px;
        margin-top: 25px;
        background-size: cover;
        background-repeat: no-repeat;
        height: 650px;
        background-position: 77%;
    }
    .sme {
        padding: 135px 0px;
        margin-top: 25px;
        background-size: cover;
        background-repeat: no-repeat;
        height: 650px;
        background-position: 77%;
    }
    .health {
        padding: 135px 0px;
        margin-top: 25px;
        background-size: cover;
        background-repeat: no-repeat;
        height: 650px;
        background-position: 70% top;
    }
    .home-form h1 {
        font-size: 22px;
        line-height: 22px;
        text-align: center;
    }
    .home-form h3 {
        font-size: 16px;
        line-height: 20px;
        text-align: center;
        margin: 0;
    }
    .home-form a {
        margin: 0 auto;
        display: table;
    }
    h1 {
        font-size: 24px;
        line-height: 24px;
        font-weight: 600;
    }
    h3 {
        font-size: 18px;
        line-height: 18px;
    }
    .home-form h1 {
        font-size: 26px;
        line-height: 26px;
        margin-bottom: 6px;
    }
}


/* my code */

.viewcover {
    padding: 41px;
    background-color: #FFE8BD;
    text-align: center;
    margin: 0px 0px;
    height: 480px;
    border-radius: 58px 0px 0px 58px;
    -webkit-border-radius: 58px 0px 0px 58px;
    -moz-border-radius: 58px 0px 0px 58px;
    -ms-border-radius: 58px 0px 0px 58px;
    -o-border-radius: 58px 0px 0px 58px;
}

.viewcover h2 {
    text-align: left;
    font-size: 32px;
    line-height: 32px;
    font-weight: 400;
    color: var(--colorblue);
}

.viewcover .border-right {
    border-right: 2px solid var(--colorwhite);
}

.viewcover.travelbox .box-padding {
    padding: 28px 28px;
    display: flex;
    text-align: left;
    align-items: center;
}

.viewcover img {
    margin-right: 20px;
    width: 55px;
}

.viewcover p {
    margin: 0;
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
}

#callback {
    margin-top: -350px;
    position: relative;
    min-height: 670px;
}

.callback {
    margin-left: -150px;
}

.callback-head {
    padding: 32px 46px;
    border-radius: 58px 58px 0 0;
    -webkit-border-radius: 58px 58px 0 0;
    -moz-border-radius: 58px 58px 0 0;
    -ms-border-radius: 58px 58px 0 0;
    -o-border-radius: 58px 58px 0 0;
}

.callback-body {
    padding: 32px 46px;
    border-radius: 0 0 58px 58px;
    -webkit-border-radius: 0 0 58px 58px;
    -moz-border-radius: 0 0 58px 58px;
    -ms-border-radius: 0 0 58px 58px;
    -o-border-radius: 0 0 58px 58px;
    height: 480px;
}

.callback h3,
.callback p {
    color: var(--colorwhite);
}

.callback input {
    background: none;
    border: 0;
    border-bottom: 0px solid white;
    color: #AEAEAE;
    background-color: var(--colorwhite);
    border-radius: 25px;
    padding: 12px 18px;
}

.callback input:focus {
    color: var(--colorblack);
    background-color: #ffe8bd80;
    border-color: unset;
    outline: 0;
    box-shadow: unset;
}

::placeholder {
    color: var(--colorblack) !important;
}

.callback .callback-btn {
    border: 1px solid var(--colorblue);
    padding: 12px 55px;
    color: var(--colorwhite);
    background-color: var(--colorblue);
    border-radius: 38px;
    -webkit-border-radius: 38px;
    -moz-border-radius: 38px;
    -ms-border-radius: 38px;
    -o-border-radius: 38px;
    text-align: center;
    margin: 0 auto;
    display: table;
    text-transform: uppercase;
}

.callback .callback-btn:hover {
    border: 1px solid var(--colorblue);
    color: var(--colorblue);
    background-color: transparent;
    outline: 0;
}

.callback .callback-btn:hover {
    box-shadow: 0 0 0 0rem rgb(13 110 253 / 0%);
}

.why-us {
    padding: 50px 0px;
}

.why-us h2 {
    text-align: center;
    font-weight: 400;
    color: var(--colorblue);
}

.footer {
    padding: 140px 0px;
    text-align: center;
    background-color: #2F6BB4;
    background-image: url(../images/footer-tick-mark.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0% 100%;
}

.footer h2 {
    color: var(--colorwhite);
    font-weight: 400;
}

.footer h3 {
    font-weight: 400;
    font-size: 20px;
    color: var(--colorwhite);
}

.footer img {
    width: 300px;
    margin: 60px 0;
}

.footer small {
    margin: 60px 0;
    display: block;
}

@media (min-width: 578px) and (max-width: 768px) {
    header .col-12 {
        width: 50%;
    }
    .home-form {
        text-align: center;
        padding: 127px 0px;
        height: auto;
    }
    #callback {
        margin-top: 20px;
        height: auto;
    }
    .viewcover {
        height: auto;
        border-radius: 58px 58px 0px 0px;
    }
    .viewcover .col-md-12 {
        flex: 0 0 auto;
        width: 50%;
    }
    .callback {
        margin-left: 0px;
    }
    .callback-head {
        border-radius: 0px 0 0 0;
        -webkit-border-radius: 0px 0 0 0;
        -moz-border-radius: 0px 0 0 0;
        -ms-border-radius: 0px 0 0 0;
        -o-border-radius: 0px 0 0 0;
        margin: 0;
    }
    .callback-body {
        margin: 0;
        border-radius: 0px 0px 58px 58px;
        -webkit-border-radius: 0px 0px 58px 58px;
        -moz-border-radius: 0px 0px 58px 58px;
        -ms-border-radius: 0px 0px 58px 58px;
        -o-border-radius: 0px 0px 58px 58px;
    }
    .sme {
        background-position: 50% center;
    }
}

@media (min-width: 769px) and (max-width: 990px) {
    header .col-12 {
        width: 50%;
    }
    #callback {
        margin-top: 20px;
        height: auto;
    }
    .viewcover {
        height: auto;
        border-radius: 58px 58px 0px 0px;
    }
    .viewcover .col-md-12 {
        flex: 0 0 auto;
        width: 50%;
    }
    .callback {
        margin-left: 0px;
    }
    .callback-head {
        border-radius: 0px 0 0 0;
        -webkit-border-radius: 0px 0 0 0;
        -moz-border-radius: 0px 0 0 0;
        -ms-border-radius: 0px 0 0 0;
        -o-border-radius: 0px 0 0 0;
        margin: 0;
    }
    .callback-body {
        margin: 0;
        border-radius: 0px 0px 58px 58px;
        -webkit-border-radius: 0px 0px 58px 58px;
        -moz-border-radius: 0px 0px 58px 58px;
        -ms-border-radius: 0px 0px 58px 58px;
        -o-border-radius: 0px 0px 58px 58px;
    }
}

@media (min-width:991px) and (max-width:1024px) {
    .home-form {
        padding: 170px 0;
    }
    .callback {
        margin-left: -95px;
    }
    .callback-body {
        padding: 32px 32px;
    }
    #callback {
        margin-top: -316px;
        min-height: auto;
    }
    .callback-head {
        padding: 32px 32px;
    }
    .viewcover.travelbox .box-padding {
        padding: 22px 0px;
    }
}

@media (min-width:280px) and (max-width:575px) {
    .home-form {
        text-align: center;
        padding: 70px 0px;
        height: auto;
    }
    #callback {
        margin-top: 20px;
        height: auto;
    }
    .viewcover {
        height: auto;
        border-radius: 58px 58px 0px 0px;
        padding: 30px;
    }
    .viewcover .col-md-12 {
        flex: 0 0 auto;
        width: 50%;
    }
    .callback {
        margin-left: 0px;
    }
    .callback-head {
        border-radius: 0px 0 0 0;
        -webkit-border-radius: 0px 0 0 0;
        -moz-border-radius: 0px 0 0 0;
        -ms-border-radius: 0px 0 0 0;
        -o-border-radius: 0px 0 0 0;
        margin: 0;
        padding: 30px;
    }
    .callback-body {
        margin: 0;
        border-radius: 0px 0px 58px 58px;
        -webkit-border-radius: 0px 0px 58px 58px;
        -moz-border-radius: 0px 0px 58px 58px;
        -ms-border-radius: 0px 0px 58px 58px;
        -o-border-radius: 0px 0px 58px 58px;
        padding: 30px;
    }
    .viewcover h2 {
        font-size: 26px;
        line-height: 26px;
    }
}