@import url(./regular.css);
@import url(./solid.css);
@import url(./fontawesome.min.css);
@import url(./font-awesome-4.7.0.css);

@font-face {
    font-family: "Lato Bold";
    src: url('../fonts/Lato-Bold.ttf');
}

@font-face {
    font-family: "Lato Regular";
    src: url('../fonts/Lato-Regular.ttf');
}

@font-face {
    font-family: "Lato Semibold";
    src: url('../fonts/Lato-Semibold.ttf');
}

@font-face {
    font-family: "Lato Black";
    src: url('../fonts/Lato-Black.ttf');
}

@font-face {
    font-family: "Loko";
    src: url('../fonts/UTM Loko.ttf');
}

:root {
    --color-primary: #009ddf;
    --color-primary-dark: rgb(11, 132, 177);
    --color-secondary: #ae2c3c;
    --color-tertiary: #454486;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lato Regular', sans-serif;
    font-size: 15px;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lato Black', sans-serif;
}

.container {
    max-width: 1200px;
}

#header {
    background: var(--color-primary) url('../images/globe.png') no-repeat center center / auto 140%;
    padding: 0;
    position: relative;
}

    #header > div {
        z-index: 9;
    }

#logo img {
    height: 80px;
    width: auto;
}

.top-bar {
    background-color: var(--color-primary-dark);
    padding: 5px 0;
    margin-bottom: 10px;
}

    .top-bar .topbar-link {
        gap: 10px;
    }

        .top-bar .topbar-link a {
            background-color: var(--color-primary);
            border-radius: 5px;
            padding: 3px 8px;
            font-size: 13px;
            color: #fff;
            transition: all ease-in-out 0.3s;
        }

            .top-bar .topbar-link a:hover {
                background-color: var(--color-secondary);
                transition: all ease-in-out 0.3s;
            }

.language {
    text-align: right;
}

    .language img {
        height: 20px;
        width: 25px;
        object-fit: cover;
        margin-left: 10px;
		border: 1px solid #FFF;
    }

.search_topbar {
    position: relative;
}

    .search_topbar input {
        background: #fff;
        border-radius: 25px;
        border: none;
        outline: none;
        padding: 2px 10px;
        font-size: 14px;
    }

    .search_topbar i {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

.company_name {
    font-family: 'Lato Bold', sans-serif;
    text-align: center;
}

    .company_name h2 {
        color: #fff;
        font-size: 28px;
    }

    .company_name h3 {
        color: var(--color-secondary);
        font-family: 'Lato Regular', sans-serif;
        font-size: 20px;
        position: relative;
    }

        .company_name h3 span {
            margin-left: 0.5px;
            margin-right: 0.5px;
            color: var(--color-secondary);
            font-weight: 700;
        }

#header_bottom {
    background: var(--color-primary);
    border-top: 5px solid #AE2C3C;
    position: relative;
    z-index: 10 !important;
}

    #header_bottom .main_menu {
        background: var(--color-primary);
        position: relative;
        z-index: 10;
    }

#header_fixed.fixed {
    background: var(--color-primary);
    position: fixed !important;
    top: 0;
    bottom: unset !important;
    z-index: 999;
}

#header_bottom.fixed .nav_home {
    margin-top: 0px;
}

.nav_home {
    background: var(--color-primary);
    position: relative;
    transition: all 0.4s ease-in-out;
    z-index: 9;
}

    .nav_home::before {
        background: var(--color-primary);
        content: "";
        clip-path: polygon(0 100%, 100% 99%, 100% 0);
        height: 100%;
        width: 57px;
        position: absolute;
        left: -57px;
        top: 0;
    }

    .nav_home ul.menu {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
    }

        .nav_home ul.menu li {
            position: relative;
        }

        .nav_home ul.menu > li {
            border-left: 1px solid #06739b;
            border-right: 1px solid #28AADB;
        }

            .nav_home ul.menu > li:first-child {
                border-left: 0px;
            }

            .nav_home ul.menu > li:last-child {
                border-right: 0px;
            }

        .nav_home ul.menu li.active::before {
            position: absolute;
            display: block;
            margin: 0 auto -6px auto;
            width: 0;
            border-top: 6px solid #AE2C3C;
            border-right: 8px solid transparent;
            border-left: 8px solid transparent;
            content: "";
            left: 50%;
            transform: translateX(-50%);
        }

        .nav_home ul.menu li a {
            color: #fff;
            text-transform: uppercase;
            text-decoration: none;
            padding: 12px 20px;
            display: block;
            font-size: 14px;
            font-family: 'Lato Semibold', sans-serif;
            transition: all .4s ease-in;
        }

        .nav_home ul.menu li.active > a,
        .nav_home ul.menu li:hover > a {
            color: #fded00;
            transition: all .4s ease-in;
        }

    .nav_home ul.sub-menu {
        border-radius: 15px;
        border: 1px solid #B9DCEA;
        position: absolute;
        visibility: hidden;
        opacity: 0;
        left: 0;
        top: 65px;
        transition: all .3s ease-in;
        padding: 15px 0;
        background: #fff;
        min-width: 250px;
        z-index: 9999;
    }

    .nav_home ul.menu li:hover > ul.sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(-20px);
    }

    .nav_home ul.sub-menu > li {
        display: block;
        border-bottom: 1px solid #B9DCEA;
        padding: 0 15px;
    }

        .nav_home ul.sub-menu > li:last-child {
            border-bottom: 0px;
        }

        .nav_home ul.sub-menu > li > a {
            font-size: 15px;
            color: #222;
            padding: 10px 0;
            text-transform: capitalize;
            font-weight: bold;
            font-family: 'Lato Regular', sans-serif;
            transition: all ease-in 0.3s;
        }

        .nav_home ul.sub-menu > li:hover > a {
            color: var(--color-primary);
            font-weight: bold;
        }

    .nav_home ul.sub-menu > li {
        position: relative;
    }

        .nav_home ul.sub-menu > li > ul.sub-menu {
            border-radius: 15px;
            position: absolute;
            visibility: hidden;
            opacity: 0;
            left: 100%;
            top: 5px;
            transition: all .3s ease-in;
            padding: 15px 0;
            background: #fff;
            min-width: 250px;
            z-index: 9999;
        }

