header {
    background-color: var(--bs-white);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform .3s ease-in, opacity .5s ease-in;
    will-change: transform, opacity;
    box-shadow: 0 20px 20px rgb(155 166 175 / 13%);
}

.header-top {
    font-size: 14px;
    padding: 5px 0;
    overflow-x: auto;
    background: linear-gradient(to right, var(--primary-color), var(--primary-color-70));
}

.header-top a {
    color: var(--bs-gray-100);
}

.header-top .header-text a + a {
    padding-left: 10px;
    margin-left: 10px;
}

.header-top .header-text a:not(:first-child):before {
    position: absolute;
    content: '';
    left: 0;
    width: 1px;
    height: 10px;
    display: block;
    background-color: var(--bs-white);
    top: 50%;
    transform: translateY(-50%);
}

.header-logo {
    width: 200px;
}

.header-navigation ul > li > a,
.header-navigation ul > li > button {
    font-weight: 700;
    color: var(--bs-gray-800);
    line-height: 1.6;
    padding: 18px 0;
    display: inline-flex;
    background-color: transparent;
    border: 1px solid transparent;
    letter-spacing: .3px;
    white-space: nowrap;
}

.header-navigation ul > li > a > span.inner,
.header-navigation ul > li > button > span.inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.header-navigation ul > li > a span.normal,
.header-navigation ul > li > a span.hover,
.header-navigation ul > li > button span.normal,
.header-navigation ul > li > button span.hover {
    transition: transform .3s ease-in-out;
    display: block;
}

.header-navigation ul > li > a span.hover,
.header-navigation ul > li > button span.hover {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(calc(100% + 15px));
}

.header-navigation ul > li:hover > a,
.header-navigation ul > li:hover > button {
    color: var(--primary-color) !important;
}

.header-navigation ul > li:hover > a span.normal,
.header-navigation ul > li:hover > button span.normal {
    transform: translateY(-110%);
}

.header-navigation ul > li:hover > a span.hover,
.header-navigation ul > li:hover > button span.hover {
    transform: translateY(0);
}


.header-navigation ul > li > ul,
.header-navigation ul > li > ul > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background-color: rgb(var(--primary-rgb), 0.95);
    box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    z-index: 10;
    padding: 8px;
    transition: var(--transition-default);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

}

.header-navigation ul > li > ul > li > ul {
    left: 100%;
    top: 0;
}

.header-navigation ul > li:hover > ul,
.header-navigation ul > li > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header-navigation ul > li > ul > li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.header-navigation ul > li > ul > li > a {
    padding: 10px 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--bs-white);
}

.header-navigation ul > li > ul > li > a::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    border: 1px solid #ffffff4a;
    background-color: transparent;
    display: block;
    transition: var(--transition-default);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header-navigation ul > li > ul > li:hover > a::before {
    opacity: 1;
    visibility: visible;
}

.header-navigation ul > li > ul > li:hover > a {
    margin-left: 3px;
    color: var(--bs-white) !important;
}

.header-bars {
    width: 32px;
    height: 28px;
}

.header-bars svg {
    width: 32px;
    height: 28px;
}

.header-bars:hover svg .one,
.header-bars:hover svg .four {
    width: 0;
}

.header-bars:hover svg .two {
    transform: translate3d(-5px, -15px, 0);
    width: 90px;
}

.header-bars:hover svg .three {
    transform: translate3d(-30px, 15px, 0);
    width: 90px;
}

.header-language > a {
    width: 28px;
    height: 28px;
    border: 2px solid var(--bs-white);
    opacity: 0.8;
}

.header-language > a.active {
    opacity: 1;
}

.is-scroll.header {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    animation: header-scroll 0.6s forwards;
}

@keyframes header-scroll {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.is-scroll header {
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
}

.is-scroll .header-bottom__wrap {
    padding: 5px 0 !important;
}

.is-scroll .header-logo {
    width: 180px;
}

.tool-search {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 5;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.is-search .header-search .fa-search:before {
    content: "\f00d";
}

.is-search .tool-search {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.header .tool-search .tool-search_inner {
    border-radius: 0 0 5px 5px;
    padding: 10px 15px;
    background-color: var(--primary-color);
    -webkit-box-shadow: 0 4px 8px rgb(97 97 97 / 14%), 0 8px 16px rgb(97 97 97 / 14%);
    box-shadow: 0 4px 8px rgb(97 97 97 / 14%), 0 8px 16px rgb(97 97 97 / 14%);
}

.header .tool-search .tool-search_inner input {
    position: relative;
    width: 100%;
    height: 44px;
    padding-right: 115px;
    font-size: 15px;
}

.header .tool-search .tool-search_inner input::-webkit-input-placeholder,
.header .tool-search .tool-search_inner input::-moz-placeholder,
.header .tool-search .tool-search_inner input:-ms-input-placeholder,
.header .tool-search .tool-search_inner input::-ms-input-placeholder {
    color: var(--bs-white);
    opacity: .9;
}

.header .tool-search .tool-search_inner input::placeholder {
    color: var(--bs-white);
    opacity: .9;
}


.tool-search .tool-search_inner button {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 10px;
    min-width: 100px;
    height: 34px;
    padding: 5px 20px;
    font-size: 13px;
    border-radius: 3px;
    background-color: var(--bs-white);
    color: var(--primary-color);
    -webkit-box-shadow: rgba(var(--bs-white-rgb), 0.16) 0 10px 36px 0, rgba(var(--bs-white-rgb), 0.06) 0 0 0 1px !important;
    box-shadow: rgba(var(--bs-white-rgb), 0.16) 0 10px 36px 0, rgba(var(--bs-white-rgb), 0.06) 0 0 0 1px !important;
}

.tool-search .tool-search_inner button:hover {
    opacity: 0.8;
}

.swiper-pagination {
    font-size: 1.5em;
    color: #e3e0e0f0;
    z-index: 1;
}

.swiper-pagination .swiper-pagination-current {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.6em;
}

.section-hero::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 1;
    background: linear-gradient(0deg, rgb(37 39 41 / 0%), rgb(243 250 255));
}

.section-hero img {
    -webkit-transition: all 8s ease-out 0s;
    -moz-transition: all 8s ease-out 0s;
    -ms-transition: all 8s ease-out 0s;
    -o-transition: all 8s ease-out 0s;
    transition: all 8s ease-out 0s;
    transform: scale(1.1);
}

.section-hero .hero-content {
    padding: 50px 50px 65px 50px;
    background: linear-gradient(to bottom, rgb(37 39 41 / 18%), rgb(26 39 49 / 68%));
}

.section-hero .hero-content_subtitle,
.section-hero .hero-content_title,
.section-hero .hero-content_desc,
.section-hero .button-theme {
    transform: translateX(30px);
    transition: all 0.8s ease-in-out;
    opacity: 0;
}

.section-hero .hero-content_subtitle {
    font-family: var(--font-heading);
    font-size: 1em;
    transition-delay: 0.1s;
}

.section-hero .hero-content_title {
    font-size: 1.9em;
    letter-spacing: -.5px;
    transition-delay: 0.6s;
}

.section-hero .hero-content_desc {
    transform: translateX(30);
    transition-delay: 0.8s;
}

.section-hero .button-theme {
    transition-delay: 1s;
    font-weight: 600;
}

.section-hero .button-theme .icon-svg {
    width: 50px;
    height: 50px;
}

.section-hero.pseudo-after::after {
    top: unset;
    height: 35px;
    bottom: -1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fffffffc);
}

.section-hero .swiper-pagination {
    bottom: 45px;
}

.section-hero .swiper-pagination .swiper-pagination-bullet {
    background: var(--bs-white) !important;
    opacity: 0.6;
}

.section-hero .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    opacity: 1;
}

