
.swiper-button {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
}

.slider-button-theme {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-gray-800);
    border: 1px solid transparent;
    background-color: var(--bs-white);
    transition: var(--transition-default);
    box-shadow: 0px 2px 4px rgba(97, 97, 97, 0.18), 0px 4px 8px rgba(97, 97, 97, 0.18);
    pointer-events: auto;
}

.slider-button_prev {
    left: -16px;
}

.slider-button_next {
    right: -16px;
}

.slider-button-theme:hover {
    background-color: var(--primary-color);
    color: var(--bs-white);
}


.section-pagination {
    padding-top: 30px;
}

.section-pagination .pagination .page-item {
    border-radius: 0;
    min-width: 40px;
    height: 40px;
    border: 0;
    background-color: var(--bs-gray-200);
    color: var(--text-color);
    position: relative;
    -webkit-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

.section-pagination .pagination .page-item .page-link {
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    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;
    text-align: center;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 1em;
    font-weight: 700;
    font-family: var(--font-heading);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.section-pagination .pagination .page-item.pageactive .page-link,
.section-pagination .pagination .page-item .page-link:hover {
    background-color: var(--primary-color);
    color: var(--bs-white);
}


.empty-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    padding: 15px;
    font-size: 1.25em;
    color: var(--bs-gray-700);
}

.button-theme {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-white);
    font-weight: 600;
    font-size: 1em;
    border-radius: 25px;
    padding: 8px 20px;
    border: 1px solid transparent;
    position: relative;
    z-index: 1;
    transition: var(--transition-default);
}

.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_green {
    background-color: var(--green-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);
}

.custom-liner {
    background: linear-gradient(
            145deg,
            var(--primary-color),
            color-mix(in srgb, var(--primary-color) 80%, white 25%) 50%,
            color-mix(in srgb, var(--primary-color) 80%, black 25%)
    );
    background-size: 300% 300%;
    animation: liner-bg 3s infinite;
}


.section-breadcrumb {
    padding: 100px 0;
}

.section-breadcrumb::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.4;
    z-index: 1;
}

