@charset "UTF-8";

:root {
    --transition: all ease 0.4s;
    --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    --vuta-shadow: 0 24px 48px rgba(0, 0, 0, 0.075);
    --radius: 11px;
    --main-color: #1e40af
}

h1,
h2,
h3,
h4,
h5 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25
}

a,
button,
i,
img {
    transition: var(--transition)
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    100% {
        opacity: 1;
        transform: none
    }
}

.fadeindown {
    animation-name: fadeInDown;
    animation-duration: 1s;
    animation-fill-mode: both
}

@media screen and (max-width:996px) {
    .fadeindown {
        animation: none
    }
}

.line-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical
}

.line-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.line-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

.hero-section {
    background: var(--gradient-primary);
    color: #fff;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0)
    }

    33% {
        transform: translateY(-10px) rotate(1deg)
    }

    66% {
        transform: translateY(5px) rotate(-1deg)
    }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2
}

@media screen and (max-width:767px) {
    .hero-title {
        font-size: 2rem;
        text-align: center
    }
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 2rem;
    opacity: .9;
    line-height: 1.8;
    position: relative;
    z-index: 2
}

@media screen and (max-width:767px) {
    .hero-description {
        text-align: center
    }
}

.hero-buttons {
    position: relative;
    z-index: 2
}

@media screen and (max-width:767px) {
    .hero-buttons {
        text-align: center
    }
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    margin-right: 1rem;
    margin-bottom: 1rem
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow)
}

.hero-buttons .btn:active {
    transform: translateY(0)
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition)
}

.hero-image img:hover {
    transform: scale(1.05) rotate(2deg)
}

.features-section {
    padding: 80px 0
}

@media screen and (max-width:767px) {
    .features-section {
        padding: 40px 0
    }
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 1rem auto 0;
    border-radius: 2px
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    padding: 2rem;
    border: 2px solid transparent
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
    border-color: var(--primary)
}

.feature-icon {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

@media screen and (max-width:767px) {
    .feature-icon {
        font-size: 2.5rem
    }
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 1rem 0
}

.feature-description {
    color: #666;
    line-height: 1.8;
    font-size: 1rem
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: #fff
}

.btn-primary:hover {
    background: linear-gradient(45deg, #5a6fd8, #654a92);
    color: #fff
}

.btn-primary:focus {
    box-shadow: 0 0 0 .2rem rgba(102, 126, 234, .25)
}

.btn-outline-secondary {
    border: 2px solid rgba(255, 255, 255, .3);
    color: #fff;
    background: 0 0
}

.btn-outline-secondary:hover {
    background: #fff;
    color: #333;
    border-color: #fff
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.shadow-custom {
    box-shadow: var(--shadow)
}

.about-hero {
    background: var(--gradient-primary)
}

.about-hero .display-4 {
    font-size: clamp(2.5rem, 5vw, 3.5rem)
}

.team-card {
    transition: var(--transition)
}

.team-card:hover {
    transform: translateY(-5px)
}

.team-card .team-avatar img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--primary)
}

html {
    overflow-x: hidden
}

body {
    overflow: hidden;
    font-family: Nunito, sans-serif
}

.vuta-section {
    padding-top: 32px;
    transition: transform 1s, opacity 1s
}

.vuta-row-center {
    display: flex;
    align-items: center
}

.menu__page {
    margin-top: 0
}

.btn__global-register {
    display: flex;
    justify-content: center
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9999px;
    background: rgba(255, 255, 255, .94) !important;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
    -ms-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
    -o-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2)
}

@media (max-width:575.98px) {
    .vuta-order-sm-first {
        order: -1
    }
}

.section--hidden {
    opacity: 0;
    transform: translateY(8rem)
}

.section__bg {
    background-image: url(https://latien.datnenkhanhhoa.net/wp-content/uploads/2025/10/backgroung-La-Tien-Villa-Nha-trang.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    align-items: center !important;
    align-self: center !important;
    vertical-align: middle !important;
    background-position: center
}

.vuta-btn,
.vuta-btn:link,
.vuta-btn:visited {
    display: inline-block;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all .3s
}

.vuta-btn--full:link,
.vuta-btn--full:visited {
    background-color: #e67e22;
    color: #fff
}

.vuta-btn--full:active,
.vuta-btn--full:hover {
    background-color: #cf711f
}

.vuta-btn--outline:link,
.vuta-btn--outline:visited {
    background-color: #fff;
    color: #555
}

.vuta-btn--outline:active,
.vuta-btn--outline:hover {
    background-color: #fdf2e9;
    box-shadow: inset 0 0 0 3px #1098ad
}

.vuta-btn--form {
    background-color: #45260a;
    color: #fdf2e9;
    align-self: end;
    padding: 12px
}

.vuta-btn--form:hover {
    background-color: #fff;
    color: #555
}

.test-section {
    margin: 100px 0;
    display: grid;
    place-items: center
}

.test-section .item {
    width: 300px;
    height: 600px;
    box-shadow: var(--vuta-shadow)
}

.header-main.fixed-top .header-bottom {
    background: #fff;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .1019607843)
}

.box-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center
}

.box-content h2 {
    margin: 0;
    color: #0d1b2a;
    font-size: clamp(28px, 4.2vw, 40px);
    line-height: 1.2
}

@media (max-width:575.98px) {
    .box-content h2 {
        font-size: 24px
    }
}

.box-content p {
    margin: 12px auto 0;
    max-width: 640px;
    font-size: 16px;
    line-height: 1.75;
    color: #526075;
    margin-bottom: 0;
    /* text-align: left; */
}

@media (max-width:767.98px) {
    .box-content {
        margin-bottom: 20px
    }

    .box-content p {
        font-size: 15px;
        line-height: 1.7
    }
}

.bg-home {
    background-color: #f9f9f9
}

@media (max-width:575.98px) {
    section {
        padding: 40px 0 !important
    }
}

.header-top {
    background: #1e4079;
    height: 56px
}

@media (max-width:575.98px) {
    .header-top {
        display: none
    }
}

.header-top .header-top--contact {
    display: flex;
    align-items: center;
    line-height: 56px;
    justify-content: flex-end;
    gap: 25px
}

.header-top .header-top--contact .contact-item .contact-item--calls {
    display: flex;
    align-items: center;
    gap: 25px
}

.header-top .header-top--contact .contact-item .contact-item--calls a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff
}

.header-top .header-top--contact .contact-item .contact-item--calls .icon,
.header-top .header-top--contact .contact-item .contact-item--calls .text {
    color: #fff;
    line-height: 1;
    margin-left: 0;
}

@keyframes loop-translate-book {
    0% {
        transform: translateX(-120%)
    }

    20% {
        transform: translateX(-120%)
    }

    55% {
        transform: translateX(120%)
    }

    80% {
        transform: translateX(120%)
    }

    100% {
        transform: translateX(-120%)
    }
}