.section-hero .btn-prev,
.section-hero .btn-next {
    width: 40px;
    height: 40px;
    background-color: rgb(var(--primary-color-70-rgb), 0.6);
    opacity: 0;
}

.section-hero .btn-prev svg path,
.section-hero .btn-next svg path {
    fill: var(--bs-white);
    transition: var(--transition-default);
}

.section-hero:hover .btn-prev,
.section-hero:hover .btn-next {
    opacity: 1;
}

.section-hero .btn-prev:hover,
.section-hero .btn-next:hover {
    background-color: rgb(var(--primary-color-70-rgb), 1);
}

.section-hero .swiper-slide-active img {
    transform: scale(1);
}

.section-hero .swiper-slide-active .hero-content_subtitle,
.section-hero .swiper-slide-active .hero-content_title,
.section-hero .swiper-slide-active .hero-content_desc,
.section-hero .swiper-slide-active .button-theme {
    transform: translateX(0);
    opacity: 1;
}

.detailContent img {
    max-width: 100% !important;
    height: auto !important;
    margin-bottom: 10px;
}

.detailContent iframe {
    max-width: 100% !important;
}

.detailContent strong {
    font-weight: 700 !important;
}

.detailContent h1,
.detailContent h2,
.detailContent h3,
.detailContent h4,
.detailContent h5,
.detailContent h6,
.detailContent strong,
.detailContent b {
    font-weight: 700 !important;
    margin-bottom: 1rem;
}

.detailContent h1 {
    font-size: 1.5em;
}

.detailContent h2 {
    font-size: 1.45em;
}

.detailContent h3 {
    font-size: 1.4em;
}

.detailContent h4 {
    font-size: 1.35em;
}

.detailContent h5 {
    font-size: 1.3em;
}

.detailContent h6 {
    font-size: 1.25em;
}

.detail-article__heading {
    border-bottom: 1px solid rgb(var(--primary-rgb), 0.1);
}

.detail-article__date {
    font-size: 14px;
    border-right: 1px solid rgb(var(--primary-rgb), 0.1);
}

.detail-article__date .day {
    border-bottom: 1px solid red;
}

.detail-article__view {
    font-size: 14px;
    color: var(--bs-gray-700);
}

.detail-article__desc {
    background-color: rgb(var(--primary-color-70-rgb), 0.1);
    padding: 20px;
    border-radius: 10px;
}

.detail-article__decor {
    width: 20vw;
    opacity: 0.1;
    right: -10%;
}

.detail-articles__keywords {
    border-top: 1px solid rgb(var(--primary-rgb), 0.2);
}

.detail-articles__keywords .item {
    background-color: var(--primary-color);
    color: var(--bs-white);
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 13px;
}

.detail-articles__keywords .item:hover {
    background-color: var(--secondary-color-70);
}

.detail-article__pdf.box-profile {
    padding: 18px;
    border: 1px solid var(--secondary-color-70);
}

.detail-article__pdf-download {
    padding: 5px;
    border-radius: 30px;
    transition: all 0.4s ease-in;
    width: max-content;
    background: var(--primary-gradient);
    box-shadow: 16px 16px 27px 0 rgba(49, 66, 99, 0.13);
}

.detail-article__pdf-download > span {
    border: 1px solid #ffffff57;
    border-radius: 30px;
    padding: 8px 25px;
    transition: all 0.4s ease-in;

}

.detail-article__pdf-download:hover {
    transform: scale(1.1);
    box-shadow: 16px 16px 27px 0 rgb(49 66 99 / 27%);
}

.tab-category {
    transform: translateY(-30px);
    z-index: 2;
    position: relative;
}

.tab-category ul > li > a {
    background-color: var(--primary-color);
    border-radius: 0;
    font-size: 1.1em;
    padding: 12px 25px;
    text-align: center;
}

.tab-category ul > li:not(:first-child) > a.pseudo-before::before {
    height: 18px;
    width: 1px;
    background-color: #ffffff80;
    top: 50%;
    left: 0;
    display: block;
    transform: translateY(-50%);
}

.tab-category ul > li:first-child > a {
    border-radius: 5px 0 0 5px;
}

.tab-category ul > li:last-child > a {
    border-radius: 0 5px 5px 0;
}

.tab-category ul > li > a:hover {
    opacity: 0.9;
}

.tab-category ul > li > a.active {
    color: var(--secondary-color-50) !important;
}

.page-partner .tab-category ul > li > a {
    min-width: 180px;
}

.card-html {
    padding: 35px 20px 20px;
    box-shadow: 0 10px 20px 0 rgb(69 133 155 / 16%);
    border: 1px solid #0081ca1c;
}

.card-html .card-html__top {
    margin-bottom: 26px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    box-shadow: 0 5px 20px 0 rgba(0, 63, 141, 0.2);
}

.card-html .icon.pseudo-after::after {
    z-index: -1;
    top: -7px;
    left: -7px;
    width: 65px;
    height: 65px;
    background-color: rgb(0 178 226 / 25%);
}

.card-html .icon {
    width: 65px;
    height: 65px;
    background-color: rgb(0, 178, 226);
}

.card-html .icon img {
    transform: scale(1) rotate(-45deg);
    padding: 16px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.card-html .card-title {
    font-size: 1.05em;
    color: var(--font-heading);
}

.card-html .card-text {
    color: var(--bs-gray-700);
}

.card-html .card-bg {

}

.card-html:hover .icon img {
    animation: rotate-icon .4s ease-in;
}

@keyframes rotate-icon {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        transform: scale(0) rotate(45deg);
    }
    100% {
        -webkit-transform: scale(1) rotate(-45deg);
        transform: scale(1) rotate(-45deg);
    }

}

.card-html:hover .card-title {
    color: var(--primary-color);
}

.col:nth-child(2) .card-html .icon.pseudo-after::after,
.swiper-slide:nth-child(2) .card-html .icon.pseudo-after::after {
    background-color: rgba(0, 130, 205, 0.3);
}