.breadcrumb-title {
    font-size: 2.5em;
    font-weight: 600;
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item {
    color: var(--bs-gray-100);
    font-size: 1em;
    position: relative;
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item > a {
    color: var(--bs-gray-100);
    font-weight: 500;
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item > a:hover {
    color: var(--bs-white);
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item + .breadcrumb-item {
    padding-left: 5px;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--bs-gray-100);
}

.section-heading {
    margin-bottom: 25px;
}

.section-heading .heading-title {
    font-size: 1.9em;
    font-weight: 700;
    color: var(--heading-color);
    text-transform: uppercase;
}

.section-heading.heading-line {
    border-bottom: 2px solid var(--primary-color);
}

.section-heading.heading-line .heading-title {
    margin-bottom: 6px;
}

.section-heading .heading-line {
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 20%;
    max-width: 30%;
    border-bottom: 1px solid var(--primary-color);
}


.section-heading .heading-line::after {
    position: absolute;
    content: '';
    bottom: -10px;
    width: 200px;
    height: 1px;
    background-color: var(--primary-color);
}

.section-heading .heading-note {
    font-size: 1em;
    color: var(--bs-gray-600);
    margin-bottom: 6px;
    font-style: italic;
    font-weight: 500;
}

.section-heading .heading-description {
    color: var(--bs-gray-600);
}

.section-heading .heading-title-3 {
    color: var(--heading-color);
    text-transform: uppercase;
    font-size: 1.7em;
    font-weight: 500;
}

.section-heading .heading-sub {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 13px;
    line-height: normal;
    background: #eef3f7;
    width: max-content;
    padding: 4px 18px 4px 26px;
    border-radius: 30px;
    border: 1px solid #0d47a14a;
}

.section-heading .heading-sub::after {
    position: absolute;
    content: '';
    background-color: var(--primary-color);
    width: 5px;
    height: 5px;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    display: block;
}

.section-heading .heading-desc {
    margin-top: 20px;
    font-size: 1.3em;
    line-height: 30px;
}

.section-wrap__heading {
    border-radius: 5px 5px 0 0;
    padding: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.section-wrap__heading .section-heading {
    margin-bottom: 0;
}

.section-wrap__heading .heading-title {
    font-size: 1.3em;
    color: var(--bs-white);
}

header {
    position: sticky;
    z-index: 12;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-box-shadow: 0 20px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 20px 20px rgba(0, 0, 0, .1);
    transition: transform 0.3s ease-in-out;
}

.page-home .header.is-scroll {
    animation: stickySlideDown .6s ease-in-out;
    top: -136px;
}


@keyframes stickySlideDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}


.header-top {
    padding: 8px 0;
}

.header-top .header__logos {
    height: 120px;
    width: 240px;
    display: flex;
    align-items: center;
}

.header-top .header__logos img {
    width: 120px;
    flex-shrink: 0;
}

.header-top .header-right {
    margin-left: 20px;
}

.header-top .header-heading .header-title-1 {
    font-size: 1.45rem;
    color: #f30502;
    font-weight: 600;
}

.header-top .header-heading .header-title {
    font-weight: 500;
    -webkit-text-stroke-width: 1px;
    text-shadow: -2px 2px 5px #fff9f98f;
    letter-spacing: 0.8px;
    font-size: 1.4rem;
}

.header-top .header-heading .header-stroke {
    color: var(--primary-color);
}


.header-top ul > li > a {
    color: var(--bs-white);
    font-size: 1.3em;
    white-space: normal;
    background: linear-gradient(130deg, #8cccff, var(--primary-color));
    padding: 20px;
    border-radius: 5px;
}

.header-top ul > li > a:hover,
.header-social a:hover {
    color: var(--bs-white);
}

.header-social a {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-gray-200);
}

.header-logo {
    width: 260px;
}

.header .header-navigation {
    width: 100%;
}

.header .header-navigation > ul > li > a {
    color: var(--bs-white);
    padding: 18px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    font-weight: 600;
    white-space: nowrap;
    font-size: 1.1em;
    line-height: normal;
}

.header .header-navigation > ul > li::after {
    position: absolute;
    content: '';
    top: 100%;
    left: 30%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    transform: translate(50%, -50%);
    transition: all 0.3s ease;
    background-color: var(--primary-color);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header .header-navigation > ul > li:hover::after {
    left: 50%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header .header-navigation > ul > li > ul > li > a,
.header .header-navigation > ul > li > ul > li > ul > li > a {
    padding: 12px;
    color: var(--bs-gray-700);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    font-weight: 600;
}

.header .header-navigation > ul > li > ul > li:not(:last-child),
.header .header-navigation > ul > li > ul > li > ul > li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header .header-navigation > ul > li > ul {
    background-color: var(--bs-white);
    position: absolute;
    right: 0;
    min-width: 220px;
    top: 100%;
    z-index: 2;
    border-radius: 3px;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-box-shadow: 0 30px 30px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 30px 30px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header .header-navigation > ul > li > ul > li > ul {
    background-color: var(--bs-white);
    position: absolute;
    left: 100%;
    min-width: 220px;
    top: 0;
    z-index: 2;
    border-radius: 3px;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    -webkit-box-shadow: 0 30px 30px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 30px 30px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header .header-navigation > ul > li:hover > ul,
.header .header-navigation > ul > li > ul > li:hover > ul {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header .header-navigation > ul > li:hover > a {
    color: var(--bs-gray-300);
}

.header .header-navigation > ul > li > ul > li:hover > a,
.header .header-navigation > ul > li > ul > li > ul > li:hover > a {
    color: var(--primary-color);
}

.header .header-navigation > ul > li:hover > a i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.header .header-overlay {
    background: rgb(0 0 0 / 91%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 5;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.is-navigation .header .header-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.close-navigation {
    background-color: var(--bs-gray-300);
    border: 1px solid transparent !important;
    color: var(--bs-gray-700);
    font-size: 1.3em;
    width: 35px;
    height: 35px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    border-radius: 3px;
    margin: 25px 35px 10px 35px;
    display: none;
}

.close-navigation:hover {
    background-color: var(--primary-color);
    color: var(--bs-white);
}

.hamburger-button {
    border-radius: 3px;
    width: 38px;
    height: 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--primary-color);
    border: 1px solid transparent !important;
}

.hamburger-button > span {
    background-color: var(--bs-white);
    height: 2px;
    border-radius: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 25px;
}

.header-navigation__bottom {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 22px;
    background-color: var(--primary-color);
    font-size: 0.9em;
}

.header-hamburger,
.header-navigation__bottom {
    display: none !important;
}

.section-logo__item .title {
    font-weight: 600;
    margin-bottom: 15px;
}

.section-logo__item a {
    max-width: 150px;
    height: 120px;
}

@media (max-width: 1200px) {
    .header-hamburger,
    .close-navigation,
    .header-navigation__bottom {
        display: flex !important;
    }

    .header {
        background: var(--bs-white);
        animation: unset !important;
    }

    .header-heading .header-title {
        font-size: 1.1rem;
    }

    .header-heading .header-title-1 {
        font-size: 1.2rem;
    }

    .header-bottom {
        height: 60px;
    }

    .header-logo {
        width: 190px;
    }

    .header-navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 400px;
        background-color: var(--bs-white);
        height: 100vh;
        z-index: 6;
        -webkit-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
        transform: translateX(-200%);
        -webkit-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        -webkit-transition-delay: 0.1s;
        -o-transition-delay: 0.1s;
        transition-delay: 0.1s;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .is-navigation .header-navigation {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .header .header-navigation > ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 30px 35px;
        overflow-y: auto;
    }

    .header .header-navigation > ul > li {
        width: 100%;
    }

    .header .header-navigation > ul > li::after {
        position: unset;
        content: unset;
        top: unset;
        left: unset;
        background-color: unset;
        opacity: unset;
        visibility: unset;
        pointer-events: unset;
    }

    .header .header-navigation > ul > li > a {
        width: 100%;
        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;
        padding: 15px 0;
        color: var(--text-color);
    }

    .header .header-navigation > ul > li > a > i {
        width: 25px;
        height: 25px;
        background-color: var(--primary-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;
        border-radius: 2px;
    }

    .header .header-navigation > ul > li > a[aria-expanded='true'] i {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .header .header-navigation > ul > li:hover > a,
    .header .header-navigation > ul > li > a[aria-expanded=true] {
        color: var(--primary-color);
        background-color: transparent;
    }

    .header .header-navigation > ul > li:hover > a i {
        -webkit-transform: unset;
        -ms-transform: unset;
        transform: unset;
    }

    .header .header-navigation > ul > li:not(:last-child)::after {
        position: unset;
        content: unset;
        top: unset;
        right: unset;
        background-color: unset;
    }

    .header .header-navigation > ul > li:not(:last-child) {
        border-bottom: 1px solid rgb(244 241 241);
    }

    .header .header-navigation > ul > li > ul > li:not(:last-child),
    .header .header-navigation > ul > li > ul > li > ul > li:not(:last-child) {
        border-bottom: 1px solid transparent;
    }

    .header .header-navigation > ul > li > ul {
        padding-right: 12px;
    }

    .header .header-navigation > ul > li > ul,
    .header .header-navigation > ul > li > ul > li > ul {
        background-color: transparent;
        width: 100%;
        position: unset !important;
        top: unset !important;
        left: unset !important;
        -webkit-transform: unset !important;
        -ms-transform: unset !important;
        transform: unset !important;
        opacity: unset;
        pointer-events: unset;
        visibility: unset;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        border-radius: 0;
    }

    .header .header-navigation > ul > li > ul > li > ul {
        padding-left: 12px;
    }

    .header .header-navigation > ul > li > ul > li > a,
    .header .header-navigation > ul > li > ul > li > ul > li > a {
        width: 100%;
        padding: 10px 0;
        font-weight: 600;
        color: var(--bs-gray-700);
    }
}

@media (max-width: 992px) {
    .header-top .header__logos {
        width: 140px;
        height: 100px;
    }

    .header-top .header__logos img {
        width: 90px;
    }

    .header-top .header-heading .header-title {
        font-size: 1rem;
    }

    .header-top .header-heading .header-title-1 {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .header-top .header__logos {
        width: 170px;
        height: 80px;
    }

    .header-top .header-heading .header-title {
        font-size: 0.75rem;
    }

    .header-top .header-heading .header-title-1 {
        font-size: 1.1rem;
    }

    .page-home .header.is-scroll {
        top: 0;
    }
}

@media (max-width: 600px) {
    .header-top .header__logos {
        width: 150px;
        height: 70px;
    }

    .header-top .header__logos img {
        width: 80px;
    }

    .header-top .header-heading .header-title {
        font-size: 0.75rem;
    }
}


@media (max-width: 400px) {
    .header-navigation {
        width: 100%;
    }

    .header .header-navigation > ul {
        padding: 25px 25px;
    }

    .header-navigation__bottom {
        padding: 22px 25px;
    }

    .close-navigation {
        margin: 25px 25px 10px 25px;
    }

    .header-top ul > li > a {
        font-size: 0.9em;
        white-space: normal;
    }

    .header-top .header__logos {
        width: 110px;
        height: 70px;
    }

    .header-top .header__logos img {
        width: 60px;
    }
}

@media (max-width: 325px) {
    .header-top .header__logos {
        width: 100px;
        height: 70px;
    }

    .header-top .header__logos img {
        width: 55px;
    }

    .header-top .header-heading .header-title {
        font-size: 0.6rem;
    }

    .header-top .header-heading .header-title-1 {
        font-size: 0.65rem;
    }
}

.section-hero .hero-item_content {
    width: 100%;
    top: 40%;
}

.section-hero .hero-item .box-countdown {
    position: absolute;
    top: 30%;
    width: 100%;
}

.section-hero .hero-item .hero-content .box-countdown {
    position: relative;
}

.section-hero .hero-item .hero-content .hero-line {
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    left: 35%;
    width: 30%;
    margin-top: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.box-countdown .section-heading .heading-title, .box-countdown .section-countdown__list .countdown-item {
    color: var(--bs-white) !important;
}


.section-hero .hero-item_image img {
    width: 100% !important;
}

.section-hero .hero-content_title {
    font-weight: 600;
    color: var(--bs-white);
    font-size: 2.2em;
}

.section-hero .hero-content_desc {
    color: var(--bs-white);
    font-size: 1em;
}

.section-hero .hero-content_desc b,
.section-hero .hero-content_desc strong {
    font-weight: 600 !important;
}

.section-hero .slider-button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-content: center;
    color: var(--bs-gray-800);
    border: 1px solid transparent;
    background-color: var(--bs-white);
    transition: var(--transition-default);
    box-shadow: 0 0 20px -1px rgba(0, 0, 0, .1);
}

.section-hero .slider-button:hover {
    background-color: var(--primary-color);
    color: var(--bs-white);
}

.section-hero .slider-button_next {
    right: 5px;
    opacity: 0;
    visibility: hidden;
}

.section-hero .slider-button_prev {
    left: 5px;
    opacity: 0;
    visibility: hidden;
}

.section-hero:hover .slider-button_next {
    right: 20px;
    opacity: 1;
    visibility: visible;
}

.section-hero:hover .slider-button_prev {
    left: 20px;
    opacity: 1;
    visibility: visible;
}

.section-hero .swiper-pagination {
    align-content: center;
    justify-content: center;
}

.section-hero .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    opacity: 1;
    transition: var(--transition-default);
}

.section-hero .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 35px;
    border-radius: 20px;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
}

.card-introduce__title {
    font-weight: 600;
    font-size: 1.2em;
}

.card-introduce__text {
    color: var(--bs-gray-700);
    font-size: 1em;
}

.card-introduce__image img {
    transition: all 1s;
}

.card-introduce:hover .card-introduce__image img {
    transform: scale(1.1);
}

.card-introduce:hover .card-introduce__title {
    color: var(--primary-color);
}

.page-article .article-content .article-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.page-article .article-content .article-meta {
    color: var(--bs-gray-600);
    position: relative;
}

.page-article .article-content .article-meta .article-meta_item + .article-meta_item {
    padding-left: 15px;
}

.page-article .article-content .article-meta .article-meta_item + .article-meta_item:before {
    color: #c0c4cb;
    margin-right: 8px;
    content: "|";
    position: relative;
    top: -1px;
}

.page-article .article-content .article-desc {
    background-color: #eee;
    padding: 20px;
    border-radius: 8px;
    font-style: italic;
    margin-top: 10px;
}

.sidebar-right .sidebar-heading .heading-title-2 {
    font-weight: 700;
    font-size: 1.4em;
    padding-bottom: 5px;
    position: relative;
}

.sidebar-right .sidebar-heading .heading-title-2::after {
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    height: 2px;
    background-color: var(--primary-color);
    width: 15%;
}

.sidebar-left__title {
    font-size: 1.4em;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: -.5px;
    padding-left: 10px;
    line-height: normal;
    text-transform: uppercase;
    border-left: 3px solid var(--primary-color);
}

.sidebar-left ul > li > a {
    color: var(--bs-gray-700);
    font-size: 1.1em;
    font-family: var(--font-heading);
    font-weight: 500;
}

.sidebar-left ul > li > a:hover {
    margin-left: 5px;
    color: var(--primary-color);
}

.card-article-2 {
    -webkit-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

.card-article-2 .card-article-2__image::after {
    position: absolute;
    top: 0;
    left: -75%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
    z-index: 1;
    transition: all 0.1s;
}

.card-article-2:hover .card-article-2__image::after {
    animation: shine 1.5s;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.card-article-2 .card-article-2__image img {
    -webkit-transition: all 1.2s cubic-bezier(.14, .4, .09, .99);
    -o-transition: all 1.2s cubic-bezier(.14, .4, .09, .99);
    transition: all 1.2s cubic-bezier(.14, .4, .09, .99);
}

.card-article-2:hover .card-article-2__image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.card-article-2__title {
    font-weight: 600;
    font-size: 1.15em;
    color: var(--text-color);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1.4;
    height: 45px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-article-2__title:hover {
    color: var(--primary-color);
}

.card-article-2__date {
    font-size: 0.8em;
    color: var(--bs-gray-600);
    margin-bottom: 5px;
    font-weight: 500;
}

.card-article-2__text {
    color: var(--bs-gray-600);
}

.detailContent img {
    max-width: 100% !important;
    height: auto !important;
}

.detailContent iframe {
    max-width: 100% !important;
}

.detailContent table tr td p {
    margin-bottom: 0;
}

.detailContent table tr,
.detailContent table tr td {
    vertical-align: middle;
}

.detailContent strong,
.detailContent b {
    font-weight: 600 !important;
}

.detailContent h1,
.detailContent h2,
.detailContent h3,
.detailContent h4,
.detailContent h5,
.detailContent h6 {
    font-weight: 600 !important;
    margin-bottom: 1rem;
}

.detailContent h1 {
    font-size: 1.6em;
}

.detailContent h2 {
    font-size: 1.5em;
}

.detailContent h3 {
    font-size: 1.4em;
}

.detailContent h4 {
    font-size: 1.3em;
}

.detailContent h5 {
    font-size: 1.2em;
}

.detailContent h6 {
    font-size: 1.1em;
}

.card-article {
    color: var(--text-color);
    border-bottom: 1px solid #d5e5f487;
    padding-bottom: 10px;
}

.card-article__title {
    font-weight: 600;
    font-size: 1.2em;
}

.card-article__date {
    color: var(--primary-color);
    text-align: center;
    background-color: #ebeaff;
    border-radius: 5px;
    padding: 8px 10px;
}

.card-article__date .date {
    font-size: 1.2rem;
    font-weight: 700;
}

.card-article:hover .card-article__title {
    color: var(--primary-color);
}

.section-article {
    padding: 20px;
    border: 1px solid var(--primary-color);
}

.section-partner {
    background-color: #f8f9fa;
}

.section-partner__item:not(:last-child) {
    padding: 15px 0;
}

.section-partner__item .partner-logo {
    margin-bottom: 10px;
}

.section-partner__item .section-heading .heading-line::after {
    content: none;
    display: none;
}

.section-partner__item:not(:first-child) .section-heading .heading-title {
    font-size: 1.5em;
}

.partner-img {
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    margin: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    transition: var(--transition-default, all .25s ease);
}

.partner-img img {
    max-width: 100%;
    max-height: 100%;
    width: 75%;
    height: 80%;
    object-fit: contain;
    display: block;
}


.section-countdown .box-countdown {
    position: relative;
    padding: 35px 0 20px 0;
    background: #f1f8ff;
    margin-top: -50px;
    border-radius: 15px;
    z-index: 1;
}

.section-bank .section-heading .heading-desc .space-y-3 {
    padding-left: 0;
}

.section-bank .section-heading .heading-desc .space-y-3 > li {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.section-bank {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.section-bank::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.05) 0%, transparent 70%);
    transform: rotate(45deg);
}

.bank-info {
    position: relative;
    z-index: 2;
}

.bank-features {
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--text-color);
}

.qr-frame {
    position: relative;
    overflow: hidden;
}

.qr-image {
    background: white;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.qr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: scanning 2s linear infinite;
    top: 50%;
}

@keyframes scanning {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(100px);
        opacity: 0;
    }
}

.qr-instructions {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .bank-info {
        text-align: center;
    }

    .qr-frame {
        max-width: 300px;
        margin: 0 auto;
    }
}


.section-countdown .section-heading .heading-title {
    padding-bottom: 15px;
}

.section-countdown .section-heading .heading-line {
    display: inline-flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    width: 20%;
    max-width: 30%;
    margin-top: 35px;
    border-bottom: 2px solid var(--heading-color);
}

.section-countdown .section-heading .heading-line::after {
    position: absolute;
    content: '';
    bottom: -10px;
    width: 200px;
    height: 2px;
    background-color: var(--heading-color);
}

.countdown-item__time {
    font-weight: 700;
    font-family: "Dosis", sans-serif;
    font-size: 4em;
    line-height: normal;
}

.countdown-item__title {
    margin-bottom: 17px;
    font-size: 1.3em;
    line-height: normal;
}

.countdown-item {
    position: relative;
    color: var(--heading-color);
    padding: 0 20px;
    margin-right: 30px;
    text-align: center;
}

.countdown-item:last-child {
    margin-right: 0;
}

.countdown-item::after {
    content: ":";
    position: absolute;
    right: -20px;
    font-size: 3rem;
    top: 15%;
    transform: translateY(-35%);
    font-weight: 500;
    color: var(--bs-white);
}

.countdown-item:last-child::after {
    content: none;
}

.section-introduction .section-introduce__service .introduction-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 3;
}

.section-introduction .section-introduce__service .introduction-image::before,
.section-introduction .section-introduce__service .introduction-image::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
}


.section-introduction .section-introduce__service .introduction-image::before {
    background-color: var(--bs-white);
    border-radius: 15px;
    z-index: 2;
    right: -7px;
    bottom: -7px;
}


.section-introduction .section-introduce__service .introduction-image::after {
    right: -15px;
    bottom: -15px;
    height: 80%;
    width: 80%;
    background-color: #acd0f4;
    border-radius: 20px;
    z-index: 1;
}

.section-greeting {
    background-color: #e2edff99;
    padding: 50px 0;
}

.greeting-left{
    margin-right: 10%;
}

.greeting-decor {
    position: absolute;
    top: -100px;
    left: -125px;
    width: 1190px;
    height: 794px;
}

.greeting-img {
    width: 480px;
    height: 480px;
    margin: 0 auto;
}

.greeting-img-1 {
    position: absolute;
    bottom: 0;
    left: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 8px solid #FFF8EE;
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
    -webkit-animation: 3s greeting-image infinite;
    animation: 3s greeting-image infinite;
}

@-webkit-keyframes greeting-image {
    50% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes greeting-image {
    50% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.greeting-img-2 {
    position: absolute;
    bottom: 0;
    right: -80px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 8px solid #FFF8EE;
    -webkit-animation: 3s greeting-image infinite;
    animation: 3s greeting-image infinite;
}

.greeting-img-3 {
    position: absolute;
    bottom: 85%;
    right: 30%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 8px solid #FFF8EE;
    -webkit-animation: 3s greeting-image infinite;
    animation: 3s greeting-image infinite;
}


.section-greeting .greeting-right {
    padding: 70px 50px;
}

.section-greeting .greeting-right .greeting-right__decor {
    position: absolute;
    bottom: 0;
    right: -54px;
    width: 200px;
    height: 45px;
}


.section-greeting .greeting-right .section-heading .heading-line {
    border-bottom: 1px solid var(--bs-white);
}

.section-greeting .greeting-right .section-heading .heading-line::after {
    content: none;
    display: none;
}

.section-greeting .greeting-right .section-heading .heading-title {
    color: var(--bs-white);
}

.section-greeting .greeting-right .section-heading .heading-desc {
    font-size: 1.15em;
    color: var(--bs-gray-300);
    margin-top: 15px;
}

@media (max-width: 1280px) {
    .greeting-img-1 {
        left: -30px;
        width: 150px;
        height: 150px;
    }

    .greeting-img-2 {
        right: -30px;
        width: 150px;
        height: 150px;
    }

    .greeting-img-3 {
        right: 35%;
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 1024px) {
    .section-greeting {
        padding: 50px 50px;
    }

    .greeting-left {
        padding-top: 90px;
        padding-bottom: 50px;
        margin-right: 0;
    }
}


@media (max-width: 576px) {

    .section-greeting {
        padding: 0 0 50px 0;
    }

    .greeting-img {
        width: 400px;
        height: 400px;
    }

    .greeting-img-1 {
        left: 0;
        width: 100px;
        height: 100px;
    }

    .greeting-img-2 {
        right: 0;
        width: 100px;
        height: 100px;
    }

    .greeting-img-3 {
        bottom: 90%;
        right: 40%;
        width: 100px;
        height: 100px;
    }


    .section-greeting .greeting-right {
        padding: 35px;
    }
}

@-webkit-keyframes liner-bg {
    0% {
        background-position: 0 0
    }
    50% {
        background-position: 100% 100%
    }
    to {
        background-position: 0 0
    }
}

footer {
    background-color: var(--primary-color);
    color: #caddf5;
}

.footer-title {
    color: var(--bs-white);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.2em;
    text-transform: uppercase;
}

.footer-column ul > li > a {
    color: var(--bs-gray-300);
    transition: var(--transition-default);
}

.footer-column ul > li > a:hover {
    color: var(--bs-white);
}

.footer-copyright {
    color: var(--bs-gray-100);
    border-top: 1px solid rgba(213, 210, 210, 0.22);
}

.section-program__heading {
    padding: 12px 15px;
    font-weight: 600;
    font-size: 1.25em;
    background: var(--primary-color);
}

.section-program__item ~ .section-program__item .section-program__heading {
    background: #25ACE3 !important;
}

.section-program .accordion-button::after {
    background-image: unset !important;
    margin-left: unset !important;
    content: unset !important;
}

.section-program .accordion-button {
    font-weight: 600;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.section-program .accordion-button:not(.collapsed) {
    background-color: var(--bs-gray-100);
    color: var(--primary-color);
}

.section-program .accordion-button:not(.collapsed) i {
    transform: rotate(180deg);
}

.section-program .accordion-button:focus {
    box-shadow: none !important;
}

.section-program .accordion-button .icon {
    color: var(--bs-gray-800);
}

.contact-form_item--input {
    height: 50px;
    border-radius: 25px;
    font-size: 1em;
    padding: 10px 25px;
    background: #F7F7F7;
}

.contact-form_item--input.textarea-input {
    height: unset;
    border-radius: 10px;
    padding: 20px 25px;
}

.contact-iframe iframe {
    width: 100% !important;
    height: 500px;
}

.floating-contact {
    position: fixed;
    bottom: 20px;
    right: -20px;
    z-index: 5;
    display: flex;
    align-items: center;
    flex-direction: column;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

}

.floating-contact.is-show {
    right: 15px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.floating-contact__item {
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 12px;
    border: 1px solid transparent;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-gray-700);
    line-height: normal;
    background-color: var(--bs-gray-200);
    font-size: 1.2em;
    transition: var(--transition);
}

.floating-contact__item:hover {
    background-color: var(--primary-hover);
    color: var(--bs-white);
}

.section-html {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fffffffc);
}

.section-html__wrap .section-heading .heading-title {
    font-size: 1.8em;
}

.lienhe .section-introduction {
    display: none !important;
}

.section-readmore {
    --height: 250px;
}

.section-readmore .content {
    max-height: 250px;
    overflow: hidden;
}

.section-readmore.is-show .content {
    max-height: calc(var(--height) + 40px);
    transition: all 0.5s ease-in-out;
}

.section-readmore .readmore-button {
    box-shadow: 0 -10px 10px 10px #ffffff;
}

.section-readmore.is-show .readmore-button {
    box-shadow: unset;
}

.section-readmore .btn-readmore {
    font-weight: 600;
    font-size: 1.1em;
    color: var(--bs-gray-800);
    position: relative;
    padding: 0 0 2px 0;
}

.section-readmore .btn-readmore::after {
    position: absolute;
    content: '';
    left: auto;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    transition: all 0.35s ease-in-out;
}

.section-readmore .btn-readmore:hover::after {
    left: 0;
    right: auto;
    width: 100%;
}

.section-readmore .btn-readmore:hover {
    color: var(--secondary-color);
}

.image-border {
    width: 300px;
    height: 300px;
    border-radius: 8px;
    margin: 10px auto;
    overflow: hidden;
    display: block;
    border: 3px solid #eff1ff;
    padding: 7px;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.image-border img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: top;
    border-radius: 5px;
}

@media (max-width: 1024px) {
    .breadcrumb-title {
        font-size: 2.2em;
    }

    .button-theme {
        font-size: 0.95em;
        padding: 8px 22px;
    }

    .section-heading .heading-title {
        font-size: 1.8em;
    }

    .section-program .accordion-button {
        font-size: 15px;
    }

    .section-program__heading {
        font-size: 1.1em;
    }

    .section-hero .hero-content_title {
        font-size: 1.5em;
    }

    .section-hero .hero-content_desc {
        font-size: 0.95em;
    }

    .section-hero .hero-item .hero-content .hero-line{
        margin-top: 0;
    }

    .countdown-item__time {
        font-size: 3em;
    }

    .countdown-item__title {
        font-size: 1.1em;
        margin-bottom: 12px;
    }

    .section-hero .hero-item_content {
        top: 50%;
    }

    .hero-content .hero-content_button {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .section-breadcrumb {
        padding: 70px 0;
    }

    .breadcrumb-title {
        font-size: 2em;
    }

    .section-html__wrap .section-heading .heading-title,
    .section-heading .heading-title {
        font-size: 1.6em;
    }

    .section-html .border-start {
        border-left: unset !important;
    }

    .detailContent h1 {
        font-size: 1.4em;
    }

    .detailContent h2 {
        font-size: 1.3em;
    }

    .detailContent h3 {
        font-size: 1.2em;
    }

    .detailContent h4 {
        font-size: 1.1em;
    }

    .detailContent h5,
    .detailContent h6 {
        font-size: 1.05em;
    }

    .card-introduce__title {
        font-size: 1em;
    }

    .section-logo__item a {
        max-width: 100px;
        height: 80px;
    }

}

@media (max-width: 576px) {
    .breadcrumb-title {
        font-size: 1.6em;
    }

    .page-detail .breadcrumb-item:last-child {
        display: none !important;
    }

    .section-html__wrap .section-heading .heading-title,
    .section-heading .heading-title {
        font-size: 1.5em;
    }

    .countdown-item {
        flex-direction: column;
        align-items: center !important;
        justify-content: center;
    }

    .countdown-item__title {
        margin-bottom: 0;
        margin-top: -7px;
        font-size: 1em;
    }

    .section-hero .hero-item_content {
        top: 50%;
    }

    .countdown-item__time {
        font-size: 2.5em;
    }

    .hero-content .hero-content_title {
        font-size: 0.95em;
    }

    .section-hero .hero-item .hero-content .hero-line {
        margin-top: 0;
    }

    .section-hero .hero-item_image {
        height: 350px !important;
    }

    .section-hero .hero-item_image img {
        height: 350px !important;
    }

    .section-hero .box-countdown .section-heading .heading-title {
        font-size: 0.85rem;
    }

    .section-program .accordion-button {
        align-items: flex-start;
    }

    .footer-column ul > li > a {
        white-space: normal !important;
    }

}

@media (max-width: 375px) {
    .countdown-item {
        padding: 0 10px;
    }

    .countdown-item__time {
        font-size: 2em;
    }
}

.registration-plans .registration-plans_list .box-plans {
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 15px 10px;
}

.box-plans__price {
    font-size: 2em;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
}

.box-icon {
    background: var(--primary-color);
    padding: 15px;
    border-radius: 50%;
}

.box-icon img {
    width: 50px;
    height: 50px;
}

.registration-plans .registration-plans_list .box-plans .box-plans_header__title {
    font-size: 1.5em;
    font-weight: 600;
    margin-top: 15px;
}

.registration-timeline .timeline-wrapper::after {
    position: absolute;
    content: '';
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    z-index: 2;
    background-color: var(--primary-color);
}



.card-price {
    border-radius: 20px;
}

.card-price__line {
    height: 1px;
    width: 30%;
    display: inline-flex;
    background-color: #ffff;
    position: relative;
}

.card-price__line:after {
    position: absolute;
    content: '';
    bottom: -10px;
    width: 165px;
    left: -25px;
    height: 1px;
    background-color: #ffff;
}

.card-price__text ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

.card-price__text ul > li {
    padding: 8px 0;
}

.card-price__text ul > li:not(:last-child) {
    border-bottom: 1px solid #9595954d;
}

.card-price__text ul > li {
    display: flex;
    align-items: center;
    gap: 3px;
    position: relative;
}

.card-price__header {
    padding: 30px;
}

.card-price__header .hot {
    background: #a8a8a8;
    padding: 0 16px 0 29px;
    height: 30px;
    line-height: 30px;
    position: absolute;
    right: 0;
    top: 15px;
    font-weight: 500;
}

.card-price .card-body {
    padding: 10px 30px 30px 30px;
    font-size: 1em;
}

.card-price__name {
    font-size: 1.3em;
    font-weight: 500;
}

.card-price__info {
    font-weight: 600;
    font-size: 1.1em;
}

.card-price__price p {
    margin-bottom: 0;
    font-size: 1.7em;
    font-weight: 600;
}

.card-price__text ul > li i {
    margin-right: 5px;
}

.card-speakers .card-body {
    bottom: 8px;
    padding: 20px 10px;
    z-index: 2;
    color: var(--bs-black);
    font-size: 17px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}

.card-speakers:hover .card-body {
    color: var(--primary-color) !important;
}

.speakers-wrapper{
    border-bottom: 1px solid rgba(104, 183, 255, 0.53);
    padding: 20px 0;
}


.speakers-wrapper .speakers-detail{
    background-color: #eee;
    width: 100%;
    padding: 1.5em 1.5em 0.5em;
    margin-top: 20px;
    border-radius: 0.5em;
}

.page-intro .section-heading .heading-desc {
    text-align: justify;
}

.page-intro .section-heading .heading-desc ul > li{
    color: var(--primary-color);
}

.render-video iframe {
    border-radius: 16px;
}

.section-btc {
    background: linear-gradient(130deg, #b4deffd9, #376dc1);
}

.section-btc .btc-img {
    margin-bottom: -10%;
}

.section-btc .btc-img img {
    width: 100%;
    height: 100%;
}

.section-btc .btc-content {
    color: var(--primary-color);
    background-color: var(--bs-white);
    text-align: justify;
    padding: 30px 90px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}

.btc-content .btc-decor,
.btc-content .btc-decor1{
    position: absolute;
    font-size: 2.5em;
}

.btc-content .btc-decor {
    bottom: 9%;
    right: 5%;
}

.btc-content .btc-decor1 {
    top: 6%;
    left: 6%;
}

@media (max-width: 768px) {
    .section-btc .btc-content {
        padding: 15px 50px;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        font-size: 14px;
    }

    .btc-content .btc-decor,
    .btc-content .btc-decor1{
        position: absolute;
        font-size: 2em;
    }

    .btc-content .btc-decor1 {
        top: 6%;
        left: 3%;
    }


    .btc-content .btc-decor {
        bottom: 9%;
        right: 3%;
    }

    .section-btc .btc-content .section-heading .heading-desc {
        font-size: 1em;
    }
}







