:root {
    --base-color: #0054a6;
    --base-color-2: #0160e7 !important;
    --primary-color: #0054a6;
    --primary-light: #004295;
    --primary-hover: var(--base-color-2);
    --secondary-color: #0160e7;
    --theme-color: #D4A528;
    --primary-gradient: linear-gradient(80deg, #1f0098 0%, #05d7f0 100%);
    --text-gradient: linear-gradient(80deg, #1f0098 0%, #05d7f0 100%);

    --transition: .3s all ease-in-out;
    --text-dark: #222;
    --dark-color: #121415;
    --font-vietnam: "Inter", sans-serif;
    --font-heading: "Inter", sans-serif;
    --font-title: "Inter", sans-serif;

    --fs-xl: 3.8em;
    --fs-lg: 2em;
    --fs-title: 1.8em;
    --fs-base: 1em;
}

/*======================================
        introduce-us
=====================================*/

.transition-text {
    -webkit-transition: 0.1s ease;
    -o-transition: 0.1s ease;
    transition: 0.1s ease;
}

.introduce-us {
    /* padding: 220px 0 120px 0;*/
    padding: 23vh 0 12vh;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.introduce-us::after {
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 0;
    background: linear-gradient(to right, #003265 20%, #084083e8 100%);
}

.introduce-us__heading .heading-subtitle {
    margin-left: 72px;
}

.introduce-us__heading {
    opacity: 0;
}

.load-banner .introduce-us__heading {
    -webkit-transition-delay: 1.6s;
    -o-transition-delay: 1.6s;
    transition-delay: 1.6s;
    opacity: 1;
}


.introduce-us__heading .image-1 {
    -webkit-transition-delay: 1.8s;
    -o-transition-delay: 1.8s;
    transition-delay: 1.8s;
    opacity: 0;
}

.load-banner .introduce-us__heading .image-1 {
    opacity: 1;
    -webkit-animation-name: text-in;
    animation-name: text-in;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-duration: 0.9s;
    animation-duration: 0.9s;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;

}

.introduce-us__heading .image-2 {
    -webkit-transition-delay: 2.4s;
    -o-transition-delay: 2.4s;
    transition-delay: 2.4s;
    opacity: 0;
}

.load-banner .introduce-us__heading .image-2 {
    opacity: 1;
    -webkit-animation-name: text-in;
    animation-name: text-in;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s;
}


@-webkit-keyframes text-in {
    0% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    50% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
    }
    80% {
        -webkit-transform: translateY(12px);
        transform: translateY(12px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}


@keyframes text-in {
    0% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    50% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
    }
    80% {
        -webkit-transform: translateY(12px);
        transform: translateY(12px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.introduce-us__heading .image-3 {
    -webkit-transition-delay: 2.8s;
    -o-transition-delay: 2.8s;
    transition-delay: 2.8s;
    opacity: 0;
}

.load-banner .introduce-us__heading .image-3 {
    opacity: 1;
    -webkit-animation-name: text-up;
    animation-name: text-up;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

@-webkit-keyframes text-up {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);

    }
}

@keyframes text-up {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);

    }
}


.introduce-us__heading .image-4 {
    -webkit-transition-delay: 3s;
    -o-transition-delay: 3s;
    transition-delay: 3s;
    opacity: 0;
}

.load-banner .introduce-us__heading .image-4 {
    opacity: 1;
    -webkit-animation-name: text-zoom;
    animation-name: text-zoom;
    -webkit-animation-timing-function: cubic-bezier(.37, .49, .72, .66);
    animation-timing-function: cubic-bezier(.37, .49, .72, .66);
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

@-webkit-keyframes text-zoom {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    95% {
        -webkit-transform: scale(1.07);
        transform: scale(1.07);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes text-zoom {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    95% {
        -webkit-transform: scale(1.07);
        transform: scale(1.07);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.introduce-us__heading .image-6 {
    -webkit-transition-delay: 3.4s;
    -o-transition-delay: 3.4s;
    transition-delay: 3.4s;
    opacity: 0;
}

.load-banner .introduce-us__heading .image-6 {
    opacity: 1;
    -webkit-animation-name: text-right;
    animation-name: text-right;
    -webkit-animation-timing-function: cubic-bezier(.38, .46, .78, .64);
    animation-timing-function: cubic-bezier(.38, .46, .78, .64);
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-delay: 2.6s;
    animation-delay: 2.6s;
}

@-webkit-keyframes text-right {

    30% {
        -webkit-transform: translateX(-15px);
        transform: translateX(-15px);
    }
    80% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@keyframes text-right {

    30% {
        -webkit-transform: translateX(-15px);
        transform: translateX(-15px);
    }
    80% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

.introduce-us__heading .heading-desc {
    margin-left: -50px;
}

.introduce--us__dot.dot-right {
    position: absolute;
    right: 0;
    top: -140px;
    width: 260px;
    -webkit-transform: rotate(90deg) translateX(-50px);
    -ms-transform: rotate(90deg) translateX(-50px);
    transform: rotate(90deg) translateX(-50px);
    -webkit-transition: all 0.7s ease-in;
    -o-transition: all 0.7s ease-in;
    transition: all 0.7s ease-in;
    z-index: 5;
    -webkit-transition-delay: 0.8s;
    -o-transition-delay: 0.8s;
    transition-delay: 0.8s;
}

.load-banner .introduce--us__dot.dot-right {
    -webkit-transform: rotate(90deg) translateX(290px);
    -ms-transform: rotate(90deg) translateX(290px);
    transform: rotate(90deg) translateX(290px);
}

.introduce--us__dot.dot-bottom {
    position: absolute;
    left: 68px;
    bottom: -12px;
    width: 260px;
    z-index: 5;
    -webkit-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
    -webkit-transition-delay: 0.8s;
    -o-transition-delay: 0.8s;
    transition-delay: 0.8s;
}

.load-banner .introduce--us__dot.dot-bottom {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.introduce--us__arrow.arrow-right {
    position: absolute;
    right: 33px;
    bottom: -31px;
    width: 170px;
    height: 50px;
    z-index: 2;
}

.introduce--us__arrow-left {
    width: 200px;
    height: 50px;
}

.introduce--us__arrow .arrow-item {
    width: 28px;
    height: 44px;
    position: absolute;
    right: 0;
    -webkit-transition: all 0.35s cubic-bezier(.11, .78, .62, .79);
    -o-transition: all 0.35s cubic-bezier(.11, .78, .62, .79);
    transition: all 0.35s cubic-bezier(.11, .78, .62, .79);
    opacity: 0;
}

.introduce--us__arrow-left .arrow-item {
    width: 28px;
    height: 44px;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.35s cubic-bezier(.11, .78, .62, .79);
    -o-transition: all 0.35s cubic-bezier(.11, .78, .62, .79);
    transition: all 0.35s cubic-bezier(.11, .78, .62, .79);
    opacity: 0;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.introduce--us__arrow .arrow-item:nth-child(1) {
    right: -10px;
}

.introduce--us__arrow .arrow-item:nth-child(2) {
    right: 0px;
}

.introduce--us__arrow .arrow-item:nth-child(3) {
    right: 35px;
}

.introduce--us__arrow .arrow-item:nth-child(4) {
    right: 70px;
}

.introduce--us__arrow .arrow-item:nth-child(5) {
    right: 110px;
}

.load-banner .introduce--us__arrow .arrow-item:nth-child(1) {
    opacity: 1;
    right: 0;
    -webkit-transition-delay: 1.4s;
    -o-transition-delay: 1.4s;
    transition-delay: 1.4s;
}

.load-banner .introduce--us__arrow .arrow-item:nth-child(2) {
    opacity: 1;
    right: 35px;
    -webkit-transition-delay: 1.7s;
    -o-transition-delay: 1.7s;
    transition-delay: 1.7s;
}

.load-banner .introduce--us__arrow .arrow-item:nth-child(3) {
    opacity: 1;
    right: 70px;
    -webkit-transition-delay: 1.8s;
    -o-transition-delay: 1.8s;
    transition-delay: 1.8s;
}

.load-banner .introduce--us__arrow .arrow-item:nth-child(4) {
    opacity: 1;
    right: 110px;
    -webkit-transition-delay: 1.9s;
    -o-transition-delay: 1.9s;
    transition-delay: 1.9s;
}

.load-banner .introduce--us__arrow .arrow-item:nth-child(5) {
    opacity: 1;
    right: 150px;
    -webkit-transition-delay: 2s;
    -o-transition-delay: 2s;
    transition-delay: 2s;
}

.introduce--us__arrow-left .arrow-item:nth-child(1) {
    left: -10px;
}

.introduce--us__arrow-left .arrow-item:nth-child(2) {
    left: 0px;
}

.introduce--us__arrow-left .arrow-item:nth-child(3) {
    left: 35px;
}

.introduce--us__arrow-left .arrow-item:nth-child(4) {
    left: 70px;
}

.introduce--us__arrow-left .arrow-item:nth-child(5) {
    left: 110px;
}

.load-banner .introduce--us__arrow-left .arrow-item:nth-child(1) {
    opacity: 1;
    left: 0;
    -webkit-transition-delay: 1.8s;
    -o-transition-delay: 1.8s;
    transition-delay: 1.8s;
}

.load-banner .introduce--us__arrow-left .arrow-item:nth-child(2) {
    opacity: 1;
    left: 35px;
    -webkit-transition-delay: 2s;
    -o-transition-delay: 2s;
    transition-delay: 2s;
}

.load-banner .introduce--us__arrow-left .arrow-item:nth-child(3) {
    opacity: 1;
    left: 70px;
    -webkit-transition-delay: 2.2s;
    -o-transition-delay: 2.2s;
    transition-delay: 2.2s;
}

.load-banner .introduce--us__arrow-left .arrow-item:nth-child(4) {
    opacity: 1;
    left: 110px;
    -webkit-transition-delay: 2.4s;
    -o-transition-delay: 2.4s;
    transition-delay: 2.4s;
}

.load-banner .introduce--us__arrow-left .arrow-item:nth-child(5) {
    opacity: 1;
    left: 150px;
    -webkit-transition-delay: 2.6s;
    -o-transition-delay: 2.6s;
    transition-delay: 2.6s;
}

.introduce-us__logo {
    width: 500px;
    height: 500px;
    -webkit-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    -webkit-transition-delay: 0.8s;
    -o-transition-delay: 0.8s;
    transition-delay: 0.8s;
    opacity: 0;
}

.load-banner .introduce-us__logo {
    opacity: 1;
}

.introduce-us__logo .logo-decor > img {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
}

.introduce-us__logo .logo-decor .logo-decor-1 {
    left: 24px;
    padding: 28px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
    -webkit-transition-delay: 1.4s;
    -o-transition-delay: 1.4s;
    transition-delay: 1.4s;
    opacity: 0;
}

.introduce-us__logo .logo-decor .logo-decor-1.loader-banner {
    opacity: 1;
    -webkit-animation-name: animation-decor-1;
    animation-name: animation-decor-1;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(.33, .36, .86, .84);
    animation-timing-function: cubic-bezier(.33, .36, .86, .84);
}

@-webkit-keyframes animation-decor-1 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    15% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg);
        opacity: 1;
    }
    25% {
        opacity: 0.25;
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
        opacity: 0.5;
    }
    65% {
        opacity: 1;
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-animation-delay: 2s;
        animation-delay: 2s;
    }
}

@keyframes animation-decor-1 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    15% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg);
        opacity: 1;
    }
    25% {
        opacity: 0.25;
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
        opacity: 0.5;
    }
    65% {
        opacity: 1;
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-animation-delay: 2s;
        animation-delay: 2s;
    }
}


.introduce-us__logo .logo-decor .loader-transform.logo-decor-1 {
    opacity: 1;
    -webkit-animation-name: animation-transform-left;
    animation-name: animation-transform-left;
    -webkit-animation-timing-function: cubic-bezier(.33, .36, .86, .84);
    animation-timing-function: cubic-bezier(.33, .36, .86, .84);
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-delay: 2.2s;
    animation-delay: 2.2s;
}

@-webkit-keyframes animation-transform-left {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(-36deg);
        transform: rotate(-36deg);

    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes animation-transform-left {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(-36deg);
        transform: rotate(-36deg);

    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}


.introduce-us__logo .logo-decor .logo-decor-2 {
    -webkit-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
    -webkit-transition-delay: 2s;
    -o-transition-delay: 2s;
    transition-delay: 2s;
    opacity: 0;

}

.introduce-us__logo .logo-decor .logo-decor-2.loader-banner {
    -webkit-animation-name: animation-decor-2;
    animation-name: animation-decor-2;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    opacity: 1;
    -webkit-animation-duration: 4.5s;
    animation-duration: 4.5s;
    -webkit-animation-timing-function: cubic-bezier(.33, .36, .86, .84);
    animation-timing-function: cubic-bezier(.33, .36, .86, .84);
}

@-webkit-keyframes animation-decor-2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes animation-decor-2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.introduce-us__logo .logo-decor .loader-transform.logo-decor-2 {
    opacity: 1;
    -webkit-animation-name: animation-transform-right;
    animation-name: animation-transform-right;
    -webkit-animation-timing-function: cubic-bezier(.33, .36, .86, .84);
    animation-timing-function: cubic-bezier(.33, .36, .86, .84);
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-delay: 2.2s;
    animation-delay: 2.2s;
}

@-webkit-keyframes animation-transform-right {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(36deg);
        transform: rotate(36deg);

    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes animation-transform-right {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(36deg);
        transform: rotate(36deg);

    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}


.introduce-us__logo .logo-decor .logo-decor-3 {
    -webkit-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
    -webkit-transition-delay: 2.5s;
    -o-transition-delay: 2.5s;
    transition-delay: 2.5s;
    opacity: 0;
}

.load-banner .introduce-us__logo .logo-decor .logo-decor-3 {
    -webkit-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
    -webkit-animation: animation-decor-3 3.1s linear infinite;
    animation: animation-decor-3 3.1s linear infinite;
    -webkit-transform: rotate(4deg);
    -ms-transform: rotate(4deg);
    transform: rotate(4deg);
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    opacity: 1;
}

@-webkit-keyframes animation-decor-3 {
    50% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    100% {
        -webkit-transform: rotate(4deg);
        transform: rotate(4deg);
    }
}

@keyframes animation-decor-3 {
    50% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    100% {
        -webkit-transform: rotate(4deg);
        transform: rotate(4deg);
    }
}

.introduce-us__logo .logo-decor .logo-decor-4 {
    padding: 90px;
    -webkit-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
    -webkit-transition-delay: 2s;
    -o-transition-delay: 2s;
    transition-delay: 2s;
    opacity: 0;
}

.load-banner .introduce-us__logo .logo-decor .logo-decor-4 {
    -webkit-animation: animation-decor-4 10s linear infinite;
    animation: animation-decor-4 10s linear infinite;
    opacity: 1;
}

@-webkit-keyframes animation-decor-4 {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes animation-decor-4 {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.introduce-us__logo .logo-vietcore {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 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;
}

.introduce-us__logo .logo-vietcore .logo-vietcore__image {
    width: 185px;
    height: 185px;
}

.introduce-us__logo .logo-vietcore .logo-vietcore__image > img {
    -webkit-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    -webkit-transition-delay: 1.2s;
    -o-transition-delay: 1.2s;
    transition-delay: 1.2s;
    opacity: 0;
}

.load-banner .introduce-us__logo .logo-vietcore .logo-vietcore__image > img {
    opacity: 1;
}

.introduce-us__bg-1 {
    position: absolute;
    height: 100%;
    top: 0;
    width: 24vw;
    z-index: 1;
    -webkit-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    left: -100%;
    opacity: 0;
    visibility: hidden;
}

.load-banner .introduce-us__bg-1 {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.introduce-us__bg-2 {
    position: absolute;
    right: 100%;
    height: 100%;
    top: 0;
    width: 50vw;

    z-index: 1;
    -webkit-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    opacity: 0;
    visibility: hidden;
}

.load-banner .introduce-us__bg-2 {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.introduce-us__bg-1 > img,
.introduce-us__bg-2 > img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
}

.introduce-us__bg-1 > img {
    opacity: 0.3;
}

.introduce-us__bg-2 > img {
    opacity: 0.15;
}

.introduce-us__bg-1 .bg-1__decor img,
.introduce-us__bg-2 .bg-2__decor img {
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    -webkit-transition-delay: 0.01s;
    -o-transition-delay: 0.01s;
    transition-delay: 0.01s;
    opacity: 0;
}

.introduce-us__bg-1 .bg-1__decor,
.introduce-us__bg-2 .bg-2__decor {
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.load-banner .introduce-us__bg-1 .bg-1__decor img,
.load-banner .introduce-us__bg-2 .bg-2__decor img {
    opacity: 0.4;
}

.introduce-us__heading .image-1 img {
    width: 276px;
    height: 50px;
}

.introduce-us__heading .image-2 img {
    width: 407px;
    height: 50px;
}

.introduce-us__heading .image-3 {
    width: 67px;
    height: 24px;
}

.introduce-us__heading .image-4 {
    width: 623px;
    height: 71px;
}

@media (max-width: 1300px) {
    .introduce--us__dot.dot-right,
    .introduce--us__dot.dot-bottom {
        width: 200px;
    }

    .introduce--us__dot.dot-right {
        right: -30px;
    }

    .introduce-us__logo {
        width: 350px;
        height: 350px;
    }

    .introduce-us__logo .logo-vietcore .logo-vietcore__image {
        width: 130px;
        height: 130px;
    }

    .introduce-us__heading .heading-subtitle {
        margin-left: 50px;
    }

    .introduce-us__heading .image-1 img {
        width: 220px;
        height: unset;
    }

    .introduce-us__heading .image-2 img {
        width: 320px;
        height: unset;
    }

    .introduce-us__heading .image-3 {
        width: 40px;
        height: unset;
    }

    .introduce-us__heading .image-4 {
        width: 500px;
        height: unset;
    }

    .introduce-us__heading .image-6 {
        width: 220px;
        height: unset;
    }

    .introduce-us__heading .heading-desc {
        margin-left: -25px;
    }

    .introduce--us__arrow-left {
        width: 130px;
        height: 35px;
    }

    .introduce--us__arrow .arrow-item,
    .introduce--us__arrow-left .arrow-item {
        width: 18px;
        height: 35px;
    }

    .load-banner .introduce--us__arrow-left .arrow-item:nth-child(2) {
        left: 25px;
    }

    .load-banner .introduce--us__arrow-left .arrow-item:nth-child(3) {
        left: 50px;
    }

    .load-banner .introduce--us__arrow-left .arrow-item:nth-child(4) {
        left: 75px;
    }

    .load-banner .introduce--us__arrow-left .arrow-item:nth-child(5) {
        left: 100px;
    }

    .load-banner .introduce--us__arrow .arrow-item:nth-child(2) {
        right: 25px;
    }

    .load-banner .introduce--us__arrow .arrow-item:nth-child(3) {
        right: 50px;
    }

    .load-banner .introduce--us__arrow .arrow-item:nth-child(4) {
        right: 75px;

    }

    .load-banner .introduce--us__arrow .arrow-item:nth-child(5) {
        right: 100px;
    }

    .introduce-us__logo .logo-decor .logo-decor-4 {
        padding: 60px;
    }

}

@media (max-width: 992px) {

    .introduce-us__logo {
        width: 250px;
        height: 250px;
    }

    .introduce-us__logo .logo-vietcore .logo-vietcore__image {
        width: 90px;
        height: 90px;
    }

    .introduce-us__heading .image-1 img {
        width: 160px;
    }

    .introduce-us__heading .image-2 img {
        width: 260px;
    }

    .introduce-us__heading .image-3 {
        width: 40px;
    }

    .introduce-us__heading .image-4 {
        width: 350px;
    }

    .introduce-us__heading .image-6 {
        width: 200px;
    }

    .introduce-us__logo .logo-decor .logo-decor-1 {
        left: 10px;
        padding: 15px;
    }

    .introduce-us__logo .logo-decor .logo-decor-4 {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .introduce-us__logo {
        width: 200px;
        height: 200px;
    }

    .introduce-us__logo .logo-vietcore .logo-vietcore__image {
        width: 80px;
        height: 80px;
    }

    .introduce-us__heading .heading-subtitle {
        margin-left: 28px;
    }

    .introduce-us__heading .image-1 img {
        width: 120px;
    }

    .introduce-us__heading .image-2 img {
        width: 210px;
    }

    .introduce-us__heading .image-3 {
        width: 20px;
    }

    .introduce-us__heading .image-4 {
        width: 300px;
    }

    .introduce-us__heading .image-6 {
        width: 180px;
    }

    .introduce--us__dot.dot-right,
    .introduce--us__dot.dot-bottom {
        width: 120px;

    }

    .introduce--us__dot.dot-bottom {
        left: 20px;
    }

    .introduce-us__logo .logo-decor .logo-decor-1 {
        left: 10px;
        padding: 10px;
        top: -2px;
    }
}

@media (max-width: 600px) {
    .introduce--us__dot.dot-right {
        right: 100%;
        top: 97px;
        width: 100px;
        transform: unset;
        opacity: 0;
        visibility: hidden;

    }

    .load-banner .introduce--us__dot.dot-right {
        transform: unset;
        right: 16px;
        opacity: 1;
        visibility: visible;
    }

    .introduce-us__heading {
        margin-left: -50px;
        z-index: 5;
    }

    .introduce-us__heading .image-1 img {
        width: 100px;
    }

    .introduce-us__heading .image-2 img {
        width: 160px;
    }

    .introduce-us__heading .image-4 {
        width: 260px;
    }

    .introduce-us__heading .image-6 {
        width: 140px;
    }

    .introduce--us__arrow.arrow-right,
    .introduce--us__arrow-left {
        width: 105px;
        height: 24px;
    }

    .introduce--us__arrow.arrow-right {
        bottom: -10px;
    }

    .introduce--us__arrow .arrow-item,
    .introduce--us__arrow-left .arrow-item {
        width: 14px;
        height: 24px;
    }

    .load-banner .introduce--us__arrow-left .arrow-item:nth-child(2) {
        left: 20px;
    }

    .load-banner .introduce--us__arrow-left .arrow-item:nth-child(3) {
        left: 40px;
    }

    .load-banner .introduce--us__arrow-left .arrow-item:nth-child(4) {
        left: 60px;
    }

    .load-banner .introduce--us__arrow-left .arrow-item:nth-child(5) {
        left: 80px;
    }

    .load-banner .introduce--us__arrow .arrow-item:nth-child(2) {
        right: 20px;
    }

    .load-banner .introduce--us__arrow .arrow-item:nth-child(3) {
        right: 40px;
    }

    .load-banner .introduce--us__arrow .arrow-item:nth-child(4) {
        right: 60px;

    }

    .load-banner .introduce--us__arrow .arrow-item:nth-child(5) {
        right: 80px;
    }

    .introduce-us__logo .logo-decor .logo-decor-4 {
        padding: 30px;
    }

    .introduce-us__logo .logo-decor .logo-decor-2 {
        left: -3px;
    }

    .introduce-us.introduce-mobile {
        height: 85vh;
        display: flex;
        align-items: center !important;
        justify-content: center;
    }

    .introduce-us.introduce-mobile .introduce-us__wrap {
        flex-direction: column;
        align-items: center !important;
        justify-content: center;
        gap: 20px;
    }

    .introduce-us.introduce-mobile .introduce-us__heading {
        position: unset;
        left: unset;
        bottom: unset;
        margin-left: unset;
    }

    .introduce-us.introduce-mobile .introduce-us__logo {
        width: 300px;
        height: 300px;
    }

    .introduce-us.introduce-mobile .introduce-us__logo .logo-vietcore .logo-vietcore__image {
        width: 110px;
        height: 110px;
    }
}


@media (max-width: 450px) {
    .introduce--us__dot.dot-bottom {
        width: 100px;
    }

    .introduce-us__bg-1 .bg-1__decor img,
    .introduce-us__bg-2 .bg-2__decor img {
        -webkit-transition-delay: unset;
        -o-transition-delay: unset;
        transition-delay: unset;
    }

    .introduce-us__logo {
        width: 185px;
        height: 185px;
        -webkit-transition-delay: 0.2s;
        -o-transition-delay: 0.2s;
        transition-delay: 0.2s;
    }

    .introduce-us__logo .logo-vietcore .logo-vietcore__image > img {
        -webkit-transition-delay: 0.4s;
        -o-transition-delay: 0.4s;
        transition-delay: 0.4s;
    }

    .introduce-us__heading .image-1 {
        -webkit-transition-delay: 0.8s;
        -o-transition-delay: 0.8s;
        transition-delay: 0.8s;
    }

    .load-banner .introduce-us__heading .image-1 {
        -webkit-animation-delay: 0.8s;
        animation-delay: 0.8s;
        -webkit-animation-duration: 0.5s;
        animation-duration: 0.5s;
    }

    .introduce-us__heading .image-2 {
        -webkit-transition-delay: 1.1s;
        -o-transition-delay: 1.1s;
        transition-delay: 1.1s;
    }

    .load-banner .introduce-us__heading .image-2 {
        -webkit-animation-duration: 0.6s;
        animation-duration: 0.6s;
        -webkit-animation-delay: 0.9s;
        animation-delay: 0.9s;
    }

    .introduce-us__heading .image-3 {
        -webkit-transition-delay: 1.2s;
        -o-transition-delay: 1.2s;
        transition-delay: 1.2s;
    }

    .load-banner .introduce-us__heading .image-3 {
        -webkit-animation-duration: 0.5s;
        animation-duration: 0.5s;
        -webkit-animation-delay: 1.4s;
        animation-delay: 1.4s;
    }

    .introduce-us__heading .image-4 {
        -webkit-transition-delay: 1.6s;
        -o-transition-delay: 1.6s;
        transition-delay: 1.6s;
    }

    .load-banner .introduce-us__heading .image-4 {
        -webkit-animation-duration: 0.4s;
        animation-duration: 0.4s;
        -webkit-animation-delay: 1.6s;
        animation-delay: 1.6s;
    }

    .introduce-us__heading .image-6 {
        -webkit-transition-delay: 2s;
        -o-transition-delay: 2s;
        transition-delay: 2s;
    }

    .load-banner .introduce-us__heading .image-6 {
        -webkit-animation-duration: 0.8s;
        animation-duration: 0.8s;
        -webkit-animation-delay: 1.8s;
        animation-delay: 1.8s;
    }

    .introduce-us__logo .logo-vietcore .logo-vietcore__image {
        width: 70px;
        height: 70px;
    }

    .load-banner .introduce-us__heading {
        -webkit-transition-delay: 0.8s;
        -o-transition-delay: 0.8s;
        transition-delay: 0.8s;
    }

    .introduce-us__heading {
        position: absolute;
        left: 30vw;
        bottom: -20px;
        margin-left: 0;
    }

    .introduce-us__heading .image-1 img {
        width: 80px;
    }

    .introduce-us__heading .image-2 img {
        width: 140px;
    }

    .introduce-us__heading .image-4 {
        width: 220px;
    }

    .introduce-us__heading .image-6 {
        width: 120px;
    }

    .introduce--us__arrow.arrow-right,
    .introduce--us__arrow-left {
        width: 100px;
        height: 20px;
    }

    .introduce--us__arrow .arrow-item,
    .introduce--us__arrow-left .arrow-item {
        width: 12px;
        height: 20px;
    }
}

@media (max-width: 370px) {
    .introduce-us__heading .image-1 img {
        width: 80px;
    }

    .introduce-us__heading .image-2 img {
        width: 120px;
    }

    .introduce-us__heading .image-4 {
        width: 180px;
    }

    .introduce-us__heading .image-6 {
        width: 140px;
    }
}

/*==================================header====================================*/
.header-navbar::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 8rem;
    background: linear-gradient(0deg, rgba(0, 74, 143, 0), rgb(0 0 0 / 30%));
    top: 0;
    left: 0;
    pointer-events: none;
    mix-blend-mode: multiply;
    transition: opacity .6s ease-in-out;
    z-index: 0;
}

.header-navbar {
    width: 100%;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1049;
    border-bottom: 1px solid #f6f4f429;
    transition: all 0.3s ease;
}

.header-navbar .header-bottom .custom-logo,
.header-navbar .header-bottom .custom-logo > a {
    width: 200px;
    height: 80px;
    transition: 0.35s ease;
}


.header-navbar .header-bottom .nav-categories .grid-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.header-navbar .header-bottom .nav-categories .grid-nav > ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header-navbar .header-bottom .nav-categories .grid-nav > ul > li > a {
    text-transform: uppercase;
    color: var(--bs-white);
    transition: 0.3s all ease;
    white-space: nowrap;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    padding: 30px 0;
    position: relative;
}

.header-navbar .header-bottom .nav-categories .grid-nav > ul > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    min-width: 250px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0px 6px 14px -6px rgba(24, 39, 75, 0.12), 0px 10px 32px -4px rgba(24, 39, 75, 0.1);
    box-shadow: 0px 6px 14px -6px rgba(24, 39, 75, 0.12), 0px 10px 32px -4px rgba(24, 39, 75, 0.1);
    border-radius: 3px 3px 8px 8px;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--bs-white);
    padding: 10px;
    transform: translateY(10px);
}


.header-navbar .header-bottom .nav-categories .grid-nav > ul > li:hover > ul,
.header-navbar .header-bottom .nav-categories .grid-nav > ul > li:hover .collapse:not(.show) {
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    display: flex !important;

}

.header-navbar .header-bottom .nav-categories .grid-nav > ul > li > ul > li > a {
    width: 100%;
    display: block;
    padding: 14px 15px;
    border-top: 1px solid #0054a614;
    color: #42424e;
    font-weight: 500;
    transition: 0.3s ease-in-out;
}

.header-navbar
.header-bottom
.nav-categories
.grid-nav
> ul
> li
> ul
> li:first-child
> a {
    border-top: 0;
}

.header-navbar .header-bottom .nav-categories .grid-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    background: var(--theme-color);
    width: 0;
    transition: .4s all;
}

.header-navbar .header-bottom .nav-categories .grid-nav > ul > li:hover > a::after {
    width: 100%;
}

.header-navbar .header-bottom .nav-categories .grid-nav > ul > li > ul > li:hover > a {
    background-color: rgba(225, 240, 255, 0.58);
    border-radius: 5px;
    color: var(--base-color);
}

.header-navbar.hide {
    transition: var(--transition-default);
    opacity: 0;
    transform: translateY(-150%);
}

header.is-scroll {
    background-color: #0054a6eb;
    backdrop-filter: blur(10px);
}

.header-navbar.is-scroll::before {
    opacity: 1;
}

.header-navbar.is-scroll .header-bottom .custom-logo > a {
    width: 190px;
    height: 46px;
    transition: 0.35s ease;
}

.header-navbar.is-scroll .header-bottom .nav-categories .grid-nav > ul > li > a {
    padding: 25px 0;
}

.header-navbar .humburger {
    width: 28px;
    font-size: 10px;
    font-weight: 500;
}

.header-navbar .humburger-icon > span {
    height: 1.5px;
    background-color: var(--bs-white);
    display: inline-flex;
    width: 100%;
}

.header-navbar .humburger-icon > span:nth-child(2) {
    width: 23px;
}

.header-navbar .header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
}

.show-nav .header-overlay {
    opacity: 1;
}

.bg-blur {
    filter: blur(10px);
    transition: filter .5s ease;
    overflow: hidden;
    pointer-events: none;
}

.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    background-color: #0054a6f2;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease, clip-path 0.5s ease-in;
    padding-top: 50px;
    box-shadow: 0 30px 30px rgb(196 214 229 / 20%);
    clip-path: circle(0% at 0% 0%);
    transition-delay: 0.3s;
    overflow: hidden;
    opacity: 0;
}

.show-nav {
    height: 100vh;
    overflow: hidden;
}

.show-nav .nav-mobile {
    opacity: 1;
    overflow: visible;
    clip-path: circle(150% at 0% 0%);
    transition: clip-path 0.5s ease-in-out;
}

.nav-mobile__close {
    width: 55px;
    height: 55px;
    margin-left: 40px;
    margin-bottom: 50px;
}

.nav-mobile__close .icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.nav-mobile__close > svg path {
    fill: var(--bs-white);
}

.nav-mobile__close .rotate-logo {
    transition: var(--transition);
    transform-origin: center;
    animation: animation-logo 5s infinite linear;
}

@keyframes animation-logo {
    100% {
        transform: rotate(360deg);
    }
}

.nav-mobile__close > span {
    margin-left: 100px;
    padding-left: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--bs-white);
    font-weight: 500;
}

.nav-mobile__close > span::before {
    position: absolute;
    content: '';
    right: 100%;
    top: 50%;
    background-color: #e1ddddb0;
    height: 1px;
    width: 70%;
    display: block;
}

.nav-mobile__close > .icon > path {
    transition: transform 0.3s ease;
    transform-origin: center center;
}

.nav-mobile__close:hover > .icon > path {
    transform: rotate(180deg);
    transition: var(--transition);
    transform-origin: center;
}

.nav-mobile__decor {
    position: absolute;
    bottom: -142vh;
    right: -110vh;
    z-index: 1;
    height: auto;
    transition: all 1s ease, translate3d 0.9s ease-in-out;
    -webkit-transform: translate3d(100vw, 0, 0);
    -moz-transform: translate3d(100vw, 0, 0);
    -o-transform: translate3d(100vw, 0, 0);
    transform: translate3d(100vw, 0, 0);
}

.show-nav .nav-mobile__decor {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.nav-mobile__decor svg {
    width: 190vh;
    height: 158vh;
}

.nav-mobile__decor svg polyline {
    stroke-miterlimit: 10;
    stroke-width: 1px;
    stroke-dasharray: 3011;
    stroke-dashoffset: 3011;
    fill-opacity: 0;
    transition: all 0.3s ease-in;
}

.nav-mobile__decor svg polyline {
    stroke: rgba(221, 225, 229, 0.25);
}

.show-nav .nav-mobile__decor svg polyline {
    animation-name: DrawPlay;
    animation-duration: 4.5s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-timing-function: linear;
    stroke: #0054a640;
}

@keyframes DrawPlay {
    0% {
        stroke-dashoffset: 2800;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.nav-mobile__decor svg polyline:nth-child(5),
.nav-mobile__decor svg polyline:nth-child(6),
.nav-mobile__decor svg polyline:nth-child(7),
.nav-mobile__decor svg polyline:nth-child(8) {
    fill-opacity: 0;
    stroke-width: 1px;
    animation-duration: 0.5s;
    transition: all 0.5s ease;
}

.nav-mobile__decor svg polyline:nth-child(5),
.nav-mobile__decor svg polyline:nth-child(6),
.nav-mobile__decor svg polyline:nth-child(7),
.nav-mobile__decor svg polyline:nth-child(8),
.nav-mobile__decor svg polyline:nth-child(9),
.nav-mobile__decor svg polyline:nth-child(10) {
    fill: var(--primary-color) !important;
    fill-opacity: 1;
    stroke: #d4e2f140 !important;
    transition-delay: 0.3s;
}

.show-nav .nav-mobile__decor svg polyline:nth-child(5),
.show-nav .nav-mobile__decor svg polyline:nth-child(6),
.show-nav .nav-mobile__decor svg polyline:nth-child(7),
.show-nav .nav-mobile__decor svg polyline:nth-child(8),
.show-nav .nav-mobile__decor svg polyline:nth-child(9),
.show-nav .nav-mobile__decor svg polyline:nth-child(10) {
    fill: var(--base-color) !important;
    fill-opacity: 1;
    stroke-width: 1px;
    stroke: rgba(207, 223, 245, 0.44) !important;
    transition-delay: 0.5s;
}


.nav-mobile__wrap {
    padding: 0 50px 60px 50px;
    overflow: hidden;
    transition: all 1s ease, translateY 1s ease-in-out;
    transition-delay: 0.35s;
    transform: translateY(50px);
    opacity: 0;

}

.nav-mobile__nav {
    overflow-y: auto;
    overflow-x: hidden;
}

.nav-mobile__nav::-webkit-scrollbar {
    display: none !important;
}

.show-nav .nav-mobile__wrap {
    transform: translateY(0);
    opacity: 1;
}


.nav-mobile ul > li > a {
    color: var(--bs-white);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
}

.nav-mobile ul > li > a .number {
    font-size: 0.8em;
}

.nav-mobile ul > li > a .title {
    font-size: 1.25em;
}

.nav-mobile ul > li:hover > a .title {
    color: var(--bs-white);
}

.nav-mobile ul > li > a .title i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    color: var(--base-color);
    background: aliceblue;
    font-size: 12px;
}

.nav-mobile ul > li:hover > a[aria-expanded='true'] .fa-plus:before {
    content: "\f068";

}

.nav-mobile ul > li ul {
    padding-left: 30px;
}

.nav-mobile ul > li ul::before {
    position: absolute;
    content: '';
    background: linear-gradient(rgba(103, 180, 255, 0.00) 0%, rgba(103, 180, 255, 0.50) 50.5%, rgba(103, 180, 255, 0.00) 100%);
    height: 80%;
    width: 3px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.nav-mobile ul > li ul > li:first-child > a {
    margin-top: 20px;
}

.nav-mobile ul > li ul > li:last-child > a {
    margin-bottom: 10px;
}

.nav-mobile ul > li ul > li > a {
    padding: 10px 0;
    text-transform: capitalize;
    font-size: 1.05em;
    color: rgb(214 237 251);
    font-weight: 400;
}

@media (max-width: 1199px) {
    .header-navbar .header-bottom .custom-logo,
    .header-navbar .header-bottom .custom-logo > a {
        align-items: center !important;
        justify-content: center !important;
    }

    .header-navbar .header-bottom .custom-logo,
    .header-navbar .header-bottom .custom-logo > a,
    .header-navbar.is-scroll .header-bottom .custom-logo > a {
        width: 185px;
        height: 70px;
    }

    .header-navbar .header-bottom .header-lang {
        border-left: unset;
        margin-left: 0;
        padding: 0;
    }

    .header-navbar.is-sticky .header-bottom .header-lang {
        padding: 22px 0;
    }
}

@media (max-width: 992px) {
    .nav-mobile {
        padding-top: 30px;

    }

    .nav-mobile__close {
        margin-left: 30px;
    }

    .nav-mobile__wrap {
        padding: 0 40px 0 40px;
    }
}

@media (max-width: 600px) {
    .header-navbar .header-bottom .custom-logo,
    .header-navbar .header-bottom .custom-logo > a {
        width: 130px;
        height: 65px;

    }

    .nav-mobile__close {
        margin-left: 20px;
    }

    .nav-mobile__wrap {
        padding: 0 30px 40px 30px;
    }
}

/*==================================header c�0�6====================================*/

.page-main {
    background: #f5f5f5;
}

.main {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
}

.header-title {
    text-align: center;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.main-title {
    font-family: var(--font-heading);
    font-size: 1.8em;
    font-weight: 700;
    color: var(--base-color);
    text-transform: uppercase;
    position: relative;
    line-height: 1.4;
}

.main-sub-title {
    margin-bottom: 1em;
    padding: 15px 0;
    font-size: 21px;
    color: #42424e;
}

.main-banner_animation {
    background-color: rgba(255, 255, 255, 0);
}

.main-banner_animation .banner-animation_canvas {
    position: relative;
    display: block;
    background-color: rgba(255, 255, 255, 0);
}

.main-banner_animation .banner-animation_overlay {
    pointer-events: none;
    position: relative;
    left: 0;
    top: 0;
    display: block;
}

/*================================section-service========================*/
.service-us {
    background: #f5f9ff;
}

.animation-service {
    padding: 10px 20px;
    background: #e2edff;
}

.animation-service span {
    width: 175px;
    padding: 0px 35px;
}

.animation-service span:not(:last-child) {
    border-right: 1px solid #00509e2b;
}

.service-us .heading-title__group .heading-title {
    font-size: 2.8em;
}

.service-us__sticky {
    width: 40%;
    position: sticky !important;
    top: 190px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    flex-shrink: 0;
}

.service-us__right {
    width: 50%;
    position: relative;
}

.card-service {
    margin-bottom: 100px;
}

.card-service .image-diamond {
    width: 120px;
    height: 120px;
}

.card-service .service-link {
    height: 85px;
    padding-left: 10px;

}

.card-service .service-link__inner .link-text {
    background-color: #f5f9ff;
}

.card-service .service-link::after {
    position: absolute;
    content: '';
    right: 0;
    width: 70%;
    height: 1px;
    top: 50%;
    background-color: rgb(126 172 217 / 55%);
    z-index: 2;
    transition: var(--transition);
}

.card-service:hover .service-link::after {
    background-color: #0054a68c;
}

.card-service .service-link .link-svg {
    width: 60px;
    height: 60px;
    background-color: var(--base-color);
    border-radius: 8px;
    transform: rotate(45deg);
}

.card-service:hover .service-link .link-text {
    margin-left: 1.8rem !important;
}

.card-service:hover .service-link .link-svg {
    background-color: var(--primary-light);
}

.card-service .service-link .link-svg svg {
    width: 40px;
    height: 40px;
    transform: rotate(-45deg);
    transform-origin: center;
}

.card-service .service-link .link-svg svg > g {
    fill: var(--bs-white);

}

.card-service .service-link .link-svg svg > g > path {
    transform-origin: center;
    transition: transform 0.3s ease;
}

.card-service:hover .service-link .link-svg svg > g > path {
    animation: border-360 5s linear forwards;
}

.card-service .service-title {
    font-size: 2em;
    color: var(--base-color);
    margin-bottom: 35px;
}

.card-service .service-title a {
    color: var(--base-color);
}

.card-service .service-desc {
    font-size: 16px;
    color: var(--bs-gray-700);
    line-height: 1.6;
}

.card-service .service-image {
    width: 170px;
    position: absolute;
    right: 50px;
    bottom: 0;
    transition-duration: 0.3s;
    box-shadow: 8px 8px 30px 0 rgba(42, 67, 113, 0.07);
    transform: rotate(2deg);
    opacity: 0;
    visibility: hidden;
}

.card-service .number {
    font-weight: 300;
    font-size: 24px;
    color: var(--secondary-color);
}

.card-service .number::after {
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--theme-color);
    bottom: 3px;
    z-index: -1;
}

.card-service .service-link {
    color: var(--base-color);
    font-size: 1.1em;
}

.card-service:hover .service-image,
.hover-image .service-image {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1200px) {
    .service-us .heading-title__group .heading-title {
        font-size: 2.4em;
    }

    .card-service .service-title {
        font-size: 1.6em;
        color: var(--primary-color);
    }

    .card-service .service-desc {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .service-us__sticky,
    .service-us__right {
        width: 100%;
    }

    .service-us__sticky {
        position: unset;
        top: unset;
    }

    .service-us .heading-title__group .heading-title {
        font-size: 2em;
    }

    .card-service {
        position: sticky !important;
        top: 90px;
        background-color: var(--bs-white);
        border-radius: 15px;
        padding: 25px;
        margin-bottom: 0;
        box-shadow: rgba(0, 37, 87, 0.2) 0rem 0.4609rem 2.30445rem 0rem;
    }

    .card-service .service-title {
        font-size: 1.4em;
    }

    .card-service .service-link .link-svg {
        width: 50px;
        height: 50px;
    }

    .card-service .service-link .link-svg svg {
        width: 32px;
        height: 32px;
    }

    .card-service .service-link__inner,
    .card-service .service-link__inner .link-text {
        background-color: var(--bs-white);
    }

    .card-service .service-link__inner .link-text {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .card-service .service-image {
        width: 90px;
        right: 14px;
        bottom: 23px;
    }
}

/*================================ project us========================*/
.card-project__title {
    font-size: 1.8em;
    color: var(--bs-gray-800);
}

.card-project__demo a {
    font-size: 1.1em;
}

.card-project__text,
.card-project__list,
.card-project__category {
    font-size: 16px;
    line-height: 1.6;
}

.project-us__pc {
    max-width: 550px;
    height: 463px;
}

.project-us__pc .swiper-pc {
    position: absolute;
    top: 7px;
    height: 340px;
    z-index: 1;
    left: 7px;
    right: 7px;
    border-radius: 3px;
    overflow: hidden;
}

.project-us__mobile {
    position: absolute;
    right: 0;
    width: 150px;
    height: 300px;
    bottom: 25px;
    z-index: 2;
}

.project-us__mobile .swiper-mobile {
    position: absolute;
    top: 8px;
    bottom: 8px;
    z-index: 1;
    left: 9px;
    right: 9px;
    border-radius: 12px;
    overflow: hidden;
}

.project-us .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #6AB6FF;
    margin: 0 4px;
    opacity: 1;
}

.project-us .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #c1e0ff;
}

.project-box .heading-title__big {
    font-size: 10em;
}

.project-box .box-item {
    width: 310px;
    height: 310px;
    box-shadow: rgba(0, 37, 87, 0.2) 0rem 0.4609rem 2.30445rem 0rem;
    border: 8px solid var(--bs-white);
    transition: all 0.3s ease-in;
}

.project-box .box-item .layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 1;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 700;
    background: linear-gradient(180deg, rgb(9 40 111 / 15%), #083f7bed);
}

.project-box .box-item .layer i {
    font-size: 1em;
    transform: rotate(40deg);
}

.project-box .box-item.box-item-2 {
    width: 280px;
    height: 280px;
    transform: translateX(200px);
}

.project-box .box-item:hover {
    box-shadow: rgb(4 81 197 / 34%) 0rem 0.4609rem 2.30445rem 0rem;
}

.project-box .box-item:hover img {
    transform: scale(1.05);
}

.introduce-company {
    height: 150vh;
}

.introduce-company .heading-title__group {
    margin-bottom: 150px;
}

.introduce-company .heading-title__big {
    background: linear-gradient(180deg, #f0f7ff 8.13%, rgba(243, 249, 255, 0.00) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.introduce-company .introduce-card .icon {
    width: 70px;
    height: 70px;
}

.introduce-company .introduce-card .number {
    font-weight: 700;
    font-size: 3em;
    color: var(--theme-color);
}

.introduce-company .introduce-card .text {
    font-size: 1.2em;
    font-weight: 500;
}

.introduce-company .introduce-card:nth-child(1),
.introduce-company .introduce-card:nth-child(4) {
    transform: translateY(100px);
}

.button-df {
    background-color: var(--theme-color);
    color: var(--bs-white);
    border-radius: 30px;
    padding: 9px 30px;
    font-weight: 600;
    font-size: 0.9em;

}

.introduce-company ._df_button {
    color: var(--bs-white);
    border-style: unset;
    font-size: 1em;
}

.introduce-company ._df_button .link-svg {
    width: 60px;
    height: 60px;
    transform: rotate(45deg);
    border-radius: 8px;
}

.introduce-company ._df_button .link-svg svg {
    width: 42px;
    height: 42px;
    transform: rotate(-45deg);
    transform-origin: center;
}

.introduce-company ._df_button .link-svg svg path {
    fill: var(--bs-white);
}

.introduce-company ._df_button .link-svg svg > g > path {
    animation: border-360 5s linear infinite;
    transform-origin: center;
}

.introduce-company ._df_button:hover .link-svg {
    background-color: var(--primary-color);
}

.introduce-company ._df_button:hover .link-text {
    margin-left: 16px !important;
}

.introduce-us__partner .swiper-slide {
    opacity: 0.8;
}

.introduce-us__partner .swiper-slide.swiper-slide-active {
    opacity: 1;
}

.introduce-company .introduce-us__partner .swiper-slide.swiper-slide-active .partner-logo::before {
    background-color: var(--theme-color);
}

.introduce-company .introduce-us__partner {
    left: 15px;
    right: 15px;
}

@media (min-width: 992px) {
    .project-us::after {
        position: absolute;
        content: '';
        left: 0;
        bottom: 0;
        z-index: 1;
        width: 100%;
        height: 18%;
        background-color: var(--base-color);
    }

}

@media (max-width: 1280px) {
    .project-box .heading-title__big {
        font-size: 8em;
    }

}

@media (max-width: 1200px) {
    .introduce-us__partner .swiper-slide {
        opacity: 1;
    }

    .project-us__pc {
        height: 398px;
    }

    .project-us__pc .swiper-pc {
        height: 300px;
    }

    .project-us__mobile {
        width: 109px;
        height: 218px;
    }

    .project-us__mobile .swiper-mobile {
        top: 6px;
        bottom: 6px;
        left: 6px;
        right: 6px;
    }

    .project-box .box-item {
        width: 250px;
        height: 250px;
    }

    .introduce-company .introduce-card .icon {
        width: 55px;
        height: 55px;
    }

    .introduce-company .introduce-card {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .introduce-company {
        height: 130vh;
    }
}

@media (max-width: 992px) {

    .project-box .heading-title__big {
        font-size: 6em;
    }

    .project-box .box-item.box-item-2 {
        transform: unset;
    }

    .project-box .box-item,
    .project-box .box-item.box-item-2 {
        width: 200px;
        height: 200px;
    }

    .project-box .box-item .layer {
        font-size: 16px;
    }

    .introduce-company .introduce-card:nth-child(1), .introduce-company .introduce-card:nth-child(4) {
        transform: translateY(0);
    }

    .introduce-company .introduce-card {
        width: 45%;
    }

    .introduce-company .introduce-card .number {
        font-size: 2em;
    }

    .project-us__pc {
        height: 380px;
    }

    .project-us__pc .swiper-pc {
        height: 278px;
    }

    .card-project__title {
        font-size: 1.6em;
    }
}

@media (max-width: 600px) {
    .project-box .heading-title__big {
        font-size: 5em;
    }

    .project-box .box-item,
    .project-box .box-item.box-item-2 {
        width: 170px;
        height: 170px;
    }

    .project-box .box-item .layer {
        font-size: 14px;
    }

    .project-us__pc {
        height: 295px;
    }

    .project-us__pc .swiper-pc {
        height: 215px;
    }

    .procedure-us .heading-title {
        font-size: 1.8em;
    }

    .introduce-company .introduce-us__partner::before {
        width: 115%;
    }

    .introduce-company .introduce-card .icon {
        width: 48px;
        height: 48px;
    }

    .introduce-company .introduce-card .number {
        font-size: 1.8em;
    }

    .introduce-company .introduce-card .text {
        font-size: 1.1em;
    }

}

@media (max-width: 390px) {
    .project-box .box-item,
    .project-box .box-item.box-item-2 {
        width: 140px;
        height: 140px;
    }

    .project-us__pc {
        height: 270px;
    }

    .introduce-company .heading-title__group {
        margin-bottom: 40px;
    }
}

@media (max-width: 330px) {
    .project-us__pc {
        height: 218px;
    }
}

/*================================end project us========================*/
/*
.card-price {
    background-color: #dae3ed70;
    border: 1px solid rgba(241, 241, 241, 0.23);
    box-shadow: 0 24px 32px 0 rgba(63, 71, 99, .05);
}

.card-price .card-header {
    background-color: var(--primary-light);
}

.card-price .card-header::after,
.card-price .card-header::before {
    content: '';
    position: absolute;
    height: 110px;
    width: 110px;
    background-color: rgb(11 109 219);
    opacity: 0.6;
    border-radius: 50%;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    z-index: 1;
}

.card-price .card-header::after {
    left: -73px;
    top: -28px;
}

.card-price .card-header::before {
    top: -73px;
    left: -28px;
}

.card-price .card-price__title {
    font-weight: 600;
    font-size: 22px;
}

.card-price .card-price__top {
    border-bottom: 2px solid;
    -webkit-border-image: -webkit-linear-gradient(to left, #004295 27%, #5696dd 100%);
    border-image: linear-gradient(to left, #004295 27%, #5696dd 100%);
    border-image-slice: 1;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    padding: 35px 25px 25px;
}

.card-price .card-text {
    color: #dde5ef;
    font-size: 14px;
    height: 46px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.card-price .card-price__price {
    padding: 15px 25px;
    font-weight: 700;
    font-size: 1.4em;
}

.card-price .card-price__price span {
    font-weight: 400;
    font-size: 14px;
}

.card-price .card-price__list ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    font-size: 15px;
}

.card-price .card-price__list ul li {
    position: relative;
    padding-left: 20px;
}

.card-price .card-price__list ul li + li {
    margin-top: 12px;
}

.card-price .card-price__list ul li::before {
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    transform: translateY(-50%);
    content: "\f336";
    left: 0;
    top: 50%;
    color: var(--primary-light);
    font-weight: 700;
}

.card-price .card-price__link {
    background-color: var(--bs-gray-800);
    color: var(--bs-white);
    padding: 9px 25px;
    width: max-content;
    border-radius: 30px;
    font-size: 0.9em;
}

.card-price .card-price__link .link-svg {
    width: 35px;
    height: 35px;
}

.price-table .swiper-slide-active {
    opacity: 1;
}
*/

/*================================end price-table========================*/
/*
.procedure-us::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(-80deg, #022149f2 0%, rgb(11 64 125 / 86%) 100%);
}

.procedure-us .heading-title {
    font-size: 2.8em;
}

@media (max-width: 1024px) {
    .procedure-us .heading-title {
        font-size: 2.2em;
    }
}

@media (max-width: 600px) {
    .procedure-us .heading-title {
        font-size: 1.6em;
    }
}
*/

/*================================end procedure-us ========================*/
@media (min-width: 1400px) {
    .why-section__left .card-why:nth-child(odd) {
        transform: translateX(50px);
    }

    .why-section__right .card-why:nth-child(odd) {
        transform: translateX(-50px);
    }
}

.why-section {
    background-position: 41px 123px;
    background-repeat: no-repeat;
}

.card-why {
    transition: var(--transition-default);
    color: var(--bs-gray-600);
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 8px 8px 30px 0 rgba(42, 67, 113, .15);
    -webkit-box-shadow: 8px 8px 30px 0 rgba(42, 67, 113, .15);
}

.card-why .icon {
    width: 50px;
    height: 50px;
}

.card-why .card-title {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--bs-gray-800);
}

.card-why .number {
    font-weight: 700;
    font-size: 38px;
    right: 20px;
    color: #eaf3fc;
    transition: var(--transition-default);
}

.card-why:hover {
    background-color: #eaf3fc !important;
}

.card-why:hover .number {
    color: var(--bs-white);
}

/*================================end why-section ========================*/
.partner-us .partner-us__wrap {
    border: 1px dashed #cac7c7;

}

.partner-us .partner-us__item {
    width: calc(100% / 8);
    flex-shrink: 0;
}

.partner-us .partner-us__item:not(:first-child) {
    border-left: 1px dashed #cac7c7;
}

.partner-us .partner-us__item .partner-us__logo:last-child {
    border-top: 1px dashed #cac7c7;
}

.partner-us .partner-us__item .partner-us__logo {
    height: 90px;
    max-width: 180px;
    width: 100%;
    padding: 25px;
}

.partner-us .partner-us__item .partner-us__logo img {
    transition: transform .6s cubic-bezier(.61, 1, .88, 1), filter .5s cubic-bezier(.61, 1, .88, 1);
    opacity: 0.9;
}

.partner-us .partner-us__item .partner-us__logo:hover img {
    transform: scale(1.1);
    opacity: 1;
}

@media (max-width: 992px) {
    .partner-us__wrap {
        overflow-x: auto;
        overflow-y: hidden;
    }

    .partner-us .partner-us__item {
        width: calc(100% / 5);
    }
}

@media (max-width: 600px) {
    .partner-us .partner-us__item {
        width: calc(100% / 4);
    }

    .partner-us .partner-us__item .partner-us__logo {
        padding: 15px;
    }
}

@media (max-width: 425px) {
    .partner-us .partner-us__item {
        width: calc(100% / 3);
    }
}

/*================================end partner-us ========================*/
.main-partner {
    padding: 30px 0;
    position: relative;
    background: url(../images/bg_footer.jpg) center top/cover no-repeat fixed;
}

.main-partner:before {
    z-index: 0;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #3f3f3fb3 0%, #3161afb3 100%);
}

.main-partner .main-title {
    background: #0000;
    color: #fff;
}

.line-title {
    position: relative;
    display: block;
    text-align: center;
}

.line-title span {
    display: block;
    position: absolute;
    top: -20px;
    width: 150px;
    height: 1px;
    background: #fff;
    left: 50%;
    transform: translateX(-50%);
}

.line-title span:after,
.line-title span:before {
    display: block;
    position: absolute;
    content: "";
    width: 75px;
    height: 1px;
    background: #fff;
    left: 50%;
    transform: translateX(-50%);
}

.line-title span:before {
    top: -4px;
}

.line-title span:after {
    top: 4px;
}

.main-partner .comment .info-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.main-partner .comment .info-top .img {
    width: 70px;
    height: 70px;
    border: 5px solid #ddd;
    border-radius: 100%;
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-clip: content-box;
    margin-right: 10px;
}

.main-partner .comment .info-top .name {
    color: #fff;
    padding-top: 6px;
    width: calc(100% - 80px);
}

.main-partner .comment .info-top .name h4 {
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: 600;
}

.main-partner .comment .info-top .name h5 {
    font-size: 13px;
    font-weight: 500;
}

.main-partner .comment .content-bot {
    background: #0000004d;
    border-radius: 3px;
    padding: 20px 25px 20px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    line-height: 22px;
    position: relative;
    color: #fff;
}

.main-partner .comment .content-bot:before {
    content: "";
    position: absolute;
    left: 23px;
    top: -20px;
    border: 10px solid #0000;
    border-bottom-color: #0000004d;
}

.main-partner .comment .content-bot p {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-bottom: 0;
}

.main-review .owl-dots {
    margin-top: 10px;
    text-align: center;
}

.main-review .owl-dots .owl-dot,
.main-review .owl-dots .owl-dot:focus {
    outline: none !important;
}

.main-review .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    background: #d6d6d6;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 10px;
    opacity: 0.8;
    transition: all 0.3s ease 0s;
    margin-right: 10px;
}

.main-review .owl-dots .owl-dot.active span {
    background: #fff;
    opacity: 1;
}

.slide-partner {
    padding-left: 0;
    list-style-type: none;
}

.btn-hoso a {
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    position: relative;
    padding: 0.8em 4.7em 0.8em 1.4em;
    background: #009ed8;
    border: none;
    border-radius: 8px;
    color: #fff;
    transition: 0.5s;
    min-width: 10em;
    box-shadow: 0 0 2px rgb(0 0 0 / 30%);
    margin-bottom: 1em;
    white-space: nowrap;
    font-size: 14px !important;
    font-weight: 700;
}

.btn-hoso a:before,
.btn-hoso a:after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding-top: inherit;
    padding-bottom: inherit;
    width: 2.8em;
    content: "\00a0";
    font-family: "FontAwesome", sans-serif;
    font-size: 1.2em;
    text-align: center;
    transition: 0.4s;
    transform-origin: 50% 60%;
}

.btn-hoso a:before {
    background: #0000001a;
}

.btn-hoso a span {
    position: absolute;
    right: 1rem;
    font-size: 1.2rem;
    top: 0.6rem;
}

.btn-hoso .btn-readHS {
    background: var(--base-color);
}

.btn-hoso .btn-readHS:active,
.btn-hoso .btn-readHS:focus,
.btn-hoso .btn-readHS:hover {
    background: #0e1d82;
    outline: none;
}

.btn-hoso .btn-downHS {
    background: var(--base-color-2);
}

.btn-hoso .btn-downHS:active,
.btn-hoso .btn-downHS:focus,
.btn-hoso .btn-downHS:hover {
    background: #0089f0;
    outline: none;
}

@media screen and (max-width: 450px) {
    .btn-hoso a {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .main-title,
    .block-right-title,
    .price-title h1,
    .price-title h2,
    .price-title p {
        font-size: 24px !important;
    }

    .main-sub-title,
    .block-right-desc {
        font-size: 16px !important;
    }
}

.main-blog {
    overflow: hidden;
}


.suppost_footer {
    height: 30px;
    display: none;
}

/*products*/
.products {
    display: inline-flex;
    width: 100%;
    padding: 2px 0 30px;
    overflow: hidden;
}

.products .item {
    padding: 20px 30px;
    text-align: center;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px #0000004d;
    background: #fff;
    color: #525151;
    margin: 0 auto;
}

.products .item img {
    /* height: 140px; */
    width: 70%;
    margin: 0 auto 10px;
}

.products .owl-stage-outer {
    text-align: center;
    overflow: visible !important;
}

.products .item h4 {
    color: var(--base-color);
    display: block;
    font-weight: 700;
    white-space: nowrap !important;
    text-align: center;
    font-size: 21px;
    margin-bottom: 10px;
    font-family: Roboto, sans-serif;
}

.products .item p {
    font-weight: 400;
    color: #42424e;
}

.products .item span {
    display: block;
}

.products .item b {
    font-size: 21px;
    color: #fd464a;
    font-family: Roboto, sans-serif;
}

.products .item .btn {
    display: block;
    margin: 15px auto 0;
    width: 120px;
    padding: 5px;
    border-radius: 8px !important;
    text-align: center;
    border: 1px solid #dadce0;
    letter-spacing: 0;
    color: #42424e;
    transition: 0.3s ease-in-out;
    font-size: 0.8125rem;
    min-width: 2.375rem;
}

.products .item:hover .btn {
    background: var(--base-color);
    color: #fff;
    transition: 0.4s;
}

.owl-dot:focus {
    outline: none;
}

.products .owl-dots {
    margin-top: 30px;
    text-align: center;
}

.products .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    background: #969595;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 10px;
    opacity: 0.9;
    transition: all 0.3s ease 0s;
    margin-right: 10px;
}

.products .owl-dots .owl-dot.active span {
    background: var(--base-color);
}

@media screen and (max-width: 1199px) {
    .portfolio-out-area .owl-dots .owl-dot {
        display: inline-block;
        margin: 0;
    }

    .portfolio-out-area .portfolio-inner-area .ep_entry-content {
        float: none;
        width: 100%;
        text-align: center;
    }

    .portfolio-out-area .portfolio-inner-area .por-main-img {
        float: none;
        padding: 0px;
        height: auto;
        width: 100%;
    }

    .portfolio-out-area .portfolio-inner-area h4 {
        padding: 10px;
        text-align: center;
    }

    .portfolio-out-area .portfolio-inner-area h5 {
        text-align: center;
    }

    .portfolio-out-area .portfolio-inner-area .ep_entry-content a.more-link {
        float: none;
    }

    .portfolio-out-area .owl-dots {
        float: none;
        width: 100%;
    }

    .portfolio-out-area .owl-dots .owl-dot span {
        width: 12px;
        height: 12px;
        margin: 5px 7px;
        background: #969595;
        display: block;
        -webkit-backface-visibility: visible;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 10px;
        opacity: 0.9;
        transition: all 0.3s ease 0s;
        margin-right: 10px;
    }

    .portfolio-out-area .owl-dots .owl-dot.active span {
        background: var(--base-color);
    }

    .portfolio-out-area .portfolio-mobile .item img {
        height: 220px;
        width: 100%;
        margin: 0 auto 10px;
    }

    .portfolio-out-area .portfolio-mobile .item {
        padding: 20px;
        text-align: center;
        border-radius: 10px;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 5px #0000004d;
        background: #fff;
        color: #525151;
        margin: 0 auto;
    }

    .portfolio-out-area .portfolio-inner-area .ep_entry-content .Boxtag {
        display: none;
    }
}

.b__support {
    height: 700px;
    padding-bottom: 1rem;
    position: relative;
}

.b__support::before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(281.4deg, #0d263bb3 0%, #1f425fb3 99.57%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.b__support > img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    position: absolute;
    z-index: 0;
}

.b__support .block-head {
    width: 75%;
    text-align: center;
    padding-top: 60px;
    margin-left: auto;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.b__support .block-head .block-right-title {
    color: #fff;
    font-weight: bold;
    line-height: 35px;
    text-align: center;
    margin-bottom: 12px;
    font-size: 30px;
    font-family: Roboto, sans-serif;
    text-transform: uppercase;
}

.b__support .block-head .block-right-desc {
    color: #fff;
    font-weight: normal;
    line-height: 26px;
    text-align: center;
    letter-spacing: 0 !important;
    font-size: 21px;
}

.b__support .b__support--info {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    position: relative;
    z-index: 2;
}

.b__support .b__support--info .b__support--right {
    flex-basis: 75%;
    max-width: 75%;
    padding: 0 15px;
}

.b__support .b__support--info .b__support--right.thisMobile {
    display: none;
}

.b__support .b__support--info .b__support--right .text-desc {
    font-size: 16px;
    color: #fff;
    margin-top: 10px;
    text-align: center;
}

.b__support .b__support--info .b__support--right .table-support-func {
    width: 100%;
}

.b__support .b__support--info .b__support--right .table-support-func thead tr {
    height: 60px;
    background: #f8f8fa;
    box-sizing: border-box;
}

.text-gray {
    color: #868e96 !important;
}

.b__support
.b__support--info
.b__support--right
.table-support-func
thead
tr
th {
    color: #14142b;
    font-size: 16px;
    padding: 17px 30px;
    border-bottom: 1px solid #dddee6;
    font-family: Roboto, sans-serif;
}

.b__support
.b__support--info
.b__support--right
.table-support-func
thead
tr
th:first-of-type {
    border-radius: 12px 0 0 0;
    width: 50%;
}

.b__support
.b__support--info
.b__support--right
.table-support-func
thead
tr
th:last-of-type {
    border-radius: 0 12px 0 0;
    width: 25%;
}

.b__support .b__support--info .b__support--right .table-support-func tbody tr {
    height: 60px;
    background: #fff;
    box-sizing: border-box;
}

.b__support
.b__support--info
.b__support--right
.table-support-func
tbody
tr:nth-of-type(2n) {
    background-color: #f8f8fa;
}

.b__support
.b__support--info
.b__support--right
.table-support-func
tbody
tr
td {
    color: #14142b;
    padding: 17px 30px;
    font-size: 15px;
    text-align: center;
}

.b__support
.b__support--info
.b__support--right
.table-support-func
tbody
tr
td:first-child {
    text-align: left;
}

.b__support
.b__support--info
.b__support--right
.table-support-func
tbody
tr
td
input[type="checkbox"] {
    pointer-events: none;
}

.b__support
.b__support--info
.b__support--right
.table-support-func
tbody
tr
td
input[type="checkbox"]::after {
    content: url(../../../../public/upload/images/icon_close.svg);
    position: relative;
    left: -2px;
    top: -2px;
    z-index: 100;
}

.b__support
.b__support--info
.b__support--right
.table-support-func
tbody
tr
td
input[type="checkbox"]:checked::after {
    content: url(../../../../public/upload/images/icon_checked.svg);
    position: relative;
    left: -2px;
    top: -2px;
    z-index: 100;
}

.b__support
.b__support--info
.b__support--right
.table-support-func
tbody
tr:last-of-type
td:first-of-type {
    border-radius: 0 0 0 12px;
}

.b__support
.b__support--info
.b__support--right
.table-support-func
tbody
tr:last-of-type
td:last-of-type {
    border-radius: 0 0 12px 0;
}

.b__support .b__support--info .b__support--left {
    flex-basis: 25%;
    max-width: 25%;
    padding: 0 15px 0;
    text-align: center;
}

.b__support .b__support--info .b__support--left h3 {
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 46px;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 10px;
    text-transform: capitalize;
    justify-content: center;
    font-family: Roboto, sans-serif;
}

.b__support .b__support--info .b__support--left p.p__title {
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0px;
    margin-bottom: 27px;
    color: #fff;
}

.b__support .b__support--info .b__support--left ul {
    margin: 0 0 25px;
    display: flex;
    justify-content: center;
    padding-left: 0;
    list-style-type: none;
}

.b__support .b__support--info .b__support--left ul li.active {
    margin: -10px;
    z-index: 0;
}

.b__support .b__support--info .b__support--left ul li img {
    width: 100%;
    height: 68px;
    object-fit: cover;
    border-radius: 100%;
    border: 3px solid #fff;
}

.b__support .b__support--info .b__support--left ul li.active img {
    height: 88px;
    object-fit: cover;
}

.b__support .b__support--info .b__support--left .b__support--content p,
.b__support .b__support--info .b__support--left .b__support--content span {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: 0px;
    color: #fff;
    justify-content: center;
    padding-left: 0;
    margin-bottom: 10px;
}

.b__support .b__support--info .b__support--left .b__support--content span {
    font-weight: normal;
    margin-bottom: 30px;
}

.b__support .b__support--info .b__support--left .btn-contact {
    border-radius: 4px;
    background: #fd9904;
    border: none;
    box-shadow: none;
    color: #fff;
    display: flex;
    padding: 10px 24px;
    width: 260px;
    font-style: normal;
    font-size: 14px;
    font-weight: 700;
    line-height: 28px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 auto;
    transition: 0.4s;
}

.b__support .b__support--info .b__support--left .btn-contact::before {
    content: "";
    mask: url(../../../../public/upload/images/icon_mes.svg) no-repeat center;
    -webkit-mask: url(../../../../public/upload/images/icon_mes.svg) no-repeat center;
    background-color: #fff;
    border: none;
    display: block;
    margin-right: 10px;
    width: 24px;
    height: 24px;
}

.b__support .b__support--info .b__support--left .btn-contact:hover {
    background: #d37f01;
}

@media screen and (max-width: 1290px) {
    .b__support .table-support-func thead tr th {
        font-size: 16px !important;
    }
}

@media screen and (max-width: 767px) {
    .b__support {
        height: 100%;
    }

    .b__support .b__support--info .b__support--right.thisMobile {
        display: block;
    }

    .b__support .b__support--info .b__support--right.thisPc {
        display: none;
    }

    .b__support .b__support--info {
        display: block;
    }

    .b__support .block-head {
        width: 100%;
    }

    .b__support .b__support--left {
        max-width: 100% !important;
        margin-bottom: 20px;
    }

    .b__support .b__support--right {
        max-width: 100% !important;
    }

    .b__support .b__support--info .b__support--right .table-support-func {
        width: 100% !important;
    }
}

.main-blog .partner-item {
    margin-bottom: 10px;
}

.main-blog .partner-item a {
    border: 1px solid #dee2e6 !important;
    border-radius: 8px;
    padding: 1rem 2rem !important;
    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;
    height: 100px;
    width: 100%;
    background: #fff;
    margin: 10px auto;
}

.main-blog .partner-item img {
    filter: grayscale(100%);
    max-width: 100%;
    max-height: 100%;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
}

.main-blog .partner-item:hover img {
    -webkit-filter: blur(0);
}

.owlCarouselPC {
    display: block;
}

.owlCarouselMB {
    display: none;
}

.owlCarousel {
    width: 100%;
    overflow: auto;
}

.owlCarousel .listCarousel {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.owlCarousel .listCarousel .item {
    height: 120px;
    display: flex;
    margin-right: 10px;
    margin-left: 10px;
    background: #fff;
    border: 1px solid #dee2e6 !important;
    border-radius: 8px;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 0.8rem !important;
}

.owlCarousel .listCarousel .item a {
    padding: 3rem 6rem !important;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
}

@media screen and (max-width: 680px) {
    .owlCarouselPC {
        display: none;
    }

    .owlCarouselMB {
        display: block;
    }

    .owlCarousel .listCarousel .item a {
        padding: 3rem 4.6rem !important;
    }
}

@media screen and (max-width: 540px) {
    .owlCarousel .listCarousel .item a {
        padding: 3rem 6.5rem !important;
    }
}

@media screen and (max-width: 414px) {
    .owlCarousel .listCarousel .item a {
        padding: 3rem 4.6rem !important;
    }
}

@media screen and (max-width: 375px) {
    .owlCarousel .listCarousel .item a {
        padding: 3rem 4rem !important;
    }
}

.modal-contact-agency .modal-content {
    padding: 25px 20px;
    border: 1px solid #dddee6;
    box-sizing: border-box;
    box-shadow: 0px 10px 30px rgb(13 38 59 / 5%);
    border-radius: 10px;
    margin: 0 auto;
    position: relative;
}

.modal-contact-agency .modal-content .btn-close {
    cursor: pointer;
    background: var(--red-main);
    color: var(--bs-white);
    opacity: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -12px;
    top: -12px;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
    border-radius: 50%;
}

.modal-contact-agency .modal-content .btn-close:hover i {
    transform: rotate(90deg);
}

.modal-contact-agency .modal-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--bs-gray-700);
    margin: 0 0 20px;
    text-align: center;
}

.modal-contact-agency .modal-content .btn-send {
    background: var(--base-color);
    transition: all 0.35s ease-in;
    color: var(--bs-white);
    border-radius: 30px;
    padding: 7px 35px;
    margin: 0 auto;
    font-weight: 500;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgb(152 184 215 / 54%);
}

.modal-contact-agency .modal-content .btn-send:hover {
    background: var(--primary-light);
}

.modal-contact-agency .form-group .form-control {
    height: 40px;
    font-size: 15px;
    border-radius: 8px;
}

.modal-contact-agency .form-group textarea {
    height: unset !important;
    resize: none;
    padding: 8px 10px;
}

.main-blog .textwidget {
    position: relative;
}

.main-blog .textwidget::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.main-blog .textwidget #main-banner {
    padding-top: 90px;
    padding-bottom: 60px;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    position: relative;
    z-index: 2;
    color: #fff;
    margin-bottom: 0 !important;
}

.main-blog .textwidget #main-banner::before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #02101e 5%, #0054a6f2 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}

.main-blog .textwidget #main-banner .title {
    font-size: 35px;
    font-family: var(--font-heading);
    font-weight: 500;
    margin-bottom: 10px;
}

.main-blog .textwidget #main-banner .title span {
    font-weight: 700;
}

.main-blog .textwidget #main-banner .sub-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 20px;
}

.main-blog .textwidget .form-control {
    height: 45px;
    padding: 6px 20px 6px 30px;
    font-size: 15px;
    color: #333;
    border: 1px solid transparent;
    border-radius: 10px;
    font-weight: 400;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
}

.main-blog .textwidget .form-control::placeholder {
    color: #7a7a7c !important;
}

.main-blog .textwidget textarea.form-control {
    padding: 20px 30px;
    height: auto;
}

.main-blog .textwidget .form-lienhe .btn-contacts {
    font-size: 14px;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .main-blog .textwidget #main-banner {
        margin: 0;
        padding-top: 45px !important;
    }

    .main-blog .textwidget #main-banner .title {
        display: none;
    }

    .main-blog .textwidget #main-banner .sub-title {
        line-height: 1.2 !important;
    }
}

.main-footer {
    /*  background: #101215 url(/public/upload/images/footer-bg-web.png) center/contain no-repeat;*/
    position: relative;
}

.main-footer .main-f-top {
    border-bottom: unset;
    padding-top: 55px;
    padding-bottom: 1px;
}

.main-footer .main-f-top .f-shop {
    font-size: 1.2em;
    font-weight: 600;
    color: #ebecef;
    padding-bottom: 0;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-footer .main-f-top ul li a {
    font-size: 15px;
    font-weight: 400;
    color: #a5aebf;
    padding-bottom: 1px;
    margin-bottom: 3px;
    position: relative;
    display: inline-flex;
}

.main-footer .main-f-top ul li a::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 1px;
    background-color: #adafb3a1;
    z-index: 1;
    transition: var(--transition);
}

.main-footer .main-f-top ul li a:hover::after {
    left: 0;
    right: auto;
    width: 100%;
}

.main-footer .main-f-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
}

.main-footer .main-f-bottom .f-shop {
    font-size: 14px;
    font-weight: 700;
    color: #d1d3d6;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.main-footer .main-f-bottom .f-address,
.main-footer .main-f-bottom .f-contact,
.main-footer .main-f-bottom .f-contact a {
    font-size: 15px;
    font-weight: 400;
    color: #a5aebf;
}

.main-footer .main-f-bottom .f-address i,
.main-footer .main-f-bottom .f-contact i {
    font-size: 13px;
}

.main-footer .main-f-bottom .f-address {
    margin-bottom: 7px;
}

footer.footer {
    background: #02101e;
    color: #fff;
    font-size: 13px;
}

footer.footer .footer-copyright {
    color: #a5aebf;
    border-top: 1px solid #9ebbd740;
    font-size: 14px;
}

footer.footer .logo-cert a img {
    width: 80px;
    height: auto !important;
    margin-right: 7px;
}

.return-top {
    bottom: 30px;
    right: 10px;
    border: 0.5px solid #0054a61a;
    width: 78px;
    height: 78px;
    z-index: 9;
    padding: 7px;
    opacity: 0;
    visibility: hidden;
}

.is-show.return-top {
    opacity: 1;
    visibility: visible;
}

.return-top svg {
    animation: animation-top 10s infinite linear;
}

.return-top svg path {
    fill: #788189;
    transition: var(--transition);
}

@keyframes animation-top {
    100% {
        transform: rotate(360deg);
    }
}

.return-top .arrow {
    background-color: var(--base-color);
    width: 32px;
    height: 32px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
}

.return-top .arrow::after {
    position: absolute;
    content: '';
    top: 0;
    width: 100%;
    height: 100%;
    letter-spacing: 0;
    border-radius: 50%;
    transform: scale(0);
    transition: 0.3s ease;
    background-color: var(--theme-color);
    z-index: 1;
}

.return-top:hover .arrow::after {
    transform: scale(1);
}

.return-top:hover .arrow i {
    transform: translateY(-3px);
}

.return-top.change {
    border: 0.5px solid rgb(183 180 180 / 47%);
}

.return-top.change svg path {
    fill: #f1f8ffc2;
}

.return-top.change .arrow {
    background-color: var(--theme-color);
}

.tool {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 12;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tool .tool-item {
    position: relative;
    background-color: var(--base-color);
    color: var(--bs-white);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border-radius: 8px 0 0 8px;
    transition: var(--transition);
    box-shadow: rgb(247 247 247 / 20%) 0rem 0.4609rem 2.30445rem 0rem;
}

.tool .tool-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    text-align: center;
    color: var(--bs-white);
    transition: 0.4s ease-in;
    z-index: 2;
    font-size: 16px;
}

.tool .tool-icon i,
.tool .tool-icon svg {
    transition: 0.4s ease-in;
}

.tool .tool-icon svg {
    width: 22px;
}

.tool .tool-icon svg path {
    fill: var(--bs-white);
}

.tool .sub-tool {
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    -ms-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
    text-align: center;
    display: none;
    opacity: 0;
    visibility: hidden;
}

.tool .sub-tool .text {
    display: block;
    width: 100%;
    color: var(--bs-gray-700);
    font-size: 12px;
    font-weight: 600;
}

.tool > ul > li:hover {
    background-color: var(--base-color-2);
}

.share-btn {
    position: fixed;
    border-radius: 10px;
    width: 245px;
    transition: all 0.4s cubic-bezier(0.3, 0, 0, 1.3);
    box-shadow: rgba(0, 37, 87, 0.2) 0rem 0.4609rem 2.30445rem 0rem;
    cursor: pointer;
    background: var(--bs-white);
    right: 70px;
    top: 50%;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) scale(0);
}

.share-btn::after {
    content: "";
    position: absolute;
    top: 12%;
    right: -10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid var(--bs-white);
}

.share-btn.social-btn::after {
    top: 35%;
}

.clicked {
    transform: translateY(-50%) scale(1);
}

.share-btn .social {
    width: 90%;
    margin: 1.1em auto;
}

.share-btn .li-a {
    color: var(--bs-gray-700);
    visibility: hidden;
    opacity: 0;
    display: inline-block;
    border: 1px solid #80808040;
    border-radius: 4px;
}

.address-btn.share-btn .li-a {
    padding: 5px 5px 5px 8px;
}

.share-btn .li-a .icon {
    background-color: var(--primary-color);
    width: 35px;
    height: 35px;
    font-size: 13px;
    position: relative;
}

.address-btn.share-btn .li-a .icon::after,
.address-btn.share-btn .li-a .icon::before {
    position: absolute;
    content: '';
    top: -7px;
    left: -7px;
    right: -7px;
    bottom: -7px;
    border-radius: 50%;
    z-index: -1;
    background-color: var(--primary-color);
    -webkit-animation: kfPhoneFixed 1.5s infinite ease-in-out;
    animation: kfPhoneFixed 1.5s infinite ease-in-out;
}

.address-btn.share-btn .li-a .icon::before {
    border: 2px solid var(--primary-color);
    -webkit-animation: kfPhoneFixed2 1.5s infinite ease-in-out;
    animation: kfPhoneFixed2 1.5s infinite ease-in-out;
    background-color: transparent;
}

@keyframes kfPhoneFixed2 {
    0% {
        -webkit-transform: rotate(0) scale(0.5) skew(1deg);
        transform: rotate(0) scale(0.5) skew(1deg);
        opacity: .1;
    }

    30% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: .5;
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .1;
    }
}