.col:nth-child(3) .card-html .icon.pseudo-after::after,
.swiper-slide:nth-child(3) .card-html .icon.pseudo-after::after {
    background-color: rgba(3, 114, 178, 0.3);
}

.col:nth-child(4) .card-html .icon.pseudo-after::after,
.swiper-slide:nth-child(4) .card-html .icon.pseudo-after::after {
    background-color: rgba(2, 97, 152, 0.3);
}

.col:nth-child(5) .card-html .icon.pseudo-after::after,
.swiper-slide:nth-child(5) .card-html .icon.pseudo-after::after {
    background-color: rgba(0, 74, 135, 0.3);
}

.col:nth-child(2) .card-html .icon,
.swiper-slide:nth-child(2) .card-html .icon {
    background-color: #0082cd;
}

.col:nth-child(3) .card-html .icon,
.swiper-slide:nth-child(3) .card-html .icon {
    background-color: #0372b2;
}

.col:nth-child(4) .card-html .icon,
.swiper-slide:nth-child(4) .card-html .icon {
    background-color: #026198;
}

.col:nth-child(5) .card-html .icon,
.swiper-slide:nth-child(5) .card-html .icon {
    background-color: #004a87;
}

.section-introduce__video .icon-video {
    width: 65px;
    height: 65px;
}

.section-introduce__video .icon-video svg {
    width: 52px;
    height: 52px;
    transition: var(--transition-default);
}

.section-introduce__video .icon-video svg path {
    fill: white;
}

.section-introduce__video .icon-video.pseudo-before::before {
    background: var(--grandient-custom);
    border-radius: 50%;
}

.section-introduce__video .icon-video.pseudo-after::after {
    width: 80%;
    height: 80%;
    left: 10%;
    top: 10%;
    border-radius: 50%;
    border: 1px solid var(--bs-white);
    opacity: .5;
    transition: var(--transition-default);
}

.section-introduce__video:hover .icon-video.pseudo-before::before {
    transform: scale(.6);
    background-color: rgb(var(--primary-color-70-rgb), 1);
    box-shadow: 0 1rem 1rem 0 rgba(255, 255, 255, 0.4);
}

.section-introduce__video:hover .icon-video svg {
    transform: scale(.8);
}

.button-swiper {
    position: relative;
    background-color: transparent;
    width: 55px;
    height: 55px;
    border: 1px solid transparent;
    padding: 0;
    border-radius: 50%;
    transition: var(--transition-default);
    opacity: 0;
    visibility: hidden;
}

.button-swiper svg {
    width: 100%;
    height: 100%;
    transition: var(--transition-default);
}

.button-swiper svg path {
    fill: var(--bs-white);
}

.button-swiper .after {
    stroke-dasharray: 570;
    stroke-dashoffset: 570;
    stroke: var(--primary-color-70);
    stroke-width: 1
}

.button-swiper .before {
    stroke: gray;
    stroke-dasharray: 0
}

.button-swiper::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 9px;
    right: 9px;
    bottom: 9px;
    background: var(--primary-color-70);
    border-radius: 50%;
    z-index: -1;
    transition: var(--transition-default);
}

.button-swiper.btn-prev {
    top: 50%;
    left: 0;
}

.button-swiper.btn-next {
    top: 50%;
    right: 0;
}

.button-swiper.btn-prev svg {
    transform: rotate(180deg);
}

