@font-face {
    font-family: "Calibri";
    src: url("../css/hitech/fonts/Calibri/Calibri.woff2") format("woff2"), url("../css/hitech/fonts/Calibri/Calibri.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Calibri";
    src: url("../css/hitech/fonts/Calibri/Calibri-Light.woff2") format("woff2"), url("../css/hitech/fonts/Calibri/Calibri-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Calibri";
    src: url("../css/hitech/fonts/Calibri/Calibri-Bold.woff2") format("woff2"), url("../css/hitech/fonts/Calibri/Calibri-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Calibri";
    --primary-color: rgba(39, 170, 225, 1);
    --secondary-color: rgba(251, 176, 64, 1);
    --gray: rgba(84, 84, 84, 1);
    --light-gray: rgb(84 84 84 / 10%);
    --light-primary: #d4eef9;
    --dark-primary: #145570;
    font-size: 16px;
    font-weight: normal;
    overflow-x: hidden;
}

/* Style chung b-search */
[class*="b-search-"] {
    color: #666;
    font-size: 18px;
    width: 50%;
    background-color: #fff;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: stretch;
    align-items: stretch;
}

[class*="b-search-"]>input {
    width: 100%;
    color: inherit;
    font-size: 16px;
    padding: 0px 5px 0 20px;
    line-height: normal;
    border: none;
    background-color: transparent;
}

[class*="b-search-"]>input::-webkit-input-placeholder {
    color: #999;
}

[class*="b-search-"]>input::-moz-placeholder {
    color: #999;
}

[class*="b-search-"]>input:-moz-placeholder {
    color: #999;
}

[class*="b-search-"]>input:-ms-input-placeholder {
    color: #999;
}

[class*="b-search-"]>input:focus {
    outline: none;
}

[class*="b-search-"]>button {
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    font-size: 1em;
    box-shadow: none;
    line-height: 0;
}

[class*="b-search-"]>button i {
    line-height: inherit;
}

/* BEGIN b-search-2 */
.b-search-2 {
    border: 1px solid #ddd;
}

.b-search-2>button {
    border-radius: 2px;
}

.b-search-2>button[class] {
    font-size: 0.924em;
    padding: 1.5em 1.2em;
    margin: 2px 2px 2px 0;
    background: var(--primary-color);
}

.b-search-2>button:not([class]) {
    color: inherit;
    padding: 1.077em 0.616em 1.077em 0.616em;
    background-color: transparent;
}

/* END b-search-2 */
/* Style chung s-header */
.hd-logo {
    line-height: 0;
}

.hd-menu h2 {
    font-size: inherit;
    font-weight: inherit;
}

a[ht-trigger="hd-menu"] {
    display: none;
    font-size: 16px;
    line-height: 1;
    padding: 0.5em;
    text-transform: uppercase;
    border: 1px solid;
}

a[ht-trigger="hd-menu"] i:first-child {
    float: left;
}

a[ht-trigger="hd-menu"] i:last-child {
    float: right;
}

@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

/* BEGIN s-header-2 */
.s-header-2 {
    /* padding: 20px 0; */
    font-size: 16px;
}

.s-header-2 .hd-logo {
    font-size: 16px;
    margin-right: auto;
}

.s-header-2 .hd-logo>img {
    width: 200px;
}

.s-header-2 .hd-logo>div {
    margin-left: 10px;
    line-height: normal;
}

.s-header-2 .hd-logo>div>span {
    display: block;
    font-weight: bold;
}

.s-header-2 .hd-logo>div>span:first-child {
    font-size: 1em;
}

.s-header-2 .hd-logo>div>span:last-child {
    color: #666;
    font-size: 2.358em;
    font-style: italic;
}

.s-header-2 .hd-menu>ul>li {
    display: inline-block;
    /* position: relative; */
    margin: 0 20px;
}

.s-header-2 .hd-menu>ul>li>a {
    display: block;
    line-height: 82px;
    border-radius: 3px;
    font-weight: bold;
    transition: all 0.3s linear;
    color: var(--gray);
}

.s-header-2 .hd-menu>ul>li:hover>a {
    color: var(--secondary-color);
}

.s-header-2 .hd-menu>ul>li>div:nth-last-child(2) div::after {
    content: "\f107";
    font-family: FontAwesome;
    margin-left: 10px;
    float: right;
}

.s-header-2 .hd-submenu {
    position: absolute;
    left: 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    top: 70px;
    z-index: 9999;
    padding: 60px 70px;
    background-color: #fff;
}

.s-header-2 .hd-menu>ul>li:hover .hd-submenu {
    opacity: 1;
    pointer-events: visible;
    transition: 0.5s;
}

.s-header-2 .hd-submenu ul li {
    position: relative;
    width: calc(100% / 2 - 20px);
    display: inline-block;
    font-size: 26px;
    margin-bottom: 16px;
}

.s-header-2 .hd-submenu ul li a {
    color: var(--primary-color);
    font-weight: bold;
    transition: 0.5s;
}

.s-header-2 .hd-submenu ul li:hover a,
.s-header-2 .hd-submenu ul li.is-active a {
    color: var(--secondary-color);
}

.s-header-2 .hd-submenu .hd-content {
    border-left: 4px solid var(--secondary-color);
    padding-left: 60px;
    display: flex;
    gap: 16px;
}

.s-header-2 .hd-submenu .hd-content h4 {
    font-size: larger;
    padding-top: 0px;
    padding-bottom: 20px;
    color: var(--primary-color);
    font-weight: bold;
}

.s-header-2 .hd-submenu .hd-content p {
    color: var(--gray);
}

.s-header-2 .hd-submenu .hd-info {
    width: 50%;
}

.s-header-2 .hd-submenu .hd-img {
    width: 50%;
}

.s-header-2 .hd-submenu .hd-img img {
    object-fit: cover;
    border-radius: 0 80px 0 0;
    width: 100%;
    height: 170px;
}

.s-header-2 .hd-search {
    position: relative;
    line-height: 0;
    margin-left: 50px;
}

.s-header-2 .hd-search>a {
    font-size: 22px;
}

.s-header-2 .hd-search>a i {
    font-size: 0.819em;
    color: var(--gray);
}

.s-header-2 .hd-search>form {
    display: none;
    width: 300px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
    z-index: 9999;
    position: absolute;
    top: calc(100% + 32px);
    right: 0;
    -webkit-animation: slide-up 0.3s;
    -o-animation: slide-up 0.3s;
    animation: slide-up 0.3s;
}

.s-header-2 .hd-search>form.is-active {
    display: -webkit-flex;
    display: flex;
}

.s-search-1 {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
}

.s-search-1.active {
    opacity: 1;
    pointer-events: visible;
    transition: 0.5s;
}

.s-search-1 h3 {
    color: #fff;
    text-align: left;
    margin-bottom: 16px;
    font-size: 32px;
}

.s-search-1 form {
    transform: scale(0.5);
    opacity: 0;
}

.s-search-1.active form {
    transform: scale(1);
    opacity: 1;
    transition: 0.5s;
    transition-delay: 0.5s;
}

.s-search-1 .s_close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 26px;
    color: #fff;
    z-index: 999;
    cursor: pointer;
}

/* END s-header-2 */
.s-menu-1 {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
    width: 100%;
    font-size: 20px;
}

.s-menu-1 .s_inner {
    position: relative;
    background-color: #fff;
    width: 300px;
    padding: 50px;
    height: 100vh;
}

.s-menu-1 .s_inner>ul>li {
    margin-bottom: 15px;
}

.s-menu-1 .s_inner>ul>li>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.s-menu-1 .s_inner>ul>li>div>a {
    font-weight: bold;
    font-size: 20px;
}

.s-menu-1 .s_inner .s_submenu {
    display: none;
    padding-left: 10px;
}

.s-menu-1 .s_inner .s_submenu>li>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s-menu-1 .s_inner .s_submenu>li {
    margin-top: 10px;
}

.s-menu-1 .s_inner li div i {
    transition: 0.5s;
    cursor: pointer;
    line-height: inherit;
}

.s-menu-1 .s_inner li div.is-active i {
    transform: rotate(-180deg);
}

.s-menu-1 .s_inner .s_submenu_2 {
    color: var(--gray);
    opacity: 0.8;
    display: none;
    padding-left: 15px;
}

.s-menu-1 .s_inner .s_submenu_2 li {
    margin-top: 10px;
}

.s-menu-1 .s_inner a {
    display: block;
}

.s-footer-1 .s_line {
    margin: 40px 0;
    display: flex;
    gap: 20px;
}

.s-footer-1 .s_line span {
    width: 25%;
    height: 2px;
}

.s-footer-1 .s_line span:nth-child(even) {
    background-color: var(--primary-color);
}

.s-footer-1 .s_line span:nth-child(odd) {
    background-color: var(--secondary-color);
}

.s-footer-1 .s_menu {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.s-footer-1 .s_menu li {
    margin-bottom: 10px;
}

.s-footer-1 .s_menu li a {
    transition: 0.5s;
}

.s-footer-1 .s_menu li:hover a {
    color: var(--secondary-color);
}

.s-footer-1 .s_form {
    background-color: var(--secondary-color);
    padding: 10px;
    border-radius: 4px;
    display: flex;
    gap: 10px;
}

.s-footer-1 .s_form input {
    width: 80%;
    border: 1px solid #fff;
    background-color: transparent;
    border-radius: 4px;
    padding: 4px 8px;
    outline: none;
}

.s-footer-1 .s_form input::placeholder {
    font-weight: bold;
    font-size: 11px;
    color: var(--gray);
}

.s-footer-1 .s_form button {
    width: 20%;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 9px 11px;
}

.s-footer-1 .s_social {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.s-footer-1 .s_social a {
    background-color: var(--primary-color);
    color: #fff;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 10px;
    font-size: 24px;
}

.s-footer-1 .s_copyright {
    text-align: center;
    margin-top: -20px;
}

@media (max-width: 991px) {
    .s-footer-1 .s_menu {
        margin: 15px 0;
    }

    .s-footer-1 .s_social {
        justify-content: flex-start;
    }
}

@media (max-width: 479px) {
    .s-footer-1 .s_menu {
        flex-wrap: wrap;
    }

    .s-footer-1 .s_menu ul {
        width: calc(50% - 20px);
    }
}

.c-headline-7 {
    margin: 60px 0 32px;
    text-align: center;
}

.c-headline-7 .c_title {
    font-size: 60px;
    font-weight: bold;
    color: var(--primary-color);
    display: inline-block;
}

.c-headline-7 .c_title span {
    color: var(--secondary-color);
}

.c-headline-7 .c_desc {
    width: 80%;
    margin: 0 auto;
    font-size: 16px;
    color: var(--gray);
}

.c-headline-7 .c_line {
    display: flex;
    gap: 4px;
    width: 110%;
    margin-left: -20px;
    margin-bottom: 20px;
    margin-top: 5px;
}

.c-headline-7 .c_line span {
    width: 25%;
    height: 2px;
}

.c-headline-7 .c_line span:nth-child(even) {
    background-color: var(--primary-color);
}

.c-headline-7 .c_line span:nth-child(odd) {
    background-color: var(--secondary-color);
}

/* BEGIN b-card-21 */
.b-card-21 {
    display: block;
    margin-bottom: 20px;
    padding: 26px;
}

.b-card-21 .b_title {
    margin: 15px 0 10px;
    transition: 0.3s color ease-in-out;
    color: var(--gray);
    font-size: 26px;
    font-weight: bold;
}

.b-card-21 .b_desc {
    color: var(--gray);
}

.b-card-21:hover .b_title {
    color: var(--secondary-color);
}

.b-card-21 img {
    border-radius: 0 80px 0 0;
}

/* END b-card-21 */
.c-button-10 {
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    padding: 12px;
    transition: 0.5s;
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    background-color: #fff;
}

.c-button-10:hover {
    background-color: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

@media (max-width: 575px) {
    .c-headline-7 {
        margin: 30px 0 32px;
    }

    .c-headline-7 .c_title {
        font-size: 32px;
    }

    .c-headline-7 .c_desc {
        width: 95%;
    }

    .b-card-21 {
        padding: 0;
    }

    .b-card-21 .b_title {
        margin: 5px 0;
        font-size: 22px;
    }

    [class*="b-search-"] {
        width: 90%;
    }
}

.s-banner-1 {
    height: 200px;
    padding: 150px 0 40px;
    background-size: cover;
}

.s-banner-1.desc-true {
    padding: 100px 0;
}

.s-banner-1 .s_title {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 60px;
    font-weight: bold;
    color: var(--secondary-color);
}

.s-banner-1 .s_desc {
    font-size: 20px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    color: #fff;
}

.s-breadcrumb-1 {
    background-color: var(--light-gray);
    padding: 8px 0;
}

.s-breadcrumb-1 li {
    display: inline-block;
    font-weight: bold;
    margin-left: 10px;
    color: var(--gray);
}

.s-breadcrumb-1 li a {
    transition: 0.5s;
}

.s-breadcrumb-1 li:hover a {
    color: var(--secondary-color);
}

.s-breadcrumb-1 li:not(:first-child)::before {
    content: "\f105";
    font-family: FontAwesome;
    display: inline-block;
    margin-right: 10px;
}

/* Style chung s-pagination */
[class*="s-pagination-"] {
    padding: 25px 0;
    font-size: 12px;
}

[class*="s-pagination-"]::after {
    content: "";
    display: table;
    clear: both;
}

[class*="s-pagination-"]>li {
    display: inline-block;
    margin: 0 2px;
    line-height: 2.334em;
    width: 2.5em;
    height: 2.5em;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 15px;
}

[class*="s-pagination-"]>li>a {
    display: block;
    color: var(--gray);
    font-weight: bold;
    text-align: center;
}

[class*="s-pagination-"]>li.active {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

[class*="s-pagination-"]>li.active>a {
    color: #fff;
}

[class*="s-pagination-"]>li:first-child,
[class*="s-pagination-"]>li:last-child {
    border: 2px solid var(--primary-color);
}

[class*="s-pagination-"]>li:first-child a,
[class*="s-pagination-"]>li:last-child a {
    color: var(--primary-color);
    font-size: 20px;
}

/* BEGIN s-pagination-2 */
.s-pagination-2>li {
    border-radius: 50%;
}

@media screen and (min-width: 992px) {
    .s-menu-1 {
        display: none;
    }
}

@media screen and (max-width: 1259px) {
    .s-header-2 .hd-logo {
        font-size: 10px;
    }
}

@media screen and (max-width: 991px) {
    .s-header-2 .hd-menu {
        order: 1;
        margin-left: 15px;
        position: relative;
    }

    .s-header-2 .hd-menu>a[ht-trigger="hd-menu"] {
        display: block;
        color: var(--primary-color);
        font-size: 16px;
    }

    .s-header-2 {
        padding: 15px 0;
    }

    .s-header-2 .hd-menu>ul {
        display: none;
    }

    .s-menu-1 {
        opacity: 0;
        pointer-events: none;
    }

    .s-menu-1.is-active {
        opacity: 1;
        pointer-events: visible;
        transition: 0.5s;
    }

    .s-menu-1 .s_inner {
        left: -100px;
        opacity: 0;
        pointer-events: none;
    }

    .s-menu-1.is-active .s_inner {
        left: 0;
        opacity: 1;
        pointer-events: visible;
        transition: 0.5s;
        transition-delay: 0.3s;
    }
}

@media screen and (max-width: 479px) {

    .s-header-2 .hd-logo>div,
    .s-header-2 .hd-search>form {
        width: 205px;
    }

    .s-header-2 .hd-logo>img {
        width: 150px;
    }
}

@media (max-width: 575px) {
    .s-banner-1 {
        padding: 50px 0;
    }

    .s-banner-1 .s_title {
        font-size: 40px;
    }

    .s-banner-1 .s_desc {
        font-size: 16px;
    }

    .c-headline-7 .c_line {
        margin-left: 0 !important;
        width: 100% !important;
    }
}