@keyframes kfPhoneFixed {
    0%, 100% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: .3;
    }
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .3;
    }
}

.address-btn.share-btn .li-a .icon i {
    transform: rotateY(-180deg);
}

.share-btn .li-custom {
    color: var(--bs-gray-700);
    margin-bottom: 2px;
}

.share-btn .li-a:hover {
    border: 1px solid #0054a682;
}

.clicked .li-a {
    visibility: visible;
    opacity: 1;
}

.social-btn.share-btn .li-a {
    border-radius: 6px;
    overflow: hidden;
    padding: 5px;
}

.social-btn.share-btn .li-a .icon {
    background-color: transparent;
}

.share-btn.clicked {
    z-index: 1000;
    opacity: 1;
    visibility: visible;
}

@media (max-width: 600px) {
    footer.footer {
        margin-bottom: 50px;
    }

    .return-top {
        bottom: 65px;
        right: 5px;
        width: 68px;
        height: 68px;
    }

    .return-top .arrow {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }

    .tool {
        top: unset;
        right: unset;
        left: 0;
        bottom: 0;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        width: 100%;
        gap: 0;
        flex-direction: row;
        border-top: 1px solid #6f8ead29;
        background-color: rgb(243 247 254);
        box-shadow: rgba(0, 37, 87, 0.2) 0rem 0.4609rem 2.30445rem 0rem;
    }

    .tool .tool-item {
        height: auto;
        width: calc(100% / 4);
        border-bottom: 0;
        border-radius: 0;
        background-color: rgb(243 247 254);
        padding-bottom: 5px;
        justify-content: space-between;
        box-shadow: unset;
    }

    .tool .sub-tool {
        display: flex;
        width: 100%;
        opacity: 1;
        visibility: visible;
    }

    .tool .tool-icon {
        font-size: 16px;
        color: var(--bs-gray-600);
    }

    .tool .item-home {
        display: flex !important;
    }

    .tool .item-home .tool-icon {
        background-color: var(--primary-color);
        color: var(--bs-white);
        position: absolute;
        top: -5px;
    }

    .tool .item-home::after {
        position: absolute;
        content: '';
        top: -15px;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        border-radius: 45px 45px 0 0;
        background-color: rgb(243 247 254);
        z-index: -1;
        box-shadow: rgba(0, 37, 87, 0.2) 0rem 0.4609rem 2.30445rem 0rem;
    }

    .tool .tool-icon svg {
        width: 18px;
    }

    .tool .tool-icon svg path {
        fill: var(--bs-gray-600);
    }

    .tool .tool-item:hover .tool-icon,
    .tool .tool-item:hover .text {
        color: var(--primary-color);
    }

    .tool .tool-icon.hotline::after {
        position: absolute;
        content: '';
        right: 0;
        top: 7px;
        z-index: 1;
        width: 5px;
        height: 5px;
        display: block;
        border-radius: 50%;
        background-color: var(--red-main);
    }

    .share-btn {
        right: unset;
        top: unset;
        left: 10px;
        bottom: -10px;
        width: 230px;
    }

    .share-btn::after,
    .share-btn.social-btn::after {
        top: unset;
        right: unset;
        bottom: -28px;
        left: 10%;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid var(--bs-white);
    }

    .share-btn.social-btn::after {
        left: 46%;
    }

    .share-btn .li-a {
        font-size: 13px;
    }

    .share-btn .li-a .icon {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }

    .share-btn .li-a .icon img {
        width: 30px;
        height: unset;
    }
}