.button-swiper:hover .after {
    animation-name: animation-button;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes animation-button {
    0% {
        stroke-dashoffset: 570;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.button-swiper:hover::after {
    background-color: var(--primary-color-50);
}

.section-swiper:hover .button-swiper {
    opacity: 1;
    visibility: visible;
}

.section-swiper:hover .button-swiper.btn-prev {
    left: -60px;
}

.section-swiper:hover .button-swiper.btn-next {
    right: -60px;
}

.section-partner .bg-decor {
    width: 50%;
}

.section-partner__image {
    max-width: 300px;
}

.card-partner {
    height: 90px;
    border: 1px solid rgb(var(--primary-color-70-rgb), 0.2);
}

.footer-wrap {
    color: #ebebeb;
    background: var(--primary-gradient);
}

footer a {
    color: #ebebeb;
    width: fit-content;
}

.footer-logo {
    width: 220px;
}

footer .footer-title {
    font-size: 1.25em;
    margin-bottom: 15px;
    color: var(--bs-white);
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer a:hover {
    color: var(--bs-white);
}

.footer-company {
    font-size: 1.3em;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-line a + a {
    margin-left: 10px;
    padding-left: 10px;
}

.footer-line li + li::before,
.footer-line a + a::before {
    position: absolute;
    content: '';
    left: 0;
    width: 1px;
    height: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--bs-white);
}

.footer-link > li + li {
    margin-top: 10px;
}

.footer-bottom_collapse .footer-title__collapse,
.box-profile__title {
    pointer-events: none;
}

.footer-bottom_collapse .footer-link.collapse:not(.show) {
    display: block;
}

.box-profile {
    padding: 12px;
    border: 1px solid rgb(241 241 241 / 39%);
}

.box-profile .pdf-icon {
    width: 65px;
    height: 65px;
    background: var(--grandient-custom);
}

.box-profile .pdf-icon span {
    z-index: 2;
    width: 55px;
    height: 55px;
    transition: var(--transition-default);
    border: 1px solid #ffffff5e;
}

.box-profile:hover .pdf-icon span svg {
    transform: rotateY(180deg);
}

.footer-social a {
    width: 32px;
    height: 32px;
    font-size: 1.1em;
    border-radius: 5px;
    background-color: var(--bs-white);
    color: var(--primary-color-70);
}

.footer-social a.pseudo-before::before {
    background-color: var(--primary-color-50);
    transform: scale(0);
    border-radius: 5px;
}

.footer-social a.pseudo-before:hover::before {
    transform: scale(1);
}

.footer-social a:hover {
    color: var(--bs-white);
}

.footer-decor {
    width: 200px;
}

.footer-animation,
.section-animation-text {
    animation: scrollRight 30s linear 0s infinite;
    transform: translateX(50%);
}


.footer-animation span,
.section-animation-text span {
    font-size: 1em;
    color: rgb(var(--primary-color-50-rgb), 1);
    font-weight: 500;
}

.section-animation-text span {
    color: rgb(var(--primary-rgb), 1);
    font-weight: 700;
    letter-spacing: .3px;
}

.footer-animation span:nth-child(odd) {
    color: var(--secondary-color-70);
}

.section-animation-text span:nth-child(odd) {
    color: var(--secondary-color-70);
}

@keyframes scrollRight {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

.footer-animation span.pseudo-before::before,
.section-animation-text span.pseudo-before::before {
    top: 50%;
    width: 6px;
    height: 6px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
}

.footer-animation span:hover:nth-child(odd) {
    color: var(--bs-white);
}

.section-animation-text span.pseudo-before::before {
    border: 1px solid rgb(var(--primary-rgb), 0.5);
}

.section-animation-text span:hover:nth-child(odd) {
    color: var(--secondary-color-50);
}

.section-tab .nav-link {
    background-color: transparent;
    border: 1px solid rgb(var(--primary-rgb), 0.5);
    padding: 9px 30px;
    color: var(--bs-gray-700);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.section-tab .nav-link.active {
    background-color: var(--primary-color);
    color: var(--bs-white);
}

.section-tab > ul {
    overflow-x: auto;
}

.article-card {
    border: 1px solid var(--bs-white);
    background: linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, 0.5) 100%);
}

.article-card .card-body {
    padding: 20px 10px 15px 10px;
}

.article-card .article-card__date {
    font-size: 14px;
}

.article-card .article-card__title {
    font-size: 1.15em;
    color: var(--bs-gray-800);
}

.article-card__text {
    color: var(--bs-gray-600);
}

.article-card__image.pseudo-after::after {
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.article-card:hover .article-card__image:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.article-card__link {
    color: var(--primary-color);
    font-size: 1em;
    line-height: normal;
    width: max-content;
    padding-left: 12px;
}

.article-card__link.pseudo-before::before {
    top: 50%;
    left: -100%;
    height: 1px;
    width: 100%;
    transform: translateY(-50%);
    background: linear-gradient(to left, var(--primary-color), transparent);
}

.article-card__link .hover,
.article-card__link .normal {
    transition: transform .5s ease-in-out, opacity .2s ease-in;
    line-height: 1.5;
    display: block;
}

.article-card__link .hover {
    position: absolute;
    bottom: 0;
    left: 0;
    color: var(--secondary-color-70);
    transform: translateX(-110%);
    opacity: 0;
}

.article-card__link:hover .normal {
    transform: translateX(-110%);
    opacity: 0;
}

.article-card__link:hover .hover {
    transform: translateX(0);
    opacity: 1;

}

.article-card:hover .article-card__image img {
    transform: scale(1.1);
}

.article-card:hover {
    box-shadow: 0 10px 30px 0 rgba(0, 63, 141, 0.1);
}

.page-contact .contact-left {
    background: var(--primary-gradient);
    padding: 40px;
    border-radius: 20px;
}

.page-contact .contact-left .name-company {
    font-size: 1.3em;
}

.page-contact .contact-left__top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.page-contact__logo {
    width: 220px;
}

.page-contact .contact-map iframe {
    height: 400px !important;
    width: 100%;
    vertical-align: bottom;
}

.page-contact .contact-item,
.page-contact .contact-item a {
    color: var(--bs-gray-200);
}

.page-contact .contact-item:hover {
    color: var(--bs-white);
}

.contact-person__item {
    background-color: rgba(255, 255, 255, 0.86);
    border-radius: 10px;
    border: 1px solid rgb(var(--primary-rgb), 0.1);
}

.contact-person__item .item-top {
    border-radius: 10px 10px 0 0;
    background-color: rgb(205 227 243);
    padding: 15px;
}

.contact-person__item .icon-top {
    color: var(--bs-white);
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background-color: var(--primary-color);
    transform: rotate(45deg);
    margin-top: -15px;
    margin-left: 10px;
}

.contact-person__item .icon-top.pseudo-after::after {
    width: 45px;
    height: 45px;
    background-color: rgba(0, 130, 205, 0.3);
    z-index: -1;
    top: -7px;
    left: -7px;
}

.contact-person__item .icon {
    background-color: #0082cd;
}

.contact-person__item .icon > span {
    transform: rotate(-45deg);
}

.contact-person__item .name {
    font-size: 1.1em;
}

.contact-person__item .name > span {
    color: var(--bs-gray-700);
    font-size: 0.9em;
}

.contact-person__item ul > li > a {
    color: var(--bs-gray-800);
    font-weight: 500;
}

.contact-person__item ul > li + li {
    padding-top: 8px;
    margin-top: 8px;
    border-top: 1px dashed var(--bs-gray-200);
}

.contact-person__item ul > li:hover > a {
    color: var(--primary-color);
}

.page-partner .page-partner__item + .page-partner__item {
    border-top: 1px solid rgb(var(--primary-rgb), 0.1);
    padding-top: 30px;
    margin-top: 30px;
}

.page-partner .page-partner__item .card-partner {
    border: 1px solid rgb(var(--primary-color-70-rgb), 0.2);
}

.page-partner .page-partner__item .card-partner:hover {
    box-shadow: 0 5px 20px 0 rgb(0 141 57 / 11%);
    border: 1px solid rgb(var(--primary-color-70-rgb), 0.3);
}

.video-item .icon {
    background-color: red;
    width: 58px;
    height: 38px;
    border-radius: 10px;
}

.video-item .icon svg {
    width: 45px;
    height: 40px;
}

.gallery-item .layer {
    background-color: #2d3d0c4a;
    opacity: 0;
}

.gallery-item .layer .icon {
    width: 50px;
    height: 50px;
    transform: rotate(45deg) scale(0);
    transition: all 400ms ease;
}

.gallery-item .layer .icon svg {
    width: 25px;
    height: 25px;
}

.gallery-item:hover,
.video-item:hover {
    cursor: zoom-in;
}

.gallery-item:hover .icon {
    transform: rotate(0deg) scale(1);
    transition-delay: 400ms;
}

.gallery-item:hover .layer {
    opacity: 1;
}

.gallery-item:hover img,
.video-item:hover img {
    transform: scale(1.05);
}

.category-gallery__title,
.category-video__title {
    font-size: 1.2em;
}

.category-gallery__date,
.category-video__date {
    color: var(--bs-gray-700);
}

.card-gallery .icon,
.card-video .icon {
    width: 65px;
    height: 65px;
    left: unset;
    top: unset;
    right: 10px;
    bottom: 10px;
}

.card-gallery .icon svg,
.card-video .icon svg {
    z-index: 2;
    width: 52px;
    height: 52px;
    transition: var(--transition-default);
}

.card-gallery .icon::before,
.card-gallery .icon::after,
.card-video .icon::before,
.card-video .icon::after {
    content: '';
    position: absolute;
    transform-origin: center center;
    z-index: 1;
    border-radius: 50%;
    transition: var(--transition-default);
}


.card-gallery .icon::before,
.card-video .icon::before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--grandient-custom);
}


.card-gallery .icon::after,
.card-video .icon::after {
    width: 80%;
    height: 80%;
    left: 10%;
    top: 10%;
    border-radius: 50%;
    border: 1px solid var(--bs-white);
    opacity: .5;
}

.card-gallery:hover .icon::before,
.card-video:hover .icon::before {
    transform: scale(.6);
    background-color: var(--secondary-color);
    box-shadow: 0 1rem 1rem 0 rgba(255, 255, 255, 0.4);
}

.card-gallery:hover .icon svg,
.card-video:hover .icon svg {
    transform: scale(.8) rotate(90deg);
}

.card-gallery:hover .card-gallery__image,
.card-video:hover .card-video__image {
    box-shadow: 12px 5px 14px 0 rgba(22, 40, 79, 0.2);
}

.card-gallery:hover .card-gallery__image img,
.card-video:hover .card-video__image img {
    transform: scale(1.08);

}

.card-gallery:hover .category-gallery__title,
.card-video:hover .card-video__title {
    color: var(--primary-color);
}

.page-article .page-article__line,
.page-projects .page-projects__line {
    height: 1px;
    width: 90%;
    background-color: rgb(var(--primary-rgb), 0.15);
    display: block;
}

.category-section:last-child {
    padding-bottom: 50px;
}

.page-gallery .category-gallery > ul > li,
.page-video .category-video > ul > li {
    font-size: 1.1em;
    padding: 12px 25px;
}

.page-gallery .category-gallery > ul > li:first-child,
.page-video .category-video > ul > li:first-child {
    padding-left: 0;
}

.page-gallery .category-gallery > ul > li > a,
.page-video .category-video > ul > li > a {
    color: var(--bs-gray-700);
}

.page-gallery .category-gallery > ul > li.pseudo-before::before,
.page-video .category-video > ul > li.pseudo-before::before {
    height: 18px;
    width: 1px;
    background-color: rgba(176, 170, 170, 0.5);
    top: 50%;
    left: 0;
    display: block;
    transform: translateY(-50%);
}

.page-gallery .category-gallery > ul > li:first-child.pseudo-before::before,
.page-video .category-video > ul > li:first-child.pseudo-before::before {
    position: unset;
    content: unset;
    background-color: unset;
}

.page-gallery .category-gallery > ul > li > a:hover,
.page-video .category-video > ul > li > a:hover {
    color: var(--secondary-color-70);
}

.scroll-top {
    bottom: 40px;
    right: 17px;
    border: 1px solid rgba(255, 255, 255, 0.29);
    width: 45px;
    height: 45px;
    font-size: 1.3em;
    background-color: var(--primary-color);
    transform: scale(1);
    border-radius: 50%;
    will-change: transform;
    opacity: 0;
    visibility: hidden;
}

.scroll-top:hover {
    background-color: var(--primary-color-70);
    transform: scale(1);
}

.show-scroll.scroll-top {
    opacity: 1;
    visibility: visible;
}

.floating-tool {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    display: flex;
    align-items: center;
    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;
}

.floating-tool .tool-item {
    width: calc(100% / 5);
    height: 62px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 5px 0;
    z-index: 1;
    background-color: rgb(243 247 254);
}

.floating-tool .tool-icon {
    font-size: 16px;
    color: var(--bs-gray-600);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.floating-tool .tool-icon img {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}

.floating-tool .tool-text {
    color: var(--bs-gray-700);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 13px;
}

.floating-tool .tool-home .tool-icon {
    background-color: var(--primary-color);
    color: var(--bs-white);
    position: absolute;
    top: -10px;
}

.floating-tool .tool-home::after {
    position: absolute;
    content: '';
    top: -20px;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 45px 45px 0 0;
    background-color: rgb(243 247 254);
    z-index: -1;
}

.floating-tool .tool-home .tool-text {
    margin-top: auto;
}

.floating-tool .tool-item:hover .tool-text {
    color: var(--primary-color);
}

.floating-tool .tool-item.item-hot::after {
    position: absolute;
    content: '';
    right: 15px;
    top: 12px;
    z-index: 1;
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 50%;
    background-color: var(--bs-red);
}

.floating-support {
    position: fixed;
    right: 17px;
    bottom: 100px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.show-scroll.floating-support {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.floating-support .icon-support {
    background: var(--grandient-custom);
    width: 50px;
    height: 50px;
    font-size: 1.2em;
    border: 1px solid rgba(255, 255, 255, 0.27);
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .1), 0 12px 28px rgba(0, 0, 0, .2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1), 0 12px 28px rgba(0, 0, 0, .2);
}

.floating-support.is-show .icon-support .fa-user-headset:before {
    content: "\f00d";
    font-weight: 500;
    transition: var(--transition-default);
}

.floating-support .icon-support.pseudo-after::after,
.floating-support .icon-support.pseudo-before::before {
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    width: unset;
    height: unset;
    border-radius: 50%;
    z-index: -1;
    background-color: rgb(var(--primary-rgb), 0.8);
    -webkit-animation: kfPhoneFixed2 1.5s infinite ease-in-out;
    animation: kfPhoneFixed2 1.5s infinite ease-in-out;
}

.floating-support .icon-support.pseudo-before::before {
    background-color: transparent;
    border: 1px solid rgb(var(--primary-rgb), 0.5);
    -webkit-animation: kfPhoneFixed 1.5s infinite ease-in-out;
    animation: kfPhoneFixed 1.5s infinite ease-in-out;
}

@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;
    }
}

.floating-support .tool-item__card {
    font-size: 14px;
    position: absolute;
    z-index: 4;
    border-radius: 10px;
    min-width: 335px;
    width: 100%;
    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: 36px;
    bottom: 60px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
}

.floating-support.is-show .tool-item__card {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.floating-support .tool-item__card.pseudo-after::after {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--bs-white);
    left: 91%;
    bottom: -7px;
    top: unset;
}

.floating-support .tool-item__card .card-top {
    padding: 20px;
    border-radius: 10px 10px 0 0;
    position: relative;
}

.floating-support .tool-item__card .card-top i {
    font-size: 42px;
    position: absolute;
    bottom: 5px;
    opacity: 0.1;
    right: 10px;
    color: var(--bs-white);
}

.floating-support .tool-item__card .card-top .icon {
    width: 40px;
    height: 40px;
    font-weight: 700;
    background-color: var(--bs-white);
    color: var(--primary-color);
}

.floating-support .tool-item__card .card-top .icon.pseudo-after::after {
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    width: unset;
    height: unset;
    border-radius: 50%;
    z-index: 0;
    background-color: rgba(255, 255, 255, 0.32);
}

.floating-support .tool-item__card .card-top .name > .name {
    font-size: 1.15em;
}

.floating-support .tool-item__card ul > li + li {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed #dbe0e3;
}

.floating-support .tool-item__card ul > li {
    width: 100%;
    text-align: left;
}

.floating-support .tool-item__card ul > li > a {
    width: 100%;
    text-align: left;
    color: var(--bs-gray-700);
    font-weight: 500;
}

.floating-support .tool-item__card ul > li > a:hover {
    color: var(--primary-color);
}

.floating-tool__pc .item {
    height: 48px;
    width: 48px;
    border-radius: 8px 0 0 8px;
    background-color: var(--primary-color);
    color: var(--bs-white);
    box-shadow: rgb(247 247 247 / 20%) 0rem 0.4609rem 2.30445rem 0rem;
}

.floating-tool__pc .item .icon {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.tab-introduce .tab-introduce__wrap {
    border-radius: 15px 15px 0 0;
}

.tab-introduce .tab-introduce__wrap > li > a {
    padding: 15px 20px;
    background: linear-gradient(to top, #004a87f0, #046abf 95%);
    backdrop-filter: blur(10px);
    border-top: 1px solid #9dbfd3a8;
}

.tab-introduce .tab-introduce__wrap > li > a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, #004a87f0, #499b2c 95%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.tab-introduce .tab-introduce__wrap > li:hover > a::before,
.tab-introduce .tab-introduce__wrap > li > a.active::before {
    opacity: 1;
    height: 100%;
}

.tab-introduce .tab-introduce__wrap > li:hover > a,
.tab-introduce .tab-introduce__wrap > li > a.active {
    color: var(--bs-white);
}

.floating-product {
    background: var(--primary-color);
    color: var(--bs-white);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: .3px;
    font-family: var(--font-heading);
    padding: 15px 8px 5px 5px;
    border-radius: 0 10px 10px 0;
    line-height: inherit;
    box-shadow: 16px 16px 27px 0 rgb(180 180 181 / 27%);
    opacity: 0;
    visibility: hidden;
}

.is-floating .floating-product {
    opacity: 1;
    visibility: visible;
}

.floating-product .text {
    transform: rotate(180deg);
}

.floating-product .icon {
    width: 25px;
    height: 25px;
}

.floating-product:hover {
    background: var(--primary-color-70);
}

.count-item {
    font-size: 1.15em;
    color: var(--bs-gray-700);
}

.count-item .number-value {
    font-size: 4em;
    background: linear-gradient(to left, var(--primary-color), var(--primary-color-70) 95%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
    letter-spacing: -1px;
}

.count-item .number .subtext {
    font-size: 0.5em;
}

.section-land.pseudo-before::before {
    z-index: 3;
    background: linear-gradient(to left, #075a9f, #207bafe0 95%);
}

.section-land .card-land {
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid rgb(var(--primary-rgb), 0.2);
}

.section-land .card-land .icon {
    width: 30px;
    height: 30px;
}

.section-land .card-land:hover {
    border: 1px solid rgb(var(--primary-rgb), 0.5);
}

.project-item {
    border-radius: 15px;
    border: 1px solid #d3e6f11c;
}

.project-item__image {
    border-radius: 10px 10px 0 50px;
}

.project-item .icon {
    top: -30px;
    left: 25px;
    width: 60px;
    height: 60px;
    border: 4px solid var(--bs-white);
    background: var(--primary-color);
    transform: rotate(45deg);
    box-shadow: 10px 10px 30px #d8d7d666;
}

.project-item .icon svg {
    width: 30px;
    transform: rotate(-45deg);
}

.project-item .icon svg path {
    fill: var(--bs-white);
}

.project-item .card-body {
    padding: 50px 20px 20px 20px;
}

.project-item__title {
    font-size: 1.1em;
    line-height: 1.5;
}

.project-item__text {
    color: var(--bs-gray-700);
}

.project-item:hover .icon {
    background-color: var(--secondary-color-70);
}

.section-document.pseudo-after::after,
.section-document.pseudo-before::before {
    background: linear-gradient(to left, var(--primary-color), var(--primary-color-70));
    height: 15%;
}

.section-document.pseudo-after::after {
    top: unset;
    bottom: 0;
}

.section-document .icon-decor {
    width: 22vw;
    left: -10px;
}

.section-document .button-swiper.btn-prev {
    top: unset;
    left: unset;
    visibility: visible;
}

.section-document .button-swiper.btn-next {
    top: unset;
    right: unset;
    visibility: visible;
}

.page-intro .section-document.pseudo-after::after {
    height: 25%;
}

.card-document {
    padding: 20px 15px 15px 15px;
    font-size: 16px;
}

.card-document .card-document__image {
    height: 350px;
}

.card-document .card-document__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-document .line {
    border-bottom: 2px solid rgb(var(--primary-rgb), 0.2);
}

.card-document .icon-document {
    width: 75px;
    height: 75px;
    margin-bottom: -15px;
}

.card-document .card-title {
    font-size: 1.1em;
}

.card-document .link-item + .link-item {
    padding-left: 10px;
    margin-left: 10px;
}

.card-document .link-item.pseudo-before::before {
    top: 50%;
    height: 15px;
    width: 1px;
    transform: translateY(-50%);
    background-color: gray;
}

.page-document .card-document .icon-document {
    width: 55px;
    height: 55px;
}

.page-document .card-document .card-title {
    font-size: 1em;
}

.detail-product .swiper-images .swiper-slide {
    opacity: 0.5;
}

.detail-product .swiper-images .swiper-slide.swiper-slide-active {
    opacity: 1;
}

.detail-product .swiper-images.section-swiper:hover .button-swiper.btn-prev {
    left: 30px;
}

.detail-product .swiper-images.section-swiper:hover .button-swiper.btn-next {
    right: 30px;
}

.detail-product .section-heading .heading-sub {
    font-size: 0.95em;
    color: var(--bs-gray-800);
}

.detail-product .detail-product__desc table {
    font-weight: 500;
    margin-bottom: 0;
    border-color: transparent;
}

.detail-product .detail-product__desc table th,
.detail-product .detail-product__desc table td {
    padding: 12px;
}

.detail-product .detail-product__desc table tr:nth-child(odd) {
    background-color: rgb(var(--primary-rgb), 0.1);
    border-radius: 10px;
}

.detail-product .detail-product__desc table tr td:first-child {
    font-weight: 700;
}


.detail-related.pseudo-after::after {
    top: 50%;
    left: unset;
    right: 0;
    transform: translateY(-50%);
    height: 95%;
    background-color: rgb(var(--secondary-rgb), 0.1);
    width: 98vw;
    border-radius: 25px 0 0 25px;
}

.introduce-bg {
    height: 80vh;
}

.introduce-bg.pseudo-before::before {
    background: linear-gradient(to bottom, rgb(75 126 191 / 33%), rgb(19 35 47));
}

.introduce-bg .introduce-heading .heading {
    font-size: 2.4em;
}

.introduce-bg .introduce-heading .heading-desc {
    font-size: 1.4em;
}

.section-box .section-heading .icon-quote {
    font-size: 35px;
    line-height: 1;
}

.section-box .box-image {
    width: 30vw;
    height: 50vh;
    border-radius: 20px 0 0 20px;
}

.section-box .box-image .image,
.section-box .box-image .image img {
    border-radius: 20px 0 0 20px;
}

.section-box .box-image.pseudo-after::after {
    top: -20px;
    left: -20px;
    bottom: -10px;
    border-radius: 32px;
    z-index: -1;
    background: linear-gradient(to right, #599fd942, #046abf00 95%);
}

}
.section-box .heading-quote {
    padding: 12px;
    font-style: italic;
    border-left: 2px solid var(--primary-color);
    background-color: rgb(var(--primary-rgb), 0.05);
}

.section-goals.pseudo-after::after {
    background-image: url('../../../../../public/upload/theme/bgdot.png');
    background-color: #004d8aa1;
}

.section-goals .section-heading .heading-decor .line.line-left {
    background: linear-gradient(to left, var(--bs-white), transparent)
}

.section-goals .section-heading .heading-decor .line.line-right {
    background: linear-gradient(to right, var(--bs-white), transparent)
}

.section-goals__count .count-item {
    font-size: 1em;
}

.section-goals__count .count-item .number-value {
    font-size: 3em;
    background: linear-gradient(to left, #dce8f3, #acdbf6 95%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-goals .grid-layout {
    grid-gap: 18px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
}

.card-goal {
    padding: 25px;
    -webkit-box-shadow: 2px 4px 20px 0 rgb(0 37 92 / 15%);
    box-shadow: 2px 4px 20px 0 rgb(0 37 92 / 15%);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    min-height: 210px;
}

.card-goal .card-icon {
    bottom: 20px;
    width: 110px;
    height: 110px;
    color: rgba(0, 0, 0, .2);
    right: -55px;
    z-index: 1;
    opacity: 0.15;
    -webkit-transition: all 0.75s ease;
    -o-transition: all 0.75s ease;
    transition: all 0.75s ease;
}

.card-goal .card-heading {
    font-size: 1.1em;
    margin-bottom: 12px;
}

.card-goal .card-content {
    color: var(--bs-gray-700);
}

.card-goal.active,
.card-goal:hover {
    background-color: var(--primary-color) !important;
    color: var(--bs-white) !important;
}

.card-goal.active .card-icon {
    right: 5px;
}

.card-goal.active .card-content,
.card-goal:hover .card-content {
    color: var(--bs-gray-200);
}

.section-goals .layers {
    height: 450px;
}

.section-goals .layers .layer-circle {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
}

.section-goals .layers .image-card {
    width: 320px;
    height: 320px;
    background-color: rgb(var(--primary-rgb), 0.5);
}

.section-goals .layers .image-card img {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.section-goals .layers .image-card img.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 10;
}

.section-goals .layer-circle {
    transform-origin: center;
}

.section-goals .layer-circle img {
    transform-origin: center;
    animation: rotate360 24s linear infinite;
}


@-webkit-keyframes rotate360 {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate360 {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.box-2 .box-2__list.pseudo-before::before {
    left: 27px;
    width: 1px;
    background: linear-gradient(to bottom, #87a6b9, transparent);
}

.box-2 .box-2__item .icon-top {
    transform: rotate(45deg);
    width: 55px;
    height: 55px;
}

.box-2 .box-2__item .icon {
    width: 55px;
    height: 55px;
}

.box-2 .box-2__item .icon img {
    width: 25px;
    height: 25px;
    transform: scale(1) rotate(-45deg);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.box-2 .box-2__item .icon.pseudo-after::after {
    width: 50px;
    height: 50px;
    background-color: rgb(118 177 211 / 30%);
    z-index: -1;
    top: -7px;
    left: -7px;
}

.box-2 .box-2__item .title {
    font-size: 1.2em;
}

.box-2 .box-2__item:hover .icon {
    background-color: var(--secondary-color-70) !important;
}

.box-2 .box-2__item:hover .icon img {
    animation: rotate-icon .4s ease-in;
}

.box-3__item {
    font-size: 1.1em;
}

.box-3__item::before {
    display: block;
    content: "";
    padding-top: 80%;
}

.box-3__item > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-3__item .image {
    width: 75px;
    height: 75px;
    background-color: #ebf1f5;
}

.box-3__item .image img {
    width: 45px;
    height: 45px;
}

.box-3__item .image.pseudo-before::before {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    z-index: 2;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-top: 12px solid #ebf1f5;
    transition: all 300ms ease;
}

.box-3__item .layer {
    background: var(--bs-white);
}

.box-3__item .decor {
    width: 80%;
}

.box-3__item .layer.pseudo-before::before {
    height: 5px;
    top: 98%;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color-70);
    border-radius: 5px 5px 0 0;
}

.box-3__item:hover .decor {
    opacity: 0;
    pointer-events: none;
}

.box-3__item:hover .layer {
    background: linear-gradient(to bottom, rgba(24, 40, 56, 0.68) 0%, rgba(24, 40, 56, 0.68) 35%, rgb(18, 51, 100) 100%);
}

.box-3__item:hover .image {
    background-color: var(--primary-color);
    transform: scale(-1) rotate(180deg);
}

.box-3__item:hover .image.pseudo-before::before {
    border-top-color: var(--primary-color);
}

.box-3__item:hover .image img {
    filter: invert(100%);
}

.box-3__item:hover .title {
    color: var(--bs-white);
}

.box-3__item:hover .layer.pseudo-before::before {
    width: 90%;
}


.animation-gallery__gird {
    height: 80vh;
}

.animation-gallery__gird .gird-column {
    width: calc(100% / 5);

}

.animation-gallery__gird .gird-column:nth-child(2),
.animation-gallery__gird .gird-column:nth-child(4) {
    margin-top: -30px;
}

.animation-gallery__gird .gird-column .gird-item {
    height: 300px;
    position: relative;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    transition: 0.5s ease-in;
}

.animation-gallery__gird .gird-column .gird-item::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgb(17 55 87 / 39%);
}

.animation-gallery__gird .animation-heading {
    padding: 5vw;
    font-size: 6vw;
    -webkit-text-stroke: 1px #fff8f8b5;
    color: transparent;
    mix-blend-mode: overlay;
    transform: translate3d(0, -50%, 0);
    will-change: transform;
}

/*.page-factory .tab-factory {

}

.page-factory .tab-factory ul > li > a {
    padding: 15px 20px;
    color: var(--bs-white);
    background-color: var(--primary-color);
    font-size: 1.1em;
}*/

.page-factory__wrap .factory-line.pseudo-before::before {
    width: 1px;
    height: 100%;
    left: -3px;
    background: linear-gradient(0deg, rgba(19, 101, 52, 0) 0%, #004c8a 34.89%, #005a9b 51.02%, #1958a9 73.19%, rgba(19, 101, 52, 0) 100%)
}

.page-factory__heading.pseudo-after::before {
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 50%;
    background-color: var(--primary-color-70);
    left: -18px;
    top: 44px;
}

.page-factory__heading .heading-title-2 {
    color: var(--bs-white);
    width: max-content;
    padding: 7px 30px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-color-70));
    border-radius: 20px 0;
    font-size: 1.3em;
    font-weight: 600;
}

.factory-box .card-land:hover .card-title {
    color: var(--secondary-color);
}

.modal-land .modal-content {
    border-radius: 15px 0;
}

.modal-land .modal-content .content {
    padding: 30px 15px 30px 30px;
    font-size: 1.05em;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    height: 820px;
    overflow: auto;
}

.modal-land .modal-content .heading-content img {
    max-width: 100% !important;
    height: auto !important;
    margin: 10px 0;
}

.modal-land__close {
    width: 35px;
    height: 35px;
    transform: rotate(45deg);
    background-color: var(--primary-color);
    backdrop-filter: blur(4px);
    border-radius: 5px;
}

.modal-land__close i {
    transform: rotate(-45deg);
}

.modal-land__close:hover {
    transform: rotate(0);
}

.section-location .location-top {

}

.section-location .location-top.pseudo-before::before {
    background: linear-gradient(to left, #8cb4d53b, #ffffff 95%);
}

.section-location .location-top.pseudo-before::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.60) 21.88%, rgba(255, 255, 255, 0.92) 66.67%, #FFF 100%);
}

.section-location .location-top .location-top__left {
    padding: 100px 0;
}

.section-location .location-right {
    padding: 35px 30px;
    background: linear-gradient(to bottom, var(--primary-color), rgba(255, 255, 255, 0));
}

.section-location .location-right .logo {
    max-width: 280px;
    width: 100%;
    border: 1px solid #ffffff4a;
}

.section-location .location-right .logo img {
    padding: 15px 35px;
}

.section-location .location-right__top {
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.section-location .location-right__top .number {
    font-size: 100px;
    line-height: 1;
}

.section-location .location-right__top .number > span {
    font-size: 16px;
}

footer {
    padding-top: 135px;
}

.footer-bg {
    top: 35px;
    height: 300px;
}

.section-location .location-waves,
.footer-waves {
    height: 180px;
    width: 100vw;
}

.section-location .location-waves svg,
.footer-waves svg {
    height: 100%;
    width: 100%;
}

.section-location .location-waves .wave,
.footer-waves .wave {
    height: 100%;
    width: 100%;
    animation: wave 3s linear;
    animation-iteration-count: infinite;
    fill: var(--primary-color)
}

.footer-waves .wave {
    fill: var(--primary-color-70);
}

#wave3 {
    animation-duration: 7s;
    opacity: 0.3;
}

#wave2 {
    animation-duration: 5s;
    animation-direction: reverse;
    opacity: 0.6;
}

@keyframes wave {
    to {
        transform: translateX(-100%);
    }
}


.location-table {
    overflow: hidden;
    font-size: 14px;
    color: white;

}

.location-table .table-body {
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.location-table .table-body .item {

    padding: 5px 0;
}

.location-table .table-body .item + .item {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.location-table .table-body .item .item-inner {
    padding: 10px;
    width: 100%;
    transition: var(--transition-default);
}

.location-table .table-body .item .title {
    font-weight: 500;
    padding-left: 12px;
    transition: opacity 0.3s ease, transform 0.2s ease-in;
}

.location-table .table-body .item .title.pseudo-before::before {
    width: 4px;
    height: 4px;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.83);
    border-radius: 50%;
}

.location-table .table-body .item .time {
    color: var(--bs-gray-200);
}

.location-table .table-body .item:hover .item-inner {
    background-color: rgba(246, 244, 244, 0.14);
    backdrop-filter: blur(4px);
    border-radius: 5px;
}

.utilities-wrap .utilities-card {
    border: 1px solid rgba(124, 124, 124, 0.3);
    width: 66px;
    height: 480px;
    border-radius: 3px;
    transition: 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.utilities-wrap .utilities-card .image {
    filter: grayscale(1) brightness(.3);
    transition-property: filter;
}

.utilities-wrap .utilities-card .layer-content {
    position: absolute;
    padding: 18px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(0deg, rgb(6 43 69 / 77%) 20%, rgba(0, 0, 0, 0) 100%);
}

.utilities-wrap .utilities-card .layer-content .title {
    text-transform: capitalize;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: .7px;
    width: max-content;
    line-height: normal;
    white-space: nowrap;
}

.utilities-wrap .utilities-card .layer-text .content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
    transition: all 0.3s ease-in;
    display: none;
}

.utilities-wrap .utilities-card .layer-content .icon {
    width: 30px;
    height: 30px;
}


.utilities-wrap .utilities-card.is-active {
    width: calc(100% - 400px);
}

.utilities-wrap .utilities-card.is-active .image {
    filter: grayscale(0) brightness(1);
}

.utilities-wrap .utilities-card.is-active .layer-content .content {
    display: block;
}

.utilities-wrap .utilities-card.is-active .layer-content .title {
    opacity: 0;
}


.section-expense .box-image,
.section-expense .box-image .image {
    width: 35vw;
    height: 50vh;
    border-radius: 0 20px 20px 0;
}

.section-expense .box-image.pseudo-after::after {
    top: -20px;
    right: -20px;
    bottom: -10px;
    left: unset;
    border-radius: 0 20px 20px 0;
    z-index: -1;
    background: linear-gradient(to left, #599fd942, #046abf00 95%);
}

.card-expense {
    padding-left: 35px;
}

.card-expense__wrap.pseudo-before::before {
    height: 3px;
    top: unset;
    bottom: 0;
    width: 70%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(var(--primary-rgb), 0.2);
    border-radius: 5px 5px 0 0;
}

.card-expense__wrap {
    border: 1px solid rgb(var(--primary-rgb), 0.1);
    padding: 20px 15px 35px 60px;
}

.card-expense .icon-top {
    width: 55px;
    height: 55px;
    left: -25px;
    transform: translateY(-50%) rotate(45deg);
}

.card-expense .icon-top .icon img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    transform: scale(1) rotate(-45deg);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.card-expense .icon-top.pseudo-after::after {
    width: 45px;
    height: 45px;
    background-color: rgba(0, 130, 205, 0.3);
    z-index: -1;
    top: -7px;
    left: -7px;
}

.card-expense .card-title {
    font-size: 1.2em;
}

.card-expense .card-text {
    color: var(--bs-gray-700);
    font-size: 1em;
}

.card-expense:hover .card-expense__wrap.pseudo-before::before {
    background-color: rgb(var(--primary-rgb), 1);
}

.card-expense:hover .icon img {
    animation: rotate-icon .4s ease-in;
}

.section-tax {
    background: linear-gradient(to bottom, #ffffff, #f1f7fd 56%);
}

.section-tax__box {
    border-radius: 10px;
    position: relative;
    box-shadow: rgba(0, 37, 87, 0.2) 0rem 0.4609rem 2.30445rem 0rem;
}

.section-tax__box .box-content {
    border: 1px solid rgb(var(--primary-rgb), 0.1);
}

.section-tax__box .box-content .section-heading.pseudo-before::before {
    top: -2px;
    left: -25px;
    border-radius: 0 20px 20px 0;
    background: linear-gradient(to right, #599fd942, #046abf00 95%);
    height: 127%;
}

.section-tax__box .box-content .section-heading .heading-title-2 {
    font-size: 1.5em;
}