.nav_icon a {
    color: #fff;
    font-size: 24px;
    height: 35px;
    width: 35px;
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 5px;
    line-height: 35px;
    text-align: center;
    position: relative;
}

    .nav_icon a::before {
        content: "\f0c9";
        font-family: "FontAwesome";
    }

    .nav_icon a.bx-x::before {
        content: "\f00d";
    }

#backdrop {
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all ease-in-out 0.2s;
    z-index: 2;
}

    #backdrop.show {
        visibility: visible;
        transition: all ease-in-out 0.2s;
        opacity: 1;
    }

.nav_mobile {
    background: var(--color-primary);
    position: fixed;
    left: -280px;
    width: 280px;
    top: 0;
    height: 100%;
    transition: all .2s ease-in-out;
    padding: 0px;
    color: #fff;
    z-index: 999;
}

    .nav_mobile.show-menu {
        transform: translateX(280px);
    }

.menuMobile {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .menuMobile > li {
        border-bottom: 1px solid #25a4d2;
        border-top: 1px solid #0c7aa3;
        position: relative;
        margin: 0;
        padding: 0;
    }

        .menuMobile > li:last-child {
            border-bottom: 0px;
        }

        .menuMobile > li > a {
            padding: 10px 5px 10px 15px;
            border-left: 3px solid transparent;
            color: #fff;
        }

    .menuMobile.uerlink > li > a {
        padding-left: 40px;
        position: relative;
    }

        .menuMobile.uerlink > li > a > img {
            height: 20px;
            margin-right: 10px;
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
        }

    .menuMobile > li > a > .fa {
        width: 20px;
    }

    .menuMobile > li > a:hover,
    .menuMobile > li.active > a {
        color: #fff;
        border-left-color: #F5E91D;
    }

    .menuMobile > li .label,
    .menuMobile > li .badge {
        margin-top: 3px;
        margin-right: 5px;
    }

    .menuMobile li.sidebar-header {
        padding: 10px 25px 10px 15px;
        font-size: 12px;
        color: #4b646f;
        background: #1a2226;
    }

    .menuMobile li > a > i {
        width: auto;
        height: auto;
        padding: 0;
        margin-right: 10px;
        margin-top: 5px;
        transition: all 0.1s ease-in-out;
    }

    .menuMobile li.active > a > i {
        transform: rotate(-90deg);
        transition: all 0.1s ease-in-out;
    }

    .menuMobile li.active > .sidebar-submenu {
        display: block;
    }

    .menuMobile a {
        color: #333333;
        font-size: 16px;
        font-family: "Roboto Light", sans-serif;
        text-decoration: none;
        position: relative;
        display: flex;
        justify-content: space-between;
    }

    .menuMobile .sidebar-submenu {
        display: none;
        list-style: none;
        padding-left: 0px;
        margin: 0px;
        background: rgba(196, 196, 196, 0.3);
    }

        .menuMobile .sidebar-submenu .sidebar-submenu {
            padding-left: 20px;
        }

        .menuMobile .sidebar-submenu > li > a {
            padding: 10px 5px 10px 15px;
            display: flex;
            font-size: 14px;
            color: #fff;
        }

            .menuMobile .sidebar-submenu > li > a > .fa {
                width: 20px;
            }

            .menuMobile .sidebar-submenu > li > a > .fa-caret-left,
            .menuMobile .sidebar-submenu > li > a > .fa-caret-down {
                width: auto;
            }

            .menuMobile .sidebar-submenu > li.active > a,
            .menuMobile .sidebar-submenu > li > a:hover {
                color: #ffffff;
            }

.btn-search {
    padding: 10px;
    border-radius: 35px;
    background-color: #086689;
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
}

    .btn-search:hover {
        background-color: var(--color-secondary);
    }

.header_search {
    width: 100%;
    background-color: #e9e9e9;
    padding: 10px 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-60px);
    transition: all ease-in-out 0.4s;
    z-index: 1;
}

    .header_search.active {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }

    .header_search .select2-container {
        width: 100% !important;
    }

        .header_search .select2-container .select2-selection--single {
            height: 40px;
            line-height: 40px;
        }

            .header_search .select2-container .select2-selection--single > span {
                line-height: 38px;
                height: 38px;
            }

    .header_search input {
        width: 100%;
        height: 40px;
        border-radius: 5px;
        border: 1px solid #aaa;
        padding-left: 10px;
        padding-right: 10px;
    }

    .header_search a.icon-search {
        position: absolute;
        top: 50%;
        right: 25px;
        transform: translateY(-50%);
    }

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-primary);
}