.header-top .header-top--contact .contact-item .header-top--booking {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f0c58d;
    border-color: #f0c58d;
    color: #1e4079;
    overflow: hidden;
    padding: 8px 20px;
    border-radius: 4px;
    text-transform: uppercase;
    font-family: Lato, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    line-height: 1.2
}

.header-top .header-top--contact .contact-item .header-top--booking::before {
    content: "";
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
    transform: translateX(-120%);
    will-change: transform;
    pointer-events: none;
    animation: loop-translate-book linear 4s infinite
}

.header-bottom {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    z-index: 991;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    height: 90px;
    display: flex;
    align-items: center
}

@media (max-width:575.98px) {
    .header-bottom {
        top: 0;
        background-color: #fff
    }
}

.header-bottom::before {
    content: "";
    position: absolute;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, .8) 60%, rgba(255, 255, 255, .6) 80%, rgba(255, 255, 255, 0) 100%);
    top: 0;
    right: 0;
    left: 0;
    bottom: -20px
}

@media (max-width:575.98px) {
    .header-bottom::before {
        display: none
    }
}

.header-bottom--inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.header-bottom--inner .header-bottom--logo {
    position: relative
}

.header-bottom--inner .header-bottom--logo img {
    width: 74px
}

.header-bottom--inner .header-bottom--nav {
    display: flex;
    align-items: center;
    gap: 30px
}

.header-bottom--inner .header-bottom--nav .navbar-list {
    display: flex;
    align-items: center;
    gap: 30px
}

.accordion {
    display: flex;
    gap: 30px
}

.accordion>li {
    position: relative;
    z-index: 1
}

.accordion>li::before {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    content: "";
    background-color: var(--main-color);
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    opacity: 0;
    filter: alpha(opacity=0)
}

.accordion>li:hover::before {
    width: 100%;
    opacity: 1
}

.accordion>li>.link>a {
    color: #000;
    font-size: 16px;
    color: var(--main-color);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px
}

.accordion>li>.link>a:hover {
    color: var(--main-color)
}

@media (max-width:991.98px) {
    .accordion {
        display: none
    }
}

.accordion .dropdown .link a i {
    position: relative;
    right: -6px
}

.accordion .dropdown .sub-menu li a {
    white-space: nowrap;
    padding: 10px 15px;
    border-bottom: 1px dashed #cdcdcd;
    display: flex;
    color: #000;
    transition: transform .25s ease
}

.accordion .dropdown .sub-menu li a:hover {
    transform: translateX(6px);
    color: var(--main-color)
}

.accordion .dropdown .sub-menu li::before {
    display: none
}

.accordion .dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible
}

.accordion .dropdown .sub-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all ease .4s;
    display: block;
    z-index: 99;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .1)
}

.header-bottom--languages {
    position: relative;
    z-index: 100
}

.header-bottom--languages .title-language {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color .25s ease, box-shadow .25s ease
}

.header-bottom--languages .title-language>img {
    object-fit: cover;
    border: 1px solid #e2e8f0
}

.header-bottom--languages .title-language .btn-dropdown--language {
    width: 10px;
    height: 10px;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease
}

.header-bottom--languages .title-language .btn-dropdown--language svg {
    width: 24px;
    height: 24px;
    display: block
}

.header-bottom--languages .dropdown-language {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 62px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease
}

.header-bottom--languages .content-dropdown {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .15);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.header-bottom--languages .content-dropdown a {
    width: 62px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: background-color .2s ease
}

.header-bottom--languages .content-dropdown a:hover {
    background-color: #f8fafc
}

.header-bottom--languages .content-dropdown a img {
    object-fit: cover;
    border: 1px solid #e2e8f0
}

.header-bottom--languages:hover .dropdown-language {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.header-bottom--languages:hover .btn-dropdown--language {
    transform: rotate(180deg)
}

.footer--main {
    background: #1e4079;
    padding: 0;
    position: relative
}

.footer--main::before {
    content: "";
    position: absolute;
    bottom: 100%;
    height: 52px;
    width: 100%;
    left: 0;
    background-color: #1e4079;
    clip-path: ellipse(58% 60% at 50% 72%)
}

.footer--main .footer-head {
    width: 200px;
    height: 100px;
    display: block;
    cursor: pointer;
    margin: 0 auto
}

.footer--main .footer-head img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.footer-main {
    margin-top: 32px
}

.footer-heading {
    font-size: 20px;
    color: #fff;
    margin-bottom: 16px
}

.footer-1 .text-info .link-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px
}

.footer-1 .text-info .link-item svg {
    width: 18px;
    height: 18px;
    color: #fff
}

.footer-1 .text-info .link-item a,
.footer-1 .text-info .link-item span {
    color: #fff;
    font-size: 16px
}

.footer-2 ul,
.footer-3 ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-2 ul li,
.footer-3 ul li {
    margin-bottom: 12px
}

.footer-2 ul li a,
.footer-3 ul li a {
    color: #fff;
    font-size: 16px;
    transition: color .3s ease
}

.footer-2 ul li a:hover,
.footer-3 ul li a:hover {
    color: #f59e0b
}

.footer-fanpage {
    width: 100%;
    max-width: 380px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    height: 130px
}

.footer-fanpage .fb-page,
.footer-fanpage .fb-page iframe,
.footer-fanpage .fb-page span {
    width: 100% !important;
    max-width: 100% !important
}

.footer__socials {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 10px
}

@media (max-width:575.98px) {
    .footer__socials {
        gap: 14px
    }
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    filter: grayscale(50%);
    transition: translate, filter;
    transition-duration: .3s
}

@media (max-width:575.98px) {
    .footer__social-link {
        width: 42px;
        height: 42px
    }
}

.footer__social-link--facebook {
    background: #4863a9
}

.footer__social-link--youtube {
    background: red
}

.footer__social-link--tiktok {
    background: #000
}

.footer__social-link--twitter {
    background: #4999e6
}

.footer__social-link--linkedin {
    background: #2f71ab
}

.footer__social-link:hover {
    filter: grayscale(0);
    translate: 0 -3px
}

.footer__social-icon {
    width: 14px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0) saturate(7482%) hue-rotate(72deg) brightness(99%) contrast(99%)
}

@media (max-width:575.98px) {
    .footer__social-icon {
        width: 18px
    }
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 24px
}

@media (max-width:575.98px) {
    .footer-bottom {
        margin-top: 20px;
        margin-bottom: 40px
    }
}

.footer-bottom p {
    margin-bottom: 0;
    color: #fff
}

.footer-bottom a {
    color: #f59e0b;
    transition: color .3s ease;
    font-weight: 700
}

.footer-bottom a:hover {
    color: #fff
}