/*====================================================
             .main-contact
=====================================================*/
.main-contact__bg {
    opacity: 0.35;
}

.main-contact__title {
    font-size: 1.7em;
    font-weight: 700;

}

.main-contact__text {
    font-size: 1.2em;
    font-weight: 500;
    color: var(--bs-gray-700);
}

.main-contact .contact-item__border {
    border: 1px solid #88a9ea;
    background-color: white;
    border-radius: 20px;
    max-width: 400px;
}

.main-contact .contact-item {
    border-radius: 20px;
    padding: 20px;
    background-color: var(--bs-white);
}

.main-contact .contact-item .title {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--base-color);
    position: absolute;
    top: -17px;
    left: 18px;
    padding: 0 10px;
    width: max-content;
}

.main-contact .contact-item .text {
    color: var(--bs-gray-600);
    font-weight: 600;
    font-size: 1.1em;
}

.main-contact .contact-item .text > span {
    font-size: 0.9em;
}

.main-contact .contact-item a.text:hover {
    color: var(--primary-color);
}

.main-contact__box {
    font-size: 1.05em;
    font-weight: 500;
}

.main-contact__box .title {
    margin-bottom: 10px;
    font-size: 1.35em;
    color: var(--bs-gray-800);
}

.main-contact__box i {
    font-size: 14px;
}