.slide_gallery_image .swiper-slide {
    flex-direction: column;
}

    .slide_gallery_image .swiper-slide .gallery_item {
        margin-bottom: 16px;
    }

.section {
    padding: 30px 0;
}

.block_title {
    margin-bottom: 15px;
}

    .block_title .subtitle {
        font-size: 20px;
        font-family: 'Lato Bold', sans-serif;
        color: var(--color-primary);
    }

    .block_title .title {
        font-size: 24px;
        font-weight: 700;
        color: var(--color-tertiary);
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
    }

    .block_title.light .title {
        color: var(--color-secondary);
    }

    .block_title .desc {
        color: #fff;
    }

.block_header_title {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--color-secondary);
    border-left: 3px solid var(--color-secondary);
    line-height: 26px;
}

    .block_header_title.title_white {
        border-left-color: #fff;
    }

.line {
    position: relative;
    margin: 0.6rem 0;
    height: 3px;
    display: inline-block;
    width: 200px;
}

    .line::before {
        content: "";
        width: 50px;
        height: 3px;
        background: var(--color-tertiary);
        position: absolute;
        left: 0;
        top: 0;
    }

    .line::after {
        content: "";
        width: 150px;
        height: 3px;
        background: var(--color-primary);
        position: absolute;
        left: 50px;
        top: 0;
    }

.about_content .desc {
    text-align: justify;
}

.button a {
    display: inline-block;
    padding: 0px 45px 0 20px;
    background: var(--color-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    position: relative;
}

    .button a i {
        height: 25px;
        width: 25px;
        background-color: var(--color-tertiary);
        line-height: 25px;
        text-align: center;
        margin-left: 10px;
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        border-radius: 3px;
    }

.about_images {
    background: #fff;
    box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.25);
    padding: 10px;
}

#service {
    background: #f8f8f8;
}

.slide_service {
    padding-right: 15px;
    padding-left: 15px;
    text-decoration: none;
}

    .slide_service .swiper-slide {
        margin-bottom: 30px;
        margin-top: 30px;
        transition: all .2s ease-in-out;
    }

        .slide_service .swiper-slide:hover {
            transform: translateY(-20px);
        }

    .slide_service .service_item {
        box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.25);
        overflow: hidden;
    }

        .slide_service .service_item .image {
            padding: 10px;
            position: relative;
        }

            .slide_service .service_item .image::before {
                content: "";
                height: 100%;
                width: 100%;
                background: linear-gradient(0deg, rgba(87, 87, 87, 0.8) 0%, rgba(138, 138, 138, 0.6) 30%, rgba(255, 255, 255, 0) 50%);
                position: absolute;
                left: 0%;
                top: 0%;
                transition: all .4s ease-in-out;
                opacity: 0;
                z-index: 9;
            }

    .slide_service .swiper-slide:hover .image::before,
    .slide_service .swiper-slide:hover .image::after {
        height: 100%;
        width: 100%;
        transition: all .4s ease-in-out;
        opacity: 1;
    }

    .slide_service .service_item .image > img {
        position: relative;
        z-index: 1;
    }

    .slide_service .service_item a {
        position: relative;
        display: block;
    }

    .slide_service .desc {
        position: absolute;
        bottom: 0px;
        padding: 10px 10px 20px;
        transition: all .4s ease-in-out;
        width: 100%;
        z-index: 99;
    }

        .slide_service .desc h3 {
            font-size: 20px;
            text-decoration: none;
            color: var(--color-primary);
            text-transform: uppercase;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.20);
            margin-top: 10px;
            transition: all .4s ease-in-out;
        }

    .slide_service .swiper-slide:hover .desc {
        bottom: 50%;
        transform: translateY(50%);
        transition: all .4s ease-in-out;
    }

        .slide_service .swiper-slide:hover .desc h3 {
            color: #fff;
        }

    .slide_service .desc p {
        transition: all .4s ease-in-out;
        line-height: 22px;
        font-size: 15px;
        height: auto;
        color: #fff;
        margin-bottom: 0;
        opacity: 0;
        padding: 0 15px;
        position: absolute;
    }

    .slide_service .service_item:hover p {
        opacity: 1;
        height: auto;
        transition: all .4s ease-in-out;
    }

.whyChoseUs {
    background: url('../images/bg-why.png') no-repeat center center / cover;
    position: relative;
}

    .whyChoseUs::before {
        content: "";
        height: 100%;
        width: 100%;
        background-color: rgba(229, 50, 44, 0.85);
        top: 0;
        left: 0;
        position: absolute;
        z-index: 0;
    }

    .whyChoseUs > div {
        position: relative;
        z-index: 99;
    }

    .whyChoseUs .line::after {
        background-color: var(--color-secondary);
    }

.whyChoseUs_main {
    margin-top: 50px;
}