@media (max-width:575.98px) {
    .footer-item {
        margin-bottom: 8px
    }
}

.home-banner {
    position: relative
}

.home-banner .banner-slider {
    position: relative;
    margin-bottom: 0
}

.home-banner .banner-slider .box-img {
    height: 700px;
    width: 100%;
    display: block
}

.home-banner .banner-slider .box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.home-banner .banner-slider .slick-dots {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 5
}

.home-banner .banner-slider .slick-dots li {
    width: 12px;
    height: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    line-height: 0;
    transition: width .3s ease
}

.home-banner .banner-slider .slick-dots li button {
    width: 100%;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .4);
    font-size: 0;
    padding: 0;
    cursor: pointer;
    transition: width .3s ease, background-color .25s ease, border-color .25s ease
}

.home-banner .banner-slider .slick-dots li button::before {
    content: none
}

.home-banner .banner-slider .slick-dots li.slick-active {
    width: 34px
}

.home-banner .banner-slider .slick-dots li.slick-active button {
    background: #fff;
    border-color: #fff;
    border-radius: 999px
}

.hero-search--form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1024px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .72));
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 5px;
    box-shadow: 0 26px 70px rgba(14, 37, 70, .22);
    padding: 48px
}

.hero-search--form .hero-search--title {
    font-size: 48px;
    text-transform: uppercase;
    color: var(--main-color);
    text-align: center;
    line-height: 1.08;
    letter-spacing: .02em
}

.hero-search--form .hero-search--desc {
    font-size: 18px;
    text-align: center;
    color: #424752;
    margin-top: 12px
}

.hero-form--search {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) auto;
    gap: 12px;
    max-width: 920px;
    margin: 28px auto 0;
    align-items: center
}

.hero-form--search .vuta-input {
    height: 52px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .95);
    color: #1e2a3b;
    border: 1px solid rgba(20, 47, 87, .16);
    box-shadow: 0 10px 24px rgba(19, 42, 77, .1);
    padding: 0 20px;
    outline: 0;
    font-weight: 500;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease
}

.hero-form--search .vuta-input::placeholder {
    color: #6a788d
}

.hero-form--search .vuta-input:focus {
    border-color: rgba(18, 95, 168, .55);
    box-shadow: 0 0 0 3px rgba(28, 109, 191, .16), 0 14px 30px rgba(19, 42, 77, .16);
    transform: translateY(-1px)
}

.hero-form--search select.vuta-input {
    cursor: pointer;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #3f5877 50%), linear-gradient(135deg, #3f5877 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 4px), calc(100% - 11px) calc(50% - 4px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 36px
}

.hero-form--search .hero-search--btn {
    background: linear-gradient(135deg, #0f83cb, #0d5ea3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 5px;
    width: auto;
    min-width: 168px;
    padding: 0 16px;
    height: 52px;
    border: 0;
    box-shadow: 0 14px 30px rgba(13, 94, 163, .34);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease
}

.hero-form--search .hero-search--btn .hero-icon--search {
    color: #fff;
    font-size: 22px
}

.hero-form--search .hero-search--btn .hero-search--btn-text {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap
}

.hero-form--search .hero-search--btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(10, 73, 127, .38);
    filter: brightness(1.03)
}

.hero-form--search .hero-search--btn:active {
    transform: translateY(0)
}

@media (max-width:991.98px) {
    .hero-search--form {
        padding: 28px 20px
    }

    .hero-search--form .hero-search--title {
        font-size: 34px
    }

    .hero-search--form .hero-search--desc {
        font-size: 16px
    }

    .hero-form--search {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .hero-form--search .vuta-input {
        height: 50px
    }

    .hero-form--search .hero-search--btn {
        width: 100%;
        border-radius: 5px;
        height: 50px;
        min-width: 0;
        padding: 0 14px
    }
}

@media (max-width:575.98px) {
    .hero-search--form {
        padding: 20px 14px;
        border-radius: 5px
    }

    .hero-search--form .hero-search--title {
        font-size: 26px
    }

    .hero-search--form .hero-search--desc {
        font-size: 14px;
        margin-top: 8px
    }
}

.home-hotel {
    padding: 60px 0
}

.home-hotel--list {
    margin-top: 24px
}

.home-hotel--item {
    border-radius: 5px;
    overflow: hidden;
    transition: box-shadow .3s ease;
    margin-bottom: 20px
}

.home-hotel--item .box-img {
    overflow: hidden;
    position: relative;
    height: 260px
}

.home-hotel--item .box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease
}

.home-hotel--item .box-img .hotel-sub--content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: linear-gradient(180deg, rgba(8, 22, 42, .12), rgba(8, 22, 42, .64));
    opacity: 0;
    transition: opacity .3s ease
}

.home-hotel--item .box-img .hotel-sub--content a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    min-width: 126px;
    text-align: center;
    padding: 9px 16px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .45);
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease
}

.home-hotel--item .box-img .hotel-sub--content a:hover {
    background-color: #0f83cb;
    border-color: #0f83cb
}

.home-hotel--item .box-img:hover img {
    transform: scale(1.06)
}

.home-hotel--item .box-img:hover .hotel-sub--content {
    opacity: 1
}

.home-hotel--item .home-hotel--content {
    margin-top: 20px
}

.home-hotel--item .home-hotel--title {
    font-size: 22px;
    font-weight: 700;
    color: #1e4079;
    margin-bottom: 12px;
    line-height: 1.3;
    text-transform: capitalize
}

.home-hotel--item .home-hotel--services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.home-hotel--item .hotel-service--item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2b4667
}

.home-hotel--item .hotel-service--item .icon {
    width: 24px;
    height: 24px;
    margin: 0;
    padding: 0;
}

.home-hotel--item .hotel-service--item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hotel--item .hotel-service--item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.home-hotel--item .hotel-service--item .text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #302e2d;
    margin-left: 0;
}

@media (max-width:767.98px) {
    .home-hotel--item .box-img {
        height: 220px
    }

    .home-hotel--item .home-hotel--content {
        padding: 0
    }

    .home-hotel--item .home-hotel--title {
        font-size: 20px;
        margin-bottom: 10px
    }

    .home-hotel--item .hotel-service--item {
        padding: 5px 0
    }
}

.home-tour {
    padding: 60px 0
}

.home-tour--slider {
    padding-top: 20px;
    margin: -10px
}

@media (max-width:575.98px) {
    .home-tour--slider {
        padding-top: 0
    }
}

.home-tour--slider .item {
    margin: 10px
}

.home-tour--item {
    position: relative;
    transition: all .3s ease;
    border-radius: 8px
}

.home-tour--item:hover {
    filter: brightness(1.03);
    transform: translateY(-2px)
}

.home-tour--item .home-tour--link {
    position: absolute;
    inset: 0;
    z-index: 1
}

