@import url('./header.css');
@font-face {
    font-family: 'Inter-Black';
    src: url(../../../../fonts/Inter/static/Inter-Black.ttf) format('truetype');
    src: url(../../../../fonts/Inter/static/Inter-Black.woff2) format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Inter-Bold';
    src: url(../../../../fonts/Inter/static/Inter-Bold.ttf) format('truetype');
    src: url(../../../../fonts/Inter/static/Inter-Bold.woff2) format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Inter-Regular';
    src: url(../../../../fonts/Inter/static/Inter-Regular.ttf) format('truetype');
    src: url(../../../../fonts/Inter/static/Inter-Regular.woff2) format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Inter-Medium';
    src: url(../../../../fonts/Inter/static/Inter-Medium.ttf) format('truetype');
    src: url(../../../../fonts/Inter/static/Inter-Medium.woff2) format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'OpenSans-Regular';
    src: url(../../../../fonts/OpenSans-Regular.ttf) format('truetype');
    src: url(../../../../fonts/OpenSans-Regular.woff2) format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto-Regular';
    src: url(../../../../fonts/Roboto-Regular.ttf) format('truetype');
    src: url(../../../../fonts/Roboto-Regular.woff2) format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto-Medium';
    src: url(../../../../fonts/Roboto-Medium.ttf) format('truetype');
    src: url(../../../../fonts/Roboto-Medium.woff2) format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto-Bold';
    src: url(../../../../fonts/Roboto-Bold.ttf) format('truetype');
    src: url(../../../../fonts/Roboto-Bold.woff2) format('woff2');
    font-display: swap;
}


:root {
    --color-primary: #0f2a51;
    --max-width: 1200px;
    --white: #fff;
    --gray: #DBDCDD;
    --dark-gray: #C9CACC;
    --black: #000;
    --yellow: #F8D832;
}

body {
    background: #F9F9F9 !important;
    font-family: Roboto-Regular;
}

main {
    /*background-image: url(../../images/scaled.jpg);
    background-repeat: no-repeat;*/
    background: #FFFFFF;
}

.over_hid {
    overflow: hidden;
}

/* custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: #e7e7e7;
    border: 1px solid #cacaca;
}

::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: #00285a;
}

.products .item {
}

.products .item .btn-buy-now {
    border: 1px solid var(--color-primary);
    padding: 5px 20px;
    border-radius: 20px;
    color:  var(--color-primary);
}

.products .item .btn-buy-now:hover {
    background: var(--color-primary);
    color: #FFFFFF;
}

.sale-price {
    color: var(--color-primary);
    line-height: 40px;
}

.call-us {
    background: #45B749;
    color: white;
    padding: 5px 10px;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    font-weight: bold;
}

.ribbon {
    font-family: "OpenSans-Regular";
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}
.ribbon-finished {
    --r: .4em;
    --c: #c32027;
    position: absolute;
    top: 10px;
    left: calc(-1*var(--r));
    line-height: 1.8;
    padding: 0 .5em calc(2*var(--r));
    border-radius: var(--r) 0 0 var(--r);
    background:
        radial-gradient(100% 50% at left,var(--c) 98%,#0000 101%)
        100% 0/.5lh calc(100% - 2*var(--r)),
        radial-gradient(100% 50% at right,#0005 98%,#0000 101%)
        0 100%/var(--r) calc(2*var(--r)),
        conic-gradient(from 90deg at var(--r) calc(100% - 2*var(--r)),#0000 25%,var(--c) 0)
        0 0/calc(101% - .5lh) 100%;
    background-repeat: no-repeat;
}

.ribbon-upcoming {
    --r: .4em;
    --c: #0e7cf4;
    position: absolute;
    top: 10px;
    left: calc(-1*var(--r));
    line-height: 1.8;
    padding: 0 .5em calc(2*var(--r));
    border-radius: var(--r) 0 0 var(--r);
    background:
        radial-gradient(100% 50% at left,var(--c) 98%,#0000 101%)
        100% 0/.5lh calc(100% - 2*var(--r)),
        radial-gradient(100% 50% at right,#0005 98%,#0000 101%)
        0 100%/var(--r) calc(2*var(--r)),
        conic-gradient(from 90deg at var(--r) calc(100% - 2*var(--r)),#0000 25%,var(--c) 0)
        0 0/calc(101% - .5lh) 100%;
    background-repeat: no-repeat;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Button default */
.button-default {
    position: relative;
    margin: 0 auto;
    min-width: 259px;
    height: 60px;
    display: inline-block;
    overflow: hidden;
    background: transparent;
    background-size: 400% 400%;
    cursor: pointer;
    transition: all .25s ease;
    border-radius: 30px;
}

.button-default:active {
    transform: translateY(2px);
}

.button-default::before {
    content: '';
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    width: 60px;
    height: 100%;
    top: 0;
    filter: blur(30px);
    transform: translateX(-100px) skewX(-15deg);
    animation: slide 3s infinite 3s;
    z-index: 999;
}