.main-contact__box a.hotline {
    color: var(--bs-gray-700);
    font-weight: 600;
}

.main-contact__box a.hotline:hover {
    color: var(--primary-color) !important;
}

.main-contact__svg svg g {
    fill: var(--primary-color);
}

.main-contact__svg svg path {
    stroke: var(--primary-color);

}

.main-contact__form {
    background-color: var(--primary-color);
}

.main-contact__form .main-contact__title {
    font-size: 3.2em;
}

.main-contact__form .main-contact__title p:first-child {
    font-size: 30px;
}

.main-contact__form .form-wrap {
    border: 1px solid rgba(206, 203, 203, 0.58);
    padding: 25px;
    border-radius: 35px;
}

.main-contact__form .form-wrap form {
    background-color: #044b91;
    border-radius: 30px;
    padding: 40px 35px;
}

.main-contact__form .bg-map {
    opacity: 0.5;
    width: 50%;
    height: auto;
}

.main-contact .form-group .form-control,
.main-contact .form-group .form-select {
    height: 45px;
    padding: 6px 20px 6px 30px;
    font-size: 15px;
    color: #333;
    border: 1px solid transparent;
    border-radius: 25px;
    font-weight: 500;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
}

.main-contact .form-group textarea.form-control {
    height: unset !important;
    padding: 20px 30px;
}


.main-contact
.custom-row
.lienhe-right
.form-control[type="number"]::-webkit-outer-spin-button,
.main-contact
.custom-row
.lienhe-right
.form-control[type="number"]::-webkit-inner-spin-button {
    appearance: none;
    -webkit-appearance: none;
}

.main-contact__footer {
    font-size: 0.9em;
    background-color: var(--primary-light);
}

@media (max-width: 1200px) {
    .main-contact__box .title {
        font-size: 1.2em;
    }

    .main-contact__form .main-contact__title {
        font-size: 3em;
    }

    .main-contact .contact-item {
        padding: 18px 20px;
    }

    .main-contact .contact-item .text {
        font-size: 1em;
    }
}

@media (max-width: 992px) {
    .main-contact__form .form-wrap {
        padding: 15px;
    }

    .main-contact__form .form-wrap form {
        padding: 30px 25px;
    }

    .main-contact__form .main-contact__title p:first-child {
        font-size: 25px;
    }

    .main-contact__form .main-contact__title {
        font-size: 2.8em;
    }

    .main-contact .contact-item {
        padding: 15px 18px;
    }

}

/*====================================================
             end main-contact
=====================================================*/

.breadcrumb-page {
    background: #e9ecef;
}

.breadcrumb-page .breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-page .breadcrumb .breadcrumb-item > a {
    color: #0f7adf;
}

.pagination .page-link {
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #495057;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.custom-container {
    background: #fff;
    margin: 30px auto;
    padding: 30px;
    box-shadow: 0 0 2px rgb(0 0 0 / 30%);
    border-radius: 4px;
}


.btn-radius-readmore {
    border: 1px solid #d9d9d9;
    border-radius: 100%;
    outline: none !important;
    box-shadow: none !important;
    width: 26px;
    height: 26px;
}

.page-main h2.main-title {
    margin-bottom: 15px;
}

.page-main .main-blog {
    margin-top: 4rem;
    padding-top: 2px;
}