.home-tour--item .box-img {
    position: relative;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.home-tour--item .box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease
}

.home-tour--item .box-img img:hover {
    transform: scale(1.05)
}

.home-tour--item .home-tour--content {
    padding: 16px;
    background: rgba(10, 73, 127, .08);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px
}

.home-tour--item .home-tour--content .home-tour--title {
    font-size: 20px;
    color: var(--main-color);

    -webkit-line-clamp: 2;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;

    min-height: 50px;        
}

.tour-list--note p {
    -webkit-line-clamp: 4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    min-height: 103px;
}

.home-tour--item .home-pro--fl {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;    
    min-height: 61px;
}

.tour-list--note p span {
    background: none !important;
}

@media (max-width:575.98px) {
    .home-tour--item .home-pro--fl {
        justify-content: space-between
    }
}

.home-tour--item .home-pro--fl .pro-price {
    display: flex;
    flex-direction: column
}

.home-tour--item .home-pro--fl .pro-price .price-old {
    font-size: 14px;
    color: #424243;
    text-decoration: line-through
}

.home-tour--item .home-pro--fl .pro-price .price-current {
    display: flex;
    align-items: center;
    gap: 2px
}

.home-tour--item .home-pro--fl .pro-price .price-current .text {
    font-size: 24px;
    color: var(--main-color);
    font-weight: 700
}

.home-tour--item .home-pro--fl .pro-rate .time-actions {
    display: flex;
    align-items: center;
    gap: 4px
}

.home-tour--item .home-pro--fl .pro-rate .time-actions .text {
    font-size: 12px;
    color: #424243
}

.tour-list--note li {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 8px 0
}

.tour-list--note li .icon {
    color: var(--main-color)
}

.tour-list--note li .text {
    font-size: 14px;
    color: #424243;
    font-style: italic;
    font-weight: 700
}

.home-tour--slider .slick-arrow {
    position: absolute;
    top: -36px;
    width: 40px;
    height: 40px;
    z-index: 10;
    cursor: pointer;
    border: 1px solid #036ca3;
    border-radius: 4px;
    background: #fff;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center
}

.home-tour--slider .slick-arrow:hover {
    background: #036ca3
}

.home-tour--slider .slick-arrow:hover::before {
    color: #fff
}

.home-tour--slider .slick-arrow::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    color: #036ca3;
    opacity: 1;
    transition: all .3s ease
}

.home-tour--slider .slick-prev {
    right: 50px;
    left: auto
}

.home-tour--slider .slick-prev::before {
    content: "\f053"
}

.home-tour--slider .slick-next {
    right: 0
}

.home-tour--slider .slick-next::before {
    content: "\f054"
}

.as-tour {
    padding: 40px 0;
    background: rgba(10, 73, 127, .08)
}

.as-tour--item {
    display: flex;
    align-items: center;
    gap: 16px
}

@media (max-width:575.98px) {
    .as-tour--item {
        gap: 24px;
        margin-top: 8px
    }
}

.as-tour--item .box-img {
    width: 56px;
    height: 56px
}

.as-tour--item .box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.as-tour--item .as-tour--content .as-tour--title {
    font-size: 18px;
    margin-bottom: 0
}

.blog-news {
    padding: 60px 0;
    background: rgba(10, 73, 127, .08)
}

.blog-news--slider {
    margin: 20px -10px
}

.blog-news--slider .item {
    margin: 10px
}

.blog-new--item {
    display: flex;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border-radius: 8px;
    transition: all .3s ease;
    position: relative
}

.blog-new--item .blog-new--link {
    position: absolute;
    inset: 0;
    z-index: 1
}

.blog-new--item:hover {
    filter: brightness(1.03);
    transform: translateY(-2px)
}

.blog-new--item .box-img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.blog-new--item .box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease
}

.blog-new--item .box-img img:hover {
    transform: scale(1.05)
}

.blog-new--item .blog-new--content {
    padding: 0 16px 16px 16px
}

.blog-new--item .blog-new--content .blog-new--title {
    font-size: 20px;
    color: var(--main-color);
    min-height: 50px;
    -webkit-line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis
}

.blog-new--item .blog-new--content .blog-new--desc {
    font-size: 16px;
    color: #555;
    -webkit-line-clamp: 3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    margin-bottom: 0;
    min-height: 77px;
}

.view-more--blog {
    position: relative;
    display: flex;
    z-index: 2;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
    color: var(--main-color)
}

.view-more--blog i {
    transition: transform .25s ease
}

.view-more--blog:hover i {
    transform: translateX(4px)
}

.blog-news--slider .slick-arrow {
    position: absolute;
    top: -36px;
    width: 40px;
    height: 40px;
    z-index: 10;
    cursor: pointer;
    border: 1px solid #036ca3;
    border-radius: 4px;
    background: #fff;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center
}

.blog-news--slider .slick-arrow:hover {
    background: #036ca3
}

.blog-news--slider .slick-arrow:hover::before {
    color: #fff
}

.blog-news--slider .slick-arrow::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    color: #036ca3;
    opacity: 1;
    transition: all .3s ease
}

.blog-news--slider .slick-prev {
    right: 50px;
    left: auto
}

.blog-news--slider .slick-prev::before {
    content: "\f053"
}

.blog-news--slider .slick-next {
    right: 0
}

.blog-news--slider .slick-next::before {
    content: "\f054"
}

.feedback,
.feedback-section,
.home-feedback {
    position: relative;
    padding: 76px 0;
    overflow: hidden
}

.feedback-section::after,
.feedback-section::before,
.feedback::after,
.feedback::before,
.home-feedback::after,
.home-feedback::before {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none
}

.feedback-section::before,
.feedback::before,
.home-feedback::before {
    width: 320px;
    height: 320px;
    top: -120px;
    left: -110px
}

.feedback-section::after,
.feedback::after,
.home-feedback::after {
    width: 360px;
    height: 360px;
    right: -150px;
    bottom: -160px
}

.feedback--header {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center
}

.feedback--label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(30, 64, 175, .1);
    color: #1e40af;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase
}

@media (max-width:575.98px) {
    .feedback--label {
        font-size: 12px
    }
}

.feedback--title {
    margin: 0;
    color: #0d1b2a;
    font-size: clamp(28px, 4.2vw, 40px);
    line-height: 1.2
}

.feedback--desc {
    margin: 12px auto 0;
    max-width: 640px;
    color: #526075;
    font-size: 16px;
    line-height: 1.75
}

.feedback--slider,
.feedback-slider,
.testimonial-slider {
    position: relative;
    z-index: 1;
    margin: 0 -14px
}

.feedback--slider .item,
.feedback-slider .item,
.testimonial-slider .item {
    margin: 14px
}

