header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    transition: all 0.5s ease-in-out;
}

.header::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 0;
    width: 100%;
    background-color: var(--primary-color);
    transition: all 0.5s ease-in-out;
    box-shadow: 0 20px 42px -14px rgb(0 0 0 / 8%);
    z-index: 1;
}

.header-hamburger {
    width: 38px;
    height: 38px;
    gap: 6px;
}

.header-hamburger > span {
    height: 1px;
    width: 30px;
    display: inline-flex;
    background-color: var(--bs-white);
    transition: all 0.4s ease;
}

.header-hamburger > span:last-child,
.header-hamburger > span:first-child,
.header-hamburger:hover > span {
    margin-left: 12px;
}

.header-hamburger:hover > span:last-child,
.header-hamburger:hover > span:first-child {
    margin-left: 0;
}

.header-logo {
    padding: 10px;
    width: 200px;
    height: 82px;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.header-navigation > ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.header-navigation > ul > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 30px 20px;
    font-weight: 500;
    color: var(--bs-white);
    font-size: 1.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.header-navigation > ul > li > a > svg {
    width: 16px;
    height: 16px;
}

.header-navigation > ul > li > a > svg path {
    stroke: var(--bs-white);
}

.header-navigation > ul > li > ul {
    list-style-type: none;
    margin-bottom: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    width: 260px;
    z-index: 2;
    background-color: #212121;
    transition: var(--transition-default);
    padding: 3px;
    box-shadow: 0 20px 30px 0 rgba(105, 104, 104, 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header-navigation > ul > li:hover ul {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header-navigation > ul > li > ul > li > a {
    color: var(--bs-gray-100);
    transition: var(--transition-default);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-navigation > ul > li > ul > li > a::after {
    content: "";
    background-color: currentColor;
    width: 0;
    height: 1px;
    position: absolute;
    left: -10px;
    top: 50%;
    transition: .3s all;
}

.header-navigation > ul > li > ul > li:hover > a {
    margin-left: 15px;
}

.header-navigation > ul > li > ul > li:hover > a::after {
    left: 0;
    width: 25px;
}

.header.header-scroll::after,
.page-other .header.header-scroll::after,
.page-other .header::after {
    height: 100%;
}

.header.header-scroll .header-logo,
.page-other .header.header-scroll .header-logo,
.page-other .header .header-logo {
    width: 170px;
    height: 75px;
}

.header.header-scroll .header-navigation > ul > li > a,
.page-other .header.header-scroll .header-navigation > ul > li > a,
.page-other .header .header-navigation > ul > li > a {
    padding: 25px 20px;
}

.demo-page .header-navigation,
.demo-page .header-search,
.demo-page .header-logo {
    display: none !important;
}

.demo-page {
    padding: 12px 0;
}

.demo-page .arrow-link {
    padding: 10px 30px;
}

.footer-wrap {
    padding-top: 100px;
}

.footer-top {
    margin-bottom: 80px;
}

.footer-map {
    border-bottom: 1px solid #979797;
}

.footer-map__title {
    font-weight: 500;
    font-size: 1.1em;
    transform: translateY(5px);
    text-transform: uppercase;
    color: rgb(255 255 255);
    letter-spacing: 1.5px;
}

.footer-map .arrow-theme:hover .svg-dark circle {
    stroke-dashoffset: 160px;
}

.footer-heading {
    font-size: 2.2em;
    font-weight: 600;
}

.footer-title {
    font-weight: 600;
    font-size: 0.9em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.footer-content {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-content .icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid gray;
}

.footer-content svg {
    width: 18px;
    height: 18px;
    margin-right: 3px;
}

.footer-content svg path {
    stroke: var(--bs-gray-100);
}

.footer-content > li > a {
    color: var(--bs-gray-100);
}

.footer-content > li > a > span {
    font-weight: 600;
}

.footer-content > li > a:hover {
    color: var(--bs-white);
}

.footer-link a::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 1px;
    background-color: rgb(190 190 190 / 67%);
    z-index: 1;
    transform: translateY(3px);
    transition: var(--transition-default);
}

.footer-link a:hover::after {
    left: 0;
    right: auto;
    width: 100%;
}

.footer-copyright {
    color: rgba(255, 255, 255, .7);
    padding: 12px 0;
    border-top: 1px solid #80808061;
}

.section-partner .partner-logo {
    height: 90px;
    max-width: 180px;
    width: 100%;
    padding: 15px;
}

.section-partner .partner-logo img {
    transition: transform .6s cubic-bezier(.61, 1, .88, 1), filter .5s cubic-bezier(.61, 1, .88, 1);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.9;
}

.section-partner .partner-logo:hover img {
    transform: scale(1.1);
    opacity: 1;
    -webkit-filter: unset;
    -moz-filter: unset;
    -ms-filter: unset;
    -o-filter: unset;
    filter: unset;
}

.page-introduce .section-partner .section-partner__wrap {
    border: 1px dashed #cac7c7;

}

.page-introduce .section-partner .partner-item {
    width: calc(100% / 8);
    flex-shrink: 0;
}

.page-introduce .section-partner .partner-item:not(:first-child) {
    border-left: 1px dashed #cac7c7;
}

.page-introduce .section-partner .partner-item .partner-logo {
    padding: 23px;
}

.page-introduce .section-partner .partner-item .partner-logo:last-child {
    border-top: 1px dashed #cac7c7;
}

.card-blogs__image img {
    transition: transform .6s cubic-bezier(.61, 1, .88, 1), filter .5s cubic-bezier(.61, 1, .88, 1);
    -webkit-filter: grayscale(95%);
    -moz-filter: grayscale(95%);
    -ms-filter: grayscale(95%);
    -o-filter: grayscale(95%);
    filter: grayscale(95%);
}

.card-blogs__date {
    padding: 6px 22px;
    color: rgba(255, 255, 255, .7);
}

.card-blogs__category {
    display: inline-flex;
    color: var(--acction-color);
    text-transform: uppercase;
    margin-bottom: 6px;
    font-size: 0.9em;
}

.card-blogs__title {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1.4em;
    line-height: 1.5;
    margin-bottom: 10px;
}

.card-blogs__text {
    color: rgb(135, 135, 135);
}

.card-blogs:hover .card-blogs__image img {
    transform: scale(1.04);
}

.card-blogs:hover .card-blogs__title:hover,
.card-blogs .card-blogs__category:hover {
    color: var(--primary-color);
}

.card-blogs:hover .card-blogs__image img {
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    -o-filter: grayscale(0);
    filter: grayscale(0);
}

.section-hero {
    height: 85vh;
}

.section-hero__bg {
    position: absolute;
    right: -10px;
    top: 100px;
    width: 60%;
    height: 100%;
}

.section-hero__bg img {
    animation: animation-banner 4s infinite linear;
}

@keyframes animation-banner {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}

.section-hero::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.9;
    background: linear-gradient(0deg, rgb(22, 24, 26) 15%, rgba(22, 24, 26, 0.05) 100%);
}

.section-hero .heading-title {
    font-size: 2.6em;
    text-transform: capitalize;
    line-height: inherit;
}

.section-line {
    position: absolute;
    top: 0;
    left: 145px;
    height: 100%;
    width: 800px;
}

.section-line .line {
    height: 100%;
    width: 1px;
    background: linear-gradient(0deg, rgb(105 108 111) 15%, rgb(22 24 26 / 28%) 100%);

}

.section-line .line:nth-child(1)::after,
.section-line .line:nth-child(3)::after {
    position: absolute;
    content: '';
    top: 20%;
    width: 3px;
    height: 30px;
    background-color: gray;
    left: -1px;
    animation: scroll1 8s ease-out infinite;
}

.section-line .line:nth-child(3)::after {
    top: unset;
    bottom: 0;
    animation: scroll2 6s ease-out infinite
}

.page-introduce .section-line .line {
    background: linear-gradient(-180deg, rgb(105 108 111 / 20%) 15%, rgb(22 24 26 / 18%) 100%);
}

.page-introduce .section-line .line:nth-child(1)::after,
.page-introduce .section-line .line:nth-child(3)::after {
    background-color: var(--primary-color);
}

@keyframes scroll1 {
    0% {
        opacity: 1;
        top: 20%;
    }
    50% {
        top: 50%
    }
    100% {
        top: 100%;
        opacity: 0.5
    }
}

@keyframes scroll2 {
    0% {
        opacity: 1;
        bottom: 0
    }

    50% {
        bottom: 50%
    }

    100% {
        bottom: 100%;
        opacity: 0.5
    }
}

.header-menu__close {
    background-color: transparent;
    padding: 30px 0;
}

.header-menu__close .icon {
    position: relative;
    width: 55px;
    height: 55px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-menu__close .icon1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.header-menu__close > svg path {
    fill: var(--bs-white);
}

.header-menu__close .rotate-logo {
    transition: var(--transition);
    transform-origin: center;
    animation: animation-logo 5s infinite linear;
}

@keyframes animation-logo {
    100% {
        transform: rotate(360deg);
    }
}

.header-menu__close > span {
    margin-left: 40px;
    padding-left: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--bs-white);
    font-weight: 500;
}

.header-menu__close > span::before {
    position: absolute;
    content: '';
    right: 100%;
    top: 50%;
    background-color: #e0dddd;
    height: 1px;
    width: 70%;
    display: block;
}

.header-navbar__mobile {
    position: fixed;
    right: -100%;
    width: 500px;
    height: 100%;
    top: 0;
    z-index: 100;
    padding: 30px;
    background-color: rgb(var(--primary-rgb), 0.95);
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    transition: all 0.6s ease-in-out;
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header-navbar__mobile > ul {
    position: relative;
    z-index: 3;
    width: 100%;
    opacity: 0;
    transition: all 0.35s ease-in;
    transition-delay: 0.5s;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.header-navbar__mobile > ul::-webkit-scrollbar {
    display: none;
}

.header-navbar__mobile ul > li {
    display: inline-flex;
    flex-direction: column;

}

.header-navbar__mobile ul > li > a,
.header-navbar__mobile ul > li > button {
    color: var(--bs-white);
    font-weight: 500;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2em;
    transition: 0.35s ease-in;
    position: relative;
    overflow: hidden;
}


.header-navbar__mobile ul > li > a > span.number,
.header-navbar__mobile ul > li > button > span.number {
    font-weight: 400;
    font-size: 0.85em;
}

.header-navbar__mobile ul > li > a > span.title,
.header-navbar__mobile ul > li > button > span.title {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    position: relative;
    white-space: nowrap;
    text-transform: uppercase;

}

.header-navbar__mobile ul > li > a > span.title button,
.header-navbar__mobile ul > li > button {
    background-color: transparent;
    color: var(--bs-white);
    transition: var(--transition);
    border: 1px solid transparent;
}

.header-navbar__mobile ul > li > a > span.title button svg,
.header-navbar__mobile ul > li > button svg {
    width: 18px;
    height: 18px;
}

.header-navbar__mobile ul > li > a > span.title button svg path,
.header-navbar__mobile ul > li > button svg path {
    stroke: var(--bs-gray-100);
}

.header-navbar__mobile ul > li > ul {
    padding-left: 35px;
    border-left: 1px solid #8080808f;
    display: flex;
    flex-direction: column;
}

.header-navbar__mobile ul > li > ul > li > a {
    font-size: 1em;
    font-weight: 400;
    white-space: normal;
}

.header-navbar__mobile ul > li > a:hover,
.header-navbar__mobile ul > li > a:hover button {
    color: var(--bs-gray-400) !important;
}

.navbar-mobile__bottom {
    padding: 30px;
    background-color: #212121;
}

.navbar-mobile__bottom .title {
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.navbar-mobile__bottom a {
    font-size: 1.05em;
    color: var(--bs-white);
    transition: var(--transition-default);
}

.navbar-mobile__decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.header-overlay {
    position: fixed;
    top: 0;
    right: -130%;
    width: 100%;
    height: 200%;
    z-index: 3;
    -webkit-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
    background-color: rgb(43 42 42 / 90%);
    backdrop-filter: blur(8px);
}

.is-navbar .header-overlay {
    right: 0;
}

.is-navbar .header-navbar__mobile {
    right: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.is-navbar .header-navbar__mobile > ul {
    opacity: 1;
}

.is-navbar .navbar-mobile__logo {
    opacity: 1;
}

.section-price .col:nth-child(odd) {
    transform: translateY(50px);
    margin-bottom: 55px;
}

.card-price {
    border-radius: 5px;
}

.card-price__line {
    height: 1px;
    width: 30%;
    display: inline-flex;
    background-color: rgba(176, 171, 171, 0.28);
}

.card-price__text ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}
.card-price__text ul > li{
     padding: 8px 0;
}

.card-price__text ul > li:not(:last-child) {
    border-bottom: 1px solid #8080800f;
   
}

.card-price__text ul > li {
    display: flex;
    align-items: center;
    gap: 3px;
    position: relative;
}

.card-price__header {
    padding: 30px;
}

.card-price__header .hot {
    background: #a8a8a8;
    padding: 0 16px 0 29px;
    height: 30px;
    line-height: 30px;
    position: absolute;
    right: 0;
    top: 15px;
    font-weight: 500;
}

.card-price__header .hot::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent var(--primary-color);
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    transform: translateY(-50%);
}

.card-price .card-body {
    padding: 10px 30px 30px 30px;
    font-size: 1em;
}

.card-price__name {
    font-size: 1.3em;
    font-weight: 500;
}

.card-price__price p {
    margin-bottom: 0;
    font-size: 1.7em;
    font-weight: 600;
}

.section-template::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    z-index: 1;
    background-color: var(--primary-color);
}

.section-category .section-heading {
    margin-bottom: 40px;
}

.card-category {
    border: 1px solid #c5c1c194;
    padding: 8px 20px;
    transition: all 0.3s ease-in;
    background-color: transparent;
}

.card-category::after,
.card-category::before {
    transform: skewX(-33deg) translateX(-50%);
    position: absolute;
    content: '';
    background-color: var(--bs-white);
    height: 18px;
    width: 1px;
    top: -11px;
    right: 8px;
    transition: var(--transition-default);
}

.card-category::after {
    right: 12px;
}

.card-category__title {
    font-weight: 500;
    color: var(--bs-white);
    font-size: 1em;
    transition: all 0.3s ease-in;
}

.card-category:hover {
    background-color: var(--bs-white);
}

.card-category:hover .card-category__title {
    color: var(--primary-color);
}

.card-temple {
    border-radius: 5px;
    box-shadow: 0 10px 40px rgb(86 92 90 / 14%);
}

.card-temple__title {
    font-size: 1.1em;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    width: fit-content;
}

.card-temple__title::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 1px;
    transition: var(--transition-default);
    background-color: var(--primary-color);
}

.card-temple__title:hover {
    color: var(--primary-color);
}

.card-temple__title:hover::after {
    left: 0;
    right: auto;
    width: 100%;
}

.card-temple__price {
    font-size: 1.25em;
    color: #212693;
    font-weight: 600;
}

.card-temple__image {
    height: 300px;
}

.card-temple__image img {
    object-fit: cover;
    object-position: top center;
    transition: all 3.5s ease-in-out;
}

.card-temple:hover .card-temple__image img {
    object-position: bottom center;
}

.card-temple__link {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--bs-white);
    font-weight: 600;
    text-transform: uppercase;
    max-width: 130px;
    white-space: nowrap;
    width: 100%;
    font-size: 0.9em;
    transition: var(--transition-default);
}

.card-temple__link:hover {
    color: var(--bs-white);
    background-color: var(--bs-gray-800);
}

.section-service .col:nth-child(odd) .card-service {
    flex-direction: column-reverse;
}

.section-service .col:nth-child(even) .card-service .card-service__image img {
    -webkit-filter: grayscale(95%);
    -moz-filter: grayscale(95%);
    -ms-filter: grayscale(95%);
    -o-filter: grayscale(95%);
    filter: grayscale(95%);
}

.section-service .heading-title {
    font-size: 2.8em;
    font-weight: 700;
}

.card-service__image {
    height: 280px;
}

.card-service__image img {
    transition: transform .6s cubic-bezier(.61, 1, .88, 1), filter .5s cubic-bezier(.61, 1, .88, 1);
}

.card-service .card-body {
    padding: 40px;
    height: 280px;
}

.card-service__title {
    font-size: 1.3em;
    font-weight: 500;
}

.card-service__text span {
    color: #c8c8c8;
    line-height: 1.8;

    --lines: 5;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: var(--lines);
    line-clamp: var(--lines);
    -webkit-box-orient: vertical;
}

.card-service:hover .card-service__image img {
    transform: scale(1.05);
    -webkit-filter: grayscale(95%);
    -moz-filter: grayscale(95%);
    -ms-filter: grayscale(95%);
    -o-filter: grayscale(95%);
    filter: grayscale(95%);
}

.section-introduce::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 22%;
    background-color: var(--primary-color);
    z-index: 1;
}

.section-introduce::before {
    position: absolute;
    content: '';
    left: 60px;
    top: 0;
    height: 100%;
    width: 30%;
    background-color: var(--primary-color);
    z-index: 1;
    transform: skewX(19deg);
}

.section-introduce__animation {
    white-space: nowrap;
    text-transform: capitalize;
    font-size: 25px;
    z-index: 3;
    position: relative;
    color: #a2a2a2;
    border-top: 1px solid #a2a2a27a;
    padding: 4px 0;
    border-bottom: 1px solid #a2a2a27a;
}

.section-introduce__animation .animation-text {
    animation: marquee 50s linear infinite;
    transform: translateX(-100%);
}

.section-introduce__animation .animation-text img {
    filter: brightness(0.7);
    -webkit-filter: brightness(0.7);
}

@keyframes marquee {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

.card-introduce__image {
    height: 550px;
    max-width: 550px;
    border: 6px solid #fff;
    box-shadow: 0px 0px 20px 0.5px rgb(0 0 0 / 20%);
}

.card-introduce__title {
    font-weight: 600;
    font-size: 1.8em;
    color: var(--primary-color);
}

.card-introduce__text {
    font-size: 1.1em;
}

.card-introduce__text a {
    color: var(--bs-gray-800);
    font-weight: 500;
    text-decoration-line: underline;
}

.card-introduce__number {
    font-size: 80px;
    font-weight: 700;
}

.card-introduce__imageThumb {
    border: 5px solid #fff;
    box-shadow: 0px 0px 20px 0.5px rgb(0 0 0 / 20%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    cursor: pointer;
}

.card-introduce__imageThumb .number {
    background-color: var(--primary-color);
    width: 40px;
    height: 40px;
    position: absolute;
    right: -16px;
    font-weight: 600;
}

.card-introduce__imageThumb .swiper-wrapper {
    pointer-events: none;
}

.section-introduce__thumb {
    top: 50%;
    transform: translateY(-50%);
    right: -25px;
    width: 160px;

}

.section-introduce__thumb .swiper-slide:nth-child(2) {
    margin-left: 25px;
}

.section-introduce__thumb .swiper-slide {
    transform: scale(0.95);
    transition: var(--transition-default);
    opacity: 0.9;
}

.section-introduce__thumb .swiper-slide.swiper-slide-thumb-active {
    transform: scale(1);
    opacity: 1;
}

.section-box .heading-title {
    font-size: 2em;
}

.card-box__image {
    width: 90px;
    height: 90px;
    padding: 15px;
}

.card-box__title {
    font-size: 1.1em;
    font-weight: 600;
    text-transform: capitalize;
}

.card-box__decor {
    position: absolute;
    left: 0;
    top: 0;
    width: 90px;
    height: 90px;
    opacity: 0.3;
    filter: grayscale(90%);
}

.card-box__text {
    line-height: 1.8;
    font-size: 1em;
    background-color: #dbdad88f;
    padding: 12px;
    font-weight: 500;
}

.card-box__text span {
    display: inline-flex;
    transition: all 0.35s ease-in;
    height: 90px;
    width: 100%;
    font-size: 0.95em;
    overflow: hidden;
}

.card-box__text .arrow {
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.section-breadcrumb__bg::after {
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgb(0 0 0 / 43%);
}

.section-breadcrumb__title {
    font-size: 3.4em;
    font-weight: 600;
    letter-spacing: 2px;
}

.breadcrumb .breadcrumb-item,
.breadcrumb .breadcrumb-item > a {
    color: var(--bs-gray-200);
    font-weight: 500;
    font-size: 1.05em;
}

.breadcrumb .breadcrumb-item > a:hover {
    color: var(--bs-white);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--bs-gray-200);
    content: var(--bs-breadcrumb-divider, "-") !important;
}

.category-head {
    background-color: #d8d8d8;
}

.category-head .category-head__link {
    font-weight: 600;
    font-size: 0.95em;
    color: var(--primary-color);
    padding: 3px 20px;
}

.category-head .category-head__link.active {
    opacity: 0.6;
}

.category-head .category-head__link:not(:last-child)::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 20px;
    background-color: #80808096;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.section-pagination li > a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8e6e6;
    color: var(--bs-gray-700);
    transition: var(--transition-default);
}

.section-pagination li > a:hover {
    background-color: var(--primary-color);
    color: var(--bs-white);
}

.detail-blogs__title {
    font-size: 2.2em;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
}

.detail-blogs__wrap {
    font-size: 1.05em;
}

.detailContent > * {
    font-family: var(--font-theme) !important;
    font-size: 15px;
}

.detailContent strong,
.detailContent b {
    font-weight: 600 !important;
}

.detailContent img {
    max-width: 100% !important;
    height: auto !important;
    margin: 5px 0;
}

.detailContent h1,
.detailContent h2,
.detailContent h3,
.detailContent h4,
.detailContent h5,
.detailContent h6,
.detailContent h1 strong,
.detailContent h2 strong,
.detailContent h3 strong,
.detailContent h4 strong,
.detailContent h5 strong,
.detailContent h6 strong {
    font-weight: 600;
    color: var(--primary-color);
}

.detailContent h1 {
    font-size: 2.1em;
}

.detailContent h2 {
    font-size: 1.8em;
}

.detailContent h3 {
    font-size: 1.7em;
}

.detailContent h4 {
    font-size: 1.6em;
}

.detailContent h5 {
    font-size: 1.5em;
}

.detailContent h6 {
    font-size: 1.4em;
}

.scroll-top {
    position: fixed;
    color: var(--bs-white);
    right: -10px;
    bottom: 22px;
    width: 50px;
    height: 50px;
    margin: 0;
    border-radius: 50%;
    cursor: pointer;
    background-color: rgb(90 83 83 / 59%);
    transition: all .3s ease-in-out;
    z-index: 4;
    border: 1px solid transparent;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.is-show {
    right: 22px;
    opacity: 1;
    visibility: visible;
}

.scroll-top svg {
    border-radius: 50%;
}

.scroll-top:hover {
    background-color: #292828;
}

.detail-project__bg {
    height: 40vh;
}

.detail-project__bg::after {
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgb(0 0 0 / 65%);
}

.detail-project .detail-project__top .section-heading {
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 25px;
    z-index: 2;
    width: 100%;
}

.detail-project .detail-project__top .section-heading .heading-title {
    font-weight: 400;
    text-transform: uppercase;
}

.detail-project .content-project {
    color: #c2c2c3 !important;
}

.detail-project .breadcrumb .breadcrumb-item,
.detail-project .breadcrumb .breadcrumb-item > a,
.detail-project .breadcrumb-item + .breadcrumb-item::before {
    color: var(--bs-gray-800);
    font-size: 1em;
    text-transform: uppercase;
    font-weight: 600;
}

.detail-project .breadcrumb .breadcrumb-item > a:hover {
    color: var(--primary-color);
}

.page-detail__price {
    font-weight: 600;
    font-size: 1.6em;
    color: red;
}

.page-detail__button {
    border: 1px solid var(--primary-color);
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition-default);
    max-width: 200px;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 1.8px;
    font-size: 0.95em;
}

.page-detail__button::after {
    content: "";
    width: 300px;
    height: 300px;
    transform: rotate(50deg);
    position: absolute;
    left: -318px;
    bottom: -165px;
    transition: .9s ease;
    z-index: 2;
    background-color: var(--primary-color);
}

.page-detail__button:hover::after {
    left: 9px;
    bottom: -125px;
}

.page-detail__button:hover {
    color: var(--bs-white);
}

.page-detail__button:last-child {
    color: var(--bs-white);
    background-color: var(--primary-color);
}

.page-detail__button:last-child::after {
    background-color: #333232;
}

.detail-project__image {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgb(86 92 90 / 14%);
}

.detail-project__image .top {
    padding: 7px 12px;
    background-color: var(--primary-color);
}

.detail-project__image .image {
    height: 520px;
}

.detail-project__image .image img {
    object-fit: cover;
    object-position: top center;
    transition: all 2.5s ease-in-out;
}

.detail-project__image:hover .image img {
    object-position: bottom center;
}

.category-project__head {
    background: #171717;
}

.category-project__top ul > li > a {
    border-radius: 25px;
    padding: 6px 18px;
    border: 1px solid var(--bs-gray-400);
    color: var(--text-color);
    font-size: 0.95em;
    font-weight: 500;
    letter-spacing: -.4px;
    background-color: #f7f5f5e0;
}

.category-project__top ul > li > a.active {
    border: 1px solid var(--primary-color);
    color: var(--bs-white);
    background-color: var(--primary-color);
}

.category-project__top ul > li > a.active img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.category-project__top ul > li > a .image {
    width: 20px;
    height: 20px;
}

.category-project .categoryProject .swiper {
    height: 460px;
}

.category-project__animation {
    height: 500px;
    opacity: 0.5;
    right: -20px;
    width: 50%;
}

.category-project__animation .card-swiper {
    width: 255px;
    height: 300px;
}

.category-project__animation .card-swiper img {
    object-position: top;
    border-radius: 8px;
    border: 1px solid rgba(159, 155, 155, 0.3);
    -webkit-filter: grayscale(95%);
    -moz-filter: grayscale(95%);
    -ms-filter: grayscale(95%);
    -o-filter: grayscale(95%);
    filter: grayscale(95%);
}

.category-project__animation .marquee {
    animation: scroll-y 60s linear infinite;
}

.category-project__animation .marquee-2 {
    transform: translateY(-100%);
    animation: scroll-y-2 40s linear infinite;
}

@keyframes scroll-y {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-500%);
    }
}

@keyframes scroll-y-2 {
    0% {
        transform: translateY(-100%);
    }
    50% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

.modal-theme__close {
    width: 32px;
    height: 32px;
    margin-left: auto;
    border: 1px solid var(--bs-gray-500);
    cursor: pointer;
    position: absolute;
    right: -10px;
    top: -10px;
    z-index: 2;
}

.modal-theme__close > span {
    height: 1px;
    width: 15px;
    background-color: var(--bs-gray-600);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-theme__close span:first-child {
    transform: rotate(45deg);
}

.modal-theme__close span:last-child {
    transform: rotate(-45deg);
}

.modal-theme__close:hover span:last-child {
    transform: rotate(0);
}

.modal-theme__close:hover span:first-child {
    transform: rotate(0);
    opacity: 0;
}

.modal-theme__title {
    font-weight: 600;
    font-size: 1.55em;
    letter-spacing: 2px;
}

.modal-theme__text {
    font-size: 0.95em;
}

.modal-theme__header {
    height: 130px;
}

.contact-form .form-control {
    height: 45px;
    border-radius: 25px;
    border: 1px solid #80808066;
    background-color: #c1c1c11c;
    padding-left: 52px;
    font-size: 14px;
}

.contact-form textarea.form-control {
    height: unset;
    resize: none;
    border-radius: 5px;
    padding: 12px 20px;
}

.contact-form .form-group .icon {
    width: 35px;
    top: 4px;
    left: 6px;
    bottom: 4px;
    border-radius: 50%;
    height: 36px;
}

.contact-form .form-group .icon svg {
    width: 16px;
    height: 16px;
}

.contact-form .form-group .icon svg path {
    stroke: var(--bs-white);
}

.contact-form .arrow-link {
    font-size: 0.95em;
    padding: 12px 30px;
}

.contact-list li > a {
    display: inline-flex;
    flex-direction: column;
    color: var(--primary-color);
    gap: 3px;
}

.contact-list li > a > .icon {
    display: inline-flex;
    text-transform: uppercase;
    gap: 5px;
    font-weight: 600;
    color: #8b8b8b;
    letter-spacing: 1.5px;
    font-size: 0.85em;
}

.contact-list li > a > .icon > svg {
    width: 16px;
    height: 16px;
}

.contact-list li > a > .icon > svg path {
    stroke: #8b8b8b;
}

.contact-list li > a > .title {
    padding-left: 22px;
}

.page-contact__company {
    height: 400px;
}

.page-contact__map iframe {
    max-width: 100% !important;
    height: 400px;
    filter: grayscale(1);
}

.page-contact .page-contact__left {
    background: #171717;
}

.page-contact__top {
    transform: translateY(-50%);
}

.page-contact__bg::after {
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgb(0 0 0 / 56%);
}

.page-contact__title {
    font-size: 2.8em;
    font-weight: 600;
    letter-spacing: 2px;
}

.page-contact__text {
    font-size: 1.05em;
}

.page-contact .contact-item .icon {
    width: 80px;
    flex-shrink: 0;
}

.page-contact .contact-item .icon img {
    filter: grayscale(90%);
    opacity: 0.3;
}

.page-contact .contact-item .icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 25px;
    height: 25px;
}

.page-contact .contact-item .icon svg path {
    fill: #393636;
}

.page-contact .contact-item .title {
    font-weight: 700;
    color: #495057;
    letter-spacing: 1.5px;
    font-size: 1em;
    text-transform: uppercase;
}

.page-contact .contact-item a {
    color: var(--text-color);
    font-weight: 500;
}

.page-contact .contact-item a:hover {
    color: var(--primary-color);
}

.page-contact .contact-form-2 .form-control {
    height: 45px;
    border-radius: 0;
    border: 1px solid #80808066;
    background-color: #c1c1c11c;
    padding-left: 58px;
    font-size: 14px;
}

.page-contact .contact-form-2 textarea.form-control {
    height: unset;
    padding: 12px 20px;
}

.page-contact .contact-form-2 .icon {
    height: 36px;
    width: 45px;
    top: 4px;
    left: 4px;
    background-color: #232020 !important
}

.page-contact .contact-form-2 .icon svg {
    width: 20px;

}

.page-contact .contact-form-2 .icon svg path {
    stroke: var(--bs-gray-200);
}

.page-contact .heading-title {
    font-size: 2em;
}

.page-404 .section-heading .heading-desc {
    font-weight: 500;
    font-size: 1.15em;
    line-height: 1.6;
}

.page-404 .section-heading .heading-desc a {
    color: var(--primary-color);
}

.section-intro__image::after {
    position: absolute;
    content: '';
    top: 30px;
    bottom: 30px;
    z-index: 1;
    width: 50px;
    left: 0;
    background-color: var(--primary-color);
}

.section-intro__number {
    position: absolute;
    top: 70px;
    z-index: 3;
    background-color: #fdfdfd;
    padding: 10px 20px;
    left: 15px;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.3;
}

.section-intro__number::after {
    position: absolute;
    content: '';
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px dashed gray;
}

.section-intro__number .number {
    font-size: 35px;
}

.heading-name {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 25px;
    color: #dbdbdb;
    font-weight: 700;
    font-size: 80px;
    margin-bottom: 20px;
    padding-left: 10px;
    opacity: 0.8;
    transition: all 0.8s ease;
}

.section-animation .heading-name.in-view {
    transform: translateX(0);
}

.section-animation .heading-name.out-view {
    transform: translateX(100px);
}

.section-intro .section-intro__wrap {
    margin-top: -65px;
}

.section-intro .col:nth-child(even) {
    margin-top: 55px;
}

.card-intro {
    padding: 20px;
}

.card-intro::after {
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    bottom: 0;
    height: 80%;
    z-index: 1;
    box-shadow: 0px 7px 25px 2px rgba(18, 21, 154, 0.1);
}

.card-intro__title {
    font-weight: 600;
    font-size: 1.2em;
}

.intro-counter_item .intro-counter_icon {
    width: 90px;
    height: 90px;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    padding: 15px;
}

.intro-counter_item .intro-counter_icon::after {
    background-color: rgb(152 151 148 / 21%);
    width: 50%;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.intro-counter_item .intro-counter_value {
    font-weight: 500;
    font-size: 2em;
}

.intro-counter_text {
    font-weight: 500;
}

.accordion-question .accordion-item {
    color: var(--primary-color);
    font-weight: 500;
}

.accordion-question .accordion-item button {
    padding: 17px;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
}

.accordion-question .accordion-item button:focus,
.accordion-question .accordion-button:not(.collapsed) {
    box-shadow: unset !important;
}

.accordion-question .accordion-item .accordion-collapse {
    color: rgba(32, 33, 36, 0.75);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.accordion-question .accordion-button:not(.collapsed)::after {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}

.accordion-question .accordion-item .accordion-body {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
    padding: 5px 35px 10px;
}

.section-procedure {
    padding: 50px 0 100px 0;
}

.card-procedure .number {
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    font-size: 2em;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid gray;
    flex-shrink: 0;
    transition: var(--transition-default);
}

.card-procedure .title {
    color: var(--primary-color);
    font-size: 1.4em;
    font-weight: 600;
}

.card-procedure .text {
    font-weight: 500;
    font-size: 1.1em;
    line-height: 1.5;
}

.section-procedure__line {
    animation: ShapeAnim 80s linear infinite;
    height: 30px;
    width: 100%;
    background-repeat: repeat;
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
}

@keyframes ShapeAnim {
    0% {
        background-position: top left;
    }
    100% {
        background-position: top left 2000px;
    }
}

.section-contact .contact-wrap {
    padding: 40px 20px;
}

.section-contact .contact-wrap::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgb(0 0 0 / 74%);
}

.section-contact .heading-title {
    font-size: 2em;
    line-height: 1.5;
}

.section-contact .hotline .number {
    font-weight: 500;
    font-size: 1.7em;
}
.section-introduction__image .image-1 {
    width: 37%;
    top: 6%;
    animation: animation-Y infinite 3s ease-in-out;
}

.section-introduction__image .image-2 {
    width: 25%;
    bottom: 10px;
    animation: animation-Y infinite 3.8s ease-in-out;
}

.section-introduction__image .image-3 {
    width: 21%;
    height: 56px;
    top: 10%;
    animation: animation-Y infinite 3.4s ease-in-out;
}

.section-introduction__image .image-4 {
    width: 36%;
    bottom: 5%;
    animation: animation-Y infinite 4.2s ease-in-out;
}

@keyframes animation-Y {
    50% {
        transform: translateY(15px)
    }
}