.button-default::after {
    content: '';
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 100%;
    top: 0;
    filter: blur(10px);
    transform: translateX(calc(50% - 10px)) skewX(-15deg);
    animation: slide 3s infinite 3s;
    z-index: 999;
}

@keyframes slide {
    0% {
        transform: translateX(-100px) skewX(-15deg);
    }

    100% {
        transform: translateX(800px) skewX(-15deg);
    }
}

.button-default .content-button {
    min-width: 259px;
    font-family: 'SVNGilroyXBold';
    font-size: 22px;
    color: var(--white);
}

.button-default .content-button,
.button-default img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

/* Top bar */
.top-bar {
    min-height: 42px;
    padding: 9px 0;
    width: 100%;
    background-color: var(--color-primary);
}

.top-bar span {
    font-size: 14px;
    /*color: var(--black);*/
    color: white;
    white-space: nowrap;
}

.top-bar span a {
    /*font-family: "OpenSans-Regular";*/
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;
}

.top-bar .top-bar-first a {
    border-radius: 15px;
    background-color: var(--color-primary);
    font-size: 14px;
    color: var(--white);
    line-height: 10px;
}

.top-bar .top-bar-first a:nth-child(3) {
    margin-right: 15px;
}

.top-bar-second .search input {
    width: 218px;
    outline: none;
    border: 1px solid var(--black);
    border-radius: 15px;
    padding: 4px 30px 4px 28px;
    font-size: 14px;
}

.top-bar-second .search img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    height: 18px;
    cursor: pointer;
}

.top-bar-second {
    gap: 15px;
}

.top-bar-second .social {
    /* margin-left: 20px; */
}

.top-bar-second .social .icon {
    height: 18px;
    width: auto;
    /* margin-right: 12px; */
}

.top-bar-second a.recruit {
    background: linear-gradient(to right, #D80000 , #F50200, #BB0100);
    font-family: Inter-Bold;
    color: white !important;
    padding: 5px 20px;
    border-radius: 5px;
}

.banner-list .owl-carousel {
    z-index: -1;
}
/* Breadcrumb */
.breadcrumb .link {
    background: url(../../images/post/home-8.png) bottom 5px left no-repeat;
}

.breadcrumb .link, .breadcrumb .link a {
    color: #00285a !important;
}

.shopping-cart-btn {
    background: linear-gradient(90deg, #00285A 0%, #001836 100%);
    padding: 3px 12px;
    border-radius: 8px;
}

.shopping-cart-btn img {
    height: 20px;
    margin-right: 5px;
}

.shopping-cart-btn span {
    background: #FFFFFF;
    border-radius: 50%;
    color: #00285a;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
}

/* Banner */
.banner img {
    width: 100%;
    height: auto;
}

.banner p {
    color: #FFF;
    text-align: center;
    font-family: "UTM-Bebas";
    font-size: 128px;
    font-style: normal;
    font-weight: 400;
    line-height: 70px;
    top: 40%;
    left: 0;
    width: 100%;
    position: absolute;
}





/* owl nav carosel */
.owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    /*transform: translateY(-50%);*/
    z-index: 0;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
    opacity: 0.7;
}

.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
    opacity: 1;
}
.breadcrumb a {
    font-size: 18px;
    color: #192c57;
    font-family: 'K2D-ExtraBold';
}
/* Responsive */
@media (max-width: 1200.98px) {
    .top-bar .top-bar-first div {
        margin-left: 0px;
    }
}

@media (min-width: 1199.98px) {
    footer .our-agency {
    }
}

@media (min-width: 767.98px) and (max-width: 991.98px) {
    footer .our-agency {
        padding-left: 30px;
    }
}

@media (max-width: 1199.98px) and (min-width: 991.98px) {
}

@media (max-width: 1120.98px) {

}

@media (max-width: 991.98px) {
    header {
    }

    .banner img {
        /*aspect-ratio: 420/600;*/
    }
}

@media (max-width: 768px) {
    header {
    }
    footer {
        margin-bottom: 70px;
    }

    footer h3 {
        max-width: 100%;
        margin-top: 20px;
    }
}

@media screen and (max-width: 767.98px) {
    .top-bar .top-bar-first a,
    .top-bar span,
    .top-bar-second .recruit a {
        font-size: 13px;
    }

    .our-agency {
        margin-top: 30px;
    }
}


@media (max-width: 575.98px) {
    header {
    }

    .top-bar .top-bar-second {
        margin-bottom: 10px;
    }

    .top-bar .social {
        text-align: center;
        width: 100%;
    }

    .navbar-area img.logo_main{
        width: 115px;
    }


    footer .sub-footer {
        max-width: 205px;
    }

    /* Mobile nav */
    .section-nav-footer {
        /*height: 60px;*/
    }

    footer {
        margin-bottom: 0;
    }

    .button-default {
        min-width: 200px;
        height: 47px;
    }

    .button-default .content-button {
        min-width: 200px;
        font-size: 18px;
        margin-top: -2px;
    }

    .banner p {
        font-size: 35px !important;
        top: 10% !important;
        line-height: normal !important;
    }
}