.feedback-card,
.feedback-item,
.testimonial-item {
    position: relative;
    height: 100%;
    min-height: 260px;
    border-radius: 18px;
    padding: 28px 24px 24px;
    background: #fff;
    border: 1px solid rgba(30, 64, 175, .08);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease
}

.feedback-card::before,
.feedback-item::before,
.testimonial-item::before {
    content: "“";
    position: absolute;
    top: 10px;
    right: 18px;
    color: rgba(30, 64, 175, .13);
    font-size: 72px;
    line-height: 1;
    font-family: Georgia, serif;
    pointer-events: none
}

.feedback-card:hover,
.feedback-item:hover,
.testimonial-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 54px rgba(13, 27, 42, .14);
    border-color: rgba(30, 64, 175, .26)
}

.feedback-item--rating,
.feedback-rating,
.feedback-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
    color: #f59e0b;
    font-size: 14px
}

.feedback-item--rating i,
.feedback-item--rating svg,
.feedback-rating i,
.feedback-rating svg,
.feedback-stars i,
.feedback-stars svg {
    display: inline-block
}

.feedback-content,
.feedback-item--content,
.testimonial-content {
    margin: 0;
    color: #334155;
    font-size: 16px;
    line-height: 1.85
}

.feedback-author,
.feedback-item--footer,
.feedback-item--meta,
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(15, 23, 42, .08)
}

.feedback-author--avatar,
.feedback-item--avatar,
.testimonial-avatar {
    width: 52px;
    min-width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(14, 116, 144, .14);
    background: linear-gradient(135deg, #e0f2fe 0, #dbeafe 100%)
}

.feedback-author--avatar img,
.feedback-item--avatar img,
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.feedback-author--name,
.feedback-item--name,
.testimonial-name {
    margin: 0;
    color: #0f172a;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3
}

.feedback-author--role,
.feedback-item--role,
.testimonial-role {
    margin: 2px 0 0;
    color: #64748b;
    font-size: 13px
}

.feedback--slider .slick-track,
.feedback-slider .slick-track,
.testimonial-slider .slick-track {
    display: flex
}

.feedback--slider .slick-slide,
.feedback-slider .slick-slide,
.testimonial-slider .slick-slide {
    height: inherit
}

.feedback--slider .slick-slide>div,
.feedback-slider .slick-slide>div,
.testimonial-slider .slick-slide>div {
    height: 100%
}

.feedback--slider .slick-arrow,
.feedback-slider .slick-arrow,
.testimonial-slider .slick-arrow {
    position: absolute;
    top: -62px;
    width: 42px;
    height: 42px;
    z-index: 10;
    cursor: pointer;
    border: 1px solid #036ca3;
    border-radius: 10px;
    background: #fff;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center
}

.feedback--slider .slick-arrow:hover,
.feedback-slider .slick-arrow:hover,
.testimonial-slider .slick-arrow:hover {
    background: #036ca3
}

.feedback--slider .slick-arrow:hover::before,
.feedback-slider .slick-arrow:hover::before,
.testimonial-slider .slick-arrow:hover::before {
    color: #fff
}

.feedback--slider .slick-arrow::before,
.feedback-slider .slick-arrow::before,
.testimonial-slider .slick-arrow::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    color: #036ca3;
    opacity: 1;
    transition: all .3s ease
}

.feedback--slider .slick-prev,
.feedback-slider .slick-prev,
.testimonial-slider .slick-prev {
    right: 56px;
    left: auto
}

.feedback--slider .slick-prev::before,
.feedback-slider .slick-prev::before,
.testimonial-slider .slick-prev::before {
    content: "\f053"
}

.feedback--slider .slick-next,
.feedback-slider .slick-next,
.testimonial-slider .slick-next {
    right: 0
}

.feedback--slider .slick-next::before,
.feedback-slider .slick-next::before,
.testimonial-slider .slick-next::before {
    content: "\f054"
}

.feedback--slider .slick-dots,
.feedback-slider .slick-dots,
.testimonial-slider .slick-dots {
    bottom: -40px
}

.feedback--slider .slick-dots li,
.feedback-slider .slick-dots li,
.testimonial-slider .slick-dots li {
    width: 24px;
    margin: 0
}

.feedback--slider .slick-dots li button,
.feedback-slider .slick-dots li button,
.testimonial-slider .slick-dots li button {
    width: 100%;
    padding: 0
}

.feedback--slider .slick-dots li button::before,
.feedback-slider .slick-dots li button::before,
.testimonial-slider .slick-dots li button::before {
    content: "";
    width: 24px;
    height: 6px;
    border-radius: 999px;
    background: rgba(2, 132, 199, .24);
    opacity: 1
}

.feedback--slider .slick-dots li.slick-active button::before,
.feedback-slider .slick-dots li.slick-active button::before,
.testimonial-slider .slick-dots li.slick-active button::before {
    background: #0284c7
}

@media (max-width:991.98px) {

    .feedback,
    .feedback-section,
    .home-feedback {
        padding: 64px 0
    }

    .feedback--slider .slick-arrow,
    .feedback-slider .slick-arrow,
    .testimonial-slider .slick-arrow {
        top: -54px
    }
}

@media (max-width:767.98px) {

    .feedback,
    .feedback-section,
    .home-feedback {
        padding: 52px 0
    }

    .feedback--header {
        margin-bottom: 22px
    }

    .feedback-card,
    .feedback-item,
    .testimonial-item {
        min-height: 240px;
        padding: 22px 18px 18px
    }

    .feedback-card::before,
    .feedback-item::before,
    .testimonial-item::before {
        font-size: 60px;
        top: 8px;
        right: 14px
    }

    .feedback-content,
    .feedback-item--content,
    .testimonial-content {
        font-size: 15px;
        line-height: 1.75
    }

    .feedback--slider,
    .feedback-slider,
    .testimonial-slider {
        margin: 0 -8px
    }

    .feedback--slider .item,
    .feedback-slider .item,
    .testimonial-slider .item {
        margin: 8px
    }

    .feedback--slider .slick-arrow,
    .feedback-slider .slick-arrow,
    .testimonial-slider .slick-arrow {
        width: 36px;
        height: 36px;
        top: -48px;
        border-radius: 8px
    }

    .feedback--slider .slick-prev,
    .feedback-slider .slick-prev,
    .testimonial-slider .slick-prev {
        right: 44px
    }
}

.home-places--intro {
    padding: 60px 0
}

.places-intro--grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: "a b c c" "d b e f";
    grid-auto-rows: 282px;
    gap: 24px
}

@media (max-width:575.98px) {
    .places-intro--grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        grid-template-areas: "a d" "b d" "c e" "c f";
        grid-auto-rows: 160px
    }
}

.places-intro--grid .places-intro--item {
    position: relative;
    display: block
}

.places-intro--grid .places-intro--item .box-img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: cover
}

