.button-swiper {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
    border: 1px solid transparent;
    opacity: 0;
}

.button-swiper.btn-prev {
    left: -60px;
}

.button-swiper.btn-next {
    right: -60px;
}

.section-swiper:hover .button-swiper {
    opacity: 1;
}

.swiper-pagination {
    z-index: 2 !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    transition: var(--transition-default);
    margin: 0 6px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active,
.slider-theme .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.button-theme {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-white);
    font-weight: 700;
    font-size: 1em;
    border-radius: 25px;
    padding: 9px 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    max-width: max-content;
    transition: var(--transition-default);
    text-transform: uppercase;
}

.button-theme:before {
    content: "";
    background-color: var(--secondary-color);
    height: 300px;
    width: 300px;
    border-radius: 50%;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.button-theme:hover::before {
    transform: translate(-50%, -80%);
}

.button-theme .text {
    display: inline-block;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.button-theme .text::before {
    top: 0;
    left: 0;
    opacity: 1;
    display: block;
    transition: 0.5s;
    position: relative;
    color: var(--bs-white);
    content: attr(data-front);
    transform: translateX(0);
}

.button-theme .text::after {
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    display: block;
    transition: all 0.5s cubic-bezier(0.55, 0.085, 0, 0.99);
    position: absolute;
    background: transparent;
    color: var(--bs-white);
    content: attr(data-back);
    transform: translateY(100%);
}

.button-theme .icon {
    display: inline-block;
    margin-left: 5px;
    transition: 0.3s cubic-bezier(.57, .21, .69, 1.25);
}

.button-theme:hover .text::before {
    opacity: 0;
    transform: translateY(-240%);
}

.button-theme:hover .text::after {
    opacity: 1;
    transform: translateY(0);
}

.button-theme.button-theme_primary {
    background-color: var(--primary-color);
}


.button-theme.button-theme_primary:hover,
.button-theme.button-theme_green:hover {
    background-color: var(--secondary-color);
    color: var(--bs-white);
}

.button-theme-2 span {
    color: var(--primary-color);
    border-bottom: 3px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 1.05em;
    transition: var(--transition-default);

}

.button-theme-2 span i {
    transform: rotate(-45deg);
    transition: var(--transition-default);
}

.button-theme-2:hover span {
    border-bottom: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.button-theme-2:hover i {
    transform: rotate(0deg);
}

.section-heading {
    margin-bottom: 30px;
}

.section-heading .heading-title-big {
    font-weight: 700;
    font-size: 3.6em;
    color: var(--primary-color);
    line-height: 58px;
    margin-bottom: 0;
}

.section-heading .heading-sub {
    color: var(--primary-color);
    font-size: 1.25em;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -.4px;
}


.section-heading .heading-title {
    font-weight: 700;
    font-size: 2.2em;
    margin-bottom: 0;
    line-height: normal;
}

.heading-description {
    margin-top: 20px;
    font-size: 1.05em;
    line-height: 30px;
}

.heading-description p {
    margin-bottom: 0;
}

.section-heading-2 {
    margin-bottom: 20px;
}

.section-heading-2 .heading-title-2 {
    font-weight: 700;
    font-size: 2em;
    font-family: var(--font-heading);
}

.link-default {
    color: var(--primary-color);
    border-radius: 8px;
    background-color: var(--primary-color-10);
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: max-content;
}

.link-default:hover {
    color: var(--primary-color);
    background-color: var(--primary-color-30);
}

.heading-line {
    display: inline-flex;
    width: 100px;
    height: 2px;
    background-color: var(--primary-color);
}

header.is-scroll .header-bottom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 8;
    box-shadow: rgba(3, 4, 28, 0.1) 0px 4px 10px;
}

header {
    box-shadow: rgba(3, 4, 28, 0.1) 0px 4px 10px;
    transition: var(--transition-default);
    z-index: 8;
}

.header-top {
    padding: 10px 0;
}

.header-logo {
    width: 190px;
    height: 83px;
}

.header-navigation > ul > li > button {
    background-color: transparent;
    display: inline-flex;
    white-space: nowrap;
    color: var(--bs-gray-800);
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 1em;
}

.header-navigation > ul > li:hover > a {
    color: var(--primary-color);
    background-color: var(--bs-white);
}

.header-navigation > ul > li > a,
.header-navigation > ul > li > ul > li > a {
    color: var(--bs-gray-800);
    font-weight: 700;
    font-size: 1em;
    padding: 30px 15px;
    border-radius: 5px;
    letter-spacing: -.1px;
    white-space: nowrap;
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
}


.header-navigation > ul > li > ul,
.header-navigation > ul > li > ul > li > ul {
    position: absolute;
    top: calc(100% + 10px);
    z-index: 3;
    min-width: 270px;
    padding: 8px;
    background-color: var(--bs-white);
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header-navigation > ul > li > ul {
    left: 0;
    border-radius: 3px 3px 8px 8px;
}

.header-navigation > ul > li > ul > li > ul {
    left: 100%;
    border-radius: 8px;
}

.header-navigation > ul > li:hover > ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header-navigation > ul > li > ul > li:hover > ul {
    top: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header-navigation > ul > li > ul > li:not(:last-child),
.header-navigation > ul > li > ul > li > ul > li:not(:last-child) {
    border-bottom: 1px solid var(--bs-gray-200);
}

.header-navigation > ul > li > ul > li > a,
.header-navigation > ul > li > ul > li > ul > li > a {
    padding: 12px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: var(--bs-gray-700);
    font-weight: 600;
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
}

.header-navigation > ul > li > ul > li:hover > a,
.header-navigation > ul > li > ul > li ul > li:hover > a {
    background-color: var(--primary-color-10);
    color: var(--primary-color);
}

.header-navigation > ul > li i {
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
}

.header-navigation > ul > li:hover > a > span > i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.header-language {
    width: 35px;
    height: 35px;
}

.header-hamburger {
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
    background: var(--bs-white);
    border-radius: 3px;
    width: 35px;
    height: 35px;
    border: 1px solid transparent;
}

.header-hamburger span {
    height: 2px;
    width: 20px;
    border-radius: 5px;
    background-color: var(--bs-gray-700);
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
}

.form-search input {
    border-radius: 30px;
    height: 40px;
    padding: 6px 25px 4px 15px;
    border: 1px solid var(--primary-color);
    line-height: 1.4;
    font-size: 15px;
    max-width: 250px;
}

.form-search .btn-search,
.form-search__mobile .btn-search {
    position: absolute;
    top: 4px;
    right: 4px;
    bottom: 4px;
    z-index: 1;
    width: 35px;
    font-size: 13px;
}

.header-search__mobile {
    width: 35px;
    height: 35px;
    font-size: 14px;
    background: var(--bs-white);
    transition: var(--transition-default);
}

.header-search__mobile:hover {
    background-color: var(--primary-color-10);
}

.header-search {
    width: 35px;
    height: 35px;
    font-size: 1.2em;
}

.header-search:hover {
    background-color: var(--primary-color);
    color: var(--bs-white);
}

.header-search__wrap {
    padding: 8px 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 2;
    background: var(--bs-white);
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.is-search .header-search__wrap {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.is-search .header-search__mobile .fa-search:before {
    content: "\f00d";
    font-size: 17px;
    font-weight: 300;
}

.form-search__mobile input {
    height: 40px;
    font-size: 15px;
}

.form-search__mobile input::-webkit-input-placeholder {
    color: var(--bs-gray-600);
}

.form-search__mobile input::-moz-placeholder {
    color: var(--bs-gray-600);
}

.form-search__mobile input:-ms-input-placeholder {
    color: var(--bs-gray-600);
}

.form-search__mobile input::-ms-input-placeholder {
    color: var(--bs-gray-600);
}

.form-search__mobile input::placeholder {
    color: var(--bs-gray-600);
}

.header-overlay {
    position: fixed;
    top: 0;
    left: -130%;
    width: 100%;
    height: 200%;
    z-index: 4;
    -webkit-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
    background-color: rgb(0 0 0 / 72%);
    backdrop-filter: blur(10px);
}

.is-navigation .header-overlay,
.bg-overplay .header-overlay {
    left: 0;
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s;
}

.section-hero .slide-content {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    z-index: 4;
}

.section-hero .slide-content__title {
    font-weight: 700;
    font-size: 2.4em;
    color: var(--bs-gray-800);
    transition: all 0.8s ease-in-out;
    transition-delay: 0.3s;
    transform: translateY(55px);
}

.section-hero .slide-content__text {
    font-size: 1.05em;
    transition: all 0.8s ease-in-out;
    transform: translateY(55px);
    transition-delay: 0.5s;
    font-weight: 500;
}

.section-hero .button-theme {
    transform: translateY(55px);
    transition-delay: 0.5s;
    display: inline-flex;
    width: max-content;
}

.swiper-slide-active .slide-content__title,
.swiper-slide-active .slide-content__text,
.swiper-slide-active .button-theme {
    transform: translateY(0);
}

.section-hero .swiper-slide .bg-hero {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.section-hero .swiper-pagination {
    left: 10px;
    height: 100%;
    width: max-content;
    z-index: 2;
}

.section-hero .swiper-pagination-bullet {
    border: 1px solid var(--bs-white);
}

.section-hero .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--bs-white);
    border: 1px solid var(--bs-white);
}

.card-blog__image {
    width: 150px;
}

.card-blog__image::after {
    position: absolute;
    content: '';
    z-index: 1;
    background: var(--primary-gradient-50);
    left: 0;
    top: 0;
    border-radius: 5px;
    width: 100%;
    height: 0;
    opacity: 0.3;
    transition: var(--transition-default);

}

.card-blog__title,
.card-blog__item {
    font-weight: 600;
    line-height: 1.3;
    font-size: 1.05em;
    color: var(--bs-gray-900);
}

.card-blog__text {
    line-height: 1.3;
    font-size: 0.95em;
    color: var(--bs-gray-700);
}

.card-blog:hover .card-blog__title,
.card-blog__item:hover {
    color: var(--primary-color);
}

.card-blog:hover .card-blog__image::after {
    height: 100%;
}

.card-blog:hover .card-blog__image img {
    transform: scale(1.1);
}

.card-blog__item:not(:last-child) {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dashed var(--primary-color-30);
}

.category-link {
    font-size: 1.05em;
    color: var(--bs-gray-800);
}

.category-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.card-introduce {
    padding: 14px;
}

.card-introduce__title {
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.card-introduce__text {
    font-weight: 400;
    font-size: 0.95em;
    color: var(--bs-gray-800);
}

.card-introduce__image {
    width: 145px;
    height: 145px;
}

.card-introduce:hover .card-introduce__image img {
    transform: scale(1.1);

}

.card-introduce__left {
    border-radius: 0 100px 100px 0;
    background: -webkit-gradient(linear, right top, left top, color-stop(41.78%, #fff), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(270deg, #fff 41.78%, rgba(255, 255, 255, 0));
}

.card-introduce__right {
    border-radius: 100px 0 0 100px;
    background: -webkit-gradient(linear, left top, right top, color-stop(41.98%, #fff), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, #fff 41.98%, rgba(255, 255, 255, 0));
}

.card-introduce__center {
    box-shadow: 0px 2px 21px 0px #0047F024;
}


.scroll-top {
    position: fixed;
    right: 15px;
    bottom: 40px;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    background: var(--secondary-color);
    color: var(--bs-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.1em;
    z-index: 4;
    box-shadow: 0 6px 14px -6px rgb(60 84 141 / 58%), 0 10px 32px -4px rgb(37 53 93 / 10%);
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.is-show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--primary-color);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .scroll-top {
        right: 10px;
        bottom: 70px;
    }
}


.section-map iframe {
    width: 100% !important;
    max-width: 100% !important;
    height: 350px !important;
    vertical-align: bottom;
}

.page-contact__left {
    -webkit-box-shadow: 0 0 50px 0 rgba(0, 70, 108, .09);
    box-shadow: 0 0 50px 0 rgba(0, 70, 108, .09);
    padding: 1.8em;
}

.page-contact .heading-title-2 {
    font-size: 2em;
}

.page-contact__desc {
    font-size: 1.15em;
    color: var(--bs-gray-600);
}

.contact-right__icon {
    width: 55px;
    height: 55px;
    background-color: var(--primary-color);
    color: var(--bs-white);
    border-radius: 50%;
    font-size: 1.3em;
}

.contact-right__content .title {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2em;
    margin-bottom: 3px;
}

.contact-right__content .text {
    color: var(--bs-gray-600);
    font-weight: 500;
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
}

.contact-right__content .text:hover {
    color: var(--bs-gray-700);
}


.contact-map iframe {
    max-width: 100% !important;
    width: 100% !important;
    height: 450px !important;
}

@media (max-width: 576px) {
    .page-contact__left {
        padding: 1em;
    }
}

/*----------FOOTER------------*/

footer {
    color: #b3c1d3;
    background: var(--primary-color);
}

.footer-top {
    padding-top: 10%;
}

.top-contact {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(82, 161, 227, 0.2);
}

.footer-logo {
    width: 150px;
}

.footer-contact {
    gap: 20px;
}

.footer-contact .icon {
    width: 60px;
    height: 60px;
    gap: 12px;
    line-height: 65px;
    font-size: 20px;
    text-align: center;
    position: relative;
    border: 2px dotted var(--bs-white);
    color: var(--bs-white);
}

.footer-contact .title {
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 3px;
    color: #a5c6ef;
}

.footer-contact a {
    color: var(--bs-white);
    font-weight: 600;
    font-size: 1.05em;
}

.footer-contact__item > a {
    color: #a5c6ef;
    transition: var(--transition-default);
}

.footer-contact__item > a:hover {
    color: var(--bs-white);
}

.footer-title {
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 26px;
    padding-bottom: 10px;
    text-transform: uppercase;
    color: var(--bs-gray-100);
    border-image: linear-gradient(90deg, #F39F5F 4.85%, rgba(201, 203, 223, 0) 70%);
    border-bottom: 3px solid transparent;
    border-image-slice: 2;
}

.footer-column__title {
    font-weight: 600;
    font-size: 1.2em;
    margin-bottom: 20px;
    color: var(--bs-gray-100);
}

.footer-column__text {
    font-size: 1.1em;
    line-height: 1.6;
    white-space: nowrap;
    color: var(--bs-gray-400);
    padding-bottom: 10px;
}

.footer-column__text p {
    margin-bottom: 0;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 1em;
}

.footer-column ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-column ul li a {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #a5c6ef;
    transition: var(--transition-default);
}

.footer-contact li,
.footer-contact li a {
    font-weight: 500;
    color: #b3c1d3;
}

.footer-contact li i {
    color: var(--secondary-color);
}

.footer-column ul li a:hover,
.footer-contact li a:hover {
    color: var(--bs-white) !important;
}

.footer-column ul li a:hover {
    transform: translateX(5px);
}

.footer-form .form-input {
    border-radius: 30px;
    padding: 5px 20px;
    height: 48px;
    font-weight: 400;
    color: var(--bs-white);
    border: 1px solid var(--primary-color-10);
    background-color: transparent;
}

.footer-form .form-input::placeholder {
    color: var(--bs-gray-500);
}

.footer-form .btn-footer {
    position: absolute;
    right: 4px;
    top: 4px;
    height: 40px;
    border-radius: 30px;
    background-color: var(--bs-white);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--secondary-color);
    min-width: 82px;
}

.footer-form .form-input:focus{
    border: 1px solid var(--primary-color-10) !important;
}

.footer-form .invalid-feedback {
    position: absolute;
    top: 100%;
    left: 10px;
    width: 100%;
    background-color: transparent;
}

.footer-social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-white);
    background-color: #2e62a2;
    border-radius: 50%;
    font-size: 0.9em;
    border: 1px solid #2e62a2;
    transition: var(--transition-default);
}

.footer-social a:hover {
    background-color: var(--primary-color-dark);
    color: var(--bs-white);
    border: 1px solid var(--bs-white);
}

.footer-copyright {
    color: var(--bs-white);
    font-size: 0.95em;
    padding: 12px 0;
    border-top: 1px solid #4171aa;
}

.footer-copyright a {
    color: var(--bs-white);
}

.footer-copyright a:hover {
    color: var(--bs-white);
}

@media (max-width: 768px) {
    .footer-contact {
        gap: 15px;
    }

    .footer-contact .icon {
        width: 46px;
        height: 46px;
        font-size: 13px;
    }
}


.section-breadcrumb .section-breadcrumb__layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 2rem 1rem;
}

.section-breadcrumb__bg {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.section-breadcrumb .section-breadcrumb__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.section-breadcrumb .breadcrumb-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.5;
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item {
    color: var(--bs-white);
    font-size: 1em;
    position: relative;
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item > a {
    color: var(--bs-white);
    font-weight: 400;
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item > a:hover {
    color: #ffffdd;
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item + .breadcrumb-item {
    padding-left: 5px;
}

@media (max-width: 768px) {

    .section-breadcrumb__image {
        height: 200px;
    }

    .section-breadcrumb .breadcrumb-title {
        font-size: 1.4em;

    }

    .section-breadcrumb .breadcrumb-list .breadcrumb-item,
    .section-breadcrumb .breadcrumb-list .breadcrumb-item > a {
        font-size: 0.85rem;
        text-align: center;
    }

    .breadcrumb-list > ol {
        gap: 0 !important;
    }

    .section-breadcrumb .breadcrumb-list {
        flex-wrap: wrap;
        gap: 0.25rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        padding-bottom: 0 !important;
    }

    .section-breadcrumb__content {
        padding: 1.75rem 1rem;
    }

    .d-hide-on-mobile {
        display: none !important;
    }

}

@media (max-width: 576px) {
    .detail-project .breadcrumb-item:last-child,
    .page-detail .section-breadcrumb .breadcrumb-list .breadcrumb-item:last-child {
        display: none;
    }

    .section-breadcrumb .breadcrumb-list .breadcrumb-item {
        font-size: 11px;
        text-align: center;
    }
}



.section-pagination {
    padding-top: 30px;
}

.section-pagination .page-link {
    width: 38px;
    height: 38px;
    font-size: 1em;
    border-radius: 5px;
    border: 0;
    background-color: #ebf4f9;
    color: var(--bs-gray-700);
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: var(--transition-default);
}

.section-pagination .page-item.active .page-link,
.section-pagination .page-item.pageactive .page-link {
    background-color: var(--primary-color);
    color: var(--bs-white);
}

.section-pagination .page-link:hover {
    color: var(--bs-white);
    background-color: var(--primary-color);
}

.section-pagination .page-link:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.page-item:last-child .page-link,
.page-item:first-child .page-link {
    border-radius: 5px;
}

.detail-date {
    color: var(--bs-gray-600);
}

.detail-article__title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 30px;
}


.detail-article__heading {
    padding-bottom: 5px;
    border-bottom: 1px solid var(--primary-color-10);
    margin-bottom: 15px;
}

.detail-article__desc {
    background-color: var(--primary-color-10);
    border-radius: 5px;
    padding: 20px;
    font-style: italic;
}

.detail-article__content img {
    max-width: 100% !important;
    height: auto !important;
    margin: 16px 0;
}

.detail-article__content iframe {
    max-width: 100% !important;
}

.detailContent * {
    font-family: var(--font-theme);
}

.detailContent img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px;
}

.detailContent strong {
    font-weight: 700;
}

.detailContent h1 {
    font-weight: 700;
    font-size: 1.6em;
}

.detailContent h2 {
    font-weight: 700;
    font-size: 1.55em;
}

.detailContent h3 {
    font-weight: 700;
    font-size: 1.5em;
}

.detailContent h4 {
    font-weight: 700;
    font-size: 1.45em;
}

.detailContent h5 {
    font-weight: 700;
    font-size: 1.4em;
}

.detailContent h6 {
    font-weight: 700;
    font-size: 1.35em;
}

.detailContent b {
    font-weight: 700;
}

.article-card {
    box-shadow: 0px 0px 10px 0px #EBEBEBF5 !important;
    border-radius: 8px;
    border: 1px solid var(--bs-gray-200);
}

.article-card__title {
    font-weight: 700;
    font-size: 1.15em;
    color: var(--bs-gray-900);
}

.article-card__date {
    top: -26px;
    left: 22px;
    padding: 4px 10px;
    font-weight: 500;
    font-size: 0.8em;
    border-radius: 8px 8px 0 0;
}

.article-card .card-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.article-card .article-card__image img {
    transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
}

.article-card:hover .article-card__image img {
    transform: scale(1.1);
}

.article-card__title:hover {
    color: var(--primary-color);
}

.article-card__text {
    margin-top: auto;
    color: var(--bs-gray-600);
    font-weight: 500;
}

.section-articles {
    background-color: #e5f2ff;
    padding: 100px 0;
}

.section-articles .bg-blogs {
    position: absolute;
    overflow: hidden;
    z-index: -1;
    top: 0;
    width: 100%;
    height: 100%;
}

.category-list ul {
    overflow-x: auto;
}

.category-list ul::-webkit-scrollbar {
    display: none !important;
}

.category-list ul > li > a {
    font-weight: 600;
    padding: 7px 20px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-gray-800);
    background-color: #ebf4f9;
    font-size: 0.95em;
}

.category-list ul > li > a.active,
.category-list ul > li > a:hover {
    background-color: var(--primary-color);
    color: var(--bs-white);
}

.category-article__section:not(:first-child) {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--primary-color-10);
}

.detailContent table tr td {
    padding: 10px !important;
}

.section-form .form-label {
    font-size: 1.05em;
    width: 100%;
}

.section-form .form-input,
.section-form .form-select {
    width: 100%;
    height: 45px;
    padding: 3px 20px;
    border-radius: 5px;
    font-size: 15px;
    border: 1px solid var(--primary-color-30);
}


.section-form .form-textarea {
    resize: none;
    border: 1px solid var(--primary-color-30);
    border-radius: 5px;
    padding: 10px;
    font-size: 15px;
}


.page-contact .contact-item .title {
    font-size: 1.1em;
    font-weight: 700;
}

.page-contact .contact-item a {
    color: var(--bs-gray-800);
    transition: var(--transition-default);
}

.page-contact .contact-item a:hover {
    color: var(--primary-color);
}

.contact-map iframe {
    max-width: 100% !important;
    width: 100% !important;
    height: 500px !important;
    border-radius: 10px;
}

.tool {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary-color);
    z-index: 7;
    border-radius: 6px 0 0 6px;
    padding: 3px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.tool.show-floating {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.tool ul li {
    position: relative;
    height: 40px;
    border-radius: 3px;
}

.tool ul li:not(:last-child) {
    border-bottom: 1px solid #d5d5d533;
}

.tool ul li > a {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -ms-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
    border-radius: 3px;
}

.tool ul li > a > i {
    color: white;
}

.tool ul li .sub-tool {
    position: absolute;
    top: 0;
    right: -200px;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -ms-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
}

.tool ul li .sub-tool > a {
    background: var(--secondary-color);
    color: var(--bs-white);
    white-space: nowrap;
    padding: 3px 20px;
    font-size: 14px;
    min-width: 140px;
    text-align: left;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -ms-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
    height: 42px;
    border-radius: 3px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 6px 14px -6px rgba(136, 145, 159, 0.58), 0 10px 32px -4px rgb(37 53 93 / 10%);
}

.tool ul li:hover,
.tool ul li:hover .sub-tool > a {
    color: #ffffaa;
    background: #365ccd;
}

.tool ul li:hover a i {
    color: #ffffaa;
}

.tool:hover ul li .sub-tool {
    right: 42px;
}

.section-partner__img {
    height: 100px;
    padding: 20px;
}

.section-partner__img:hover img {
    transform: scale(1.05);
}

.section-partner.partner-home .button-swiper.btn-prev,
.section-partner.partner-home .button-swiper.btn-next {
    transform: translateY(-40px);
}

.section-counter .col:not(:last-child)::before {
    position: absolute;
    content: '';
    left: 100%;
    height: 100%;
    width: 1px;
    top: 50%;
    background-color: #e6e6e6;
    transform: translateY(-50%);
}

.intro-counter_text {
    font-weight: 400;
    font-size: 1.1em;
}

.intro-counter_value {
    font-size: 3.3em;
    font-weight: 700;
}

.section-service__bg {
    height: 49%;
}

.section-service__bg::before {
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: var(--primary-color);
    opacity: 0.8;
}

.section-service .button-swiper {
    opacity: 1;
}

.section-service .button-swiper.swiper-button-disabled {
    opacity: 0 !important;
}

.card-service {
    border-radius: 10px;
    box-shadow: 0 10px 30px 0 rgba(0, 63, 141, 0.1);
}

.card-service__logo {
    padding: 20px;
    width: 140px;
    height: 140px;
    border: 10px solid #e5f2ff;
    box-shadow: 0 10px 20px 0 rgba(0, 174, 239, 0.15);
    transform: translate(-50%, -55px);
}

.card-service__image img {
    transition: transform 0.7s cubic-bezier(0.44, 0.185, 0.575, 0.86);
}

.card-service__title {
    font-weight: 700;
    font-size: 1.3em;
}

.card-service__link {
    background-color: var(--primary-color);
    padding: 10px 30px;
    font-weight: 700;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.card-service .card-body {
    padding-top: 110px;
}

.card-service__text p {
    margin-bottom: 3px
}

.card-service__text ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}

.card-service__text ul li {
    padding-left: 20px;
    position: relative;
}

.card-service__text ul li::before {
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    content: "\f058";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.card-service__link:hover {
    background-color: var(--secondary-color);
}

.card-service:hover .card-service__image img {
    transform: scale(1.1);
}

.close-popup {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid transparent;
    background: var(--secondary-color);
    color: var(--bs-white);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 10px;
    top: 10px
}

.close-popup:hover i {
    transform: rotate(90deg);
}

.section-introduce__video{
    border: 4px solid var(--primary-color);
    border-radius: 85px 0;
}

.render-youtube {
    border-radius: 80px 0;
    overflow: hidden;
}

.section-introduce__image {
    padding: 10px;
}

.section-introduce__image > img {
    object-fit: cover;
    aspect-ratio: 1.186;
    clip-path: shape(from 46.38% 98.63%, curve to 20.18% 97.49% with 37.47% 99.13%/28.19% 102.03%, curve to 2.26% 73.62% with 11.83% 92.75%/5.79% 83.57%, curve to 0.74% 42.7% with -1.2% 63.87%/0.2% 53.22%, curve to 5.56% 9.36% with 1.33% 31.22%/-1.69% 17.22%, curve to 35.03% 5.55% with 12.92% 1.38%/25.04% 7.19%, curve to 58.99% 0.57% with 43.23% 4.2%/50.98% -1.87%, curve to 77.97% 18.6% with 67.07% 3.03%/71.82% 12.06%, curve to 97.73% 41.75% with 85.02% 26.09%/94.53% 31.32%, curve to 95.72% 76.39% with 101.15% 52.88%/100.88% 66.19%, curve to 70.99% 94.64% with 90.68% 86.35%/80.29% 90.45%, curve to 46.38% 98.63% with 63.11% 98.19%/54.82% 98.16%, close)
}

.section-introduce__image::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    right: -10px;
    bottom: 10px;
    background-color: #e5f2ff;
    z-index: 1;
    aspect-ratio: 1.186;
    clip-path: shape(from 46.38% 98.63%, curve to 20.18% 97.49% with 37.47% 99.13%/28.19% 102.03%, curve to 2.26% 73.62% with 11.83% 92.75%/5.79% 83.57%, curve to 0.74% 42.7% with -1.2% 63.87%/0.2% 53.22%, curve to 5.56% 9.36% with 1.33% 31.22%/-1.69% 17.22%, curve to 35.03% 5.55% with 12.92% 1.38%/25.04% 7.19%, curve to 58.99% 0.57% with 43.23% 4.2%/50.98% -1.87%, curve to 77.97% 18.6% with 67.07% 3.03%/71.82% 12.06%, curve to 97.73% 41.75% with 85.02% 26.09%/94.53% 31.32%, curve to 95.72% 76.39% with 101.15% 52.88%/100.88% 66.19%, curve to 70.99% 94.64% with 90.68% 86.35%/80.29% 90.45%, curve to 46.38% 98.63% with 63.11% 98.19%/54.82% 98.16%, close)
}

.section-introduce .introduce-shape .introduce-shape_1,
.section-introduce .introduce-shape .introduce-shape_2 {
    position: absolute;

}

.section-introduce .introduce-shape .introduce-shape_1 {
    left: -3px;
    bottom: 0;
    z-index: -1;
    -webkit-animation-name: introduction-shape;
    animation-name: introduction-shape;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.section-introduce .introduce-shape .introduce-shape_2 {
    left: 45%;
    top: 50px;
    z-index: -1;
    -webkit-animation-name: rounded;
    animation-name: rounded;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes rounded {
    50% {
        transform: rotate(20deg);
    }
}

@keyframes introduction-shape {
    0% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-20px);
    }
}

@media (max-width: 768px) {
    .section-introduce .introduce-shape .introduce-shape_2 {
        left: 75%;
        top: 40%;
    }
}


/*--------box-register-------*/
.section-register .register-box {
    background-color: #70A6B1;
    padding: 40px 50px;
    z-index: 3;
}

.box-content .form-label {
    color: #fff;
}

.form-label {
    font-weight: 600;
    font-size: 1.1em;
}

.box-content .section-heading .heading-sub{
    font-weight: 400 !important;
}

.form-input {
    border-radius: 30px;
    width: 100%;
    height: 45px;
    font-weight: 500;
    font-size: 1.05em;
}

.form-textarea {
    resize: none;
    border-radius: 15px;
}

.box-image {
    height: 100%;
    position: absolute;
    top: 0;
    right: -59px;
    z-index: 1;
}

.section-register .register-box .box-image .circle-shape {
    position: absolute;
    top: 15%;
    right: 140px;
    z-index: 0;
    animation: cir36 10s linear infinite;
}

.section-register .register-box .box-image .circle-shape > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.register-bg-shape .shape_1,
.register-bg-shape .shape_2 {
    -webkit-animation-name: introduction-shape;
    animation-name: introduction-shape;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.register-bg-shape .shape_1 {
    position: absolute;
    top: 50px;
    right: 0;
}

.register-bg-shape .shape_2 {
    position: absolute;
    top: 50px;
    left: 0;
}


@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1024px) {
    .section-register .register-box {
        padding: 32px 40px;
    }

    .box-image {
        height: 640px;
        right: -120px;
        top: 12px;
    }

    .section-register .register-box .box-image .circle-shape {
        right: 100px;
    }

    .box-content .form-label {
        font-size: 1.05em;
    }

    .form-input {
        height: 42px;
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .section-register .register-box {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .box-image {
        max-width: 80%;
        margin-top: 12px;
    }

    .section-register .register-box .box-image .circle-shape {
        width: 120px;
        height: 120px;
    }

    .box-content .form-label {
        font-size: 0.95em;
    }

    .box-content .form-input {
        height: 38px;
        font-size: 0.95em;
        border-radius: 24px;
    }

    .box-content .form-textarea {
        border-radius: 24px;
    }
}

/*----------overview----------*/
.overview-items {
    padding: 30px 0;
    margin-top: -220px;
}

.bg-overview {
    position: relative;
    width: 100%;
    z-index: 0;
}

.overview-items .overview-wrapper {
    max-width: 360px;
    margin: 0 auto 40px
}

.overview-image {
    position: relative;
    display: block;
    max-width: 100%;
    margin: 0 auto 20px;
    aspect-ratio: 4/3;
    overflow: hidden
}

.overview-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background-position: center center;
    background-size: 80% 100%;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
    transition: transform .35s ease
}

.overview-items .overview-wrapper.style-1 .overview-image::after {
    background-image: url('/public/upload/theme/bg-icon-box-01.webp');
}

.overview-items .overview-wrapper.style-2 .overview-image::after {
    background-image: url('/public/upload/theme/bg-icon-box-02.webp')
}

.overview-items .overview-wrapper.style-3 .overview-image::after {
    background-image: url('/public/upload/theme/bg-icon-box-03.png')
}

.overview-items .overview-wrapper.style-4 .overview-image::after {
    background-image: url('/public/upload/theme/bg-icon-box-04.png')
}

.overview-image .crop-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1
}

.overview-items .overview-wrapper.style-1 .overview-image .crop-image {
    clip-path: polygon(13.4% 18.5%, 74% 4%, 86.4% 80%, 24.7% 95.7%);
    -webkit-clip-path: polygon(13.4% 18.5%, 74% 4%, 86.4% 80%, 24.7% 95.7%);
}

.overview-items .overview-wrapper.style-2 .overview-image .crop-image {
    clip-path: circle(39% at 50% 46%);
    -webkit-clip-path: circle(39% at 50% 46%)
}

.overview-items .overview-wrapper.style-3 .overview-image .crop-image {
    clip-path: polygon(30% 4%, 86% 22%, 68% 98%, 10% 74.7%);
    -webkit-clip-path: polygon(30% 4%, 86% 22%, 68% 98%, 10% 74.7%);
}

.overview-items .overview-wrapper.style-4 .overview-image .crop-image {
    clip-path: polygon(50% 5%, 85% 85%, 15% 85%);
    -webkit-clip-path: polygon(50% 5%, 85% 85%, 15% 85%);
}

.overview-image .crop-image img {
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform .35s ease
}

.overview-content {
    text-align: center;
    max-width: 340px;
    margin: 0 auto
}

.overview-title {
    font-size: 20px;
    line-height: 1.35;
    margin: 0 0 10px;
    font-weight: 700;
    color: #16324f
}

.overview-description {
    font-size: 15px;
    line-height: 1.8;
    color: #6b7a90
}

.overview-items .overview-wrapper.style-1 .overview-title {
    color: #16324f
}

.overview-items .overview-wrapper.style-2 .overview-title {
    color: #0b6b4b
}

.overview-items .overview-wrapper.style-3 .overview-title {
    color: #8a2d8a
}

.overview-items .overview-wrapper.style-4 .overview-title {
    color: #c25b00
}


.card-gallery .icon {
    font-size: 2em;
    background: rgb(var(--primary-rgb), 0.3);
    transition: var(--transition-default);
    opacity: 0;
    visibility: hidden;
}

.card-gallery:hover {
    cursor: zoom-in;
}

.card-gallery:hover .icon {
    opacity: 1;
    visibility: visible;
}

.card-gallery:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .overview-items {
        margin-top: 0;
        padding: 20px 0 0;
    }
}

/*-------section-gallery---------*/
.bg-gallery {
    position: absolute;
    overflow: hidden;
    z-index: -1;
    top: 0;
    width: 100%;
    height: 100%;
}

.section-gallery .col:nth-child(5n+1),
.section-gallery .col:nth-child(5n+3),
.section-gallery .col:nth-child(5n+5) {
    margin-top: -20px;
}

@media (max-width: 1024px) {
    .section-gallery .col {
        margin-top: 0 !important;
    }
}


/*--------section-why-----*/
.section-why {
    padding: 150px 0 50px;
    background-color: #E7F8FE;
}

.section-why .section-why__center::after {
    position: absolute;
    content: '';
    background-color: #201f6114;
    border: 2px dashed var(--primary-color);
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    border-radius: 50%;
    z-index: 1;
}

.card-why__title {
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 3px;
    font-family: var(--font-heading);
}

.card-why__image {
    width: 140px;
    height: 140px;
    padding: 10px;
}

.card-why:hover .card-why__image img {
    opacity: 0.9;
}

.card-why__left {
    border-radius: 0 100px 100px 0;
    background: -webkit-gradient(linear, right top, left top, color-stop(41.78%, #fff), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(270deg, #fff 41.78%, rgba(255, 255, 255, 0));
}

.card-why__right {
    border-radius: 100px 0 0 100px;
    background: -webkit-gradient(linear, left top, right top, color-stop(41.98%, #fff), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, #fff 41.98%, rgba(255, 255, 255, 0));
}

.card-why__left:nth-child(1),
.card-why__left:nth-child(3) {
    transform: translateX(50px) !important;
}

.card-why__right:nth-child(1),
.card-why__right:nth-child(3) {
    transform: translateX(-50px) !important;
}


@media (max-width: 1200px) {
    .card-why__left:nth-child(1),
    .card-why__left:nth-child(3),
    .card-why__right:nth-child(1),
    .card-why__right:nth-child(3) {
        transform: translateX(0) !important;
    }

    .section-why__center {
        margin-bottom: 30px;
    }


    .section-why__center::after {
        top: -10px !important;
        left: -10px !important;
        right: -10px !important;
        bottom: -10px !important;
    }
}

@media (max-width: 768px) {
    .card-why__image {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 325px) {
    .card-why {
        border-radius: 15px;
        padding: 15px !important;
    }

    .card-why__image {
        display: none !important;
    }
}


.page-register__title {
    padding: 10px 20px;
    font-weight: 500;
}

.page-register__wrap {
    padding: 35px 30px;
    border-radius: 10px;
}

.card-school {
    border-radius: 10px;
}

.card-school__image,
.card-school .card-body {
    width: 50%;
}

.card-school__link {
    color: var(--bs-white);
    border: 1px solid var(--bs-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 5px;
    padding: 9px 25px;
}

.card-school__link:hover {
    background-color: var(--bs-white);
    color: var(--primary-color);
}

.information-item__image img {
    border-radius: 10px;
}

.information-item__image::after {
    position: absolute;
    content: '';
    border-radius: 10px;
    top: 35px;
    left: -15px;
    width: 95%;
    bottom: -18px;
    transform: rotate(4deg);
    background-color: #0a3976;
    z-index: -1;
}

.information-item__image.bg-right::after {
    right: -19px;
    left: unset;
    transform: rotate(-4deg);
}


.section-reason .col:nth-child(2) .card-reason,
.section-reason .col:nth-child(3) .card-reason {
    background-color: #e5f2ff;
}

.card-reason {
    border: 2px solid #e5f2ff;
    border-radius: 10px;
    padding: 35px;
}

.card-reason__image {
    width: 100px;
    height: 100px;
    padding: 25px;
    background-color: var(--primary-color-dark);
}

.card-reason__title {
    font-weight: 700;
    color: var(--primary-color-dark);
    font-size: 1.25em;
}

.card-reason__text {
    line-height: 1.7;
    font-size: 1em;
}

.counter-number {
    font-size: 1.1em;
    border-bottom: 2px solid var(--primary-color);
}

.counter-number .counter-event {
    font-weight: 700;
    font-size: 2em;
}

.counter-number_text {
    margin-bottom: -12px;
}


.section-procedure .col:nth-child(odd) .card-procedure .number {
    background-color: var(--primary-color-dark);
    color: var(--bs-white);
}

.section-procedure .card-procedure::after {
    position: absolute;
    content: '';
    top: 45px;
    right: 0;
    width: 100%;
    transform: translateY(-50%);
    border: 1px dashed var(--bs-gray-300);
    z-index: 1;
}

.card-procedure .number {
    width: 60px;
    height: 60px;
    font-size: 1.3em;
    font-weight: 700;
    background-color: var(--bs-white);
    color: var(--primary-color-dark);
    border: 1px solid var(--primary-color-dark);
}

.card-procedure .title {
    color: var(--primary-color-dark);
    font-weight: 700;
    font-size: 1.5em;
}

.card-procedure .text {
    font-size: 1.05em;
    line-height: 1.7;
}

.section-question .accordion-button::after {
    position: unset !important;
    background-image: unset !important;
    content: unset !important;
}

.section-question .accordion-item {
    border-radius: 10px !important;
    border: 1px solid transparent;
}

.section-question .accordion-button {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
}

.section-question .accordion-button i {
    color: var(--primary-color-dark);
    font-size: 22px;
}

.section-question .accordion-button[aria-expanded="true"] .icon i {
    transform: rotate(180deg);
}

.section-question .accordion-button .icon > i {
    font-size: 16px;

}

.section-question .accordion-button:not(.collapsed) {
    color: var(--primary-color-dark);
    background-color: transparent;
    box-shadow: unset !important;
}

.section-question .accordion-body {
    padding: 5px 50px;
    line-height: inherit;
    font-size: 1.05em;
}

/*-----------FEEDBACK----------*/
.feedback {
    background-color: #02010100;
    background-image: url('/public/upload/theme/testimonial-shape-blue.png');
    min-height: 480px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    padding: 50px 40px 70px 40px;
}


.feedback.color-0 {
    background-image: url('/public/upload/theme/testimonial-shape-red.png');
}

.feedback.color-1 {
    background-image: url('/public/upload/theme/testimonial-shape-yellow.png');
}

.feedback.color-2 {
    background-image: url('/public/upload/theme/testimonial-shape-green.png');
}

.feedback .feedback-desc {
    margin-bottom: 1.25rem;
    color: var(--bs-gray-700);
}

.feedback .auth-name__top {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.feedback .auth-name__bottom {
    color: var(--bs-gray-800);
    font-weight: 700;
}

.feedback .feedback-avatar {
    width: 70px;
    height: 70px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}


.slider-service .swiper-slide {
    transition: var(--transition-default);
    opacity: .4;
}

.slider-service .swiper-slide-active,
.slider-service .swiper-slide-active + .swiper-slide,
.slider-service .swiper-slide-active + .swiper-slide + .swiper-slide {
    opacity: 1;
}

@media (max-width: 992px) {
    .feedback {
        padding: 40px 30px 60px 30px;
        min-height: 400px;
    }
}

@media (min-width: 425px) and (max-width: 768px) {
    .feedback {
        padding: 50px 40px 70px 40px;
    }
}

@media (min-width: 1280px) {
    header .container,
    .section-hero .container {
        max-width: 90%;
    }

    .section-service .button-swiper.btn-prev {
        left: 18vw;
    }

    .section-service .button-swiper.btn-next {
        right: 18vw;
    }
}

@media (max-width: 1280px) {
    .card-introduce__image {
        width: 125px;
        height: 125px;
    }

    .card-introduce__title {
        font-size: 1em;
    }

    .intro-counter_icon {
        width: 55px;
        height: 55px;
        padding: 15px;
    }

    .card-introduce__text {
        font-size: 0.9em;
    }

    .intro-counter_value {
        font-size: 2.4em;
    }

    .card-reason {
        padding: 22px;
    }

    .card-reason__image {
        width: 60px;
        height: 60px;
        padding: 15px;
    }

    .counter-number {
        padding-bottom: 12px;
    }

    .counter-number_text {
        margin-bottom: 0;
    }
}

@media (max-width: 1200px) {

    .header .container {
        max-width: 1200px; !important;
    }

    .header-bottom {
        padding: 15px 0;
    }

    .header-search__mobile,
    .header-language {
        width: 32px;
        height: 32px;

    }

    .header-logo {
        width: 160px;
        position: absolute;
        left: 50%;
        height: 100%;
        transform: translateX(-50%);
    }

    .header-navigation__top {
        display: flex !important;
        padding: 20px 20px 15px 30px;
        background-color: var(--primary-color);
        color: var(--bs-white);
        font-weight: 600;
        font-size: 1.1em;
    }


    .header-navigation__close {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: 1.5em;
    }

    header {
        position: fixed !important;
        left: 0;
        width: 100%;
        top: 0;
    }

    header.is-scroll .header-search__wrap{
        position: fixed;
        top: var(--header-bottom-height, 65px);
        left: 0;
        right: 0;
    }

    .header-navigation {
        position: fixed;
        top: 0;
        left: -200%;
        width: 350px;
        background-color: var(--bs-white);
        height: 100vh;
        z-index: 12;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-transition: all 0.35s ease-in-out;
        -o-transition: all 0.35s ease-in-out;
        transition: all 0.35s ease-in-out;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }

    .is-navigation .header-navigation {
        left: 0;
        -webkit-transition-delay: .4s;
        -o-transition-delay: .4s;
        transition-delay: .4s;
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }


    .header-navigation > ul > li span > i {
        transform: rotate(-90deg);
    }

    .header-navigation > ul > li ul > li > button span > i {
        transform: rotate(0deg);
    }

    .header-navigation ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        border-radius: 20px;
        width: 100%;
        text-align: left;
        padding: 20px 30px 20px 30px;
        overflow-y: auto;
    }

    .header-navigation ul > li {
        padding: 12px 0;
        width: 100%;
    }

    .header-navigation > ul > li:not(:last-child) {
        border-bottom: 1px dashed var(--primary-color-30);
    }

    .header-navigation > ul > li:last-child {
        border-bottom: unset;
    }

    .header-navigation ul > li > a {
        font-weight: 600;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
        padding: 0;
        color: var(--bs-gray-800);
    }

    .header-navigation > ul > li:not(:first-child) > a::after {
        position: unset;
        content: unset;
        background-color: unset;
    }

    .header-navigation > ul > li > ul,
    .header-navigation > ul > li > ul > li > ul {
        position: unset;
        top: unset;
        -webkit-box-shadow: none;
        box-shadow: none;
        opacity: unset;
        visibility: visible;
        pointer-events: auto;
        padding: 0;
        background-color: transparent;
        width: 100%;
        margin-top: 10px;
        overflow-y: auto;
    }

    .header-navigation > ul > li > ul > li {
        width: unset;
        padding: 8px;
    }

    .header-navigation > ul > li > ul > li > a,
    .header-navigation > ul > li > ul > li > ul > li > a {
        padding: 0;
        width: unset;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .header-navigation > ul > li > ul > li > ul > li {
        padding: 8px 0;
    }

    .header-navigation > ul > li > ul > li > ul > li > a {
        font-size: 1em;
    }

    .header-navigation > ul > li > button {
        background-color: transparent;
        border: 0;
        font-weight: 600;
        text-transform: uppercase;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        color: var(--bs-gray-800);
        width: 100%;
        padding: 0;
    }

    .header-navigation > ul > li ul > li > button {
        background-color: transparent;
        border: 0;
        font-weight: 600;
        font-size: 1em;
        text-transform: uppercase;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        color: var(--bs-gray-800);
        width: 100%;
        padding: 0;
    }

    .header-navigation > ul > li > button[aria-expanded="true"],
    .header-navigation ul > li > a:hover,
    .header-navigation > ul > li ul > li > button[aria-expanded="true"] {
        color: var(--primary-color);
    }

    .header-navigation > ul > li > ul > li > a:hover,
    .header-navigation > ul > li > ul > li ul > li > a:hover {
        background-color: transparent;
        color: var(--primary-color);
    }

    .header-navigation > ul > li > ul > li:not(:last-child), .header-navigation > ul > li > ul > li > ul > li:not(:last-child) {
        border-bottom: unset !important;
    }

    .section-hero .slide-content__title {
        font-size: 1.8em;
    }

    .section-hero .slide-content__text {
        font-size: 1em;
    }

    .section-hero .button-swiper {
        width: 35px;
        height: 35px;
        font-size: 0.9em;
    }

    .section-hero .button-theme {
        padding: 8px 22px;
        font-size: 0.9em;
    }

    .section-heading .heading-title-big {
        font-size: 2.8em;
    }

    .section-heading .heading-title {
        font-size: 1.8em;
    }

    .slider-service .swiper-slide-active + .swiper-slide {
        opacity: 1;
    }

}

@media (max-width: 1024px) {

    .card-service__logo {
        width: 120px;
        height: 120px;
    }

    .card-service__title {
        font-size: 1.2em;
    }

    .card-service .card-body {
        padding-top: 85px;
    }

    .card-service__link {
        padding: 8px 20px;
    }

    .header-search_result {
        height: 680px;
    }

    .card-procedure .number {
        width: 45px;
        height: 45px;
        font-size: 1.2em;
    }

    .section-procedure .card-procedure::after {
        top: 0;
        left: 0;
    }

    .card-procedure .title {
        font-size: 1.4em;
    }

}

@media (max-width: 992px) {
    .category-list ul > li > a {
        font-size: 0.8em;
    }

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .section-hero .slide-content__title {
        font-size: 1.5em;
    }

    .section-hero .button-theme {
        padding: 7px 20px;
        font-size: 0.8em;
    }

    .category-article__header .section-breadcrumb .breadcrumb-item:last-child,
    .page-detail .section-breadcrumb .breadcrumb-item:last-child {
        display: none !important;
    }


    .detailContent h1,
    .detailContent h2 {
        font-size: 1.4em;
    }

    .detailContent h3 {
        font-size: 1.35em;
    }

    .detailContent h4 {
        font-size: 1.3em;
    }

    .detailContent h5 {
        font-size: 1.25em;
    }

    .detailContent h6 {
        font-size: 1.2em;
    }

    .section-partner__img {
        height: 90px;
        padding: 10px;
    }

    .card-introduce__image {
        width: 110px;
        height: 110px;
    }

    .card-introduce__title {
        font-size: 0.9em;
    }

    .card-introduce__left {
        border-radius: 100px 0 0 100px;
        background: -webkit-gradient(linear, left top, right top, color-stop(41.98%, #fff), to(rgba(255, 255, 255, 0)));
        background: linear-gradient(90deg, #fff 41.98%, rgba(255, 255, 255, 0));
    }

    .footer-title {
        font-size: 1.1em;
    }

    .footer-logo {
        width: 130px;
    }

    .card-school__image,
    .card-school .card-body {
        width: 100%;
    }

}

@media (max-width: 768px) {
    .section-heading .heading-title-big {
        font-size: 2.5em;
    }

    .section-heading .heading-title {
        font-size: 1.7em;
    }

    .section-heading-2 .heading-title-2,
    .heading-title-4 {
        font-size: 1.5em;
    }

    .section-gap {
        padding: 40px 0;
    }

    .detail-article__title {
        font-size: 1.6em;
    }

    .link-default {
        font-size: 0.95em;
        padding: 8px 16px;
    }

    .section-counter__wrap .col:not(:last-child)::before {
        position: unset;
        content: unset;
    }

    .article-card__title {
        font-size: 1.05em;
    }

    .article-card .card-body {
        padding: 25px 20px;
    }

    .article-card__date {
        left: 16px;
        font-size: 0.85em;
    }
}

@media (max-width: 600px) {
    .page-register__title {
        padding: 10px;
    }

    .page-register__wrap {
        padding: 20px;
    }


    .card-blog__image {
        width: 130px;
    }

    .card-blog__text {
        display: none !important;
    }

    .article-card .article-card__text {
        display: none !important;
    }

    .card-blog__title.limit {
        font-size: 1em;
        overflow: unset;
        -webkit-line-clamp: unset;
    }

    .intro-counter_value {
        font-size: 2em;
    }

    .section-question .accordion-button {
        font-size: 17px;
    }

    .section-question .accordion-button i {
        margin-top: 5px;
    }

    .button-theme {
        padding: 9px 20px;
        font-size: 0.9em;
    }

    .section-reason .col:nth-child(2) .card-reason,
    .section-reason .col:nth-child(3) .card-reason {
        background-color: var(--bs-white);
    }

    .section-reason .col:nth-child(odd) .card-reason {
        background-color: #e5f2ff;
    }

}

@media (min-width:1025px) and (max-width:1280px) {
    .split-1280{
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

@media (max-width: 576px) {
    .section-hero .slide-content__title {
        font-size: 1.2em;
    }

    .section-hero .slide-content__text {
        font-size: 0.9em;
    }

    footer {
        padding-bottom: 60px;
    }

    .tool {
        right: 0;
        left: 0;
        top: unset;
        width: 100%;
        bottom: 0;
        border-radius: 0;
        transform: unset;
        padding: 5px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .tool ul {
        display: flex;
        flex-direction: row;
    }

    .tool ul li {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: calc(100% / 3);
        height: unset;
        padding: 5px 5px 3px 5px;
        border-radius: 0;
    }

    .tool ul li:not(:last-child) {
        border-right: 1px solid #fae4f747;
        border-bottom: unset;
    }

    .tool ul li a {
        text-align: center;
        align-items: center;
        justify-content: center;
        padding: 0;

    }

    .tool ul li .sub-tool {
        position: unset;
        top: unset;
        right: unset;
        width: 100%;
        margin-top: 4px;
    }

    .tool ul li .sub-tool > a {
        height: unset;
        min-width: unset;
        box-shadow: none;
        width: 100%;
        text-align: center;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        color: var(--primary-color-10);
        transition: unset;
    }

    .tool ul li:hover {
        background-color: var(--primary-color);

    }

    .tool ul li:hover {
        color: var(--primary-color);
        background-color: #365ccd;
        border-radius: 3px;
    }


}

@media (max-width: 375px) {
    .header-navigation {
        width: 100%;
    }

    .header .header-top{
        display: none;
    }

    .card-introduce__image {
        width: 110px;
        height: 110px;
    }

    .card-introduce__title {
        font-size: 0.9em;
    }

    .section-hero .slide-content__title {
        font-size: 1.05em;
        margin-bottom: 0;
    }
}

@media (max-width: 330px) {
    .card-introduce__image {
        display: none !important;
    }

    .card-introduce {
        border-radius: 20px;
        padding: 20px !important;
    }

}


/*----------section-gallery-item----------*/
.category-gallery__title {
    font-weight: 500;
    font-size: 1.05rem;
}

.transition {
    transition: var(--transition-default);
}

.card-gallery__layer {
    padding: 15px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
    letter-spacing: unset;
    background: linear-gradient(0deg, #433f3ff2 0, rgba(50, 50, 50, 0) 33%);
}

.category-gallery__date {
    color: var(--bs-white);
    border-radius: 20px;
    font-size: 0.7rem;
    padding: 5px 12px;
    line-height: normal;
    background-color: var(--secondary-color);
}

.page-detail-gallery .detail-gallery .section-heading .heading-title {
    line-height: 1.3 !important;
}

.gallery-item .icon-gallery {
    font-size: 2em;
    background: rgb(var(--primary-rgb), 0.3);
    transition: var(--transition-default);
    opacity: 0;
    visibility: hidden;
}

.gallery-item:hover {
    cursor: zoom-in;
}

.gallery-item:hover .icon-gallery {
    opacity: 1;
    visibility: visible;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