.blog-item {
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 10px;
    background-color: #f5f5f5;
    border: 1px solid #0000;
    box-shadow: 0 0 3px rgb(0 0 0 / 40%);
    transition: 0.5s all linear;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.blog-item .blog-avatar {
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.blog-item .blog-avatar img {
    width: 100%;
    height: 100%;
    vertical-align: middle;
    transition: 0.5s all linear;
    max-height: 173px;
}

.blog-item .blog-avatar .blog-action {
    position: absolute;
    background: #00000080;
    width: 90%;
    height: 90%;
    z-index: 1;
    top: 5%;
    left: 5%;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s all linear;
    border: 1px solid #fff;
    transform: scale(0.7);
}

.blog-item .blog-avatar .blog-action a {
    display: inline-block;
    height: 40px;
    width: 40px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 1px solid #fff;
    color: var(--base-color);
    background: #fff;
    transition: 0.5s all linear;
    text-align: center;
    line-height: 40px;
    font-size: 1.1rem;
}

.blog-item .blog-content {
    padding: 15px 0;
}

.blog-item .blog-content .blog-title a {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 20px;
    transition: 0.5s all linear;
    color: var(--base-color);
}

.blog-item .blog-content .blog-day {
    color: #555;
    font-size: 13px;
    text-align: right;
    padding: 10px 0;
}

.blog-item .blog-content .blog-day span {
    color: #777;
}

.blog-item .blog-content .blog-desc {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
    color: #333;
    line-height: 20px;
    font-size: 14px;
    text-align: justify;
}

.blog-item .blog-content .blog-desc p:last-of-type {
    margin-bottom: 0;
}

.blog-item:hover {
    border-color: var(--base-color);
    transform: translateY(-2px);
}

.blog-item:hover .blog-content .blog-title a {
    color: var(--base-color);
}

.blog-item .blog-avatar:hover img {
    transform: scale(1.1);
}

.blog-item .blog-avatar:hover .blog-action {
    opacity: 1;
    transform: scale(1);
}

.blog-item .blog-avatar .blog-action a:hover {
    background: var(--base-color);
    color: #fff;
    border-color: var(--base-color);
}

@media screen and (max-width: 991px) {
    .page-main .main-blog {
        margin-right: -0.375rem;
        margin-left: -0.375rem;
    }

    .page-main .main-blog .col-6 {
        margin-bottom: 0.75rem;
    }

    .page-main .main-blog .col-6:nth-child(odd) {
        padding-right: 0.375rem;
    }

    .page-main .main-blog .col-6:nth-child(even) {
        padding-left: 0.375rem;
    }

    .main-blog .blog-day {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .blog-item {
        min-height: 242px;
    }

    .blog-item .blog-content .blog-title a {
        font-size: 14px;
    }
}

.page-error footer {
    display: none !important;
}

.page-notfound {
    background-color: var(--primary-color);
    height: 100vh;
}

.page-notfound__bg {
    opacity: 0.4;
    width: 80%;
}

.notfound .heading-big {
    opacity: 0.6;
    background: linear-gradient(180deg, #E0EDFA 8.13%, rgba(243, 249, 255, 0.00) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 250px;
    width: max-content;
}

.notfound .notfound-404 {
    transform: translateY(-130px);
}

.notfound .notfound-404 h1 {
    font-size: 60px;
    line-height: inherit;
}

.notfound .notfound-404 h2 {
    font-size: 20px;
}

@media only screen and (max-width: 1200px) {
    .notfound .heading-big {
        font-size: 180px;
    }

    .notfound .notfound-404 {
        transform: translateY(-90px);
    }

    .notfound .notfound-404 h1 {
        font-size: 40px;
    }

    .notfound .notfound-404 h2 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 600px) {
    .notfound .heading-big {
        font-size: 130px;
    }

    .notfound .notfound-404 {
        transform: translateY(-65px);
    }

    .notfound .notfound-404 h1 {
        font-size: 25px;
    }

    .notfound .notfound-404 h2 {
        font-size: 16px;
    }

}

.price-background {
    background-color: #0abcf9;
    background-image: linear-gradient(315deg, #0abcf9 0%, #2c69d1 74%);
}

.price-header-title {
    padding: 25px 0;
}

.price-header-title .price-title {
    background: unset !important;
    padding-bottom: 0;
    margin-bottom: 0;
}

.price-background .price-header-title .price-title h1,
.price-background .price-header-title .price-title h2 {
    font-size: 30px;
    color: #fff;
    text-shadow: 0 1px 1px rgb(0 0 0 / 20%);
}

.price-header-title .price-sub-title {
    max-width: 768px;
    color: var(--base-color);
    margin: 0 auto;
    font-size: 18px;
    text-shadow: 0 1px 1px rgb(0 0 0 / 20%);
}

.price-background .price-header-title .price-sub-title {
    color: #fff;
}

.price-custom-container {
    padding: 0 !important;
    border-radius: 8px;
    box-shadow: rgb(0 0 0 / 16%) 0px 2px 5px 0px,
    rgb(0 0 0 / 12%) 0px 2px 10px 0px;
    margin: 0 auto 60px !important;
}

.myBtn {
    letter-spacing: 0 !important;
    box-shadow: rgb(0 0 0 / 16%) 0px 2px 5px 0px,
    rgb(0 0 0 / 12%) 0px 2px 10px 0px !important;
    width: 100%;
    padding: 10px 25px;
    min-width: 138px;
    border-radius: 4px;
    max-width: fit-content;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    background: #243c82;
    border: 1px solid #243c82;
    color: #fff !important;
    transition: 0.3s ease-in-out;
    border-top: 0;
    position: relative;
    z-index: 2;
}

.myBtn:hover {
    background: #142763;
    border: 1px solid #142763;
}

.table-price {
    display: -webkit-flex;
    display: flex;
}

.table-price .item {
    background-color: #fff;
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.sup_main-error {
    height: 50px;
    background: #fff;
    border-radius: 8px;
}

.table-price .item.attr .bg {
    margin-top: 275px !important;
    background-color: #fafbfc;
}

.table-price .listContent {
    border-radius: 8px;
}

.table-price .item.attr .listContent .sub-item {
    text-align: left !important;
    padding: 0 10% !important;
    justify-content: flex-start !important;
    border-top: solid 1px #edeff79e;
    width: 100%;
    position: relative;
    height: 75px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.item.attr .listContent .sub-item .contentsub {
    display: flex !important;
    align-items: center;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    vertical-align: middle;
    position: relative;
    z-index: 2;
}

.table-price .item.attr .listContent .sub-item .contentsub > div:first-child {
    margin-right: 20px;
}

.table-price .item .listContent .sub-item > .contentsub img {
    width: 30px;
}

.table-price .item .bg {
    background-color: #fff;
}

.table-price .item .main {
    text-align: center;
    display: table;
    width: 100%;
}

.table-price .item .main .contentmain {
    display: table-cell;
    vertical-align: middle;
}

.table-price .item .main .contentmain img {
    height: 100px !important;
    max-width: 100px !important;
}

.table-price .item .head {
    display: table;
    text-align: center;
    width: 100%;
    position: relative;
    height: 30px;
    overflow: hidden;
}

.table-price .item .head:before {
    content: "";
    display: block;
    height: 100%;
    left: 0;
    filter: alpha(opacity=30);
    position: absolute;
    opacity: 0.15;
    width: 100%;
    background: #fff;
}

.table-price .item .head span {
    color: #243c82 !important;
    font-family: Roboto, sans-serif;
    margin-bottom: 15px !important;
    border-radius: 8px;
    vertical-align: middle;
    font-weight: bold;
    display: table-cell;
    margin-top: 0;
    font-size: 20px;
}

.table-price .item .head_sp {
    height: 30px;
    overflow: hidden;
}

.table-price .item .head_sp span {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    color: var(--primary-color);
}

.table-price .item .listContent .sub-item {
    text-align: center;
    border-top: solid 1px #edeff79e;
    width: 100%;
    position: relative;
    padding: 12px 2px 12px 2px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.table-price .item .listContent .sub-item.price {
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-top: 0;
}

.table-price .price {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: bold;
}

.price {
    color: #00aef0 !important;
}

.price,
.btn-modal {
    border-top: 0 !important;
}

.table-price .item:not(.attr) .listContent .sub-item:before {
    opacity: 0.1;
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
}

.sup_main {
    text-transform: uppercase;
    background: #00aef0 !important;
    height: 50px;
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    padding: 5px;
    font-size: small;
}

#priceCol2 {
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 25%);
    z-index: 2;
    background: #0000;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.showListTable {
    text-align: center;
    padding: 8px;
    border-top: 1px solid #ddd;
    cursor: pointer;
    display: none;
}

.showListTable i {
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -ms-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

.showListTable[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.listTable .table-bordered {
    border: 1px solid #ddd;
}

.listTable .table-bordered i {
    color: #243c82;
}

.html-main {
    margin-top: 10px;
    background-color: #fff;
}

.html-main .html-content {
    box-shadow: 0 0 73px 0 rgb(12 52 98 / 9%);
    padding: 25px;
    border-radius: 5px;
}

.html-main .table-banggia {
    border: none;
}

.html-main .table-banggia thead th {
    padding: 6px 12px;
    text-shadow: 0 1px 0 #ffffff;
    font-size: 18px !important;
    font-weight: 700 !important;
    font-family: Roboto, sans-serif;
    color: #42424e;
}

.html-main .table-banggia.table-bg-header thead th {
    background: #edf6ff;
}

.html-main .table-banggia:not(.table-bg-header) thead th {
    border-radius: 4px;
    border: 0;
}

.html-main .html-content table th,
.html-main .html-content table td {
    padding: 10px !important;
    width: auto;
}

.html-inner .html-content table td {
    padding: 10px !important;
    width: 50%;
}

.html-main .note {
    font-weight: 700;
    color: #76767a;
    padding: 15px 0;
}

.wrapper-section-cta {
    padding: 20px 0 70px;
    text-align: center;
}

.pricing-cta-btn {
    font-weight: 700;
    background: var(--base-color);
    border-radius: 4px;
    box-shadow: 0 10px 25px rgb(152 184 215);
    padding: 15px 30px;
    color: #fff;
    transition: 0.3s ease-in-out;
    text-transform: uppercase;
    position: relative;
}

.pricing-cta-btn:hover {
    background: #1a3174;
    color: #fff;
}

.pricing-cta-btn::before {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    background: #e9ebf0;
    top: 50%;
    width: 320px;
    right: 100%;
    margin-right: 20px;
}

.pricing-cta-btn::after {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    background: #e9ebf0;
    top: 50%;
    width: 320px;
    left: 100%;
    margin-left: 20px;
}

@media screen and (max-width: 767px) {
    .price-custom-container {
        padding: 0 15px !important;
        background: 0;
        box-shadow: none;
    }

    .table-price {
        display: block;
    }

    .table-price .item {
        margin: 20px 0;
    }

    .listContent .sub-item {
        display: none !important;
    }

    .listContent .sub-item.price,
    .listContent .sub-item.btn-modal {
        display: flex !important;
    }

    #priceCol2 {
        background-color: #fff;
    }

    .price-header-title .price-sub-title {
        max-width: 100%;
        margin: 0 auto;
    }

    .table-price .item.attr {
        display: none;
    }

    .html-content table {
        font-size: 13px !important;
    }

    .html-main .html-content table th {
        font-size: 16px !important;
    }

    .pricing-cta-btn::after,
    .pricing-cta-btn::before {
        width: 50px !important;
    }

    .showListTable {
        display: block;
        background-color: #f3f4f6;
        padding: 12px;
        font-weight: 700;
    }

    .listTable > table {
        margin-bottom: 0;
    }

    .listTable > table.table-striped tbody tr:nth-of-type(odd) {
        background: 0 0;
    }

    .listTable > table.table-striped tbody tr:nth-of-type(even) {
        background-color: #00000005;
    }

    .listTable > table > tbody > tr > td > img {
        width: 30px;
    }

    .listTable > table > tbody > tr > td {
        vertical-align: middle;
        position: relative;
        padding-right: 15px;
    }
}

.spBox .section_offset .t_align_c ul {
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin-bottom: 0;
    overflow-x: auto;
}

.spBox .section_offset .t_align_c ul::-webkit-scrollbar {
    display: none !important;
}

.spBox .section_offset .thisMb {
    display: none !important;
    transition: 0.4s;
}

.spBox .section_offset .t_align_c ul a {
    padding: 8px 18px;
    cursor: pointer;
    display: block;
    font-weight: 500;
    color: var(--bs-gray-700);
    transition: var(--transition-default);
    background-color: transparent;
    border: 1px solid #0f5ba54a;
    border-right: 1px solid transparent;
    white-space: nowrap;
}

.spBox .section_offset .t_align_c ul a:hover {
    color: var(--primary-light);
}

.spBox .section_offset .t_align_c ul a.active {
    background: var(--primary-color);
    color: var(--bs-white);
}

.spBox .section_offset .t_align_c ul a:first-child {
    border-radius: 5px 0 0 5px;
}

.spBox .section_offset .t_align_c ul a:last-child {
    border-radius: 0 5px 5px 0;
    border-right: 1px solid #0f5ba54a;
}

.template-preview .item_sanpham .item {
    padding: 10px 5px 20px;
    text-align: center;
    border-radius: 8px;
    width: 100%;
    /* display: inline-block;*/
    height: 100%;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 9%);
    border: 1px solid #0f5ba51c;
}

.template-preview .item_sanpham img {
    height: 210px;
    width: 100%;
}

.template-preview .item_sanpham h4 {
    margin: 0;
    padding: 15px 5px 0 5px;
    color: var(--base-color);
}

.template-preview .item_sanpham h4 > a {
    color: inherit;
}

.template-preview .item_sanpham h5 {
    margin: 0;
    padding: 5px;
    font-weight: 400;
}

.template-preview .item_sanpham h5 a {
    color: #07a0f9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
}

.textstrong {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    height: 90px;
    margin-bottom: 20px;
    padding: 5px;
}

.textstrong p {
    font-size: 15px !important;
}

.textstrong p sub,
.textstrong p sup {
    position: unset;
    font-size: 15px;
}

.textstrong p sub {
    top: 0;
}

.textstrong p sub {
    bottom: 0;
}

.textstrong p u,
.textstrong p s {
    text-decoration: none;
}

.textstrong p span {
    color: #495057 !important;
    background-color: transparent !important;
}

.textstrong p em {
    font-style: normal;
}

.textstrong p strong {
    font-weight: 500 !important;
}

.template-preview .item_sanpham .btn_sanpham {
    padding: 6px 20px 7px 20px;
    color: #fff;
    background: var(--base-color);
    border-radius: 35px;
    transition: 0.4s;
    font-size: 14px;
    font-weight: 500;
    width: max-content;
}

.template-preview .item_sanpham .btn_sanpham:hover {
    background: var(--primary-light);
    transition: 0.4s;
}

.sortPagiBar {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sortPagiBar ul {
    background: #fff;
}

.sortPagiBar ul li {
    margin: 0 1px;
}

.sortPagiBar ul li a {
    color: var(--base-color);
    display: inline-block;
    padding: 5px 10px;
    transition: 0.3s all ease;
    border-radius: 8px;
}

.sortPagiBar ul li.active a,
.sortPagiBar ul li a:hover {
    color: #fff;
    background: var(--base-color);
}

@media (max-width: 1199px) {
    .spBox .section_offset .t_align_c ul {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 767px) {
    .spBox .section_offset .t_align_c ul {
        display: block !important;
        transition: 0.4s;
        border-radius: 5px;
        gap: 4px;
        box-shadow: rgba(0, 37, 87, 0.2) 0rem 0.4609rem 2.30445rem 0rem;
    }

    .spBox .section_offset .t_align_c ul > a:not(:first-child) {
        border: unset;
        border-top: 1px solid #0054a614;
    }

    .spBox .section_offset .t_align_c ul.thisPc {
        display: none !important;
        transition: 0.4s;
    }

    .spBox .section_offset .thisMb .f_xs_none {
        display: none;
    }

    .spBox .section_offset .thisMb .f_xs_none.f_xs_none_mb {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 10px 20px;
    }

    .spBox .section_offset .t_align_c ul a {
        background-color: var(--bs-white);
        color: var(--bs-gray-800);
    }

    .spBox .section_offset .thisMb .f_xs_none.f_xs_none_mb > i {
        transition: 0.3s all ease;
        margin-left: 10px;
    }

    .spBox .section_offset .thisMb .f_xs_none.acitveToggle {
        display: block;
        transition: 0.4s;
    }

    .spBox .section_offset .thisMb .f_xs_none.f_xs_none_mb.acitveToggle > i {
        transform: rotate(180deg);
    }

    .spBox .section_offset .t_align_c ul .f_xs_none.f_xs_none_mb.acitveToggle {
        background: var(--base-color);
        color: #fff;
        transition: 0.4s;
    }


    .template-preview {
        padding: 0 5px;
    }

    .template-preview .row {
        margin: 0 auto;
    }

    .template-preview:not(.template-preview_oto) .item_sanpham {
        max-width: 100%;
    }
}

.single-custom-page .detail_sanpham {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.single-custom-page .detail_sanpham .img {
    width: 48%;
}

.single-custom-page .detail_sanpham .img img {
    height: auto;
}

.single-custom-page .detail_sanpham .container_detail {
    width: 47%;
    margin-left: 30px;
    padding-bottom: 20px;
}

.detail_sanpham .container_detail .content_detail {
    margin-top: 5px;
}

.detail_sanpham .container_detail .footer_detail {
    display: inline-flex;
}

.detail_sanpham .container_detail .footer_detail .btn-success_detail,
.detail_sanpham .container_detail .footer_detail .btn-order_detail {
    padding: 8px 20px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid var(--base-color-2);
    display: inline-block;
    white-space: nowrap;
    margin-top: 0;
}

.detail_sanpham .container_detail .footer_detail .btn-order_detail {
    background: #0000;
    color: var(--base-color-2);
}

.detail_sanpham .container_detail .footer_detail .btn-success_detail {
    background: var(--base-color-2);
    color: #fff;
}

.detail_sanpham .container_detail .footer_detail .btn-success_detail:hover {
    background: #0089f0;
    transition: 0.4s;
}

@media screen and (max-width: 767px) {
    .single-custom-page .detail_sanpham {
        flex-direction: column;
        height: auto !important;
    }

    .single-custom-page .detail_sanpham > * {
        width: 100% !important;
        margin: 0 0 10px !important;
    }
}

.single-custom-page .boxDanhmuc {
    display: flex;
    padding: 1rem 0 0.5rem;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #bdc3c7;
}

.single-custom-page .boxDanhmuc h3 {
    color: #34383d;
    text-transform: uppercase;
}

.single-custom-page .template-preview .row {
    /*margin: 0 auto;*/
}

.template-modal .modal-dialog {
    max-width: 60%;
}

.template-modal .modal-content .modal-body {
    padding: 0;
    display: flex;
}

.template-modal figure.snip1091 {
    position: relative;
    width: 60%;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 0 5px rgb(0 0 0 / 15%);
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}

.template-modal figure.snip1091 * {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.template-modal figure.snip1091 img {
    opacity: 0.25;
    max-width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.template-modal figure.snip1091 figcaption {
    position: absolute;
    top: 50%;
    left: 30px;
    right: 30px;
    -webkit-transform: rotate(0deg) translateY(-50%) scale(1);
    transform: rotate(0deg) translateY(-50%) scale(1);
    -webkit-transform-origin: center 0;
    transform-origin: center 0;
}

.template-modal figure.snip1091 figcaption h2 {
    top: 50%;
    letter-spacing: -1px;
    color: #ffffff;
    text-transform: uppercase;
    padding: 10px 0;
    margin: 0;
    font-weight: 400;
}

.template-modal figure.snip1091 figcaption h2 span {
    font-weight: 800;
}

.template-modal figure.snip1091 figcaption:before,
.template-modal figure.snip1091 figcaption:after {
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    height: 2px;
    position: absolute;
    content: "";
    display: block;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.template-modal figure.snip1091 figcaption:before {
    left: 0;
    top: 0;
}

.template-modal figure.snip1091 figcaption:after {
    bottom: 0;
    right: 0;
}

.template-modal figure.snip1091.navy {
    background: #000000;
}

.template-modal figure.snip1091 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
}

.template-modal figure.snip1091:hover img,
.template-modal figure.snip1091.hover img {
    opacity: 1;
}

.template-modal figure.snip1091:hover figcaption,
.template-modal figure.snip1091.hover figcaption {
    -webkit-transform: rotate(-45deg) translateY(-50%) scale(0.9);
    transform: rotate(-45deg) translateY(-50%) scale(0.9);
    opacity: 0;
}

.template-modal figure.snip1091:hover figcaption:before,
.template-modal figure.snip1091.hover figcaption:before,
.template-modal figure.snip1091:hover figcaption:after,
.template-modal figure.snip1091.hover figcaption:after {
    opacity: 0;
}

.template-modal .modal-content .modal-body #formDatHang,
.template-modal .modal-content .modal-body #formDatHangLandingPage {
    background: transparent;
    width: 45%;
    padding: 1rem;
}

.template-modal .modal-content .modal-body #formDatHang .form-group,
.template-modal .modal-content .modal-body #formDatHangLandingPage .form-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.template-modal .modal-content .modal-body #formDatHang .form-group label,
.template-modal
.modal-content
.modal-body
#formDatHangLandingPage
.form-group
label {
    position: absolute;
    font-size: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    color: #9b9b9b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
    z-index: 2;
    margin-bottom: 0;
}

.template-modal .modal-content .modal-body #formDatHang .form-group input,
.template-modal .modal-content .modal-body #formDatHang .form-group select,
.template-modal .modal-content .modal-body #formDatHangLandingPage .form-group input,
.template-modal .modal-content .modal-body #formDatHangLandingPage .form-group select {
    color: #111111;
    height: 40px;
    line-height: 40px;
    box-shadow: none !important;
    font-size: 15px;
    padding-left: 40px;
    position: relative;
    border-radius: 5px;
}

.template-modal .modal-content .modal-body #formDatHang .form-group textarea,
.template-modal .modal-content .modal-body #formDatHangLandingPage .form-group textarea {
    font-size: 15px;
    resize: none;
}

.template-modal .modal-content .modal-body #formDatHang .form-group input::placeholder,
.template-modal .modal-content .modal-body #formDatHangLandingPage .form-group input::placeholder,
.template-modal .modal-content .modal-body #formDatHang .form-group textarea::placeholder,
.template-modal .modal-content .modal-body #formDatHangLandingPage .form-group textarea::placeholder {
    color: #7a7a7c;
}

.template-modal .modal-content {
    border-radius: 8px;
}

.template-modal .btn-style:focus {
    outline: none;
}

.template-modal .btn-style {
    background: var(--base-color);
    transition: all 0.35s ease-in;
    color: var(--bs-white);
    border-radius: 30px;
    padding: 9px 35px;
    margin: 0 auto;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid var(--base-color);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.template-modal .btn-style:hover {
    background: var(--primary-light);
}

.template-modal .btn-style:hover i {
    transform: translateX(3px);
}

@media screen and (max-width: 1024px) {
    .template-modal .modal-dialog {
        max-width: 90%;
    }

    .template-modal .template-preview .owl-item {
        width: 240px !important;
        margin-right: 20px !important;
    }
}

@media screen and (max-width: 768px) {
    .template-modal .template-preview .owl-item {
        width: 350px !important;
        margin-right: 20px !important;
    }

    .template-modal figure.snip1091 {
        width: 100%;
        border-top-left-radius: 7px;
        border-top-right-radius: 7px;
        border-bottom-left-radius: 0;
    }

    .template-modal .modal-content .modal-body #formDatHang,
    .template-modal .modal-content .modal-body #formDatHangLandingPage {
        width: 100%;
    }
}

@media screen and (max-width: 680px) {
    .template-modal .modal-content .modal-body {
        display: block;
    }

    .template-modal .modal-dialog {
        max-width: 100%;
    }

    .template-modal .template-modal figure.snip1091 {
        border-top-left-radius: 7px;
        border-top-right-radius: 7px;
        border-bottom-left-radius: 0;
    }

    .template-modal .template-modal figure.snip1091 img {
        border-top-left-radius: 7px;
        border-top-right-radius: 7px;
        border-bottom-left-radius: 0;
    }

    .template-modal .template-modal .modal-content .modal-body #formDatHang {
        width: 100%;
    }

    .template-modal .template-modal figure.snip1091 {
        width: 100%;
    }

    .template-modal .template-preview .owl-item {
        width: 390px !important;
        margin-right: 20px !important;
    }
}

@media screen and (max-width: 411px) {
    .template-modal .template-preview .owl-item {
        width: 387px !important;
        margin-right: 20px !important;
    }
}

@media screen and (max-width: 400px) {
    .template-modal .template-preview .owl-item {
        width: 351px !important;
        margin-right: 20px !important;
    }
}

@media screen and (max-width: 360px) {
    .template-modal .template-preview .owl-item {
        width: 336px !important;
        margin-right: 20px !important;
    }
}

@media screen and (max-width: 320px) {
    .template-modal .template-modal figure.snip1091 figcaption h2 {
        font-size: 24px;
    }

    .template-modal .template-preview .owl-item {
        width: 296px !important;
        margin-right: 20px !important;
    }
}

@media screen and (max-width: 280px) {
    .template-modal .template-modal figure.snip1091 figcaption h2 {
        font-size: 20px;
    }

    .template-modal .template-preview .owl-item {
        width: 256px !important;
        margin-right: 20px !important;
    }
}

.template-modal .modal-content .btn-close {
    cursor: pointer;
    background: var(--red-main);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -12px;
    top: -12px;
    padding: 0;
    margin: 0;
    border: none;
    color: var(--bs-white);
    box-shadow: none;
    border-radius: 50%;
    z-index: 9;
    opacity: 1;
    transition: all 0.3s ease-in;
    box-sizing: unset;
}

.section-why {
    padding-bottom: 40px;
    padding-top: 40px;
    background: url(../images/landing-page/sh-bg.svg) center center no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    z-index: 1;
    position: relative;
    font-family: "Roboto", Sans-Serif;
}

.section-why .why-heading {
    text-align: center;
    width: 100%;
    padding-bottom: 35px;
}

.section-why .why-heading h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    text-align: center;
    padding: 30px 0;
    position: relative;
    background: url(../images/landing-page/bg_line.png) center bottom no-repeat;
    margin-bottom: 16px;
}

.section-why .why-heading p {
    margin-bottom: 1em;
    font-size: 21px;
    color: #42424e;
}

.section-why .why-inner .why-inner_image {
    position: absolute;
    top: 62%;
    z-index: -2;
    margin: 0 auto;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-animation: rotate-m 4s linear infinite;
    -o-animation: rotate-m 4s linear infinite;
    animation: rotate-m 4s linear infinite;
    display: block;
}

.section-why .why-inner .why-inner_image img {
    animation: circleRotate 7s infinite;
    -webkit-animation: circleRotate 7s infinite;
    -webkit-animation-duration: 7s;
    animation-duration: 7s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    width: 100%;
    height: auto;
}

@keyframes circleRotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.section-why .why-inner .why-inner_flex {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.section-why .why-inner .why-inner_flex .why-flex_left,
.section-why .why-inner .why-inner_flex .why-flex_right {
    width: calc((100% - 270px) / 2);
    padding: 35px 15px;
}

.section-why .why-inner .why-inner_flex .why-flex_left {
    text-align: right;
}

.section-why .why-inner .why-inner_flex .why-flex_right {
    text-align: left;
}

.section-why .why-inner .why-inner_flex .why-box {
    padding-top: 60px;
}

.section-why .why-inner .why-inner_flex .why-box .why-box_head {
    display: flex;
    align-items: center;
}

.section-why .why-inner .why-inner_flex .why-box .why-box_head .why-box_title {
    color: var(--primary-color);
    font-size: 1.45em;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.5;
    margin-bottom: 0;
}

.section-why .why-inner .why-inner_flex .why-box .why-box_head .why-box_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: #fff;
    font-size: 2.2em;
    flex-shrink: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
}

.section-why
.why-inner
.why-inner_flex
.why-flex_left
.why-box
.why-box_head
.why-box_icon {
    margin-left: 20px;
}

.section-why .why-inner .why-inner_flex .why-flex_right .why-box .why-box_head {
    flex-direction: row-reverse;
}

.section-why
.why-inner
.why-inner_flex
.why-flex_right
.why-box
.why-box_head
.why-box_icon {
    margin-right: 20px;
}

.section-why .why-inner .why-inner_flex .why-box .why-box_body {
    padding-top: 15px;
    font-size: 1em;
    font-weight: 500;
    color: #42424e;
    line-height: 1.6;
    min-height: 87px;
}

.section-why .why-inner .why-inner_flex .why-flex_middle {
    width: 270px;
    height: 540px;
    background: url(../images/landing-page/bg_mobile.png) center center no-repeat;
    position: relative;
    padding: 15px;
}

.section-why .why-inner .why-inner_flex .why-flex_middle .why-middle_box {
    margin: 16px auto;
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
    top: 0;
    width: 240px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .section-why
    .why-inner
    .why-inner_flex
    .why-box
    .why-box_head
    .why-box_title {
        font-size: 1.15em;
    }
}

@media screen and (max-width: 991px) {
    .section-why {
        padding-bottom: 60px;
    }

    .section-why .why-heading {
        padding-bottom: 15px;
    }

    .section-why .why-heading h2 {
        font-size: 24px;
    }

    .section-why .why-heading p {
        font-size: 16px;
    }

    .section-why .why-inner .why-inner_flex {
        flex-direction: column;
    }

    .section-why .why-inner .why-inner_flex .why-flex_left,
    .section-why .why-inner .why-inner_flex .why-flex_right {
        width: 100%;
        text-align: left;
        padding: 0 15px;
    }

    .section-why .why-inner .why-inner_flex .why-box {
        padding-top: 30px;
    }

    .section-why .why-inner .why-inner_flex .why-box .why-box_head {
        flex-direction: row-reverse;
        justify-content: flex-end;
        width: 100%;
    }

    .section-why
    .why-inner
    .why-inner_flex
    .why-box
    .why-box_head
    .why-box_title {
        font-size: 1.3em;
    }

    .section-why
    .why-inner
    .why-inner_flex
    .why-flex_left
    .why-box
    .why-box_head
    .why-box_icon {
        margin-right: 20px;
        margin-left: 0;
    }

    .section-why .why-inner .why-inner_flex .why-flex_middle {
        margin: 30px auto 15px;
    }
}

.section-partner {
    padding-top: 100px;
    text-align: center;
    background: url(../images/landing-page/bg_6.png) center top no-repeat #09286feb;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    position: relative;
    color: #fff;
    padding-bottom: 150px;
    font-family: "Roboto", Sans-Serif;
}

.section-partner:before {
    background: url(../images/landing-page/bg_5.png) center top no-repeat;
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 2;
    width: 100%;
    height: 40px;
}

.section-partner:after {
    background: url(../images/landing-page/bg_4.png) center bottom no-repeat;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    z-index: 2;
    width: 100%;
    height: 40px;
}

.section-partner .partner-inner .partner-inner_heading {
    text-transform: uppercase;
    font-size: 26px;
    font-weight: 300;
    color: #fff;
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 21px;
}

.section-partner .partner-inner .partner-inner_heading span {
    display: block;
    font-weight: 700;
    color: #ffc520;
    font-size: 80px;
}

.section-partner .partner-inner .partner-inner_heading:before {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    width: 10%;
    background: #fff;
    z-index: 2;
    content: "";
    display: block;
}

.section-partner .partner-inner .partner-inner_desc {
    font-size: 20px;
    font-weight: 400;
    line-height: 35px;
    color: #fff;
    text-transform: uppercase;
    max-width: 70%;
    margin: 0 auto;
    text-align: center;
}

.section-partner .partner-inner .partner-inner_button {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-partner .partner-inner .partner-inner_button > a {
    text-transform: uppercase;
    color: #fff;
    padding: 5px 50px;
    font-size: 16px;
    line-height: 35px;
    font-weight: 400;
    display: inline-block;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -o-border-radius: 50px;
    -ms-border-radius: 50px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    border: double #fff 6px;
    background: var(--primary-color);
}

.section-partner .partner-inner .partner-inner_button > a:hover,
.section-partner .partner-inner .partner-inner_button > a:active {
    background: var(--base-color);
}

@media screen and (max-width: 991px) {
    .section-partner .partner-inner .partner-inner_heading {
        font-size: 20px;
    }

    .section-partner .partner-inner .partner-inner_heading span {
        font-size: 60px;
    }

    .section-partner .partner-inner .partner-inner_desc {
        max-width: 90%;
        font-size: 15px;
    }
}

.section-function {
    padding: 50px 0;
    background-color: #6488ef33;
    overflow: hidden;
}

.section-function .function-header {
    position: relative;
}

.section-function .function-header h2 {
    font-family: Roboto, sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    padding: 0 0 20px;
    margin-bottom: 0;
    position: relative;
}

.section-function .function-header p {
    max-width: 506px;
    line-height: 25px;
    font-size: 16px;
    color: #42424e;
    margin-bottom: 40px;
}

.section-function .function-header .big-title {
    position: absolute;
    top: 0;
    right: 0;
    height: 173px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    -webkit-transform: translateX(calc((100vw - 1170px) / 2));
    -moz-transform: translateX(calc((100vw - 1170px) / 2));
    -ms-transform: translateX(calc((100vw - 1170px) / 2));
    -o-transform: translateX(calc((100vw - 1170px) / 2));
    transform: translateX(calc((100vw - 1170px) / 2));
}

.section-function .function-header .big-title span {
    font-size: 150px;
    transition: all 0.4s ease-out;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    color: #a79dfd30;
    z-index: -1;
    font-weight: 700;
}

@media screen and (min-width: 767px) {
    .section-function .function-header .big-title {
        -webkit-transform: translateX(calc((100vw - 690px) / 2));
        -moz-transform: translateX(calc((100vw - 690px) / 2));
        -ms-transform: translateX(calc((100vw - 690px) / 2));
        -o-transform: translateX(calc((100vw - 690px) / 2));
        transform: translateX(calc((100vw - 690px) / 2));
    }
}

@media screen and (min-width: 991px) and (max-width: 1199px) {
    .section-function .function-header .big-title {
        -webkit-transform: translateX(calc((100vw - 930px) / 2));
        -moz-transform: translateX(calc((100vw - 930px) / 2));
        -ms-transform: translateX(calc((100vw - 930px) / 2));
        -o-transform: translateX(calc((100vw - 930px) / 2));
        transform: translateX(calc((100vw - 930px) / 2));
    }
}

@media screen and (max-width: 767px) {
    .section-function .function-header .big-title {
        display: none;
    }
}

.function-body .swiper-container {
    overflow: unset;
    display: flex;
    align-items: center;
}

.function-body .swiper-container .swiper-slide {
    border-radius: 3px;
    overflow: hidden;
    opacity: 0.2;
    transition: 0.3s;
}

.function-body .swiper-container .swiper-slide.swiper-slide-active {
    opacity: 1;
}

.function-body .swiper-container .swiper-slide .function-inner {
    background: #fff;
    padding: 40px 30px;
    position: relative;
    height: 100%;
}

.function-body
.swiper-container
.swiper-slide
.function-inner
.function-slogan {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    color: #222;
    margin-bottom: 10px;
}

.function-body .swiper-container .swiper-slide .function-inner .function-title {
    font-size: 30px;
    line-height: 120%;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.function-body .swiper-container .swiper-slide .function-inner .function-desc {
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
    color: #4e4848;
}

.function-body
.swiper-container
.swiper-slide
.function-inner
.function-desc
p:last-of-type {
    margin-top: 0;
    margin-bottom: 0;
}

.function-body
.swiper-container
.swiper-slide
.function-inner
.function-link
a {
    position: absolute;
    bottom: 40px;
    left: 30px;
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    color: var(--primary-color);
    transition: 0.3s all ease;
    text-transform: uppercase;
    display: inline-block;
}

.function-body
.swiper-container
.swiper-slide
.function-inner
.function-link
a:hover,
.function-body
.swiper-container
.swiper-slide
.function-inner
.function-link
a:active {
    color: var(--base-color-2);
}

.function-body .swiper-container .swiper-slide .col-md-9 {
    border-right: 10px var(--primary-color) solid;
}

.function-body .swiper-container .function-readmore {
    display: none;
}

.function-body .swiper-pagination {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 50px;
    width: 100%;
}

.function-body .swiper-pagination .swiper-pagination-bullet {
    margin: 0 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 0;
    background-color: #09286f;
}

.function-body .swiper-pagination .swiper-pagination-bullet svg {
    position: absolute;
}

.function-body .swiper-pagination .swiper-pagination-bullet svg circle {
    stroke-dasharray: 444;
    opacity: 0;
    display: none;
}

.function-body .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active svg circle {
    display: block;
    opacity: 1;
    animation: 8s ease-in 0s 1 normal forwards running circle;
}

.function-body {
    position: relative;
}

.function-body .swiper-button-prev {
    left: 0;
    outline: none !important;
    box-shadow: none !important;
}

.function-body .swiper-button-next {
    right: 0;
    outline: none !important;
    box-shadow: none !important;
}

.function-body .swiper-button-prev:after,
.function-body .swiper-button-next:after {
    border: 1px solid #fff;
    padding: 20px 15px 20px 20px;
    font-size: 23px;
    font-weight: 600;
    border-radius: 3px;
    background: #fff;
    color: #09286f;
}

@keyframes circle {
    0% {
        stroke-dashoffset: -100;
    }
    100% {
        stroke-dashoffset: 50;
    }
}

.function-body .swiper-container .swiper-slide
.function-inner
.function-readmore {
    display: none;
}

.function-body
.swiper-container
.swiper-slide
.function-inner
.function-slogan {
    display: none;
}

@media screen and (max-width: 1199px) {
    .function-body {
        padding: 0 15px 15px;
    }

    .function-body .swiper-container .swiper-slide .row {
        display: block;
    }

    .function-body .swiper-container .swiper-slide .row [class*="col"] {
        width: 100%;
        max-width: 100%;
    }

    .function-body .swiper-container .swiper-slide .row [class*="col"] .function-inner {
        width: 100%;
    }

    .function-body .swiper-container .swiper-slide .function-inner .function-link a {
        position: static;
        margin-top: 10px;
    }
}

@media screen and (max-width: 767px) {
    .section-function .function-header h2, .function-body .swiper-container .swiper-slide .function-inner .function-title {
        font-size: 24px;
    }

    .function-body .swiper-container .swiper-slide .function-inner {
        padding: 20px 15px 15px;
    }

    .function-body .swiper-button-prev, .function-body .swiper-button-next {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .function-body .container {
        padding: 0;
    }

    .function-body .swiper-container .swiper-slide {
        border-radius: 0;
    }

    .function-body .swiper-container .swiper-slide .row {
        display: block;
    }
}

.section-banner {
    position: relative;
    background-repeat: no-repeat;
    background-position: center bottom;
    width: 100%;
    overflow: hidden;
    -webkit-background-size: cover;
    background-size: cover;
    padding:150px 0 50px;
}
.section-banner .section-heading .title-heading{
    line-height: 1.4;
}
.section-banner .section-heading .title-heading span {
    font-weight: 400;
    font-size: 1.6rem;
}
.section-banner .section-heading .heading-title__text{
    font-weight: 400;
    font-size: 1.15em;
}
.section-banner .section-heading .heading-title__text ul{
    list-style-type: none;
    margin-bottom: 0;
    padding-left: 0;
}
.section-banner .section-heading .heading-title__text ul li{
    padding-left: 30px;
    position: relative;
}
.section-banner .section-heading .heading-title__text ul li + li {
    margin-top: 20px;
}
.section-banner .section-heading .heading-title__text ul li::before{
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    content: "\f00c";
    left: 0;
    top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background-color: var(--base-color-2);
    color: var(--bs-white);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    font-size: 10px;
}

.section-banner .particles {
    z-index: 4;
    position: relative;
}

.section-banner .banner-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -14%;
    left: 0;
    z-index: 2;
    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-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.section-banner .banner-inner h1 {
    font-family: Roboto, sans-serif;
    font-size: 42px;
    margin-bottom: 0.75rem;
}

.section-banner .banner-inner h3,
.section-banner .banner-inner p {
    font-weight: 400;
    font-size: 21px !important;
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.section-banner .banner-inner h3:after,
.section-banner .banner-inner h3:before,
.section-banner .banner-inner p:after,
.section-banner .banner-inner p:before {
    position: absolute;
    content: "";
    width: 15%;
    height: 2px;
    background: #fff;
    top: 60%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.section-banner .banner-inner h3:after,
.section-banner .banner-inner p:after {
    right: -17%;
}

.section-banner .banner-inner h3:before,
.section-banner .banner-inner p:before {
    left: -17%;
}

.section-banner:after {
    position: absolute;
    content: "";
    z-index: 1;
    background: #00000054;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

@media screen and (max-width: 768px) {
    .section-banner {
        height: 100%;
    }

    .section-banner .banner-inner {
        padding: 0 30px;
        top: 0;
    }

    .section-banner .banner-inner h1 {
        font-size: 22px;
        margin-bottom: 1.75rem;
    }

    .section-banner .banner-inner h3,
    .section-banner .banner-inner p {
        font-size: 14px !important;
    }

    .section-banner .banner-inner h3:after,
    .section-banner .banner-inner h3:before,
    .section-banner .banner-inner p:after,
    .section-banner .banner-inner p:before {
        display: none;
    }
    .section-banner .section-heading .title-heading span {
        font-size: 1.3rem;
    }
    .section-banner .section-heading .title-heading {
        font-size: 1.5rem;
    }
    .section-banner .section-heading .heading-title__text {
        font-size: 1.1em;
    }
}

@media screen and (max-width: 480px) {
    .section-banner .banner-inner {
        padding: 0 15px;
    }
}

.section-oto {
    padding-bottom: 40px;
    padding-top: 10px;
    z-index: 1;
    position: relative;
    font-family: "Roboto", Sans-Serif;
}

.section-oto .oto-heading {
    text-align: center;
    width: 100%;
    padding-bottom: 35px;
}

.section-oto .oto-heading h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    text-align: center;
    padding: 30px 0;
    position: relative;
    background: url(../images/landing-page/bg_line.png) center bottom no-repeat;
    margin-bottom: 16px;
}

.section-oto .oto-heading p {
    margin-bottom: 1em;
    font-size: 21px;
    color: #42424e;
}

.section-oto .tab-oto_pane .oto-pane_item {
    height: 88px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 5px;
    border: 2px solid #0000;
    cursor: pointer;
    transition: 0.3s all ease;
}

.section-oto .swiper-slide-active .oto-pane_item.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 4px rgba(0, 0, 0, 5%);
}

.section-oto .tab-oto_pane .oto-pane_item img {
    max-height: 80px;
    max-width: 160px;
    margin: 0 auto;
}

.section-oto .tab-oto_pane {
    position: relative;
}

.section-oto .tab-oto_pane .swiper-button-prev {
    left: -40px;
}

.section-oto .tab-oto_pane .swiper-button-next {
    right: -40px;
}

.section-oto .tab-oto_pane .swiper-button-next:after,
.section-oto .tab-oto_pane .swiper-button-prev:after {
    color: #232323;
    font-size: 22px;
}

.section-oto #tab-oto-readmore .btn {
    padding: 6px 14px;
    color: #fff;
    background: var(--base-color);
    border-radius: 8px;
    transition: 0.4s;
    font-size: 14px;
}

.section-oto #tab-oto-readmore .btn:hover {
    background: #0e1d82;
    transition: 0.4s;
}

.section-oto .template-preview {
    position: relative;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #e2d8d8;
}

.section-oto .template-preview .template-preview_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    content: "";
    background: rgba(255, 255, 255, 0.95);
}

.section-oto .template-preview .template-preview_overlay .preview-overlay_inner {
    top: 80px;
    left: 50%;
    width: 40px;
    height: 40px;
    position: relative;
    -webkit-transform: rotate(45deg) translateX(-50%);
    -ms-transform: rotate(45deg) translateX(-50%);
    transform: rotate(45deg) translateX(-50%);
    -webkit-animation: loading 1s linear infinite;
    animation: loading 1s linear infinite;
}

.section-oto .template-preview .template-preview_overlay .preview-overlay_inner span {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #f00;
    display: block;
    -webkit-animation: rotate 1s linear infinite;
    animation: rotate 1s linear infinite;
}

.section-oto .template-preview .template-preview_overlay .preview-overlay_inner span:nth-child(1) {
    top: 0;
    left: 0;
    background: #f79f7f;
}

.section-oto .template-preview .template-preview_overlay .preview-overlay_inner span:nth-child(2) {
    top: 0;
    right: 0;
    background: #0e22a4;
}

.section-oto .template-preview .template-preview_overlay .preview-overlay_inner span:nth-child(3) {
    bottom: 0;
    left: 0;
    background: #b53046;
}

.section-oto .template-preview .template-preview_overlay .preview-overlay_inner span:nth-child(4) {
    bottom: 0;
    right: 0;
    background: #a3cb38;
}

.section-oto .no-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.section-oto .no-result img {
    display: block;
    margin: 0 auto;
    max-width: 250px;
}

.section-oto .no-result .title {
    padding-top: 0px;
    font-size: 18px;
    color: #de3232;
    font-weight: 700;
    text-transform: uppercase;
}

@-webkit-keyframes loading {
    0% {
        width: 40px;
        height: 40px;
    }
    10% {
        width: 40px;
        height: 40px;
    }
    50% {
        width: 60px;
        height: 60px;
    }
    90% {
        width: 40px;
        height: 40px;
    }
    100% {
        width: 40px;
        height: 40px;
    }
}

@keyframes loading {
    0% {
        width: 40px;
        height: 40px;
    }
    10% {
        width: 40px;
        height: 40px;
    }
    50% {
        width: 60px;
        height: 60px;
    }
    90% {
        width: 40px;
        height: 40px;
    }
    100% {
        width: 40px;
        height: 40px;
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    10% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    60% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    90% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    10% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    60% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    90% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

@media screen and (max-width: 991px) {
    .section-oto .oto-heading {
        padding-bottom: 15px;
    }

    .section-oto .oto-heading h2 {
        font-size: 24px;
    }

    .section-oto .oto-heading p {
        font-size: 16px;
    }

    .section-oto {
        padding-top: 0;
    }
}

@media screen and (max-width: 768px) {
    .section-oto .tab-oto_pane {
        padding: 0 30px;
    }

    .section-oto .tab-oto_pane .oto-pane_item img {
        max-width: 100%;
    }

    .section-oto .tab-oto_pane .swiper-button-next {
        right: -10px;
    }

    .section-oto .tab-oto_pane .swiper-button-prev {
        left: -10px;
    }
}

.single-price.template-price {
    background: #fff;
}

.single-price.template-price.price-background .price-header-title .price-title h1 {
    color: var(--primary-color);
    text-shadow: none;
}

.single-price.template-price.price-background .price-header-title .price-sub-title {
    color: #42424e;
    text-shadow: none;
}

.template-price .custom-container {
    background: transparent;
    box-shadow: none;
}

.template-price .table-price .item {
    border-radius: 0 !important;
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 45%) !important;
    position: relative;
}

.template-price .table-price .item:first-child {
    border-radius: 20px 0 0 20px !important;
}

.template-price .table-price .item:last-child {
    border-radius: 0 20px 20px 0 !important;
}

.template-price .table-price .item .bg .main {
    display: none;
}

.template-price .table-price .item .bg .head,
.template-price .table-price .item .bg .listContent .head_sp,
.template-price .table-price .item .listContent .sub-item.price,
.template-price .table-price .item .listContent .sub-item.btn-modal {
    background: var(--base-color) !important;
}

.template-price .table-price .item .bg .head:before {
    display: none;
}

.template-price .table-price .item .bg .head span {
    color: #fff !important;
    font-size: 22px;
}

.template-price .table-price .item .head_sp {
    height: 22px;
}

.template-price .table-price .item .bg .listContent .head_sp span {
    color: #e9e9e9;
    font-size: 15px;
}

.template-price .table-price .item .listContent .sub-item.price {
    padding-top: 15px;
    height: auto;
}

.template-price .table-price .item .listContent .sub-item.price .price {
    color: #fd9904 !important;
    font-size: 28px;
}

.template-price .table-price .item .listContent .sub-item.price .price_old {
    color: #fff !important;
    font-size: 18px;
    text-decoration: line-through;
    opacity: .75;
    font-weight: 500;
    height: 30px;
}

.template-price .table-price .item .listContent .sub-item.price .date_sale {
    color: #ff5252 !important;
    font-size: 14px;
    height: 22px;
    font-weight: 400;
}

.template-price .table-price .item .listContent .sub-item.btn-modal {
    padding-top: 0;
    height: 55px;
}

.template-price .table-price .item .listContent .sub-item.btn-modal .myBtn {
    border: 0;
    font-size: 15px;
    padding: 10px 35px;
    background: var(--base-color-2);
    text-transform: uppercase;
}

.template-price .table-price .item .listContent .sub-item.btn-modal .myBtn:hover,
.template-price .table-price .item .listContent .sub-item.btn-modal .myBtn:active {
    background: #0089f0;
}

.template-price .table-price .item.attr .bg {
    margin-top: 0 !important;
}

.template-price .table-price .item.attr .bg .title {
    background: var(--base-color);
    text-transform: uppercase;
    color: #fff !important;
    font-weight: 700;
    font-size: 22px;
    height: 163px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 20px;
}

.template-price .table-price .item.attr .bg .title span {
    color: #e9e9e9;
    font-size: 15px;
    text-transform: initial;
    font-weight: 400;
}

.template-price .table-price .sup_main-error {
    background: var(--base-color);
    border-radius: 0;
    height: 35px;
}

.template-price .table-price .sup_main {
    background: var(--base-color) !important;
    border-radius: 0;
    height: 35px;
    color: #ff5252 !important;
    text-shadow: 0 1px 1px rgb(0 0 0 / 20%);
}

.template-price .table-price .item .bg {
    background: #e7e9f5;
}

.template-price .table-price .item .listContent .sub-item {
    border-top: 0;
}

.template-price .table-price .item:not(.attr) .listContent .sub-item:nth-child(even),
.template-price .table-price .item.attr .listContent .sub-item:nth-child(odd) {
    background: #fff;
}

@media screen and (max-width: 768px) {
    .template-price #priceCol1 .sup_main-error,
    .template-price #priceCol3 .sup_main-error {
        display: none;
    }

    .template-price .table-price .item:last-child {
        border-radius: 0 !important;
    }

    .template-price .showListTable {
        background: #fff;
    }

    .template-price .listTable > table.table-striped tbody tr:nth-of-type(even) {
        background: #e7e9f5;
    }

    .template-price .listTable > table.table-striped tbody tr:nth-of-type(odd) {
        background: #fff;
    }
}

@media screen and (max-width: 991px) {
    .b__support .b__support--info .b__support--left ul li img {
        height: 70px !important;
        width: 70px !important;
    }

    .b__support .b__support--info .b__support--left ul li.active img {
        width: 90px !important;
        height: 90px !important;
    }
}

.section-html {
    background: #fff;
    padding: 50px 0;
}

.effect-tet {
    position: relative;
    z-index: 1051;
}

.effect-tet .tet-image_left {
    width: 300px;
    height: 280px;
    top: 0;
    left: 0;
    background: transparent no-repeat top left;
    background-size: contain;
    position: fixed;
    z-index: 1050;
    animation: tet-image_left 5s infinite;
    -webkit-animation: tet-image_left 5s infinite;
    -moz-animation: tet-image_left 5s infinite;
}

.effect-tet .tet-image_right {
    width: 280px;
    height: 120px;
    top: -10px;
    right: 0;
    background: transparent no-repeat top left;
    background-size: contain;
    position: fixed;
    z-index: 1050;
}

@media screen and (max-width: 1500px) {
    .effect-tet .tet-image_left {
        width: 250px;
        height: 250px;
    }

    .effect-tet .tet-image_right {
        width: 320px;
        right: -100px;
    }
}

@media screen and (max-width: 1200px) {
    .effect-tet .tet-image_right,
    .effect-tet .tet-image_left {
        display: none;
    }
}

@-webkit-keyframes tet-image_left {
    0% {
        top: -20px;
        left: -20px;
        -webkit-transform: rotateZ(7deg);
        transform: rotateZ(7deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
    }
    50% {
        top: -20px;
        left: -20px;
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
    }
    100% {
        top: -20px;
        left: -20px;
        -webkit-transform: rotateZ(7deg);
        transform: rotateZ(7deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
    }
}

@keyframes tet-image_left {
    0% {
        top: -20px;
        left: -20px;
        -webkit-transform: rotateZ(7deg);
        transform: rotateZ(7deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
    }
    50% {
        top: -20px;
        left: -20px;
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
    }
    100% {
        top: -20px;
        left: -20px;
        -webkit-transform: rotateZ(7deg);
        transform: rotateZ(7deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
    }
}

.tet-canvas_item {
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
}

.snow-canvas {
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    pointer-events: none;
    z-index: 4;
}

.modal-backdrop {
    z-index: 1049;
}

.section-gap {
    padding: 50px 0;
}

.theme-heading {
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
}

.theme-heading .theme-heading_title {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    text-align: center;
    position: relative;
}

.theme-heading .theme-heading_desc {
    font-size: 16px;
    color: #42424e;
}

.card-theme01 .card-body .card-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25em;
    margin-bottom: 5px;
}

.card-theme01 .card-body .card-text {
    font-size: 1em;
    line-height: 1.6;
}

.card-theme01 .card-body .card-text p:last-child {
    margin-bottom: 0;
}

.section-theme02 {
    background: center center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.section-theme02 .theme-heading .theme-heading_title {
    color: var(--bs-white);
}

.section-theme02 .theme-heading .theme-heading_desc {
    color: var(--bs-white);
    opacity: 0.9;
}

.section-theme02 .section-theme02_circle {
    width: 90%;
    position: relative;
}

.section-theme02 .section-theme02_circle .circle-inner .step-number {
    cursor: pointer;
}

.section-theme02 .section-theme02_circle .circle-inner .step-number .step-bg,
.section-theme02 .section-theme02_circle .circle-inner .step-number .step-text {
    transition: 0.3s all ease;
}

.section-theme02 .section-theme02_circle .circle-inner .step-number.active .step-bg {
    fill: var(--primary-color) !important;
}

.section-theme02 .section-theme02_circle .circle-inner .step-number.active .step-text {
    fill: var(--bs-white) !important;
}

.section-theme02 .section-theme02_circle .circle-text {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.section-theme02 .section-theme02_circle .circle-text .circle-text_item {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: 0.3s all ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    min-width: 250px;
    text-align: center;
}

.section-theme02 .section-theme02_circle .circle-text .circle-text_item.active {
    opacity: 1;
}

.section-theme02 .section-theme02_circle .circle-text .circle-text_item .circle-text_item__title {
    font-size: 1.7em;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2px;
}

.section-theme02 .section-theme02_circle .circle-text .circle-text_item .circle-text_item__desc {
    font-size: 1.1em;
    line-height: 1.5;
    font-weight: 700;
    color: #232323;
    text-transform: uppercase;
}

.section-theme02 .section-theme02_text {
    height: 100%;
    position: relative;
}

.section-theme02 .section-theme02_text .section-theme02_text__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
}

.section-theme02 .section-theme02_text .section-theme02_text__content .content-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
    opacity: 0;
    transition: 0.3s all ease;
    color: var(--bs-white);
}

.section-theme02 .section-theme02_text .section-theme02_text__content .content-item .content-item_title {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-theme02 .section-theme02_text .section-theme02_text__content .content-item .content-item_desc {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-theme02 .section-theme02_text .section-theme02_text__content .content-item .content-item_text {
    padding-left: 20px;
    border-left: 1px solid var(--bs-white);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05em;
    line-height: 1.6;
}

.section-theme02 .section-theme02_text .section-theme02_text__content .content-item .content-item_text p:last-child,
.section-theme02 .section-theme02_text .section-theme02_text__content .content-item .content-item_text ul:last-child {
    margin-bottom: 0;
}

.section-theme02 .section-theme02_text .section-theme02_text__content .content-item .content-item_text ul {
    padding-left: 18px;
}

.section-theme02 .section-theme02_text .section-theme02_text__content .content-item.active {
    opacity: 1;
}

.section-theme03 {
    background: center center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.section-theme03 .preview-image_effect {
    margin-top: 50px;
}

.section-theme03_heading .section-theme03_heading__title {
    font-size: 1.6em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 7px;
}

.section-theme03_heading .section-theme03_heading__desc {
    line-height: 1.6;
    font-size: 1.1em;
}

.section-theme03_preview .preview-inner {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 20px;
    width: 570px;
    height: 570px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-theme03_preview .preview-inner img {
    width: 100%;
    height: auto;
    max-width: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: 0.3s all ease;
}

.section-theme03_preview .preview-inner img.active {
    opacity: 1;
}

.card-theme03 {
    padding: 20px 30px;
    margin-top: 25px;
    flex-direction: row;
    transition: 0.3s all ease;
    box-shadow: 0 1px 3px rgb(122 122 122 / 12%), 0 2px 6px rgb(122 122 122 / 12%);
}

.card-theme03:hover {
    transform: translateY(-4px);
    box-shadow: 0 2px 5px rgb(55 55 55 / 22%), 0 4px 10px rgb(55 55 55 / 22%);
}

.card-theme03 .card-header {
    width: 45px;
    flex-shrink: 0;
    margin-right: 25px;
}

.card-theme03 .card-body .card-title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.card-theme03 .card-body .card-text {
    font-size: 1em;
    line-height: 1.5;
}

.card-theme03 .card-body .card-text p:last-child {
    margin-bottom: 0;
}

.section-theme04 .item_sanpham .item {
    padding: 10px 5px 20px;
    box-shadow: 0 0 5px #0000004d;
    text-align: center;
    border-radius: 8px;
    width: 100%;
/*    display: inline-block;*/
    height: 100%;
}

.section-theme04 .item_sanpham .item img {
    height: 210px;
    width: 100%;
}

.section-theme04 .item_sanpham .item h4 {
    margin: 0;
    padding: 10px 5px 0 5px;
    color: var(--base-color);
}

.section-theme04 .item_sanpham .item h4 > a {
    color: inherit;
}

.section-theme04 .item_sanpham .item h5 {
    margin: 0;
    padding: 5px;
    font-weight: 400;
}

.section-theme04 .item_sanpham .item h5 a {
    color: var(--base-color-2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
}

.section-theme04 .item_sanpham .item .btn_sanpham {
    padding: 6px 14px;
    color: #fff;
    background: var(--base-color);
    border-radius: 8px;
    transition: 0.4s;
    font-size: 14px;
}

.section-theme04 .item_sanpham .item .btn_sanpham:hover {
    background: var(--primary-color);
    transition: 0.4s;
}

.section-theme05 {
    background: center center/cover no-repeat;
}

.section-theme05 .theme-heading .theme-heading_title {
    color: var(--bs-white);
}

.section-theme05 .theme-heading .theme-heading_desc {
    color: var(--bs-white);
    opacity: 0.9;
}

.card-theme05 {
    box-shadow: 2.5px 4.33px 20px 0 rgb(0 37 92 / 15%);
}

.card-theme05 .card-body {
    padding: 25px 15px;
    display: flex;
}

.card-theme05 .card-body .card-icon {
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 10px;
    width: 24px;
    height: 24px;
    position: relative;
    border-radius: 50%;
}

.card-theme05 .card-body .card-icon > span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(
            45deg,
            var(--primary-color) 0%,
            var(--base-color) 20%,
            var(--base-color-2) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-white);
}

.card-theme05 .card-body .card-content .card-title {
    font-size: 1.15em;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.card-theme05 .card-body .card-content .card-text {
    line-height: 1.6;
    font-size: 1em;
}

.card-theme05 .card-body .card-content .card-text > p:last-of-type {
    margin-bottom: 0;
}

.card-theme05 + .card-theme05 {
    margin-top: 25px;
}

.section-theme06 {
    background: #f6f6f8;
}

.card-theme06 {
    flex-direction: row;
    transition: 0.3s all ease;
    box-shadow: 0 1px 3px rgb(122 122 122 / 12%), 0 2px 6px rgb(122 122 122 / 12%);
}

.card-theme06:hover {
    transform: translateY(-4px);
    box-shadow: 0 2px 5px rgb(55 55 55 / 22%), 0 4px 10px rgb(55 55 55 / 22%);
}

.card-theme06 .card-header {
    width: 45px;
    flex-shrink: 0;
    margin-right: 25px;
}

.card-theme06 .card-body .card-title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.card-theme06 .card-body .card-text {
    font-size: 1em;
    line-height: 1.5;
}

.card-theme06 .card-body .card-text p:last-child {
    margin-bottom: 0;
}

.card-theme06 .card-body .card-link {
    text-align: right;
    margin-top: 10px;
}

.card-theme06 .card-body .card-link > a {
    display: inline-block;
    background: var(--base-color);
    color: #fff;
    padding: 5px 12px 7px;
    font-size: 0.9em;
    border-radius: 5px;
    font-weight: 500;
    transition: 0.4s;
}

.card-theme06 .card-body .card-link > a:hover {
    background: var(--primary-color);
}

.tab-theme {
    border-bottom: 0;
    justify-content: center;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.tab-theme .nav-item .nav-link {
    border-radius: 0;
    margin-bottom: 0;
    border: 1px solid #bdc3c7;
    border-right: 0;
    color: #34383d;
    transition: 0.3s all ease;
    white-space: nowrap;
}

.tab-theme .nav-item .nav-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.tab-theme .nav-item:first-child .nav-link {
    border-radius: 4px 0 0 4px;
}

.tab-theme .nav-item:last-child .nav-link {
    border-radius: 0 4px 4px 0;
    border-right: 1px solid #bdc3c7;
}

.btn-theme_readmore {
    padding: 6px 14px;
    color: var(--bs-white);
    background: var(--base-color);
    border-radius: 8px;
    transition: 0.3s all ease;
    font-size: 0.95em;
}

.btn-theme_readmore:hover {
    background: var(--primary-color);
    color: var(--bs-white);
}

.button-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.button-pagination .swiper-pagination-bullet {
    margin: 0 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #fafafa;
    opacity: 0.8;
    transition: 0.3s all ease;
}

.button-pagination .swiper-pagination-bullet:hover {
    opacity: 1;
}

.button-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
}

.section-theme07 {
    background-color: #f6f6f8;
}

.section-theme07 .section-theme07_inner {
    background-color: #f6f6f8;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.card-theme07 {
    box-shadow: 0 1px 3px rgb(122 122 122 / 12%), 0 2px 6px rgb(122 122 122 / 12%);
}

.card-theme07 .card-body {
    padding: 75px;
}

.card-theme07 .card-body .collapse-item .collapse-item_header {
    font-size: 1.2em;
    font-weight: 700;
    color: #232323;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.card-theme07 .card-body .collapse-item .collapse-item_header i {
    transition: 0.3s all ease;
    font-size: 1.1em;
}

.card-theme07 .card-body .collapse-item .collapse-item_header[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.card-theme07 .card-body .collapse-item .collapse-item_body {
    font-size: 1.05em;
    color: #605f5f;
    line-height: 1.6;
}

.card-theme07 .card-body .collapse-item .collapse-item_body p:last-child {
    margin-bottom: 0;
}

.card-theme07 .card-body .collapse-item + .collapse-item {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #e9e9e9;
}

.collapse-theme {
    transition: 0.3s all ease;
    box-shadow: rgba(0, 37, 87, 0.2) 0rem 0.4609rem 2.30445rem 0rem;
}

.collapse-theme .collapse-theme_link {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 20px;
    transition: 0.3s all ease;
    color: var(--bs-white);
    border-radius: 5px;
    font-weight: 500;
    background-color: var(--base-color);
}

.collapse-theme .collapse-theme_link > i {
    margin-left: 6px;
    transition: 0.3s all ease;
}

.collapse-theme .collapse-theme_link[aria-expanded="true"] {
    background: var(--base-color);
}

.collapse-theme .collapse-theme_link[aria-expanded="true"] > i {
    transform: rotate(180deg);
}

.collapse-theme .collapse-theme_item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 10px 18px;
    border: 1px solid #0054a614;
    cursor: pointer;
    color: #34383d;
    transition: 0.3s all ease;
    font-weight: 500;
}

.collapse-theme .collapse-theme_item + .collapse-theme_item {
    border-top: 0;
}

@media screen and (max-width: 991px) {
    .theme-heading .theme-heading_title {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .theme-heading .theme-heading_desc {
        font-size: 15px;
    }

    .card-theme01 {
        text-align: center;
    }

    .section-theme02 .section-theme02_circle {
        width: 100%;
    }

    .section-theme02 .section-theme02_text .section-theme02_text__content, .section-theme02 .section-theme02_text .section-theme02_text__content .content-item {
        position: absolute;
        top: 0;
        transform: translate(-50%, 0);
    }

    .section-theme02 .section-theme02_circle .circle-text .circle-text_item {
        text-align: center;
        max-width: 350px;
        min-width: 250px;
    }

    .section-theme03 .theme-heading {
        margin-bottom: 0;
    }

    .section-theme03_heading {
        text-align: center;
    }

    .section-theme03_heading .section-theme03_heading__title {
        font-size: 18px;
    }

    .section-theme03_heading .section-theme03_heading__desc {
        font-size: 1em;
    }

    .section-theme03_preview {
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .section-theme03_preview .preview-inner {
        width: 100%;
        height: auto;
        padding-bottom: 75%;
    }

    .section-theme03_preview .preview-inner img {
        width: 100%;
        height: 100%;
        max-width: 450px;
        object-fit: contain;
    }

    .card-theme03,
    .card-theme06 {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
    }

    .card-theme03 .card-header,
    .card-theme06 .card-header {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .card-theme03 .card-body .card-title,
    .card-theme06 .card-body .card-title {
        font-size: 1.1em;
    }

    .card-theme05 .card-body .card-icon {
        margin-top: 2px;
    }

    .card-theme06 .card-body {
        display: flex;
        flex-direction: column;
    }

    .card-theme06 .card-body .card-text {
        margin-bottom: 10px;
    }

    .card-theme06 .card-body .card-link {
        text-align: center;
        margin-top: auto;
    }

    .card-theme07 .card-body {
        padding: 30px;
    }

    .card-theme07 .card-body .collapse-item .collapse-item_header {
        font-size: 1.1em;
    }

    .card-theme07 .card-body .collapse-item .collapse-item_body {
        font-size: 1em;
    }
}

@media screen and (max-width: 767px) {
    .section-theme02 .section-theme02_circle .circle-text .circle-text_item {
        text-align: center;
        max-width: 250px;
        min-width: 200px;
    }
}

@media screen and (max-width: 525px) {
    .section-theme02 .section-theme02_circle .circle-text .circle-text_item {
        text-align: center;
        max-width: 150px;
        min-width: 140px;
    }

    .section-theme02 .section-theme02_circle .circle-text .circle-text_item .circle-text_item__title {
        font-size: 1.3em;
    }

    .section-theme02 .section-theme02_circle .circle-text .circle-text_item .circle-text_item__desc {
        font-size: 1em;
    }
}

/*================================= Gi�6�3i thi�6�3u ================*/
.section-50 {
    padding: 50px 0px;
}

.section-30 {
    padding: 30px 0px;
}

.section-html-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    height: 700px;
}

.section-html-banner::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #122147c2;
}

.section-html-banner .section-heading-banner {
    position: relative;
    z-index: 3;
    color: var(--bs-white);
    padding: 300px 0 200px;
}

.section-heading-banner .title {
    padding-bottom: 20px;
    font-size: 21px;
}

.section-heading-banner .heading h1 {
    text-transform: capitalize;
}

.section-intro {
    position: relative;
    margin-top: -260px;
    z-index: 3;
}

.section-intro-inner {
    background-color: var(--bs-white);
    box-shadow: 0 6px 40px 0 rgb(0 55 96 / 10%);
    border-top-left-radius: 80px;
    border-bottom-right-radius: 80px;
}

.section-intro-inner .column-left-intro {
    padding: 25px;
}

.section-intro-inner .title-intro {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    padding-bottom: 15px;
}

.section-intro-inner .text-intro > p {
    margin-bottom: 0;
}

.section-intro-inner .column-right-intro {
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-bottom-right-radius: 80px;
    height: 100%;
}

.section-intro-inner .column-right-intro::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-bottom-right-radius: 80px;
    background: linear-gradient(
            90deg,
            rgb(254 255 255) 0%,
            rgb(36 60 130 / 89%) 100%
    );
}

.section-intro-inner .column-right-intro img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-top: -60px;
    z-index: 6;
    position: relative;
}

@media screen and (max-width: 1023px) {
    .section-intro-inner .column-right-intro img {
        width: 100%;
        height: 110%;
        object-fit: cover;
        margin-top: -60px;

        z-index: 6;
        position: relative;
    }
}

@media screen and (max-width: 991px) {
    .section-intro-inner .column-right-intro img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-top: 0;

        z-index: 6;
        position: relative;
    }
}

@media screen and (max-width: 767px) {
    .column-right-intro {
        display: none !important;
    }
}

/*================== section-heading================ */
.section-heading {
    padding-bottom: 30px;
}

.section-heading .heading {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 5px;
}

.section-heading .title {
    font-size: 21px;
    color: #42424e;
}

@media screen and (max-width: 767px) {
    .section-intro-inner .column-right-intro {
        display: none;
    }

    .section-heading .heading {
        font-size: 24px !important;
    }

    .section-heading .title {
        font-size: 16px !important;
    }
}

@media screen and (max-width: 576px) {
    .section-heading-banner .heading h1 {
        text-transform: capitalize;
        font-size: 1.7rem;
    }

    .section-intro-inner .title-intro {
        font-size: 27px;
    }
}

/*===================== .section-history =================*/

.section-history {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: inherit;
}

.section-history .image-logo img {
    height: auto;
    width: 250px;
}

.section-history-inner {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.section-history-inner .item-history {
    width: 20%;
    text-align: center;
    padding: 10px;
    transition: 0.3s ease-in-out;
}

.section-history-inner .item-history .history-text {
    border-radius: 10px;
    padding: 10px;
    transition: 0.3s ease-in-out;
}

.section-history-inner .item-history:hover .history-text {
    background-color: #e9f2fa;
}

.section-history-inner .item-history .history-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.section-history-inner .item-history .history-icon {
    padding-bottom: 35px;
    position: relative;
    font-size: 12px;
    transition: all 0.3s ease-in-out;
}

.section-history-inner .item-history:hover .history-icon i {
    background-color: var(--primary-color);
    border-radius: 50%;
}

.section-history-inner .item-history .history-icon::before {
    position: absolute;
    content: "";
    right: -9px;
    width: 45%;
    top: 0;
    transform: translateY(6px);
    border: 1px dashed var(--primary-color);
}

.section-history-inner .item-history .history-icon::after {
    position: absolute;
    content: "";
    left: -9px;
    width: 45%;
    border: 1px dashed var(--primary-color);
    top: 0;
    transform: translateY(6px);
}

@media screen and (max-width: 991px) {
    .section-history-inner .item-history .history-icon {
        display: none;
    }

    .section-history-inner {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        width: 100%;
    }

    .section-history-inner .item-history {
        width: 100%;
        text-align: left;
        padding: 10px;
        transition: 0.3s ease-in-out;
    }

    .section-history-inner .item-history .history-text {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .section-history-inner .item-history .history-text h4 {
        margin-right: 10px;
        border-radius: 50%;
        background-color: #243c82;
        color: var(--bs-white);
        width: 60px;
        font-size: 16px;
        height: 60px;
        padding: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .section-heading .heading {
        font-size: 20px !important;
    }

    .section-history .image-logo img {
        height: auto;
        width: 190px;
    }
}

/*================== section-mission================ */
.section-mission {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: inherit;
}

.section-mission .column-left img {
    border-radius: 10px;
}

.img-mission {
    width: 100%;
    height: auto;
}

.section-mission-html {
    padding-bottom: 20px;
}

.section-mission-html .text ul {
    list-style-type: none;
    padding-left: 5px;
}

.section-mission-html .text ul > li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 28px;
}

.section-mission-html .text ul > li::before {
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    content: "\f058";
    top: 0;
    left: 0;
    color: var(--primary-color);
    transform: translateY(2px);
}

.section-text-mission {
    background-color: var(--bs-white);
    box-shadow: 10px 25px 56px #bdc9e7;
    border-radius: 20px;
    margin-left: -60px;
    margin-top: 12px;
    padding: 35px;
}

.section-text-mission-2 {
    background-color: var(--bs-white);
    box-shadow: 10px 25px 56px #bdc9e7;
    border-radius: 20px;
    margin-top: 12px;
    padding: 30px;
}

.section-mission-html-one .column-left {
    z-index: 2;
}

.section-mission-html-one .column-right {
    margin-top: 35px;
    margin-left: -60px;
    border-radius: 20px;
    z-index: 1;
    height: 100%;
}

.section-mission-html-one .column-right img {
    border-radius: 10px;
}

.section-text-mission .title,
.section-text-mission-2 .title {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 10px;
    padding-bottom: 12px;
    position: relative;
}

.section-text-mission .title::before,
.section-text-mission-2 .title::before {
    position: absolute;
    content: "";
    bottom: 0;
    width: 100px;
    height: 1px;
    background-color: var(--primary-color);
}

.section-text-mission .text > p,
.section-text-mission-2 .text > p {
    font-weight: bold;
}

@media screen and (max-width: 991px) {
    .section-text-mission {
        margin-left: 0;
    }

    .section-text-mission-2 {
        margin-right: 0;
    }

    .section-mission-html-one .column-right {
        margin-left: 0;
    }
}

/* ===================section-ecosystem===================== */
.section-ecosystem {
    background-color: #89c4f7b8;
    position: relative;
    background-repeat: repeat;
    background-position: top;
    background-size: contain;
    z-index: 1;

}

.section-ecosystem-inner {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;

    position: relative;
    z-index: 1;
}

/* .section-ecosystem::before{
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #75b1e5 100%); */

/* background: linear-gradient(to top,#95bad408,#84bbe4, #f9fcffba); */
/* background:linear-gradient(to top,#95bad408 -3%,#84bbe4 -27%, #f9fcffba 96%);
} */

.section-ecosystem-inner img {
    max-width: 100%;
    height: auto;

}

/*================= section-field-reason ====================*/
.text-blue {
    color: var(--primary-color);
}

.section-field-reason {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: inherit;
}

.section-box-reason {
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.section-box-reason .box-image {
    margin-right: 20px;
    width: 200px;
    height: 130px;
    flex-shrink: 0;

}

.section-box-reason .box-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.section-box-reason .box-title {
    font-weight: 700;
    padding-bottom: 10px;
    font-size: 18px;
}

@media screen and (max-width: 576px) {
    .section-box-reason {
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
    }

    .section-box-reason .box-image {
        margin-bottom: 10px;
        width: 100%;
        height: auto;
        margin-right: 0;
    }
}

/* ===============section-service-process ========*/
.section-service-process {
    background-color: #f8fafc;
}

.service-process-inner .column-right-service {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;

    height: 100%;
    display: flex;
    align-items: center;
}


@keyframes floating {
    from {
        transform: translate(0, 0px);
    }
    65% {
        transform: translate(0, 15px);
    }
    to {
        transform: translate(0, -0px);
    }
}

.service-process-inner .column-right-service img {
    max-width: 100%;
    height: auto;
}

.card-service-process {
    border: 0;
    text-align: center;
    padding: 30px;
    position: relative;
    align-items: center;
    margin-bottom: 10px;
    box-shadow: 0 6px 40px 0 rgb(0 55 96 / 10%);
    border-radius: 10px;
    padding-bottom: 20px;
}

.card-service-process .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    text-align: center;
    position: absolute;
    top: -20px;
    font-size: 18px;
    transition: var(--transition);
}

.card-service-process:hover .icon {

    background-color: var(--primary-hover);
}

.card-service-process .body-card {
    padding: 20px;
}

.card-service-process .body-card .title {
    color: var(--primary-color);
    font-weight: 700;
    margin: 10px 0px 12px;
    font-size: 1rem;
}

.card-service-process .body-card .text {
    font-size: 1rem;
}

.mt-70-card {
    margin-top: -70px;
}

.mt-70 {
    margin-top: 70px;
}

@media (max-width: 1023px) {
    .service-process-inner .column-right-service {
        text-align: center;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .mt-70 {
        margin-top: 0px;
    }

    .mt-70-card {
        margin-top: 0px;
    }
}

/*======================= section-question=================== */
.section-question-inner {
    border-radius: 10px;
}

.section-question-inner .collapse-item_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0px;
    font-weight: 700;
    font-size: 18px;
    position: relative;
}

.section-question-inner .collapse-item {
    position: relative;
}

.section-question-inner .collapse-item:not(:last-child)::before {
    position: absolute;
    content: "";
    left: 0;
    width: 100%;
    bottom: 0;
    border-bottom: 1px solid rgb(231, 229, 229);
}

.section-question-inner .collapse-item_body {
    padding: 5px 0px;
    font-size: 16px;
}

/*================= section-core-value ======================*/
#cloud {
    padding: 42px;
    width: 430px;
    height: 215px;
    background: #f2f9fe;
    background: linear-gradient(top, #f2f9fe 5%, #d6f0fd 100%);
    background: -webkit-linear-gradient(top, #f2f9fe 5%, #d6f0fd 100%);
    background: -moz-linear-gradient(top, #f2f9fe 5%, #d6f0fd 100%);
    background: -ms-linear-gradient(top, #f2f9fe 5%, #d6f0fd 100%);
    background: -o-linear-gradient(top, #f2f9fe 5%, #d6f0fd 100%);
    border-radius: 100px;
    -webkit-border-radius: 136px;
    -moz-border-radius: 100px;
    position: relative;
}

#cloud:after,
#cloud:before {
    content: "";

    position: absolute;

    background: #f2f9fe;

    z-index: -1;
}

#cloud:after {
    width: 172px;
    height: 163px;
    top: -50px;
    left: 69px;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
}

#cloud:before {
    width: 160px;
    height: 136px;
    top: -70px;
    right: 73px;
    border-radius: 200px;
    -webkit-border-radius: 200px;
    -moz-border-radius: 200px;
}

.section-box-core-value .image-mobile {
    display: none;
}

@media (max-width: 767px) {
    .section-box-core-value .image-desktop {
        display: none;
    }

    .section-box-core-value .image-mobile {
        display: block;
    }
}

.image-box-inner {
    margin: 0 auto;
    text-align: center;
}

.section-box-core-value {
    margin-bottom: 20px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-box-core-value .image-box {
    border-radius: 50%;
    background-color: var(--primary-color);

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 200px;
    height: 200px;

    margin: 0 auto;
}

.section-box-core-value .image-box img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.section-box-core-value .title {
    font-weight: 700;
    padding-top: 10px;
    font-size: 18px;
}

.img-line {
    margin-left: -25px;
    width: 932px;
    height: 100px;
}

.img-line-2 {
    margin-left: -300px;
    width: 380px;
    height: 100px;
}

.img-line img,
.img-line-2 img {
    width: 360px;
    height: 180px;
}

#cloud > ul {
    list-style-type: none;
    padding-left: 0;
}

#cloud > ul > li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
}

#cloud > ul > li::before {
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    content: "\f058";
    top: 0;
    left: 0;
    color: var(--primary-color);
    transform: translateY(2px);
}

@media (max-width: 1023px) {
    .img-line img,
    .img-line-2 img {
        width: 210px;
        height: 155px;
    }

    .img-line-2 {
        margin-left: -170px;
    }
}

@media (max-width: 991px) {
    .img-line-2,
    .img-line {
        display: none;
    }

    div#cloud {
        margin: 0 auto;
    }

    .image-box-inner {
        margin-top: -35px;
        z-index: 3;
    }
}

@media (max-width: 576px) {
    #cloud {
        padding: 35px;
        width: 360px;
    }

    #cloud:before {
        width: 130px;
        height: 130px;
        top: -48px;
        right: 29px;
    }

    #cloud:after {
        width: 155px;
        height: 163px;
        top: -50px;
        left: 69px;
    }
}

.accordion-theme .accordion-item > button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #111111;
    font-weight: 500;
    text-decoration: none;
    padding: 16px 0;
    font-size: 1.2rem;
    position: relative;
    border: 0;
    outline: none;
    box-shadow: none;
    background: transparent;
}

.accordion-theme .accordion-item > button:before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    position: absolute;
    transition: .3s all ease-in-out;
    content: "\f067";
    right: 2px;
    top: 10px;
}

.accordion-theme .accordion-item > button[aria-expanded=true]:before {
    content: "\f068";
}

.accordion-theme .accordion-item > button:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #d1d5db;
}

.accordion-theme .accordion-item .accordion-inner {
    padding: 0.75rem 0.75rem 0.75rem 0;
    line-height: 1.5;
}

@media screen and (max-width: 991px) {
    .accordion-theme .accordion-item > button {
        font-size: 1.15rem;
    }

    .accordion-theme .accordion-item .accordion-inner {
        padding: 0.25rem 0.25rem 0.25rem 0;
        line-height: 1.5;
    }
}

.category-article_item {
    overflow: hidden;
    position: relative;
    height: 100%;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    box-shadow: rgb(0 37 87 / 10%) 0rem 0.4609rem 2.30445rem 0rem;
}

.category-article_item .card-header {
    width: 100%;
    position: relative;
    padding-bottom: 66.6667% !important;
    overflow: hidden;
}

.category-article_item .card-header img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: var(--transition);
}

.category-article_item .card-body {
    color: var(--dark-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px;
}

.category-article_item .card-body .card-title {
    margin-bottom: 20px;
    min-height: 50px;
}

.category-article_item .card-body .card-title a {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 25px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.category-article_item .card-body .card-desc {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    font-size: .95rem;
    color: var(--dark-color);
    line-height: 25px;
    margin-bottom: 20px;
}

.category-article_item .card-body p:last-child {
    margin-bottom: 0;
}

.category-article_item .card-body .card-meta {
    margin-top: auto;
}

.category-article_item .card-body .card-meta .card-meta_inner {
    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;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9e9e9;
}

.category-article_item .card-body .card-meta .card-meta_inner .card-meta_post {
    font-size: .9rem;
    font-weight: 600;
    color: rgba(33, 37, 41, .9);
    text-transform: uppercase;
}

.category-article_item .card-body .card-meta .card-meta_inner .card-meta_link > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--primary-color);
    font-weight: 700;
    font-size: .9rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.category-article_item .card-body .card-meta .card-meta_inner .card-meta_link > a > i {
    margin-left: 7px;
    margin-top: 2px;
}

.category-article_item:hover,
.category-article_item:active {
    -webkit-box-shadow: rgb(50 50 93 / 15%) 0 10px 15px -5px, rgb(0 0 0 / 30%) 0 8px 16px -8px;
    box-shadow: rgb(50 50 93 / 15%) 0 10px 15px -5px, rgb(0 0 0 / 30%) 0 8px 16px -8px;
    z-index: 2;
}

.category-article_item:hover .card-header img,
.category-article_item:active .card-header img {
    opacity: .9;
}

.category-article_item .card-body .card-title > a:hover,
.category-article_item .card-body .card-title > a:active {
    color: var(--primary-color);
}

.category-article_item .card-body .card-meta .card-meta_inner .card-meta_link > a:hover,
.category-article_item .card-body .card-meta .card-meta_inner .card-meta_link > a:active {
    color: var(--primary-hover);
}

.card-blog {
    margin-top: 20px;
    margin-bottom: 20px;
}

.card-blog .card-header {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.card-blog .card-blog__image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    pointer-events: none;
    border: 8px solid rgba(255, 255, 255, .5);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: 1;
    opacity: 0;
}

.card-blog .card-blog__image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    transition: height .4s ease-in-out;
    background-color: rgba(0, 0, 0, .2);
}

.card-blog:hover .card-blog__image::before {
    height: 100%;
}

.card-blog:hover .card-blog__image::after {
    opacity: 1;
}

.card-blog:hover img {
    transform: scale(1.1);
}

.card-blog .date {
    left: 10px;
    top: -10px;
    padding: 5px 7px;
    font-size: 10px;
}

.card-blog:hover .date {
    background-color: var(--theme-color) !important;
}

.card-blog .date .day {
    font-size: 20px;
}

.card-blog__title,
.card-blog:hover .card-blog__title,
.card-blog__title:hover {
    color: var(--bs-gray-700);
    font-size: 1.15em;

}

.card-blog__link {
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1em;
    letter-spacing: -.3px;
}

.card-blog__link:hover {
    color: var(--primary-color);
}

.card-blog__link i {
    font-size: 12px;
}

.card-blog__link svg {
    width: 50px;
    height: 50px;
}

.card-blog__link svg > g {
    fill: var(--base-color);
}

.card-blog__link svg > g > path {
    fill: var(--base-color);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.card-blog:hover .card-blog__link svg > g > path {
    animation: border-360 5s linear forwards;
}

@media screen and (max-width: 991px) {
    .category-article_item .card-body .card-title {
        margin-bottom: 10px;
    }

    .category-article_item .card-body .card-title a {
        font-size: 1.05rem;
    }
}

.theme-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.theme-pagination .pagination {
    margin-bottom: 0;
}

.theme-pagination .pagination > li {
    margin-right: 10px;
}

.theme-pagination .pagination > li > a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #CCCCCC;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    color: #CCCCCC;
    border-radius: 50%;
    transition: var(--transition);
    outline: none;
    box-shadow: none;
}

.theme-pagination .pagination > li:hover > a {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.theme-pagination .pagination > li.pageactive > a,
.theme-pagination .pagination > li.active > a {
    color: var(--bs-white);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.theme-pagination .pagination > li:last-child {
    margin-right: 0;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    border-radius: 50% !important;
}

@media screen and (max-width: 991px) {
    .theme-pagination .pagination > li > a {
        padding: 2px 10px 4px;
        font-size: 0.9rem;
        line-height: 24px;
    }
}

.detailContent img {
    max-width: 100% !important;
    height: auto !important;
}

.detailContent .iframe-video {
    width: 100%;
}

.detailContent * {
    font-size: 16px;
}

.detailContent table {
    max-width: 100% !important;
}

.detailContent strong,
.detailContent b {
    font-weight: 700 !important;
}

.section-core-value .card-image img {
    object-fit: contain;
}

.section-core-value .swiper-slide.swiper-slide-next {

    transform: translateY(-30px);
}

.card-core-value {
    background-color: #fff;
    box-shadow: 0 21px 51px rgb(3 31 114 / 11%);
    padding: 20px;
    border-radius: 10px;
}

.card-core-value .card-title {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
    text-align: center;
}

.card-core-value .card-text {
    text-align: justify;
}

.section-core-value .swiper-container {
    padding: 50px !important;
}

@media (max-width: 991px) {
    .section-core-value .swiper-slide.swiper-slide-next {
        transform: unset !important;
    }

    .section-core-value .swiper-container {
        padding: 35px 35px 45px 35px !important;
    }
}


@media screen and (min-width: 768px) and (max-width: 1199px) {

    .section-banner {
        height: 100%;
    }

    .section-banner .banner-inner {
        padding: 0 15px;
        top: 0;
    }

    .b__support .b__support--info .b__support--left {
        max-width: 30%;
        flex-basis: 30%;
    }

    .b__support .b__support--info .b__support--right {
        max-width: 70%;
        flex-basis: 70%;
    }

    .b__support .b__support--info .b__support--right .table-support-func thead tr th,
    .b__support .b__support--info .b__support--right .table-support-func tbody tr td {
        padding: 12px 15px;
    }

    .b__support .block-head {
        width: 100%;
    }
}


/*==============================
            section-map
=====================================*/

.section-map .title-heading {
    max-width: unset;
    color: var(--bs-gray-800);
}

.section-map .sub-heading {
    max-width: unset;
    font-size: 18px;
}

.object-fit-cover {
    object-fit: cover;
}

.section-map {
    background: #f0f7ff;
}

.section-map__home .col:nth-child(even) .card-number {
    margin-top: 50px;
}

.section-map__logo {
    max-height: 600px;
    max-width: 470px;
    width: 100%;
    overflow: hidden;
}

.section-map__logo .logo-item {
    height: 130px;
    padding: 30px;
}

.section-map__logo .logo-left {
    width: 47%;
    animation: scroll-y 35s linear infinite;
}

.section-map__logo .logo-right {
    width: 47%;
    transform: translateY(-100%);
    animation: scroll-y-2 35s linear infinite;
}

@keyframes scroll-y {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-180%);
    }
}

@keyframes scroll-y-2 {
    0% {
        transform: translateY(-180%);
    }
    100% {
        transform: translateY(0);
    }
}

.card-number {
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 24px 32px 0 rgba(63, 71, 99, .05);
    padding: 20px 0;
    text-align: center;
    transition: all .5s;
}

.card-number__icon {
    font-size: 35px;
}

.card-number__total {
    font-weight: 700;
    font-size: 24px;
}

.map-image__wrap,
.map-image__img {
    width: 760px;
    height: 620px;
}

.card-number__title {
    font-size: 16px;
}

.image-pc {
    display: block;
}

.image-mobile {
    display: none;
}

.line-1 {
    bottom: 109px;
    left: 269px;
}

.line-2 {
    bottom: 81px;
    left: 297px;
    transform: rotate(-43deg);
}

.line-3 {
    bottom: 88px;
    left: 338px;
}

.line-4 {
    bottom: 103px;
    left: 341px;
    transform: rotate(12deg);
}

.line-5 {
    bottom: 115px;
    left: 338px;
    transform: rotate(-61deg);
}

.line-6 {
    top: 150px;
    left: 204px;
}

.line-7 {
    top: 239px;
    left: 269px;
}

.line-8 {
    top: 322px;
    left: 328px;
}

.line-9 {
    top: 182px;
    left: 293px;
}

.line-image__wrap .circle {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #ffffff;
    border-radius: 100px;
    z-index: 2;
}

.line-image-1 .circle {
    bottom: 110px;
    left: 330px;
}

.line-image-5 .circle {
    bottom: 148px;
    left: 374px;
}

.line-image-6 .circle {
    bottom: 486px;
    left: 333px;
}

.line-image-7 .circle {
    bottom: 400px;
    left: 333px;
}

.line-image-8 .circle {
    left: 417px;
    bottom: 326px;
}

.line-image-9 .circle {
    bottom: 442px;
    left: 312px;
}

.line-image-1 .circle::after,
.line-image-5 .circle::after,
.line-image-6 .circle::after,
.line-image-7 .circle::after,
.line-image-8 .circle::after,
.line-image-9 .circle::after {
    position: absolute;
    content: '';
    left: -3px;
    top: -3px;
    right: -3px;
    bottom: -3px;
    border: 1px solid #8aebfb;
    border-radius: 50%;
    animation: Ani 2s infinite;
    z-index: 3;

}


@keyframes Ani {
    0% {
        box-shadow: 0 0 0 var(--secondary-color);
        border: 1px solid var(--secondary-color);
        transform: scale(0)
    }

    70% {
        box-shadow: 0 0 30px var(--bs-white);
        border: 1px solid var(--bs-white);
        transform: scale(1)
    }

    100% {
        box-shadow: 0 0 40px #8aebfb;
        border: 0 solid #8aebfb;
        transform: scale(2)
    }
}

.line-image__partner {
    position: absolute;
    background-color: var(--bs-white);
    border-radius: 10px;
    padding: 10px;
    width: 335px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    box-shadow: 0 24px 32px 0 rgba(63, 71, 99, .05);
    z-index: 5;
    border: 1px solid #2f7bc630;
    transition: all 0.35s cubic-bezier(.97, 0, .21, 1);
    transform: rotate(10deg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.line-image-1 .line-image__partner {
    bottom: 128px;
    left: 165px;
}

.line-image-5 .line-image__partner {
    bottom: 162px;
    left: 210px;
}

.line-image-8 .line-image__partner {
    bottom: 325px;
    left: 252px;
}

.line-image-6 .line-image__partner {
    bottom: 381px;
    left: 167px;
}

.line-image-9 .line-image__partner {
    bottom: 321px;
    left: 149px;
}

.line-image-7 .line-image__partner {
    bottom: 291px;
    left: 168px;
}

.line-image__partner::after {
    position: absolute;
    content: '';
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    z-index: 1;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--bs-white);
}

.line-image-6 .line-image__partner::after,
.line-image-7 .line-image__partner::after,
.line-image-9 .line-image__partner::after {
    position: absolute;
    content: '';
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--bs-white);
    border-top: unset;
}

.line-image__partner::before {
    position: absolute;
    content: '';
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 100px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.line-image-9 .line-image__partner::before {
    top: -29%;
}

.line-image-7 .line-image__partner::before {
    top: -21%;
}

.line-image-6 .line-image__partner::before {
    top: -21%;
}

.line-image__partner .item {
    width: 100px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.35s ease-in;
    transition-delay: 0.1s;
}

.line-image__partner .item a:hover {
    color: var(--secondary-color);
}

.line-image__partner .item .item-image {
    width: 90px;
    height: 30px;
    display: block;
}

.line-image__wrap {
    cursor: pointer;
}

.line-image__wrap:hover .line-image__partner {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: rotate(0deg);
    z-index: 3;
}

.line-image__wrap:hover .line-image__partner::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


@media (max-width: 1200px) {
    .map-image__wrap {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section-map .title-heading {
        font-size: 22px;
    }

    .section-map .sub-heading {
        font-size: 16px;
    }

    .card-number__total {
        font-size: 20px;
    }

    .map-image__wrap,
    .map-image__img {
        width: 350px;
        height: 480px;
    }

    .image-pc {
        display: none;
    }

    .image-mobile {
        display: block;
    }

    .line-1 {
        bottom: 82px;
        left: 99px;
        width: 45px;
    }

    .line-2 {
        bottom: 61px;
        left: 123px;
        transform: rotate(-43deg);
        width: 27px;
    }

    .line-3 {
        bottom: 70px;
        left: 155px;
        width: 16px;
    }

    .line-4 {
        bottom: 91px;
        left: 150px;
        transform: rotate(-21deg);
        width: 28px;
    }

    .line-5 {
        bottom: 79px;
        left: 155px;
        transform: rotate(-32deg);
        width: 20px;
    }

    .line-6 {
        top: 113px;
        left: 40px;
        height: 282px;
    }

    .line-7 {
        top: 187px;
        left: 92px;
        height: 205px;
    }

    .line-8 {
        top: 248px;
        left: 134px;
        height: 144px;
    }

    .line-9 {
        top: 142px;
        left: 89px;
        height: 234px;
    }

    .line-image__wrap .circle::before {
        position: absolute;
        content: '';
        width: 25px;
        height: 25px;
        left: -10px;
        top: -10px;
        border-radius: 50%;
        background-color: transparent;

    }

    .line-image-1 .circle {
        bottom: 86px;
        left: 147px;
    }

    .line-image-5 .circle {
        bottom: 116px;
        left: 181px;
    }

    .line-image-6 .circle {
        bottom: 379px;
        left: 149px;
    }

    .line-image-7 .circle {
        bottom: 314px;
        left: 149px;
    }

    .line-image-8 .circle {
        left: 214px;
        bottom: 257px;
    }

    .line-image-9 .circle {
        bottom: 349px;
        left: 132px;
    }

    .line-image__partner {
        width: 300px;
        padding: 8px;
    }

    .line-image__partner .item {
        width: 90px;
        font-size: 10px;
    }

    .line-image-1 .line-image__partner {
        bottom: 105px;
        left: 0px;
    }

    .line-image-5 .line-image__partner {
        bottom: 129px;
        left: 35px;
    }

    .line-image-8 .line-image__partner {
        bottom: 257px;
        left: 67px;
    }

    .line-image-7 .line-image__partner {
        bottom: 212px;
        left: 2px;
    }

    .line-image-9 .line-image__partner {
        bottom: 239px;
        left: -15px;
    }

    .line-image-6 .line-image__partner {
        bottom: 283px;
        left: 1px;
    }

}

@media (max-width: 376px) {
    .line-image__partner {
        width: 290px;
        padding: 6px;
    }

    .line-image__partner .item {
        width: 85px;
        font-size: 11px;
    }

    .line-image-1 .line-image__partner {
        bottom: 104px;
        left: 4px;
    }

    .line-image-5 .line-image__partner {
        left: 38px;
    }

    .line-image-8 .line-image__partner {
        bottom: 258px;
        left: 71px;
    }

    .line-image-7 .line-image__partner {
        bottom: 218px;
        left: 6px;
    }

    .line-image-9 .line-image__partner {
        bottom: 242px;
        left: -10px;
    }

    .line-image-6 .line-image__partner {
        bottom: 288px;
        left: 5px;
    }
}

@media (max-width: 358px) {
    .line-image__partner {
        display: none !important;
    }
}

.page-product .product-information {
    padding: 50px 0;
}

.page-product .product-detail {
    padding: 30px 0;
    background: #f0f7ff;
}

.page-product .product-title {
    padding-bottom: 0;
    margin-bottom: 30px;
    background: transparent;
    text-align: left;
    text-transform: initial;
}

.page-product .product-sub {
    font-weight: 700;
    font-size: 1.3em;
    color: #292929;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px dashed #c2c2c2;
}

.page-product .product-sub_2 {
    font-weight: 700;
    font-size: 1.15em;
    color: #151515;
    margin-bottom: 8px;
}

.page-product .product-sub_2 > p {
    margin-bottom: 0;
    display: inline;
}

.page-product .product-wrapper {
    border-radius: 12px;
    background: var(--bs-white);
    padding: 16px;
}

.page-product .product-images {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.page-product .product-images .product-images_slider {
    display: flex;
    gap: 12px;
    height: 550px;
}

.page-product .product-images .product-images_slider .swiper-slide {
    width: 100% !important;
}

.page-product .product-images .product-images_slider .product-slider_left {
    width: 100%;
    position: relative;
}

.page-product .product-images .product-images_slider .product-slider_right {
    width: 14%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.page-product .product-images .product-images_slider .product-slider_right .swiper-container {
    width: 100%;
}

.page-product .product-images .product-images_slider .slider-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.page-product .product-images .product-images_slider .slider-item .ratio {
    position: relative;
    width: 100%;
}

.page-product .product-images .product-images_slider .slider-item .ratio > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.page-product .product-images .product-images_slider .product-slider_left .slider-item .ratio:before {
    display: block;
    padding-top: 550px;
    content: "";
}

.page-product .product-images .product-images_slider .product-slider_left .slider-item .ratio > img {
    border-radius: 8px;
    transition: all 2s ease-in-out;
}

.page-product .product-images .product-images_slider .product-slider_left .slider-item:hover .ratio > img {
    transform: translate(0, calc(-100% + 550px));
    transition: all 6s ease-in-out;
}

.page-product .product-images .product-images_slider .product-slider_right .slider-item {
    border-radius: 8px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.page-product .product-images .product-images_slider .product-slider_right .slider-item .ratio:before {
    display: block;
    padding-top: calc(550px / 10);
    content: "";
}

.page-product .product-images .product-images_slider .product-slider_right .swiper-slide-thumb-active .slider-item {
    border-color: var(--primary-color);
}

.page-product .product-images .product-images_slider .product-slider_right .swiper-slide:not(.swiper-slide-thumb-active) .slider-item:hover {
    transform: scale(.9);
}

.page-product .product-images_slider [class*=swiper-button] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 36px;
    width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-white);
    transition: var(--transition);
    color: var(--primary-color);
    font-size: 1.45em;
    border: 0;
    z-index: 2;
    outline: none;
}

.page-product .product-images_slider .swiper-button_prev {
    left: 16px;
}

.page-product .product-images_slider .swiper-button_next {
    right: 16px;
}

.page-product .product-images_slider [class*=swiper-button]:not(.swiper-button-disabled):hover {
    color: var(--bs-white);
    background: var(--primary-color);
}

.page-product .product-images_slider [class*=swiper-button].swiper-button-disabled {
    opacity: .45;
    cursor: not-allowed;
}

.page-product .product-images .product-images_buttons {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.page-product .product-images .product-images_buttons .btn {
    background: var(--primary-color);
    padding: 10px 20px;
    border-radius: 8px;
    text-transform: uppercase;
    color: var(--bs-white);
    font-weight: 700;
    transition: var(--transition);
    outline: none;
    box-shadow: none;
    font-size: 14px;
    gap: 5px;
}

.page-product .product-images .product-images_buttons .btn:hover {
    background: var(--base-color);
}

.page-product .product-images .product-images_buttons .btn-2 {
    background: #fd9904;
}

.page-product .product-images .product-images_buttons .btn-2:hover {
    background: #d37f01;
}

.page-product .product-list li {
    display: flex;
    gap: 8px;
    color: #5f5f5f;
    font-size: 0.95em;
    line-height: 1.3;
}

.page-product .product-list li .product-list_title p:last-of-type {
    margin-bottom: 0;
}

.page-product .product-list li .product-list_title p b,
.page-product .product-list li .product-list_title p strong {
    color: #121212;
    font-weight: 700;
}

.page-product .product-list li + li {
    margin-top: 12px;
}

.page-product .product-list:not(.product-list_2) li:before {
    display: block;
    flex-shrink: 0;
    content: "\f00c";
    transform: translateY(1px);
    font-family: "Font Awesome 5 Pro";
    color: var(--primary-color);
}

.page-product .product-list .product-list_remove {
    background: transparent;
    padding: 0;
    border: 0;
    height: auto;
    font-size: 1.15em;
    color: #b60a0a;
    transition: var(--transition);
    cursor: pointer;
}

.page-product .product-list .product-list_remove:hover {
    color: #ff0000;
}

.page-product .product-list .product-list_price {
    font-size: 1.1em;
    font-weight: 700;
    color: #292929;
    align-self: center;
    flex-shrink: 0;
    padding-left: 20px;
    margin-left: auto;
}

.page-product .product-inner + .product-inner {
    padding-top: 16px;
    margin-top: 24px;
    border-top: 1px dashed #c2c2c2;
}

.page-product .product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    line-height: 1.3;
}

.page-product .product-price .product-price_text {
    font-weight: 700;
    font-size: 1.225em;
    color: #282828;
}

.page-product .product-price .product-price_value {
    font-weight: 700;
    font-size: 1.35em;
    color: #ff0000;
}

.page-product .product-inner .product-button {
    margin-top: 12px;
    text-align: center;
}

.page-product .product-inner .product-button .btn {
    background: var(--primary-color);
    padding: 10px 20px;
    border-radius: 8px;
    width: 100%;
    text-transform: uppercase;
    color: var(--bs-white);
    font-weight: 700;
    transition: var(--transition);
    outline: none;
    box-shadow: none;
    font-size: 14px;
}

.page-product .product-inner .product-button .btn:hover {
    background: var(--base-color);
}

.page-product .product-inner .product-button .btn-2 {
    background: #fd9904;
}

.page-product .product-inner .product-button .btn-2:hover {
    background: #d37f01;
}

.page-product .product-inner .product-text {
    font-size: .925em;
    color: #777575;
    text-align: center;
    font-style: italic;
    margin-top: 6px;
}

.page-product .product-options {
    margin-top: 30px;
}

.page-product .product-options .product-wrapper + .product-wrapper {
    margin-top: 24px;
}

.page-product .product-options .product-options_list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.page-product .product-options .product-options_list .product-option_item .product-option_label {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 30px;
    margin-bottom: 0;
    user-select: none;
    cursor: pointer;
}

.page-product .product-options .product-options_list .product-option_item .product-option_text {
    color: #4d4d4d;
    font-size: 1em;
    line-height: 1.3;
}

.page-product .product-options .product-options_list .product-option_item .product-option_text p {
    display: inline;
}

.page-product .product-options .product-options_list .product-option_item .product-option_text p:last-of-type {
    margin-bottom: 0;
}

.page-product .product-options .product-options_list .product-option_item .product-option_text b,
.page-product .product-options .product-options_list .product-option_item .product-option_text strong {
    color: #121212;
    font-weight: 700;
}

.page-product .product-options .product-options_list .product-option_item .product-option_price {
    margin-left: auto;
    font-size: 1.1em;
    font-weight: 700;
    color: #292929;
    align-self: center;
    flex-shrink: 0;
    padding-left: 20px;
}

.page-product .product-options .product-options_list .product-option_item .product-option_radio {
    display: none;
}

.page-product .product-options .product-options_list .product-option_item .product-option_label:before {
    width: 20px;
    height: 20px;
    border: 1px solid #b1b1b1;
    border-radius: 50%;
    background: #fff;
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    transition: var(--transition);
}

.page-product .product-options .product-options_list .product-option_item .product-option_label:after {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.page-product .product-options .product-options_list .product-option_item .product-option_radio:checked + .product-option_label:before {
    border-color: var(--primary-color);
}

.page-product .product-options .product-options_list .product-option_item .product-option_radio:checked + .product-option_label:after {
    opacity: 1;
    visibility: visible;
}

.page-product .btn-theme_readmore {
    padding: 0;
    background: transparent;
    outline: none;
    box-shadow: none;
    color: #000;
    font-weight: 700;
    font-size: 1.05em;
}

.tooltip .tooltip-inner p:last-of-type {
    margin-bottom: 0;
}

@media screen and (max-width: 991px) {
    .page-product .product-title {
        padding-top: 0;
        margin-bottom: 24px;
        font-size: 20px !important;
    }
}

@media screen and (max-width: 768px) {
    .page-product .product-wrapper {
        padding: 12px;
    }

    .page-product .product-images .product-images_slider {
        height: auto;
    }

    .page-product .product-images .product-images_slider .product-slider_left .slider-item .ratio:before {
        padding-top: 40vh;
    }

    .page-product .product-images .product-images_slider .product-slider_right {
        display: none;
    }

    .page-product .product-images .product-images_buttons .btn {
        font-size: .925em;
        padding: 8px 15px;
    }

    .page-product .product-sub {
        font-size: 1.15em;
    }

    .page-product .product-sub_2 {
        font-size: 1.075em;
    }

    .page-product .product-options .product-options_list .product-option_item .product-option_text {
        font-size: 0.95em;
    }

    .page-product .product-options .product-options_list .product-option_item .product-option_price {
        font-size: 1em;
    }

    .page-product .product-wrapper {
        margin-top: 30px;
    }
}

.page-hosting .header-desc {
    color: #121212;
    font-size: 1.15em;
    font-weight: 500;
    text-align: center;
}

.page-hosting .hosting-content {
    padding: 3rem 0;
    background: #f0f7ff;
}

.page-hosting .hosting-content .hosting-list ul,
.page-hosting .hosting-content .hosting-list ol {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 0;
    list-style: none
}

.page-hosting .hosting-content .hosting-list p:last-of-type,
.page-hosting .hosting-content .hosting-list ul:last-of-type,
.page-hosting .hosting-content .hosting-list ol:last-of-type {
    margin-bottom: 0;
}

.page-hosting .hosting-content .hosting-list ul li,
.page-hosting .hosting-content .hosting-list ol li {
    width: calc(100% / 3 - 16.7px);
    color: #121212;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    position: relative;
    padding-left: 24px;
}

.page-hosting .hosting-content .hosting-list ul li:before,
.page-hosting .hosting-content .hosting-list ol li:before {
    position: absolute;
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    color: #28a745;
    font-size: 1em;
    top: 2px;
    left: 0;
    font-weight: 500;
}

.page-hosting .hosting-description {
    padding: 3rem 0;
    background: #f0f7ff;
    color: #121212;
    font-size: 14px;
}

.page-hosting .hosting-description p:last-of-type,
.page-hosting .hosting-description ul:last-of-type,
.page-hosting .hosting-description ol:last-of-type {
    margin-bottom: 0;
}

.page-hosting .hosting-description .fa-info-circle {
    color: #8c8c8c;
    transition: 0.3s all ease-in-out;
}

.page-hosting .hosting-description .fa-info-circle:hover {
    color: #454545;
}

.page-hosting .hosting-table {
    padding: 3rem 0;
}

.page-hosting .hosting-table .hosting-card {
    border-radius: 12px;
    padding: 24px 10px;
    height: 100%;
    border-color: #d5d5d5;
}

.page-hosting .hosting-table .hosting-card .card-body {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.page-hosting .hosting-table .hosting-card .card-body .card-header {
    min-height: 105px;
}

.page-hosting .hosting-table .hosting-card .card-body .card-title {
    font-size: 1.6em;
    color: #000;
    font-weight: 700;
}

.page-hosting .hosting-table .hosting-card .card-body .card-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.page-hosting .hosting-table .hosting-card .card-body .card-price .card-price_month {
    font-size: 1.45em;
    color: #000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    gap: 7px;
}

.page-hosting .hosting-table .hosting-card .card-body .card-price .card-price_month b,
.page-hosting .hosting-table .hosting-card .card-body .card-price .card-price_month strong {
    font-weight: 700;
}

.page-hosting .hosting-table .hosting-card .card-body .card-price .card-price_month small {
    line-height: 1.1;
    transform: translateY(-4px);
}

.page-hosting .hosting-table .hosting-card .card-body .card-price .card-price_year {
    font-weight: 700;
    color: #232323
}

.page-hosting .hosting-table .hosting-card .card-body .card-button {
    background: var(--primary-color);
    padding: 9px 20px;
    border-radius: 4px;
    width: 100%;
    text-transform: uppercase;
    color: var(--bs-white);
    font-weight: 700;
    transition: var(--transition);
    outline: none;
    box-shadow: none;
    border: 0;
    margin: 24px 0 16px;
    font-size: 1em;
}

.page-hosting .hosting-table .hosting-card .card-body .card-button:hover {
    background: var(--base-color);
}

.page-hosting .hosting-table .hosting-card .card-body .card-desc ul {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    padding-left: 0;
    list-style: none;
}

.page-hosting .hosting-table .hosting-card .card-body .card-desc ul li {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 14px 12px;
    color: #121212;
    font-weight: 500;
    font-size: 14px;
    background: #F2F2F2;
    border-radius: 2px;
}

.page-hosting .hosting-table .hosting-card .card-body .card-desc ul li:nth-of-type(even) {
    background: #fff;
}

.page-hosting .hosting-table .hosting-card .card-body .card-desc ul li .card-desc_title .fa-info-circle {
    color: #8c8c8c;
    transition: 0.3s all ease-in-out;
}

.page-hosting .hosting-table .hosting-card .card-body .card-desc ul li .card-desc_title .fa-info-circle:hover {
    color: #454545;
}

.page-hosting .hosting-table .hosting-card .card-body .card-desc ul li .card-desc_value {
    text-align: right;
}

.page-hosting .hosting-table .hosting-card .card-body .card-desc ul li .card-desc_value .card-desc_star {
    color: #b6b6b6;
}

.page-hosting .hosting-table .hosting-card .card-body .card-desc ul li .card-desc_value .card-desc_star .is-value {
    color: #ff8100;
}

.tooltipHosting .tooltip-inner {
    min-width: 20rem;
}

.tooltipHosting .tooltip-inner p {
    margin-bottom: 10px;
}

.tooltipHosting .tooltip-inner p:last-of-type {
    margin-bottom: 0;
}

.section-why-2 .section-why__inner .image-phone {
    position: absolute;
    top: 50%;
    margin: 0 auto;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
}

.section-why-2 .section-why__inner .image-phone img {
    animation: circleRotate 7s infinite;
    -webkit-animation: circleRotate 7s infinite;
    -webkit-animation-duration: 7s;
    animation-duration: 7s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes circleRotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes circleRotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.section-why-2 .ring-circle {
    width: 380px;
    height: 380px;
}

.section-why-2 .ring-circle img {
    transform-origin: center;
    animation: animation-logo 5s infinite linear;
}

@keyframes animation-logo {
    100% {
        transform: rotate(360deg);
    }
}

.section-why-2 .why-box-item {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    font-size: 16px;
}

.section-why-2 .why-box-item + .why-box-item {
    margin-top: 50px;
}

.section-why-2 .why-box-item .head {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-why-2 .why-box-item .title {
    font-size: 1.15em;
    font-weight: 600;
    width: 100%;
    color: var(--bs-gray-700);
    margin-bottom: 0;
}

.section-why-2 .why-box-item .icon {
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--bs-white);
    width: 55px;
    height: 55px;
    border-radius: 5px;
    font-size: 22px;
}

.section-why-2 .why-flex_left .why-box-item {
    text-align: right;
}

.section-why-2 .why-flex_right .why-box-item .head {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

.section-why-2 .why-flex_left .why-box-item:nth-child(2) {
    padding-right: 40px;
}

.section-why-2 .why-flex_right .why-box-item:nth-child(2) {
    padding-left: 40px;
}

@media (max-width: 1200px) {
    .section-why-2 .ring-circle {
        width: 300px;
        height: 300px;
    }

}

@media (max-width: 1024px) {
    .section-why-2 .why-box-item .icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .section-why-2 .why-box-item .title {
        font-size: 1.1em;
    }
}

@media (max-width: 992px) {
    .section-why-2 .section-why__inner .content .why-flex_left,
    .section-why-2 .section-why__inner .content .why-flex_right {
        width: 100%;
        padding: 0;
    }

    .section-why-2 .section-why__inner .content {
        flex-direction: column;
        gap: 20px;
    }

    .section-why-2 .why-flex_left .why-box-item {
        text-align: left;
        align-items: flex-start;

    }

    .section-why-2 .why-flex_left .why-box-item .head {
        flex-direction: row-reverse;
    }

    .section-why-2 .why-box-item + .why-box-item {
        margin-top: 30px;
    }

    .section-why-2 .why-box-item {
        font-size: 15px;
        gap: 8px;
    }

    .section-why-2 .why-flex_left .why-box-item:nth-child(2) {
        padding-right: 0;
    }

    .section-why-2 .why-flex_right .why-box-item:nth-child(2) {
        padding-left: 0;
    }

    .section-why-2 .ring-circle {
        width: 280px;
        height: 280px;
    }
}

@media screen and (max-width: 768px) {

    .page-hosting .header-desc {
        font-size: 1.075em;
    }

    .page-hosting .hosting-content .hosting-list ul, .page-hosting .hosting-content .hosting-list ol {
        gap: 10px;
    }

    .page-hosting .hosting-content .hosting-list ul li, .page-hosting .hosting-content .hosting-list ol li {
        width: calc(50% - 5px);
    }

    .page-hosting .hosting-table .hosting-card .card-body .card-title {
        font-size: 1.45em;
    }

    .page-hosting .hosting-table .hosting-card .card-body .card-price .card-price_month {
        font-size: 1.3em;
    }

    .page-hosting .hosting-table .hosting-card .card-body .card-price .card-price_month small {
        transform: translateY(-4px);
    }

    .page-hosting .hosting-table .hosting-card .card-body .card-header {
        min-height: unset;
    }
}

@media screen and (max-width: 575px) {
    .page-hosting .hosting-content .hosting-list ul li, .page-hosting .hosting-content .hosting-list ol li {
        width: 100%;
    }

    .section-why-2 .ring-circle {
        display: none !important;
    }
}

.bg-image-none {
    background: none !important;
}

.domain-wrapper .domain-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
}

.domain-wrapper .domain-header .header-title {
    margin-bottom: 0;
    width: 60%;
    text-align: left;
}

.domain-wrapper .domain-header .header-title .main-title {
    padding: 0;
    margin-bottom: 0;
    text-align: left;
}

.domain-wrapper .domain-header .domain-registers {
    gap: 8px;
    display: flex;
    align-items: center;
    width: 40%;
}

.domain-wrapper .domain-header .domain-registers span {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: #121212;
}

.domain-wrapper .domain-table tbody {
    position: relative;
}

.domain-wrapper .domain-table tbody:before {
    display: block;
    content: "";
    border-radius: 5px;
    border: 1px solid #dee2e6;
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.domain-wrapper .domain-table .table td {
    padding: 20px 16px;
    font-size: 0.95rem;
    border: none;
    color: #000;
}

.domain-wrapper .domain-table .table tr:nth-of-type(even) {
    background: rgba(0, 0, 0, .025);
}

.domain-wrapper .domain-table .table tr:nth-of-type(even) td {
    background: transparent !important;
}

.domain-wrapper .domain-table .table td .domain-table_title {
    font-weight: 700;
    font-size: 1.1rem;
}

.domain-wrapper .domain-table .table td .domain-table_price .domain-table_price__current {
    font-weight: 700;
    color: #000;
}

@media screen and (max-width: 991px) {
    .domain-wrapper .domain-header .header-title .main-title {
        font-size: 16px !important;
        width: 150px;
    }

    .domain-wrapper .domain-header .domain-registers span {
        min-width: 150px;
        font-size: 15px;
        white-space: nowrap;
    }

    .domain-wrapper .domain-table .table td {
        min-width: 150px;
    }

    .domain-wrapper .domain-table .table td:first-of-type {
        min-width: 210px;
    }

    .domain-wrapper .domain-table .table td .domain-table_title {
        font-size: 1rem;
    }
}

.main-service {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.service-item {
    border: 1px solid var(--base-color);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    position: relative;
    text-align: center;
    margin-bottom: 75px;
    min-height: 271px;
    -webkit-transition: 0.3s all ease-in;
    -moz-transition: 0.3s all ease-in;
    -ms-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.service-item .service-logo {
    position: absolute;
    top: -23%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background: var(--bs-white);
    line-height: 95px;
}

.service-item .service-logo img {
    height: 4rem;
    vertical-align: middle;
    max-width: 100%;
    margin: 0 auto;
}

.service-item .service-content {
    padding: 50px 15px 15px;
}

.service-item .service-content .service-title a {
    font-family: Roboto, sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 30px;
    display: block;
    text-transform: capitalize;
}

.service-item .service-content .service-desc {
    font-size: 15px;
    color: #42424e;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
    .service-item:hover,
    .service-item:focus,
    .service-item:active {
        -ms-transform: translateY(-3px);
        transform: translateY(-3px);
        box-shadow: 0 0 0 1px rgb(187 222 251 / 15%),
        0 1px 3px 0 rgb(187 222 251 / 20%), 0 3px 3px -1px rgb(187 222 251 / 15%),
        0 20px 30px -3px rgb(187 222 251 / 15%);
    }
}

@media screen and (max-width: 1199px) {
    .service-item {
        min-height: 285px;
    }

    .service-item .service-logo {
        top: -19%;
    }

    .service-item .service-logo img {
        height: auto;
    }
}

@media screen and (max-width: 991px) {
    .service-item {
        min-height: 285px;
    }

    .service-item .service-logo {
        top: -19%;
    }

    .service-item .service-logo img {
        height: auto;
    }
}

@media screen and (max-width: 767px) {
    .service-item {
        min-height: 250px;
    }

    .service-item .service-logo img {
        height: 4rem;
    }

    .service-item .service-content {
        padding: 50px 10px 10px;
    }

    .service-item .service-content .service-title a,
    .service-item .service-content .service-desc {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 575px) {
    .service-item {
        min-height: 200px;
    }

    .service-item .service-logo img {
        height: auto;
    }
}

.section-box__bg {
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5;
}

.section-box .heading-title__group .heading-title {
    font-size: 2.6em;
}


.section-box .card-project__title {
    font-size: 1.6em;
    line-height: inherit;
}

.section-box .card-project__text {
    font-size: 14px;
}

.section-box .card-project__item {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 15px;
    margin-top: 15px;
}

.section-box .card-project__item .title {
    font-size: 14px;
    margin-bottom: 3px;
}

.section-box .swiper-pagination-bullet {
    background: var(--bs-white);
    opacity: 1;
    margin: 0 9px !important;
    position: relative;
    width: 9px;
    height: 9px;
}

.section-box .swiper-pagination-bullet::before {
    position: absolute;
    content: '';
    top: -6px;
    left: -6px;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    border-radius: 50%;
    border: 1px solid var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-default);
}

.section-box .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    opacity: 1;
}

/*==================thiết kế web===============*/
.section-solution {
    background: #fffcf5;
}

.section-solution .card-solution {
    box-shadow: 0 10px 24px 0 rgba(194, 136, 0, .14);
    border: 1px solid rgba(0, 0, 0, 0);
}

.section-solution .card-solution .card-title {
    font-size: 1.15em;
    font-weight: 700;
    line-height: 1.4;
}

.section-solution .card-solution .link {
    font-weight: 700;
    font-size: 16px;
}

.section-solution .card-solution:hover {
    border: 1px solid #dac4ac;
    background-color: #fffbf2 !important;
}

.section-solution .card-solution:hover .card-title {
    color: var(--primary-color);
}

.section-solution .card-solution:hover .link {
    text-decoration: underline;
}

.section-solution .card-solution:hover .link i {
    transform: translateX(3px);
}

@media (min-width: 992px) {
    .section-box__inner {
        padding: 30px;
        border-radius: 15px;
        z-index: -1;
        background: rgba(255, 255, 255, 0.15);
        stroke-width: 1px;
        border: 1px solid rgba(255, 255, 255, 0.40);
        backdrop-filter: blur(2px);
    }
}

@media (max-width: 1200px) {
    .section-box .heading-title__group .heading-title {
        font-size: 2.4em;
    }

    .tab-theme {
        justify-content: flex-start;
    }
}

@media (max-width: 1024px) {
    .section-box .heading-title__group .heading-title {
        font-size: 2em;
    }
}

@media (max-width: 991px) {
    .card-project {
        padding: 15px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.15);
        stroke-width: 1px;
        border: 1px solid rgba(255, 255, 255, 0.40);
        backdrop-filter: blur(2px);
    }

    .section-box .card-project__title {
        font-size: 1.3em;
    }

    .section-box .card-project .link-circle {
        font-size: 14px;
    }

    .section-solution .card-solution .card-title {
        font-size: 1.05em;
    }

    .section-solution .card-solution .link {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .section-box .heading-title__group .heading-title {
        font-size: 1.8em;
    }

    .section-box .card-project__item {
        padding-top: 12px;
        margin-top: 12px;
    }

    .section-box .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
    }

    .section-map__logo .logo-item {
        height: 120px;
    }
}

@media (max-width: 370px) {
    .category-article_item .card-body .card-meta .card-meta_inner .card-meta_link > a {
        display: none !important;
    }
}