.places-intro--grid .places-intro--item .box-img img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: cover
}

.places-intro--grid .places-intro--item .places-intro--content {
    position: absolute;
    z-index: 1;
    bottom: 24px;
    left: 24px;
    color: #fff
}

@media (max-width:575.98px) {
    .places-intro--grid .places-intro--item .places-intro--content {
        bottom: 12px;
        left: 12px
    }
}

.places-intro--grid .places-intro--item .places-intro--content h3 {
    margin: 0;
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.2
}

@media (max-width:575.98px) {
    .places-intro--grid .places-intro--item .places-intro--content h3 {
        font-size: 14px
    }
}

.places-intro--grid .places-intro--item:nth-child(1) {
    grid-area: a
}

.places-intro--grid .places-intro--item:nth-child(2) {
    grid-area: b
}

.places-intro--grid .places-intro--item:nth-child(3) {
    grid-area: c
}

.places-intro--grid .places-intro--item:nth-child(4) {
    grid-area: d
}

.places-intro--grid .places-intro--item:nth-child(5) {
    grid-area: e
}

.places-intro--grid .places-intro--item:nth-child(6) {
    grid-area: f
}

.wrap-booking--btn {
    display: none
}

@media (max-width:575.98px) {
    .wrap-booking--btn {
        display: block;
        position: fixed;
        top: unset;
        left: 0;
        bottom: 0;
        width: 100%;
        z-index: 9999999999
    }
}

.wrap-booking--btn .booking-btn {
    position: relative;
    background-color: #f0c58d;
    border-color: #f0c58d;
    color: #1e4079;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 5px;
    transition: .5s;
    padding: 8px 20px;
    text-align: center
}

.wrap-booking--btn .booking-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
    transform: translateX(-120%);
    will-change: transform;
    pointer-events: none;
    animation: loop-translate-book linear 4s infinite
}

.modal__popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    height: 90vh;
    background-color: #f3f3f3;
    padding: 36px;
    box-shadow: 0 4rem 6rem rgba(0, 0, 0, .3);
    z-index: 9999999;
    transition: all .5s;
    overflow: hidden
}

@media (max-width:991.98px) {
    .modal__popup {
        width: 70vw;
        padding: 48px;
        height: 80vh
    }
}

@media (max-width:575.98px) {
    .modal__popup {
        width: 86vw;
        padding: 24px;
        height: 80vh
    }
}

.modal__popup .modal__popup-inner {
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none
}

@media (max-width:991.98px) {
    .modal__popup .modal__popup-inner {
        height: 80vh
    }
}

.modal__popup .modal__popup-inner .modal__popup-content {
    text-align: center
}

.modal__popup .modal__popup-inner .modal__popup-content h3 {
    font-size: 22px;
    margin: 16px 0 0 0
}

.modal__popup .modal__popup-inner .modal__popup-content h2 {
    font-size: 24px;
    color: var(--main-color);
    margin-bottom: 8px;
    font-weight: 700
}

.overlay__popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    backdrop-filter: blur(4px);
    z-index: 9999998;
    transition: all .5s
}

.btn--close-modal {
    position: absolute;
    top: -14px;
    right: 8px;
    font-size: 32px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    background: 0 0;
    transition: all .3s
}

@media (max-width:991.98px) {
    .btn--close-modal {
        top: -11px;
        right: 12px
    }
}

@media (max-width:575.98px) {
    .btn--close-modal {
        font-size: 24px;
        top: -11px;
        right: 4px
    }
}

.btn--close-modal:hover {
    color: var(--main-color)
}

.hidden__popup {
    visibility: hidden;
    opacity: 0
}

.modal__popup.hidden__popup,
.overlay__popup.hidden__popup {
    visibility: hidden;
    opacity: 0;
    pointer-events: none
}

body.popup-open {
    overflow: hidden !important
}

body.popup-open.popup-open {
    position: fixed;
    width: 100%
}

.line-clamp {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis
}

.line-clamp-2 {
    -webkit-line-clamp: 2
}

.line-clamp-3 {
    -webkit-line-clamp: 3
}

.line-clamp-4 {
    -webkit-line-clamp: 4
}

.line-clamp-5 {
    -webkit-line-clamp: 5
}

.line-clamp-1 {
    -webkit-line-clamp: 1
}

.navigation__list {
    background-image: linear-gradient(to right bottom, rgba(126, 213, 111, .8), rgba(40, 180, 133, .8));
    width: 100%;
    height: 100vh;
    padding: 30px 30px
}

.navigation__list .navigation__link:link,
.navigation__list .navigation__link:visited {
    display: inline-block;
    font-size: 3rem;
    font-weight: 300;
    padding: 1rem 2rem;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    background-color: #55c57a;
    background-image: linear-gradient(120deg, transparent 0, transparent 50%, #fff 50%);
    background-size: 220%;
    transition: all .4s;
    border-radius: var(--radius);
    border: 5px solid #55c57a
}

.navigation__list .navigation__link:link:hover,
.navigation__list .navigation__link:visited:hover {
    background-position: 100%;
    color: #55c57a;
    border-radius: var(--radius);
    transform: translateX(1rem)
}

.btn__animation,
.btn__animation:link,
.btn__animation:visited {
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.5rem 4rem;
    display: inline-block;
    border-radius: 10rem;
    transition: all .2s;
    position: relative;
    font-size: 1.6rem;
    border: none;
    cursor: pointer
}

.btn__animation:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2)
}

.btn__animation:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0
}

.btn__animation:active,
.btn__animation:focus {
    outline: 0;
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2)
}

.btn__animation--white {
    background-color: #fff;
    color: #777
}

.btn__animation--white::after {
    background-color: #fff
}

.btn__animation::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s
}

@keyframes moveinBottom {
    0% {
        opacity: 0;
        transform: translateY(30px)
    }

    100% {
        transform: translate(0);
        opacity: 1
    }
}

.btn__animation--animated {
    animation: moveinBottom .5s ease-out .75s;
    animation-fill-mode: backwards
}

.btn__text {
    font-size: 1.6rem;
    color: #55c57a;
    padding: 4px 0;
    display: inline-block;
    text-decoration: none;
    border-bottom: 1px solid #55c57a;
    padding: 3px;
    transition: all .2s;
    cursor: pointer
}

.btn__text:hover {
    background-color: #55c57a;
    color: #fff;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .15);
    transform: translateY(-2px)
}

.btn__text:active {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    transform: translateY(0)
}

.tesst {
    background-color: #1098ad
}

@media (max-width:575.98px) {
    .tesst {
        background-color: red
    }
}

#button-contact-vr {
    position: fixed;
    bottom: 106px;
    z-index: 99999;
    right: 0
}

#button-contact-vr .button-contact {
    position: relative;
    margin-top: -15px
}