.whyChoseUs_item {
    background: #fff;
    padding: 5px;
    box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.25);
    position: relative;
    transition: all .2s ease-in-out;
    margin-bottom: 30px;
}

    .whyChoseUs_item::before {
        content: "";
        height: 0%;
        width: 0%;
        background-color: var(--color-tertiary);
        position: absolute;
        left: 0%;
        top: 0%;
        transition: all .4s ease-in-out;
        z-index: 9;
    }

    .whyChoseUs_item::after {
        content: "";
        height: 0%;
        width: 0%;
        background-color: var(--color-tertiary);
        position: absolute;
        right: 0%;
        bottom: 0%;
        transition: all .4s ease-in-out;
        z-index: 9;
    }

    .whyChoseUs_item:hover::before,
    .whyChoseUs_item:hover::after {
        height: 100%;
        width: 100%;
        transition: all .4s ease-in-out;
    }

    .whyChoseUs_item:hover {
        transform: translateY(-15px);
        transition: all .2s ease-in-out;
    }

.whyChoseUs_item-main {
    background: #fff;
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 20px;
    position: relative;
    z-index: 99;
}

    .whyChoseUs_item-main img {
        width: 80px;
    }

    .whyChoseUs_item-main h3 {
        font-size: 20px;
        color: var(--color-tertiary);
    }

    .whyChoseUs_item-main p {
        margin-bottom: 0;
    }

.big_item {
    padding: 10px;
    box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease-in-out;
}

    .big_item:hover {
        box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.25);
        transform: translateY(-15px);
    }

    .big_item img {
        width: 100%;
        height: 332px;
        object-fit: cover;
    }

.meta span {
    color: #777;
}

.meta .category i {
    color: #77777787;
}

.meta .date_pullish i {
    color: #777777a6;
}

.big_item .desc h3.title a {
    font-size: 20px;
    color: var(--color-tertiary);
}

.news .big_item .desc {
    position: relative;
}

    .news .big_item .desc::after {
        background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8827731776) 50%, rgba(255, 255, 255, 0) 100%);
        content: "";
        height: 40px;
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
    }

.news .item .desc .description {
    line-height: 22px;
    height: 66px;
    overflow: hidden;
}

.small_item .col-inner {
    background-color: #fff;
    box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.05);
    padding: 10px;
    margin-bottom: 20px;
    transition: all 0.4s ease-in-out;
}

.small_item:hover .col-inner {
    box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.25);
    transform: translateY(-15px);
}

.small_item .image {
    width: 175px;
    flex-basis: 175px;
}

.small_item img {
    width: 175px;
    height: 135px;
    object-fit: cover;
    max-width: 175px;
}

.small_item .desc {
    flex-basis: auto;
}

.small_item h3 {
    line-height: 25px;
}

    .small_item h3 a {
        font-size: 15px;
    }

.products {
    padding: 15px 0px;
}

    .products .product_item {
        box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.05);
        transition: all 0.4s ease-in-out;
    }

        .products .product_item:hover {
            box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.25);
            transform: translateY(-15px);
        }

        .products .product_item .image {
            padding: 10px;
            aspect-ratio: 3/4;
            text-align: center;
            display: flex;
            justify-content: center;
            background: #fff;
        }

        .products .product_item img {
            height: 100%;
            width: auto;
            object-fit: cover;
        }

        .products .product_item .desc {
            background-color: #f6fcff;
            padding-bottom: 10px;
            position: relative;
        }

            .products .product_item .desc.line_clamp::after {
                content: "";
                text-align: right;
                position: absolute;
                bottom: 0;
                right: 0;
                width: 100%;
                height: 1.5em;
                background: linear-gradient(0deg, #f6fcff 40%, rgba(255, 255, 255, 0));
            }

            .products .product_item .desc.line_clamp h3 {
                height: 66px;
            }

        .products .product_item h3 {
            /*color: var(--color-tertiary);*/
            font-size: 14px;
            padding: 10px 10px 0;
            line-height: 18px;
            overflow: hidden;
            margin: 0;
        }

#gallery {
    background: #f8f8f8;
}

    #gallery .swiper-slide {
        background: transparent;
    }

.slide_gallery {
    padding: 15px 15px 30px;
}

    .slide_gallery .gallery_item {
        box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.05);
        transition: all 0.4s ease-in-out;
    }

        .slide_gallery .gallery_item:hover {
            box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.25);
            transform: translateY(-15px);
        }

        .slide_gallery .gallery_item .image {
            padding: 10px;
            aspect-ratio: 3/4;
            text-align: center;
            display: flex;
            justify-content: center;
            background: #fff;
        }

        .slide_gallery .gallery_item img {
            height: 100%;
            width: auto;
            object-fit: cover;
        }

        .slide_gallery .gallery_item .desc {
            background-color: #f6fcff;
            padding-bottom: 10px;
        }

        .slide_gallery .gallery_item h3 {
            color: var(--color-tertiary);
            font-size: 14px;
            padding: 10px 10px 0;
            height: 66px;
            line-height: 18px;
            overflow: hidden;
            margin: 0;
        }

.link-more {
    font-size: 14px;
    color: var(--color-primary);
    font-style: italic;
}

    .link-more:hover {
        color: var(--color-secondary);
    }

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 24px;
}

footer#footer {
    background: var(--color-primary) url('../images/globe.png') no-repeat center center / auto 100%;
    padding-bottom: 0;
}

.logo_footer img {
    height: 110px;
}

.contact_info {
    margin: 0;
    padding: 0;
}

    .contact_info li {
        list-style: none;
        color: #fff;
        padding: 10px 0;
        font-size: 16px;
    }

        .contact_info li i {
            margin-right: 5px;
        }

