html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
}
:root {
    --primary-color: #2a2a74;
    --secondary2-color: #d1aa12;
    --secondary-color: #ffdd57;
    --gradient-color: linear-gradient(100deg, rgba(42, 42, 116, 1) 0%, rgba(255, 221, 87, 1) 100%);
    --gradient-color2: linear-gradient(126deg, rgba(42, 42, 116, 1) 46%, rgba(255, 221, 87, 1) 100%);
}
/* Style chung b-search */
[class*="b-search-"] {
    color: #666;
    font-size: 13px;
    max-width: 300px;
    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: 1em;
    padding: 0 5px 0 7px;
    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: 1em 0.584em 1em 0.584em;
    margin: 2px 2px 2px 0;
}
.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: 14px;
    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 .s_top {
    color: #fff;
    line-height: 0;
    padding: 12px 0;
    background-color: var(--secondary-color);
    color: var(--primary-color);
}
.s-header-2 .hd-contact {
    margin-right: auto;
}
.s-header-2 .hd-contact>li {
    display: inline-block;
    font-size: 15px;
    font-weight: bold;
}
.s-header-2 .hd-contact>li:not(:last-child) {
    margin-right: 15px;
}
.s-header-2 .hd-social {
    margin-right: 20px;
}
.s-header-2 .hd-social a {
    color: inherit;
    border-color: inherit;
}
.s-header-2 .s_bot {
    box-shadow: 0px 2px 5px #999;
    position: relative;
    z-index: 111;
}
.s-header-2 .hd-logo {
    font-size: 14px;
    padding: 0.715em 0 0.715em 0;
    margin-right: auto;
}
.s-header-2 .hd-logo>img {
    height: 4.286em;
}
.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;
}
.s-header-2 .hd-menu>ul>li>a {
    display: block;
    font-weight: 600;
    font-size: 15px;
    padding: 0px 10px;
    line-height: 35px;
    border-radius: 3px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.s-header-2 .hd-menu>ul>li>a:nth-last-child(2) h2::after {
    content: '\f107';
    font-family: FontAwesome;
    margin-left: 10px;
    float: right;
}
.s-header-2 .hd-menu>ul>li>ul {
    visibility: hidden;
    min-width: 200px;
    padding: 5px 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    position: fixed;
}
.s-header-2 .hd-menu>ul>li>ul::after {
    content: '';
    height: 0;
    width: 0;
    border-bottom: 6px solid #fff;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    position: absolute;
    top: -6px;
    right: 8px;
}
.s-header-2 .hd-menu>ul>li>ul>li:not(:last-child) {
    border-bottom: 1px solid #eee;
}
.s-header-2 .hd-menu>ul>li>ul>li a {
    display: block;
    padding: 5px 30px 5px 15px;
    color: #000;
}
.s-header-2 .hd-menu>ul>li>ul>li a::before {
    content: '\f105';
    font-family: FontAwesome;
    font-size: 12px;
    margin-right: 6px;
    position: relative;
    top: -1px;
}
.s-header-2 .hd-menu>ul>li>ul>li:hover a {
    color: #ffdd57;
}
.s-header-2 .hd-menu>ul>li.is-active>a {
    color: #ffdd57;
}
.s-header-2 .hd-menu>ul>li:not(.no-hover):hover>a {
    color: #ffdd57;
}
.s-header-2 .hd-menu>ul>li:not(.no-hover):hover>a:nth-last-child(2) {
    border-radius: 3px 3px 0 0;
}
.s-header-2 .hd-menu>ul>li:not(.no-hover):hover>ul {
    visibility: visible;
    position: absolute;
    right: 0;
    -webkit-animation: slide-up 0.3s;
    -o-animation: slide-up 0.3s;
    animation: slide-up 0.3s;
}
.s-header-2 .hd-search {
    position: relative;
    line-height: 0;
    margin-left: 10px;
}
.s-header-2 .hd-search>a {
    font-size: 25px;
    color: #ffdd57;
    border: none;
}
.s-header-2 .hd-search>a i {
    font-size: 0.819em;
}
.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% + 2px);
    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;
}
@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: #05a;
        font-size: 15px;
    }
    .s-header-2 .hd-menu>ul {
        visibility: hidden;
        width: 250px;
        background-color: #fff;
        box-shadow: 0 0px 10px 0px #ccc;
        position: absolute;
        top: 45px;
        right: 0;
    }
    .s-header-2 .hd-menu>ul>li {
        display: block;
        border-bottom: 1px solid #eee;
    }
    .s-header-2 .hd-menu>ul>li>a {
        border-radius: 0;
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
    .s-header-2 .hd-menu>ul>li:not(.no-hover):hover>ul {
        min-width: 100%;
    }
    .s-header-2 .hd-menu>ul.is-active {
        visibility: visible;
        -webkit-animation: slide-up 0.3s;
        -o-animation: slide-up 0.3s;
        animation: slide-up 0.3s;
    }
}
@media screen and (max-width: 479px) {
    .s-header-2 .hd-logo>div, .s-header-2 .hd-social {
        display: none;
    }
    .s-header-2 .hd-search>form {
        width: 205px;
    }
}