@media (max-width: 450.98px) {
    footer {
        padding: 40px 0;
    }

    /* Mobile nav */
    .section-nav-footer {
        /*height: 55px;*/
    }
}

@media (max-width: 425.98px) {
}


@media (max-width: 408.98px) {
}

@media (max-width: 379.98px) {
    .top-bar .top-bar-first div {
        margin-left: 0px;
    }

    .top-bar .top-bar-second {
        display: block !important;
    }

    .top-bar .top-bar-second .search input {
        width: 100%;
        height: 30px;
    }

    .top-bar .top-bar-second .social {
        /*margin-top: 10px;*/
    }
}

@media (max-width: 363.98px) {
}

.video-wrapper {
    position: relative;
    /*padding-bottom: 56.25%;
    height: 0;*/
    overflow: hidden;
}

.play-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.fix-sidebar {
    position: sticky;
    top: 76px;
    /*overflow-y: scroll;
    height: 700px;*/
}

.pagination .page-link {
    color: #00285A;;
}

.pagination .active > .page-link, .page-link.active {
    background: linear-gradient(90deg, #00285A 0%, #001836 100%);
    border-color: #00285A;
    color: white;
}


@media only screen and (min-device-width: 991px) and (max-device-width: 1024px) {
    .ipad-screen-btn {
        display: inline-block !important;
    }

    .go-to-enrollment-form {
        display: none;
    }
}

.left-sidebar h3 {
    background: linear-gradient(90deg, var(--color-primary) 0%, #23409c 100%);
    color: #FFFFFF;
    font-weight: bold;
    padding: 10px;
    font-size: 20px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    text-align: center;
}

.mobile-nav h3 {
    background: linear-gradient(90deg, var(--color-primary) 0%, #23409c 100%);
    color: #FFFFFF;
    font-weight: bold;
    padding: 10px;
    font-size: 24px;
    margin-bottom: 0;
}

.btn-default {
    background: linear-gradient(90deg, var(--color-primary) 0%, #23409c 100%);
    color: #FFFFFF;
    font-weight: bold;
}

.section-title {
    font-weight: 400;
    font-size: 50px;
    font-family: "UTM-Bebas";
    color: #00285a;
    margin-bottom: 30px;
    text-align: center;
}

#our-partners .owl-carousel .owl-item img {
    height: 120px;
}

.breadcrumb a {
    color: #333333;
}

.border-red-10 {
    border: 10px solid var(--color-primary);
}

.border-red-20 {
    border: 10px solid var(--color-primary);
}

@media screen and (min-width: 1024px) {
    .products .item {
        padding: 10px;
    }
}

.section-partner .owl-carousel .owl-item {
    background: #FFFFFF;
    padding: 5px;
    border: 5px solid var(--color-primary);
}

.products .item img:hover {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

.container-fluid {
    max-width: 1600px;
}



.products .item {
    margin-bottom: 20px;
}

.products .item .image {
    border-radius: 10px;
    border: 1px solid #d9d9d9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    text-align: center;
    background: #FFFFFF;
    text-align: center;
}

.products .item .image img {
    /*height: 450px;*/
}

.products .item .image img:hover {
    transform: scale(1.2);
}

.products .item h3 {
    margin: 10px 0;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
}

.products .item h3 a {
    font-family: "Roboto-Medium";
    font-size: 18px;
}

.service-title {
    --text-color: #FFFFFF;
    background-color: #391B8E;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
}

.service-title:before {
    background-color: #00133F;
    opacity: .7;
    inset: 0;
    position: absolute;
    content: '';
    z-index: 1;
    -webkit-transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.service-title h3 {
    font-size: 22px;
    color: var(--text-color);
    position: absolute;
    text-decoration: none;
    font-variation-settings: "wght" 600;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    text-transform: uppercase;
}

.bg-light-gray {
    background-image: linear-gradient(180deg, #EAEEF4 0%, transparent 100%);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.bg-light-gray:before {
    background: radial-gradient(circle at 50% 50%, var(--white) 0%, rgba(255,255,255,0) 70%);
    content: '';
}

.bg-light-navy {
    background: var(--color-primary);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.bg-light-navy:before {
    background: radial-gradient(circle at 50% 50%, var(--white) 0%, rgba(255,255,255,0) 70%);
    content: '';
}

.bg-sky-blue {
    background: #2892C9;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

ul.company-info, ul.company-info span, ul.company-info strong, ul.company-info p, ul.company-info a {
    color: #FFFFFF !important;
}

#right-sidebar {
    margin-top: 1px;
}