#button-contact-vr .button-contact .phone-vr {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 90px;
    height: 90px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: block
}

.phone-vr-circle-fill {
    width: 65px;
    height: 65px;
    top: 12px;
    left: 12px;
    position: absolute;
    box-shadow: 0 0 0 0 #c31d1d;
    background-color: rgba(230, 8, 8, .7);
    border-radius: 50%;
    border: 2px solid transparent;
    -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animuiion: zoom2 1.3s infinite;
    animation: zoom2 1.3s infinite
}

.phone-vr-img-circle {
    background-color: #e60808;
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 25px;
    left: 25px;
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phone-vr-circle-fill 1s infinite ease-in-out
}

.phone-vr-img-circle img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%)
}

.phone-vr-img-circle a {
    display: block;
    line-height: 43px
}

.phone-bar a {
    position: fixed;
    bottom: 25px;
    left: 30px;
    z-index: -1;
    color: #fff;
    font-size: 16px;
    padding: 8px 15px 7px 50px;
    border-radius: 100px;
    white-space: nowrap;
    background: #f44336;
    letter-spacing: 1.5px;
    font-weight: 700
}

@-webkit-keyframes phone-vr-circle-fill {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }
}

@-webkit-keyframes zoom2 {
    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

@keyframes zoom2 {
    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

.phone-bar a:hover {
    opacity: .8;
    color: #fff
}

#mess img {
    border-radius: 50%
}

#zalo-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2196f3;
    background-color: rgba(33, 150, 243, .7)
}

#zalo-vr .phone-vr-img-circle {
    background-color: #2196f3
}

#messenger-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #0866ff;
    background-color: rgba(8, 102, 255, .7)
}

#messenger-vr .phone-vr-img-circle {
    background-color: #0866ff
}

#email-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #34a853;
    background-color: rgba(234, 67, 53, .7)
}

#email-vr .phone-vr-img-circle {
    background-color: #fbbc04
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 50px;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
    background: #1c1c1c;
    opacity: .5;
    color: #fff;
    display: none;
    transition: all ease .4s;
    z-index: 99999
}

.back-to-top.active {
    display: flex
}

.back-to-top:hover {
    opacity: 1
}

.popup-search {
    position: fixed;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    background: rgba(0, 0, 0, .9);
    top: 0;
    transition: transform .7s ease;
    display: none
}

.popup-search .popup-content {
    position: absolute;
    z-index: 9999;
    width: 100%;
    height: 100%;
    text-align: center;
    position: relative
}

.popup-search .close-btn {
    position: absolute;
    color: #fff;
    right: 30px;
    font-weight: 700;
    padding: 0 8px;
    border-radius: 50%;
    border: 2px #fff solid;
    top: 15px;
    font-size: 15px;
    cursor: pointer
}

.popup-search .form-search {
    top: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: min(600px, 100% - 10px)
}

.popup-search .form-search form {
    position: relative
}

.popup-search .form-search input {
    background: #fff;
    border: none;
    outline: 0;
    height: 60px;
    line-height: 30px;
    font-size: 16px;
    color: #272727;
    padding: 15px 30px;
    width: 100%
}

.popup-search .form-search button {
    position: absolute;
    background: #48cae4;
    border: none;
    height: 60px;
    width: 60px;
    color: #fff;
    top: 0;
    right: 0;
    transition: all ease .4s
}

.mobile__btn {
    display: none
}

.mobile__btn svg {
    width: 24px;
    height: 24px
}

.mobile__btn .iconOpen {
    color: #000
}

.mobile__btn .iconClose {
    color: red
}

@media (max-width:991.98px) {
    .mobile__btn {
        display: block
    }
}

.contact-item--calls--mobile a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
    font-size: 14px
}

#mobile-btn span {
    background: #000;
    height: 3px;
    width: 25px;
    display: block
}

#menu-mobile {
    position: fixed;
    background-color: rgba(0, 0, 0, .3);
    left: 0;
    top: 100%;
    transition: .5s;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1000
}

#menu-mobile.active {
    top: 0;
    visibility: visible;
    opacity: 1
}

#menu-mobile .mobile-link {
    display: flex;
    align-items: center;
    gap: 10px
}

#menu-mobile .wraper-menu-mobile {
    width: 100%;
    height: 95%;
    z-index: 99999;
    top: 100%;
    left: 0;
    border-radius: 20px 20px 0 0;
    padding: 45px 15px 30px;
    position: relative;
    background-color: #fff;
    transition: .5s;
    margin: 0;
    overflow-y: scroll
}

#menu-mobile.active .wraper-menu-mobile {
    top: 0
}

#menu-mobile .close-mobile-menu {
    display: block;
    position: absolute;
    top: 5px;
    right: 25px;
    padding: 10px;
    font-size: 20px
}

#menu-mobile .list-mobile-menu {
    padding-left: 10px
}

#menu-mobile .list-mobile-menu>li>.mobile-link>a {
    font-weight: 700;
    text-transform: uppercase;
    color: #000
}

#menu-mobile .list-mobile-menu ul {
    padding-left: 20px;
    margin-top: 12px
}

#menu-mobile .list-mobile-menu ul li {
    margin-bottom: 10px
}

#menu-mobile .list-mobile-menu ul li a {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 15px;
    color: #ffc300
}

#menu-mobile .list-mobile-menu>li+li {
    border-top: 1px solid #ececec;
    margin-top: 10px;
    padding-top: 10px
}

.mobile__header {
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
    -ms-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
    -o-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2)
}

.menu__overlay {
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    z-index: 200;
    display: block;
    background-color: rgba(0, 0, 0, .8);
    height: 100%;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s
}

#mobile__header.active__menu-mobile .menu__overlay {
    right: 0;
    opacity: 1;
    visibility: visible
}

#mobile__header.closing__menu-mobile .menu__overlay {
    right: -100%;
    opacity: 0;
    visibility: hidden
}

.menu__drawer {
    position: fixed;
    inset: 0 20% 0 0;
    background-color: #fff;
    z-index: 201;
    padding: 20px;
    transform: translateX(-100%);
    border-radius: 0 20px 20px 0;
    transition: .5s ease;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
    -ms-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
    -o-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2)
}

#mobile__header.active__menu-mobile .menu__overlay {
    opacity: 1;
    visibility: visible
}

#mobile__header.active__menu-mobile .menu__drawer {
    transform: translateX(0)
}

.logo__mobile-img {
    width: 120px;
    height: auto
}

.mobile__nav {
    margin-top: 16px
}

.mobile__nav li {
    padding: 0 15px;
    border-bottom: 1px solid #ddd
}

.mobile__nav li a {
    padding: 16px 0;
    color: #000;
    display: block;
    font-weight: 700;
    text-transform: uppercase
}