.widget_footer .widget_title {
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    font-family: "Lato Semibold", sans-serif;
}

.list_menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .list_menu li a {
        color: #fff;
        padding: 8px 0;
        display: block;
        font-size: 16px;
    }

        .list_menu li a i {
            margin-right: 10px;
        }

    .list_menu li:hover a {
        color: var(--color-secondary);
    }

.list_statiscal {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .list_statiscal > li {
        color: #fff;
        padding: 15px 0;
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #2ca4d0;
        font-size: 16px;
    }

        .list_statiscal > li i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }

        .list_statiscal > li:last-child {
            border-bottom: 0;
        }

#footer .credit {
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0.15);
    color: #d6d6d6;
    font-size: 13px;
}

#page_header {
    /*background: url('../images/slide1.jpg') no-repeat center center / cover;*/
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
}

    #page_header::before {
        content: "";
        height: 100%;
        width: 100%;
        background: #0000008a;
        position: absolute;
        top: 0;
        left: 0;
    }

    #page_header > div {
        position: relative;
        z-index: 1;
    }

    #page_header .page_title {
        color: #fff;
        margin-bottom: 0;
        font-size: 28px;
    }

.breadcrumb {
    display: flex;
    gap: 5px;
    font-size: 14px;
    color: #fff;
}

    .breadcrumb a {
        color: #fff;
    }

.sidebar-left .block_title h2 {
    font-size: 18px;
}

.sidebar-left .line {
    width: 130px;
}

.line::after {
    width: 80px;
}

.content-right {
    border-right: 1px solid #dddd;
}

ul.menu-sidebar {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-sidebar li {
    border-top: 1px solid #ddd;
}

    .menu-sidebar li a {
        padding: 10px 0;
        display: block;
        color: #222;
        font-size: 15px;
        text-transform: capitalize;
        font-weight: 600;
        position: relative;
    }

        .menu-sidebar li a i {
            margin-right: 10px;
            font-size: 12px;
            position: absolute;
            right: 0;
            top: 15px;
            transition: all ease-in-out 0.4s;
        }

    .menu-sidebar li.active > a,
    .menu-sidebar li:hover > a {
        color: var(--color-primary);
    }

        .menu-sidebar li.active > a > i {
            transform: rotate(90deg);
            transition: all ease-in-out 0.4s;
        }

#menu_sidebar ul {
    list-style: none;
    padding-left: 15px;
}

    #menu_sidebar ul > li > a {
        position: relative;
    }

        #menu_sidebar ul > li > a::before {
            content: "";
            height: 5px;
            width: 5px;
            border-radius: 10px;
            position: absolute;
            left: -10px;
            /*background-color: #009ddf;*/
            top: 50%;
            transform: translateY(-50%);
        }


.thuvien-item {
    box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.25);
    padding: 5px;
    margin-bottom: 30px;
    transition: all 0.4s ease-in-out;
}

    .thuvien-item:hover {
        transform: translateY(-20px);
    }

    .thuvien-item .image img {
        height: 250px;
        width: auto;
        object-fit: cover;
    }

    .thuvien-item h3 {
        font-size: 16px;
        color: var(--color-tertiary);
        text-align: center;
        padding-top: 10px;
    }

#scroll {
    position: fixed;
    right: 10px;
    bottom: 30px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    text-indent: -9999px;
    display: none;
    border-radius: 60px;
    z-index: 99999;
    border: 1px solid #FFF;
}

    #scroll span {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -8px;
        margin-top: -12px;
        height: 0;
        width: 0;
        border: 8px solid transparent;
        border-bottom-color: #ffffff;
    }

    #scroll:hover {
        background-color: #e74c3c;
        opacity: 1;
        filter: "alpha(opacity=100)";
        -ms-filter: "alpha(opacity=100)";
    }

#header_mobile {
    background: var(--color-primary) url('../images/globe.png') no-repeat center center / auto 140%;
    position: relative;
    padding: 5px 0;
    z-index: 10 !important;
}

    #header_mobile.fixed {
        padding-bottom: 5px;
        padding-top: 5px;
        position: fixed;
        width: calc(100%);
        top: 0;
        background: var(--color-primary) url('../images/globe.png') no-repeat center center / auto 140%;
        z-index: 998;
    }

#divBannerFloatLeft {
    line-height: 30px;
    position: fixed;
    overflow: hidden;
    z-index: 998;
}

#divBannerFloatRight {
    line-height: 30px;
    position: fixed;
    overflow: hidden;
    z-index: 998;
}

.section-bg {
    background-color: #efefef;
}