/* END s-header-2 */
/* BEGIN b-card-24 */
.b-card-24 {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
}
.b-card-24 .b_content {
    text-align: left;
    width: 100%;
    padding: 30px 30px 35px 10px;
    background-color: transparent;
    position: absolute;
    left: 0;
    bottom: -75px;
    transition: ease-in 0.3s;
    z-index: 2;
    color: #fff;
}
.b-card-24 .b_title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Merriweather';
}
.b-card-24:hover .b_title {
    color: var(--secondary-color);
}
.b-card-24 .b_desc {
    font-size: 14px;
    line-height: 1.467em;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
}
.b-card-24 img {
   /*  aspect-ratio: 240 / 305;
    object-fit: cover; */
    border-radius: 8px;
    transition: ease-in 0.3s
}
.b-card-24::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 16%, rgba(0, 0, 0, 0.15449929971988796) 43%, rgba(255, 221, 87, 0) 100%);
    z-index: 1;
}
.b-card-24:hover img {
    transform: scale(1.1);
}
.b-card-24:hover .b_content{
    bottom: 0;
}
/* END b-card-24 */
/* BEGIN b-card-14 */
.b-card-14 {
    display: block;
    position: relative;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}
.b-card-14::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 16%, rgba(0, 0, 0, 0.15449929971988796) 43%, rgba(255, 221, 87, 0) 100%);
    z-index: 1;
}
.b-card-14 .b_thumb img {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border-radius: 8px;
}
.b-card-14 .b_title {
    position: absolute;
    font-family: 'Merriweather';
    bottom: 0;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    padding: 10px;
    color: #fff;
    z-index: 2;
    margin: 10px 0 5px;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.b-card-14 .b_area {
    color: #05a;
}
.b-card-14 .b_area span.fa {
    padding-left: 13px;
}
.b-card-14 .b_area span.fa::before {
    top: -1px;
}
.b-card-14:hover .b_thumb img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.b-card-14:hover .b_title {
    color: var(--secondary-color);
}
.s-home-2 .b-card-14 {
    margin-bottom: 12px;
}
/* END b-card-14 */
/* BEGIN b-card-14 */
.b-card-15 {
    display: block;
    margin-bottom: 30px;
}
.b-card-15 .b_thumb img {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.b-card-15 .b_title {
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
    margin: 20px 0 15px;
    font-family: 'Merriweather';
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.b-card-15 .b_desc {
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
}
.b-card-15 .b_area span.fa {
    padding-left: 13px;
}
.b-card-15 .b_area span.fa::before {
    top: -1px;
}
.b-card-15:hover .b_thumb img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.b-card-15:hover .b_title {
    color: var(--secondary-color);
}
.b-card-15 .b_thumb {
    border-radius: 8px;
    overflow: hidden;
}
/* END b-card-14 */
/* BEGIN b-card-2 */
.b-card-2 {
    display: flex;
    margin-bottom: 25px;
    align-items: start;
}
.b-card-2::after {
    content: '';
    display: table;
    clear: both;
}
.b-card-2 .b_thumb {
    float: left;
    min-width: 130px;
    max-width: 130px;
    margin-right: 15px;
    border-radius: 8px;
}
.b-card-2 .b_title {
    font-size: 14px;
    font-family: 'Merriweather';
    font-weight: bold;
    line-height: 1.45;
    padding-top: 10px;
    margin-bottom: 10px;
    -webkit-transition: 0.3s color ease-in-out;
    -o-transition: 0.3s color ease-in-out;
    transition: 0.3s color ease-in-out;
}
.b-card-2 .b_title span {
    display: block;
}
.b-card-2 .b_desc {
    text-align: justify;
    color: #444;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
@media (max-width: 479px) {
    .b-card-2 .b_thumb {
        width: 145px;
    }
    .b-card-2 .b_title {
        font-size: 15px;
    }
}
.b-card-2:hover .b_title {
    color: var(--secondary-color);
}

/* END b-card-2 */
.s-home-3 .c-headline-3 {
    margin-bottom: 20px;
}
.ht-mrt20 {
    margin-top: 20px;
}
.s-about {
    padding: 60px 0;
}
.s-about .sub-title {
    font-size: 17px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-family: 'Merriweather';
}
.s-about .s_title {
    font-size: 42px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: 'Merriweather';
}
.b_thumb-about-1 {
    width: 70%;
}
.b_thumb-about-2 {
    width: 50%;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.b_thumb-about-1 img, .b_thumb-about-2 img {
    border-radius: 12px;
}
.s-about {
    background: url(/images/bgs/bg-intro.png);
    background-position: bottom right;
    background-repeat: no-repeat;
}
.s-about .b_thumb {
    position: relative;
}
.s-about .s-lv {
    font-size: 19px;
    color: #0E1C24;
    font-weight: 500;
}
.s-about .s-lv li {
    margin-bottom: 10px;
}
.s-about .heading-2 {
    font-size: 23px;
    font-weight: bold;
    margin: 15px 0;
    color: #9c9fa3;
}
.s-about .s-lv i {
    color: var(--primary-color);
    margin-right: 13px;
}
.s-about .s_desc {
    line-height: 1.7;
    font-size: 17px;
    font-family: 'Merriweather';
}
.s-why {
    padding: 40px 0;
    background: var(--primary-color);
}
.b-card-97 {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 12px;
    height: 110px;
    padding: 15px 30px;
    overflow: hidden;
    transition: ease-in-out .5s;
    background: #ffffffd4;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.b-card-97 .b_icon {
    width: 20%;
    margin-right: 15px;
    display: block;
    position: relative;
}
.b-card-97 .b_info {
    width: 80%;
}
.b-card-97 .b_name {
    font-size: 18px;
    font-weight: bold;
    font-family: 'Merriweather';
    text-transform: uppercase;
    color: var(--primary-color);
}
.b-card-97 .b_desc {
    font-size: 12px;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* BEGIN c-animate-loopflicker */
.c-animate-loopflicker {
    -webkit-animation: loopflicker 1s infinite;
    -o-animation: loopflicker 1s infinite;
    animation: loopflicker 1s infinite;
}

@keyframes loopflicker {
    0% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    20% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    40% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    60% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
/* END c-animate-loopflicker */
/* BEGIN s-icon-2 */
.s-icon-2>a:first-child {
    opacity: 0;
    font-size: 20px;
    border: 1px solid #ccc;
    background-color: rgba(204, 204, 204, 0.5);
    z-index: 111111;
    position: fixed;
    right: 10px;
    bottom: calc(60% - 1em);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.s-icon-2>a:first-child.is-show {
    opacity: 1;
    bottom: 120px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
}
.s-icon-2>a:last-child {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 111111;
    line-height: 0;
}
.s-icon-2>a:last-child span {
    font-size: 31px;
}
.s-icon-2>a:last-child span::before, .s-icon-2>a:last-child span::after {
    content: '';
    opacity: 0;
    width: calc(100% + 1.334em);
    height: calc(100% + 1.334em);
    margin: -0.666em;
    border-radius: 3px;
    background-color: #05a;
    border-radius: 15px;
    z-index: -1;
    position: absolute;
    -webkit-animation: ripple 1.5s infinite;
    animation: ripple 1.5s infinite;
}
.s-icon-2>a:last-child span::after {
    animation-delay: .3s !important;
    -webkit-animation-delay: .3s !important;
}
.s-icon-2>a:last-child span img {
    position: absolute;
}

@keyframes ripple {
    0% {
        opacity: 1;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
/* END s-icon-2 */
/* BEGIN s-footer-5 */
.s-footer-5 .s_top {
    padding: 20px 0;
    background: linear-gradient(#fff, rgba(0, 85, 170, 0.2));
}
.s-footer-5 .s_top a[rel="nofollow"] img {
    height: 50px;
}
.s-footer-5 .c-headline-4 {
    margin: 10px 0 15px;
}
.s-footer-5 .c-headline-4::after {
    margin-top: 5px;
}
.s-footer-5 .ft-menu li {
    display: inline-block;
    width: calc((100% / 2) - 12px);
    color: inherit;
    font-size: 13px;
    margin: 0 10px 10px 0;
}
.s-footer-5 .ft-menu li.line {
    width: 100%;
    margin-right: 0;
}
.s-footer-5 .ft-menu li>h1 {
    font-size: 25px;
    font-weight: inherit;
    color: var(--secondary-color);
}
.s-footer-5 .ft-menu li a {
    display: inline-block;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    -webkit-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}
.s-footer-5 .c-headline-4 .c_name {
    display: block;
    color: #ffdd57;
    font-size: 14px;
    font-family: 'Merriweather';
    font-weight: 500;
}
.s-footer-5 .ft-menu li a>span::before {
    content: '\f105';
    font-family: FontAwesome;
    font-size: inherit;
    color: #ccc;
    margin-right: 5px;
}
.s-footer-5 .ft-menu li a:hover {
    color: #f60;
}
.s-footer-5 .ft-menu li>span {
    line-height: 20px;
}
.s-footer-5 .ft-menu li>span:not(:last-child) {
    margin-right: 20px;
}
.s-footer-5 .ft-menu li>span.fa::before {
    width: 15px;
    text-align: center;
}
.s-footer-5 .ft-menu li span::before, .s-footer-5 a:hover {
    color: var(--primary-color);
}
.s-footer-5 .ft-social {
    line-height: 0;
    margin: 13px 0 10px;
}
.s-footer-5 .s_bot {
    background-color: #ffdd57;
}
.s-footer-5 .ft-copyright {
    line-height: 40px;
    color: var(--primary-color);
    font-weight: bold;
}
.s-footer-5 .ft-phone {
    color: #fff;
    text-align: center;
    z-index: 111111;
    position: fixed;
    bottom: 10px;
    left: 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.s-footer-5 .ft-phone i {
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid;
    border-radius: 50%;
    background: var(--gradient-color);
}
.s-footer-5 .ft-phone span {
    margin-left: 0;
    line-height: 1;
    border: 1px solid;
    border-left: none;
    border-radius: 0 5px 5px 0;
    background-color: #f60;
    position: relative;
    left: -5px;
}
.s-footer-5 .ft-phone span:not(.text-hide) {
    padding: 5px;
}
.s-footer-5 .s_top {
    position: relative;
    color: #fff;
    border-bottom: 1px solid #ccc;
}
.s-footer-5 .s_top::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(#5279ff80, #ffdd57);
}
.s-footer-5 .ft-bct {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.s-footer-5 .ft-social a {
    border-color: inherit;
    border-radius: 8px;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border: 0.3px solid #fff;
    color: #fff;
}
.s-icon-2 .icon-social {
    position: fixed;
    right: 10px;
    z-index: 111111;
    line-height: 0;
    display: block;
}
.s-icon-2 .icon-social .c-icon {
    width: 48px;
    height: 48px;
}
.s-icon-2 .icon-social.map {
    bottom: 120px;
    background: #fff9ab;
    border-radius: 8px;
}
.s-icon-2 .icon-social.mess {
    bottom: 65px;
}
@media screen and (min-width: 1260px) {
    .s-footer-5 .ft-phone {
        display: none;
    }
}
.s-footer-5 .ft-backtop {
    opacity: 0;
    color: #fff;
    font-size: 20px;
    border: 1px solid;
    background-color: #f60;
    z-index: 111111;
    position: fixed;
    right: 10px;
    bottom: calc(60% - 1em);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.s-footer-5 .ft-backtop.is-show {
    opacity: 1;
    bottom: 15px;
}
@media screen and (min-width: 768px) {
    .s-footer-5 .ft-info {
        position: relative;
        /* padding-left: 2%; */
    }
    .s-footer-5 .ft-info::before {
        content: '';
        width: 1px;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        background-color: rgba(255, 0, 0, 0);
        background-image: -webkit-linear-gradient(top, rgba(255, 0, 0, 0), #ccc 50%, rgba(255, 0, 0, 0));
        background-image: linear-gradient(to bottom, rgba(255, 0, 0, 0), #ccc 50%, rgba(255, 0, 0, 0));
    }
}
@media screen and (max-width: 1259px) {
    .s-footer-5 .align-items--center {
        display: none;
    }
}

/* END s-footer-5 */
.c-headline-66 .c_name span {
    text-align: center;
    font-size: 28px;
    font-family: 'Merriweather';
    font-weight: bold;
    position: relative;
    background: var(--gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
.c-headline-66 .c_name {
    text-align: center;
}
.c-headline-66 {
    margin-bottom: 20px;
}
.c-headline-66 {
    margin-bottom: 60px;
}
.c-headline-66::after {
    display: none;
}
.c-headline-66 .c_name span::after {
    position: absolute;
    content: '';
    height: 3px;
    width: 100px;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    background: var(--primary-color);
}
.s-list-1, .s-list-2 {
    padding: 50px 0;
}
.s-list-1 .b-card-15 {
    display: block;
    margin-bottom: 30px;
}

/* 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;
    border: 1px solid #ddd;
    line-height: 2.334em;
    width: 2.5em;
    height: 2.5em;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
[class*="s-pagination-"]>li>a {
    display: block;
    color: #999;
    font-weight: bold;
    text-align: center;
}
[class*="s-pagination-"]>li:hover {
    background-color: #eee;
    color: #999;
}
[class*="s-pagination-"]>li.active {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
[class*="s-pagination-"]>li.active>a {
    color: #fff;
}

/* BEGIN s-pagination-1 */
.s-pagination-1>li {
    border-radius: 3px;
}

/* END s-pagination-1 */
/* BEGIN s-sidebar-6 */
.s-sidebar-6 {
    background-color: #ffe892;
    padding: 20px;
    border-radius: 12px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.s-sidebar-6 .s_heading {
    font-size: 18px;
    text-transform: uppercase;
    border-bottom: 1px solid #ccc;
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-family: 'Merriweather';
    font-weight: bold;
    background: var(--gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
.s-sidebar-6 .s_heading::after {
    content: '';
    width: 40px;
    height: 3px;
    background-color: #fcbc45;
    z-index: 3;
    position: absolute;
    bottom: -2px;
    left: 0;
}
.s-sidebar-6 li a {
    display: block;
    padding: 7px 15px;
    border-radius: 5px;
}
.s-sidebar-6 li a::before {
    content: '\f105';
    font-family: FontAwesome;
    font-weight: bold;
    font-size: 10px;
    color: #888;
    margin-right: 7px;
    position: relative;
    top: -2px;
}
.s-sidebar-6 li a:hover {
    color: #fff;
    background-color: var(--primary-color);
}
.s-sidebar-6 li a:hover::before {
    color: inherit;
    margin-right: 10px;
    -webkit-transition: margin 0.25s ease;
    -o-transition: margin 0.25s ease;
    transition: margin 0.25s ease;
}

/* END s-sidebar-6 */
.s-sidebar-3 .s_heading {
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'Merriweather';
    font-weight: bold;
    position: relative;
    background: var(--gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    display: inline-block;
}
.hd-search {
    display: none;
}
.c-btn-primary {
    background: var(--primary-color);
}
@media screen and (max-width: 479px) {
    .hd-search {
        display: block;
    }
    .b-card-24 {
        margin-bottom: 12px;
        overflow: hidden;
        border-radius: 8px;
    }
    .b-card-24 .ht-ratio--165::before {
        padding-bottom: 75%;
    }
    .b-card-24 img {
        aspect-ratio: unset;
    }
    .b-card-24::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(0, 0, 0);
        background: linear-gradient(0deg, rgba(0, 0, 0, 1) 16%, rgba(0, 0, 0, 0.15449929971988796) 43%, rgba(255, 221, 87, 0) 100%);
        z-index: 1;
    }
    .b-card-24 .b_content {
        color: #fff;
        background: transparent;
        z-index: 2;
        padding: 0 10px;
    }
    .b-card-24 .b_title {
        font-size: 14px;
    }
    .b-card-24 .b_desc {
        display: none;
    }
    .b-card-24 .b_content::before {
        display: none;
    }
    .b-card-97 .b_name {
        font-size: 13px;
    }
    .b-card-97 {
        padding: 15px 10px;
    }
    .p-detail-12 {
        padding: 20px 0!important;
    }
    .s-about .s_title {
        font-size: 37px;
    }
    .s-about .sub-title {
        margin-top: 12px;
    }
}