.menu-mobile--list .menu-mobile--item .menu-mobile--link {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.menu-mobile--body {
    overflow-y: auto;
    max-height: calc(100vh - 80px)
}

.menu-mobile--list {
    list-style: none;
    padding: 0;
    margin: 0
}

.menu-mobile--item:last-child {
    border-bottom: none
}

.menu-mobile--link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    color: #1a162e;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    transition: color .3s ease
}

.menu-mobile--link:hover {
    color: var(--main-color, #0071e3)
}

.menu-mobile--link span {
    flex: 1;
    color: #181114;
    text-transform: uppercase
}

.menu-mobile--link .arrow-icon {
    flex-shrink: 0;
    margin-left: 8px;
    transform: rotate(-90deg);
    transition: transform .3s ease;
    width: 20px;
    height: 20px
}

.menu-mobile--link .arrow-icon path {
    stroke: #1a162e
}

.menu-mobile--item.active>.menu-mobile--link .arrow-icon {
    transform: rotate(0)
}

.dropdown-level-2 {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease
}

.menu-mobile--item.active>.dropdown-level-2 {
    max-height: 1000px;
    padding: 8px 0
}

.dropdown-level-2--list {
    list-style: none;
    padding: 0;
    margin: 0
}

.dropdown-level-2--link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 12px;
    color: #4a4a4a;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    transition: background-color .3s ease, color .3s ease;
    text-transform: uppercase
}

.dropdown-level-2--link:hover {
    color: var(--main-color, #0071e3)
}

.dropdown-level-2--link span {
    flex: 1
}

.dropdown-level-2--link .arrow-icon {
    flex-shrink: 0;
    margin-left: 8px;
    width: 10px;
    height: 10px;
    transform: rotate(-90deg);
    transition: transform .3s ease
}

.dropdown-level-2--link .arrow-icon path {
    stroke: #4a4a4a
}

.dropdown-level-2--item.active>.dropdown-level-2--link {
    color: var(--main-color, #0071e3)
}

.dropdown-level-2--item.active>.dropdown-level-2--link .arrow-icon {
    transform: rotate(0)
}

.dropdown-level-2--item.active>.dropdown-level-2--link .arrow-icon path {
    stroke: var(--main-color, #0071e3)
}

.dropdown-level-3 {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    background-color: #fff
}

.dropdown-level-2--item.active>.dropdown-level-3 {
    max-height: 500px
}

.dropdown-level-3--list {
    list-style: none;
    padding: 8px 0;
    margin: 0
}

.dropdown-level-3--item {
    position: relative
}

.dropdown-level-3--link {
    display: block;
    padding: 10px 20px 10px 16px;
    color: #666;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: background-color .3s ease, color .3s ease
}

.dropdown-level-3--link:hover {
    color: var(--main-color, #0071e3)
}

.menu-mobile--body {
    margin-top: 60px;
    scroll-behavior: smooth
}

.menu-mobile--body::-webkit-scrollbar {
    width: 6px
}

.menu-mobile--body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px
}

.menu-mobile--body::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px
}

.menu-mobile--body::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8
}

.menu-login--wrap {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px
}

.login-mobile--success {
    margin-top: 24px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
    display: none
}

.login-mobile--success svg {
    width: 24px;
    height: 24px
}

.login-mobile--success svg path {
    fill: var(--main-color)
}

.login-mobile--success span {
    font-size: 14px;
    color: var(--main-color)
}

.menu-mobile--item {
    margin-bottom: 8px
}

@media (max-width:575.98px) {
    .home__banner {
        margin-top: 78px
    }
}

.home__banner .banner-slider .banner-slider-item {
    position: relative
}

.home__banner .banner-slider .banner-slider-item .box-img {
    max-width: 100%;
    height: 600px;
    display: block
}

@media (max-width:575.98px) {
    .home__banner .banner-slider .banner-slider-item .box-img {
        height: 100%
    }
}

.home__banner .banner-slider .banner-slider-item .box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.home__banner .banner-slider .banner-slider-item .banner-posi {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 24px 56px 24px 24px;
    z-index: 2
}

@media (max-width:767.98px) {
    .home__banner .banner-slider .banner-slider-item .banner-posi {
        padding: 16px
    }
}

@media (max-width:767.98px) {
    .home__banner .banner-slider .banner-slider-item .banner-posi {
        width: 100%
    }
}

.home__banner .banner-slider .banner-slider-item .banner-posi::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #1f3538;
    z-index: -1;
    transition: .5s ease-in-out .3s
}

@media (max-width:767.98px) {
    .home__banner .banner-slider .banner-slider-item .banner-posi::before {
        background: rgba(31, 53, 56, .85)
    }
}

.home__banner .banner-slider .banner-slider-item .banner-posi .banner-content {
    margin-left: calc((100vw - 1260px)/ 2);
    overflow: hidden
}

@media (max-width:991.98px) {
    .home__banner .banner-slider .banner-slider-item .banner-posi .banner-content {
        margin-left: 0
    }
}

.home__banner .banner-slider .banner-slider-item .banner-posi .banner-content h1 {
    position: relative;
    color: #fff;
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 600;
    transition: 1s ease-in-out .8s;
    margin-bottom: 16px
}

@media (max-width:991.98px) {
    .home__banner .banner-slider .banner-slider-item .banner-posi .banner-content h1 {
        font-size: 36px
    }
}

@media (max-width:767.98px) {
    .home__banner .banner-slider .banner-slider-item .banner-posi .banner-content h1 {
        font-size: 24px
    }
}

.home__banner .banner-slider .banner-slider-item .banner-posi .banner-content .banner-breadcrumb .breadcrumb-list {
    display: flex;
    gap: 16px
}

.home__banner .banner-slider .banner-slider-item .banner-posi .banner-content .banner-breadcrumb .breadcrumb-list .item-breadcrumb {
    position: relative
}

.home__banner .banner-slider .banner-slider-item .banner-posi .banner-content .banner-breadcrumb .breadcrumb-list .item-breadcrumb:not(:first-child)::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid var(--second-color);
    display: block;
    top: 54%;
    transform: translateY(-50%);
    left: -10px
}

.home__banner .banner-slider .banner-slider-item .banner-posi .banner-content .banner-breadcrumb .breadcrumb-list .item-breadcrumb a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    width: fit-content;
    text-align: center;
    cursor: pointer;
    padding: 8px 20px;
    font-weight: 700;
    transition: .5s ease;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -ms-transition: .5s ease;
    -o-transition: .5s ease;
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    overflow: hidden;
    position: relative;
    background: #db2017;
    border-radius: var(--radius)
}

.home__banner .banner-slider .banner-slider-item .banner-posi .banner-content .banner-breadcrumb .breadcrumb-list .item-breadcrumb a::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    background: red;
    transition: all .3s ease;
    z-index: 1
}




/* ! CSS NEW */