.ratio-16x9 {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

    .ratio-16x9 img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .ratio-16x9:hover img {
        transform: scale(1.05);
    }

.ratio-4x3 {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
}

    .ratio-4x3 img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .ratio-4x3:hover img {
        transform: scale(1.05);
    }

.ratio-4x3-video {
    position: relative;
    width: 100%;
    padding-top: 78.5%;
    overflow: hidden;
}

    .ratio-4x3-video img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .ratio-4x3-video:hover img {
        transform: scale(1.05);
    }

.news-thumb {
    overflow: hidden;
}

    .news-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .news-thumb:hover img {
        transform: scale(1.05);
    }

.line-clamp-3 {
    position: relative;
    overflow: hidden;
    height: 3rem;
}

    .line-clamp-3::after {
        content: "";
        text-align: right;
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 1.5em;
        background: linear-gradient(0deg, #ffffff, rgba(255, 255, 255, 0));
    }

    .line-clamp-3.bg-gray::after {
        background: linear-gradient(0deg, #ededed, rgba(255, 255, 255, 0));
    }

.custom-scroll {
    scrollbar-width: thin;
    scrollbar-color: #999 #f1f1f1;
}

    .custom-scroll::-webkit-scrollbar {
        width: 6px;
    }

    .custom-scroll::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .custom-scroll::-webkit-scrollbar-thumb {
        background-color: #999;
        border-radius: 999px;
    }

.list-sub-post li::marker {
    color: var(--color-secondary);
}

.list-sub-post li h3 {
    font-weight: 400;
}

    .list-sub-post li h3 a {
        font-size: 14px;
        font-weight: 500;
        /*color: #333333;*/
    }

.block_title {
    font-size: 16px;
    color: var(--color-secondary);
}

.question-title {
    font-size: 15px;
    line-height: 20px;
}

.feature_block .block_topview {
    height: 50%;
}

.block_link_web li {
    gap: 10px;
}

    .block_link_web li a {
        display: block;
        width: 50%;
    }

.feature-right {
    background-color: #ededed;
}

.rank-number {
    font-size: 3.2rem;
    line-height: 1;
    color: #d1d5db;
    font-weight: 700;
    text-align: center;
    font-family: "Loko";
}

.block_topview h3 a {
    font-size: 14px;
    font-weight: 400 !important;
}

.block_topview ol li:last-child {
    margin-bottom: 0px;
}

.slide_link_web {
    padding: 20px 0;
}

    .slide_link_web .swiper-pagination {
        bottom: 0 !important;
    }

    .slide_link_web .swiper-button-next,
    .slide_link_web .swiper-button-prev {
        background-color: #ffffff8a;
    }

    .slide_link_web .swiper-button-prev {
        left: 0px;
    }

    .slide_link_web .swiper-button-next {
        right: 0px;
    }

        .slide_link_web .swiper-button-next::after,
        .slide_link_web .swiper-button-prev::after {
            font-size: 20px;
        }

    .slide_link_web .gallery_item {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

        .slide_link_web .gallery_item img {
            aspect-ratio: 3/1;
        }

.chi_dan {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .chi_dan li {
        border-bottom: 1px solid #e3e3e3;
    }

        .chi_dan li:last-child {
            border-bottom: 0px;
        }

        .chi_dan li a {
            display: block;
            padding: 8px 0;
            transition: all ease-in-out 0.2s;
        }

            .chi_dan li a:hover {
                color: var(--color-secondary);
            }

.bg-grey {
    background-color: #eee;
}

.time-content {
    font-size: 13px;
    color: #777;
    font-style: italic;
}

.overlay-gradient-bottom {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
}

.overlay-gradient-bottom-sm {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
    padding: 0.5rem 0.75rem;
}

.seaction-video {
    background-color: var(--color-primary);
    position: relative;
}

    .seaction-video::before {
        content: "";
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.3;
        background: url(../images/bg-video.png) no-repeat center center / cover;
        z-index: 1;
    }

    .seaction-video .big-video h3 a {
        color: #fff;
    }

    .seaction-video .big-video .icon-play {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 50px;
        width: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #ae2c3bb9;
        color: #fff;
        border-radius: 50%;
        font-size: 20px;
        transition: all ease-in-out 0.2s;
    }

        .seaction-video .big-video .icon-play:hover {
            background-color: var(--color-secondary);
        }

    .seaction-video .big-video:hover img {
        transform: scale(1.05);
    }

    .seaction-video .video-sidebar-list .video-caption-text {
        color: #fff;
        margin: 0px;
        line-height: 18px;
    }

    .seaction-video .video-sidebar-list .icon-play {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 35px;
        width: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #ae2c3bb9;
        color: #fff;
        border-radius: 50%;
        font-size: 16px;
        transition: all ease-in-out 0.2s;
    }

        .seaction-video .video-sidebar-list .icon-play:hover {
            background-color: var(--color-secondary);
        }

    .seaction-video .video-sidebar-list .video-thumb-item:hover img {
        transform: scale(1.05);
    }

.thuVienAnh {
    background-color: var(--color-primary);
}

.slide_gallery_image {
    padding: 15px 15px 30px;
}

    .slide_gallery_image .gallery_item {
        transition: all 0.4s ease-in-out;
    }

        .slide_gallery_image .gallery_item:hover {
            transform: translateY(-15px);
        }

        .slide_gallery_image .gallery_item .image {
            padding: 10px;
            aspect-ratio: 4/3;
            text-align: center;
            display: flex;
            justify-content: center;
            background: #fff;
        }

        .slide_gallery_image .gallery_item img {
            height: 100%;
            width: auto;
            object-fit: cover;
        }

        .slide_gallery_image .gallery_item .desc {
            background-color: #f6fcff;
            padding-bottom: 10px;
        }

        .slide_gallery_image .gallery_item h3 {
            font-size: 14px;
            padding: 0px 10px 0;
            height: 66px;
            line-height: 18px;
            overflow: hidden;
            margin: 0;
        }

.img-zoom {
    transition: all ease-in-out 0.2s;
}

    .img-zoom:hover {
        transform: scale(1.08);
        transition: all ease-in-out 0.2s;
    }

.partner_item .image {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .partner_item .image img {
        height: 90px;
        width: auto;
    }

.ic {
    width: 16px;
    height: 16px;
    fill: #757575;
    display: inline-block;
    vertical-align: middle;
}

.social_left {
    list-style: none;
    margin: 0;
    padding: 0;
    top: 60px;
}

    .social_left li:first-child {
        margin-top: 0;
    }

    .social_left li {
        margin-top: 10px;
        width: 32px;
    }

        .social_left li a {
            width: 32px;
            height: 32px;
            align-items: center;
            border-radius: 50%;
            background: #fff;
            justify-content: center;
            position: relative;
            border: 1px solid #e5e5e5;
        }

            .social_left li a .ic {
                fill: #93908a;
                align-self: center;
            }

            .social_left li a:hover .ic {
                fill: #fff;
            }

            .social_left li a.social_fb:hover {
                background: #3b5999;
                border: 1px solid #3b5999;
            }

            .social_left li a.social_zalo:hover {
                background: #02a8fe;
                border: 1px solid #02a8fe;
            }

                .social_left li a.social_zalo:hover svg {
                    fill: #fff;
                }

            .social_left li a.social_twit:hover {
                background: #000;
                border: 1px solid #000;
            }

            .social_left li a.social_in:hover {
                background: #0a66c2;
                border: 1px solid #0a66c2;
            }

            .social_left li a.social_save:hover {
                background: #087cce;
                border: 1px solid #087cce;
            }

            .social_left li a.social_save.active {
                background: #076db6;
                border: 1px solid #076db6;
            }

                .social_left li a.social_save.active .ic {
                    fill: #fff;
                }

            .social_left li a.social_comment:hover {
                background: #b52759;
                border: 1px solid #b52759;
            }

.social_icon {
    list-style: none;
    margin: 0;
    padding: 0;
    top: 60px;
}

    .social_icon li:first-child {
        margin-top: 0;
    }

.social_bottom.social_icon li:first-child {
    margin-top: 10px;
}

.social_icon li {
    margin-top: 10px;
    width: 32px;
}

    .social_icon li a {
        width: 32px;
        height: 32px;
        align-items: center;
        border-radius: 50%;
        background: #fff;
        justify-content: center;
        position: relative;
        border: 1px solid #e5e5e5;
    }

        .social_icon li a .ic {
            fill: #93908a;
            align-self: center;
        }

        .social_icon li a:hover .ic {
            fill: #fff;
        }

        .social_icon li a.social_fb:hover {
            background: #3b5999;
            border: 1px solid #3b5999;
        }

        .social_icon li a.social_zalo:hover {
            background: #02a8fe;
            border: 1px solid #02a8fe;
        }

            .social_icon li a.social_zalo:hover svg {
                fill: #fff;
            }

        .social_icon li a.social_twit:hover {
            background: #000;
            border: 1px solid #000;
        }

        .social_icon li a.social_in:hover {
            background: #0a66c2;
            border: 1px solid #0a66c2;
        }

        .social_icon li a.social_save:hover {
            background: #087cce;
            border: 1px solid #087cce;
        }

        .social_icon li a.social_save.active {
            background: #076db6;
            border: 1px solid #076db6;
        }

            .social_icon li a.social_save.active .ic {
                fill: #fff;
            }

        .social_icon li a.social_comment:hover {
            background: #b52759;
            border: 1px solid #b52759;
        }

.tip {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    height: 24px;
    line-height: 24px;
    background: #17191a;
    color: #fff !important;
    font-size: 12px !important;
    text-decoration: none !important;
    white-space: nowrap;
    padding: 0 10px;
    border-radius: 3px;
}

.social_left li a.social_back .tip {
    left: 20px;
    transform: none;
    top: 0;
    opacity: 0;
    transition-duration: 200ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
    visibility: hidden;
}

.social_left li a.social_back .ic {
    transform: rotate(180deg);
}

.social_left li a.social_back:hover {
    background: #087cce;
    border: 1px solid #087cce;
    overflow: visible;
}

    .social_left li a.social_back:hover .tip {
        opacity: 1;
        top: -15px;
        visibility: visible;
    }

.content-detail-social {
    grid-template-columns: 40px 1fr;
    display: grid;
}

.tag-list li::after {
    content: '/';
    margin-left: 0.75rem;
    color: #d1d5db;
}

.tag-list li {
    margin-right: 0.5rem;
}

.tag-link {
    text-decoration: none;
    color: inherit;
}

    .tag-link:hover {
        color: #0d6efd;
    }

.news-sidebar-right .aspect-16x9 {
    aspect-ratio: 16 / 9;
}

.news-sidebar-right .img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-sidebar-right .img-zoom {
    transition: transform 0.3s ease;
}

    .news-sidebar-right .img-zoom:hover {
        transform: scale(1.05);
    }

.news-sidebar-right ol li {
    display: grid;
    grid-template-columns: 115px 1fr;
}

.news-sidebar-right .img-thumb-130 {
    width: 115px;
    height: 90px;
}

.news-sidebar-right .line_clamp_3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: "Lato Semibold", sans-serif;
    font-weight: 600;
}

    .news-sidebar-right .line_clamp_3 a {
        font-weight: 600;
        font-size: 15px;
    }

.news-sidebar-right .time-content {
    font-size: 0.875rem;
    color: #9ca3af;
}

.video-sidebar .video-list-item {
    display: grid;
    grid-template-columns: 115px 1fr;
}

    .video-sidebar .video-list-item h3 {
        font-size: 15px;
        font-family: "Lato Semibold", sans-serif;
    }

.gallery-sidebar .aspect-16x11 {
    aspect-ratio: 16 / 11;
}

.gallery-sidebar h3.video-title {
    font-size: 15px;
    font-family: "Lato Semibold", sans-serif;
}

.gallery-sidebar .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: 0px;
    top: 42%;
    transform: translateY(-50%);
}

.gallery-sidebar .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: 0px;
    top: 42%;
    transform: translateY(-50%);
}

.gallery-sidebar .owl-carousel .owl-nav button svg {
    height: 24px;
    width: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    fill: rgba(225, 225, 225, 1);
}

.pagination ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

    .pagination ul li {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .pagination ul li a.page {
            height: 50px;
            width: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 16px;
            font-weight: 500;
            color: rgba(36, 36, 36, 0.9);
        }

        .pagination ul li a.active {
            border-bottom: 1px solid #1684E9;
            font-weight: 700;
            color: #1684E9;
        }

.box-search {
    background-color: #f3f3f3;
    padding: 10px;
    border: 1px solid lightgrey;
    border-radius: 4px;
    display: flex;
    gap: 15px;
}

    .box-search input {
        height: 44px;
        padding-left: 10px;
        border-radius: 4px;
        border: 1px solid lightgrey;
        flex: 1;
    }

    .box-search .btn {
        background-color: #02a8fe;
        height: 44px;
        color: #fff;
    }

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
}

.select2-container .select2-selection--single {
    height: 40px;
    border: 1px solid #dadada;
    border-radius: 7px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px;
    width: 28px;
}

label {
    font-weight: bold;
}

.lbError {
    font-family: Arial, Verdana !important;
    color: red;
    font-size: 12px !important;
    line-height: 20px;
}

.vbpl-tablist {
    white-space: nowrap;
}

    .vbpl-tablist .nav-link {
        position: relative;
        font-weight: 600;
        color: #495057;
    }

        .vbpl-tablist .nav-link.active {
            color: #fff;
            background: var(--color-primary);
            border-color: var(--color-primary);
        }

        .vbpl-tablist .nav-link::after {
            content: "";
            position: absolute;
            left: 0.75rem;
            right: 0.75rem;
            bottom: -2px;
            height: 2px;
            background-color: transparent;
            border-radius: 999px;
        }

        .vbpl-tablist .nav-link.active::after {
            background-color: #0d6efd;
        }

.vbpl-pane {
    max-height: 70vh;
    overflow-y: auto;
}

.vbpl-item {
    padding: 10px;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

    .vbpl-item:hover {
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
    }

.min-w-150 {
    min-width: 150px;
}

.hover-dark:hover {
    color: #212529 !important;
}

.footer-nav-scroll {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

    .footer-nav-scroll::-webkit-scrollbar {
        height: 4px;
    }

    .footer-nav-scroll::-webkit-scrollbar-track {
        background: transparent;
    }

    .footer-nav-scroll::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.15);
        border-radius: 999px;
    }

.footer-nav-item {
    display: inline-flex;
    align-items: center;
    padding: 0 0.75rem;
    position: relative;
}

.nav_bottom_slide, .nav_bottom {
    border-bottom: 1px solid #8ecae0;
}

    .nav_bottom_slide .footer-nav-item::before {
        content: "|";
        color: #d1d5db;
        font-weight: normal;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav_bottom_slide .owl-item:first-child .footer-nav-item {
        padding: 0;
    }

        .nav_bottom_slide .owl-item:first-child .footer-nav-item::before {
            content: "";
        }


.slide_home img {
    height: 610px;
    object-fit: cover;
    width: auto;
}

@media (max-width: 1278.98px) {
    .nav_home ul.menu li a {
        font-size: 14px;
        padding: 15px 10px;
    }

    .content-detail-social {
        grid-template-columns: 40px 1fr;
        display: grid;
    }
}

@media (max-width: 991.98px) {
    #header {
        padding: 0;
    }

        #header::after {
            display: none;
        }

        #header .header_mobile .logo_header img {
            height: 55px;
        }

    .slide_home img {
        height: auto;
        width: 100%;
    }

    .line-clamp-3 {
        height: auto;
    }

        .line-clamp-3::after {
            display: none;
        }

    .content-detail-social {
        grid-template-columns: 1fr;
        display: grid;
    }
}

@media (max-width: 767.98px) {
    #header {
        padding: 0;
    }

    .top-bar {
        margin-bottom: 0px;
    }

    #main {
        overflow: hidden;
    }

    .block_title .title {
        font-size: 24px;
    }

    .line {
        margin: 0.6rem 0;
        width: 150px;
    }

    #page_header {
        min-height: 200px;
    }

    .btn-search {
        background-color: rgba(0, 0, 0, 0.13);
        color: #fff;
    }

    .small_item h3 {
        font-size: 14px;
        /*line-height: 16px;*/
    }
}

@media (max-width: 575.98px) {
    .block_title .title {
        font-size: 22px;
    }
}
