:root {
    --white: #fff;
    --black: #000;
    --primary: #eacf77;
    --second: #a6b1c6;
    --third: #0c6433;
    --dark: #1d1d1d;
    --body: #222;
}

body,
html {
    font-family: "Montserrat", sans-serif;
}

a,
button {
    transition: all ease 0.4s;
}

.blog-item .box-content p,
.line-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.aside-item .aside-child-item .box-content h4 a,
.blog .top-blog .frist-item .box-content p,
.blog-item .box-content h4 a,
.line-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.bottom-blog .blog-item .box-content h4 a {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.blog-item.flex .box-content p,
.line-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.home-banner img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 1.5s ease-in, -webkit-transform 7s ease;
    transition: opacity 1.5s ease-in, -webkit-transform 7s ease;
    transition: transform 7s ease, opacity 1.5s ease-in;
    transition: transform 7s ease, opacity 1.5s ease-in, -webkit-transform 7s ease;
    z-index: 1;
}

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

.home-banner .slick-active img {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

.home-banner .slick-dots {
    bottom: unset;
    top: 45%;
    transform: translateY(-50%);
    display: grid;
    padding-right: 20px;
    justify-content: end;
    z-index: 1;
}

@media screen and (max-width: 1200px) {
    .home-banner .slick-dots {
        display: grid;
        padding-right: 20px;
        justify-content: end;
    }
}

.home-banner .slick-dots li {
    display: block;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #fff;
    margin-bottom: 14px;
}

.home-banner .slick-dots li a {
    padding: 5px 10px;
    border: 1px solid transparent;
}

.home-banner .slick-dots .slick-active a {
    border: 1px solid #fff;
}

.home-banner img {
    object-fit: cover;
    height: 750px;
}

@media screen and (max-width: 1200px) {
    .home-banner img {
        height: 500px;
    }
}

@media screen and (max-width: 575px) {
    .home-banner img {
        height: 450px;
    }
}

.home-banner .box-img {
    overflow: hidden;
    position: relative;
}

.home-banner .box-img::before {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    content: "";
    z-index: 1;
}

.home-banner .box-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 150px;
}

@media screen and (max-width: 1200px) {
    .home-banner .box-content {
        padding-left: 15px;
        padding-right: 70px;
        top: 70%;
    }
}

.home-banner .box-content h3 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary);
}

@media screen and (max-width: 440px) {
    .home-banner .box-content h3 {
        font-size: 18px;
    }
}

.home-banner .box-content p {
    font-size: 30px;
    text-transform: uppercase;
    color: #fff;
}

@media screen and (max-width: 996px) {
    .home-banner .box-content p {
        font-size: 20px;
    }
}

.home-banner .slick-active .box-fadeup {
    animation-name: fadeInUpSD;
    animation-duration: 1s;
    opacity: 1;
}

.home-banner .slick-active h3 {
    animation-name: fadeInDown;
    animation-duration: 1s;
    opacity: 1;
}

.primary-btn {
    display: inline-flex;
    padding: 8px 15px;
    color: #fff;
    position: relative;
    border-left: 3px solid var(--primary);
    background: linear-gradient(to right, var(--primary) 50%, #000 50%);
    background-position-x: 0;
    background-position-y: 0;
    background-size: auto;
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all 0.5s ease-out;
}

.primary-btn:hover {
    background-position: left bottom;
    color: #fff;
}

.second-btn {
    padding: 8px 15px;
    display: flex;
    align-items: center;
    width: fit-content;
    justify-content: center;
    font-weight: 600;
    border: 1px solid var(--third);
    position: relative;
    z-index: 2;
    background: #fff;
    color: var(--third);
}

.second-btn:hover {
    background: var(--primary);
    color: #fff;
}

section h2 {
    font-size: 32px;
    text-transform: uppercase;
    color: var(--third);
    font-weight: 600;
    margin-bottom: 30px;
}

@media screen and (max-width: 996px) {
    section h2 {
        font-size: 27px;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 575px) {
    section h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
}

.home-about {
    padding: 40px 0;
    background: #f9f9f9;
}

@media screen and (max-width: 996px) {
    .home-about {
        padding: 20px 0;
    }
    .home-about [class^="vuta-col-"]:first-child {
        margin-bottom: 10px;
    }
}

.home-project {
    padding: 40px 0;
}

.home-project h2 {
    text-align: center;
}

@media screen and (max-width: 996px) {
    .home-project {
        padding: 20px 0;
    }
}

.gallery {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
}

@media screen and (max-width: 996px) {
    .gallery {
        grid-template-columns: 50% 50%;
    }
}

.gallery .box-img {
    height: 100%;
    aspect-ratio: 3/2;
    position: relative;
    overflow: hidden;
}

.gallery .box-img img {
    transition: all ease 0.7s;
}

.gallery .box-img::before {
    background: rgba(0, 0, 0, 0.72);
    content: "";
    position: absolute;
    inset: 0;
    transition: all ease 0.4s;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}

.gallery .box-img .box-content {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
    transition: all ease 0.5s;
}

.gallery .box-img .box-content span {
    color: var(--primary);
    text-transform: uppercase;
    display: block;
    transform: translate3d(0, 50px, 0);
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.3s;
}

.gallery .box-img .box-content h3 {
    color: #fff;
    transform: translate3d(0, 50px, 0);
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.3s;
}

@media screen and (max-width: 996px) {
    .gallery .box-img .box-content h3 {
        font-size: 18px;
    }
}

.gallery .box-img img {
    object-fit: cover;
}

.gallery>a:nth-child(2) {
    grid-column: 2 / span 1;
    grid-row: 1 / span 2;
}

.gallery>a:hover .box-img::before {
    opacity: 1;
    visibility: visible;
}

.gallery>a:hover .box-img img {
    transform: scale(1.2, 1.2);
}

.gallery>a:hover .box-img .box-content h3,
.gallery>a:hover .box-img .box-content span {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.home-projects {
    padding: 40px 0 0;
}

@media screen and (max-width: 996px) {
    .home-projects {
        padding: 20px 0 0;
    }
}

.home-projects h2 {
    text-align: center;
}

.home-projects .projects-slider .box-img {
    height: 600px;
    position: relative;
}

@media screen and (max-width: 996px) {
    .home-projects .projects-slider .box-img {
        height: 250px;
    }
}

.home-projects .projects-slider .box-img img {
    object-fit: cover;
}

.home-projects .projects-slider .box-img .box-content {
    position: absolute;
    bottom: 100px;
    padding: 20px 40px;
    z-index: 1;
    text-align: left;
    width: 80%;
    background: rgba(0, 0, 0, 0.4);
    left: 10%;
}

@media screen and (max-width: 996px) {
    .home-projects .projects-slider .box-img .box-content {
        width: 100%;
        left: 0;
        bottom: 15px;
        padding: 20px;
    }
}

.home-projects .projects-slider .box-img .box-content h3 {
    text-transform: capitalize;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

@media screen and (max-width: 996px) {
    .home-projects .projects-slider .box-img .box-content h3 {
        font-size: 20px;
    }
}

.home-projects .projects-slider .box-img .box-content h3 a {
    color: #fff;
}

.home-projects .projects-slider .box-img .box-content .box-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-projects .projects-slider .box-img .box-content .box-flex .detail-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f9f9f9;
}

.home-projects .projects-slider .box-img .box-content .box-flex .detail-btn:hover {
    color: #fff;
}

@media screen and (max-width: 996px) {
    .home-projects .projects-slider .box-img .box-content .box-flex a {
        font-size: 14px;
    }
}

.home-projects .projects-slider .item {
    display: block;
    transform: scale(0.75);
    margin-top: 50px;
    opacity: 0.75;
    position: relative;
}

@media screen and (max-width: 996px) {
    .home-projects .projects-slider .item {
        margin-top: 20px;
    }
}

.home-projects .projects-slider .item::before {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    content: "";
}

.home-projects .projects-slider .slick-slide.slick-current.slick-active.slick-center {
    transform: scale(1.2);
    opacity: 1;
    transition: 0.3s all;
}

.home-projects .projects-slider .slick-slide.slick-current.slick-active.slick-center::before {
    display: none;
}

.home-projects .projects-slider .slick-slide.slick-current.slick-active.slick-center .box-img {
    height: 650px;
    aspect-ratio: 3/2;
}

@media screen and (max-width: 996px) {
    .home-projects .projects-slider .slick-slide.slick-current.slick-active.slick-center .box-img {
        height: 250px;
    }
}

.slick-arrow {
    height: 40px;
    width: 40px;
    border: 2px solid var(--primary);
    opacity: 1;
}

@media screen and (max-width: 575px) {
    .slick-arrow {
        border: 0;
    }
}

.slick-arrow::before {
    font-family: fontawesome;
}

.slick-arrow.slick-prev {
    left: 15px;
    height: 40px;
    width: 40px;
}

@media screen and (max-width: 996px) {
    .slick-arrow.slick-prev {
        left: 0;
    }
}

.slick-arrow.slick-prev::before {
    content: "\f104";
    color: var(--primary);
}

.slick-arrow.slick-next {
    right: 15px;
}

.slick-arrow.slick-next::before {
    content: "\f105";
    color: var(--primary);
}

@media screen and (max-width: 996px) {
    .slick-arrow.slick-next {
        right: 0;
    }
}

.home-libary {
    padding: 40px 0 0;
    background: #f9f9f9;
}

.home-libary h2 {
    text-align: center;
}

.home-products {
    background-position: center;
    background-image: url(../images/An-Lam-Ninh-Van-Bay-Ngoai-That-scaled.jpg);
    position: relative;
    background-attachment: fixed;
    padding: 40px 0;
}

.home-products::before {
    background: rgba(0, 0, 0, 0.7);
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.home-products .vuta-container {
    position: relative;
    z-index: 2;
}

.home-products h2 {
    text-align: center;
    color: var(--primary);
}

.products-item {
    margin-bottom: calc(2 * var(--gap));
}

.products-item p {
    margin-bottom: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.products-item h4 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary);
}

.products-item .box-img {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.products-item .box-img::before {
    content: "";
    clear: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -webkit-transition: all 0.9s ease;
    -ms-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    background: rgba(40, 45, 50, 0.9);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
}

.products-item .box-img>a {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.products-item .box-img::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, #000 100%);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    background: linear-gradient( 180deg, rgba(255, 255, 255, 0) 30%, rgba(0, 0, 0, 0.9) 100%);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
}

.products-item .box-img .box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: #fff;
    z-index: 2;
}

.products-item .box-img:hover::before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}

.products-item .box-img:hover::after {
    visibility: hidden;
    opacity: 0;
}

.products-item .box-img:hover h4 {
    color: var(--primary);
    transition: all ease 0.4s;
}

.slick-dots {
    bottom: -40px;
}

.slick-dots li button::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    content: "";
    text-align: center;
    opacity: 1;
    background: #fff;
    border-radius: 50%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button::before {
    background: var(--primary);
}

.home-whyus {
    padding: 40px 0;
    background: #fff6e5;
}

@media screen and (max-width: 996px) {
    .home-whyus {
        padding: 20px 0;
    }
}

.home-whyus h2 {
    text-align: center;
}

.home-whyus .box-item {
    padding: 30px;
    border-radius: 12px;
    background: var(--dark);
    height: 100%;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.17);
    transition: all ease 0.4s;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

@media screen and (max-width: 996px) {
    .home-whyus .box-item {
        margin-bottom: 20px;
    }
}

.home-whyus .box-item:hover {
    background-image: url(../images/An-Lam-Ninh-Van-Bay-Ngoai-That-scaled.jpg);
    background-size: cover;
    transition: all ease 0.4s;
}

.home-whyus .box-item::before {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    content: "";
}

.home-whyus .box-item .icon {
    text-align: center;
    display: block;
    position: relative;
    z-index: 2;
}

.home-whyus .box-item svg {
    height: 80px;
    text-align: center;
    margin: 0 auto 20px;
}

.home-whyus .box-item svg path {
    fill: var(--primary);
}

.home-whyus .box-item h3 {
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.home-whyus .box-item p {
    color: #fff;
    position: relative;
    z-index: 2;
}

.home-whyus [class^="vuta-col-"]:nth-child(2) .box-item:hover {
    background-image: url(../images/An-Lam-Ninh-Van-Bay-Restaurant-scaled.jpg);
}

.home-whyus [class^="vuta-col-"]:nth-child(3) .box-item:hover {
    background-image: url(../images/An-Lam-Retreats-Beach-View-003-scaled.webp);
}

.home-whyus [class^="vuta-col-"]:nth-child(4) .box-item:hover {
    background-image: url(../images/1.jpg);
}

.home-feedback {
    padding: 40px 0;
    background: #f9f9f9;
}

.home-feedback h2 {
    text-align: center;
}

.home-feedback .feedback-item {
    background: #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.17);
    border-radius: 12px;
    padding: 30px;
    position: relative;
}

.home-feedback .feedback-item::before {
    position: absolute;
    content: "\f10e";
    font-family: fontawesome;
    bottom: 20px;
    right: 30px;
    font-size: 50px;
    color: var(--primary);
}

.home-feedback .feedback-item::after {
    position: absolute;
    content: "\f10d";
    font-family: fontawesome;
    top: -15px;
    left: 30px;
    font-size: 50px;
    color: var(--primary);
}

.home-feedback .feedback-item .box-top {
    display: flex;
    gap: 30px;
}

@media screen and (max-width: 996px) {
    .home-feedback .feedback-item .box-top {
        flex-direction: column;
        gap: 15px;
    }
}

.home-feedback .feedback-item .box-top span {
    display: block;
    margin-top: 10px;
    font-weight: 400;
    color: #888;
    font-size: 16px;
}

.home-feedback .feedback-item .box-top h3 {
    font-size: 20px;
    font-weight: 600;
    padding-top: 20px;
}

.home-feedback .feedback-item .box-top p {
    margin-bottom: 0;
}

.home-feedback .feedback-item .avatar {
    aspect-ratio: 1/1;
    overflow: hidden;
    height: 100px;
    flex-shrink: 0;
    width: 100px;
    border-radius: 50%;
    position: relative;
    aspect-ratio: 1/1;
    z-index: 2;
    border: 3px solid var(--third);
}

.home-feedback .feedback-item .avatar img {
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 996px) {
    .home-feedback .feedback-item .avatar {
        margin: 0 auto;
    }
}

.home-feedback .item {
    margin: 10px;
}

.home-feedback .feedback-slider {
    margin: 0 -10px;
}

.home-feedback .feedback-slider .slick-dots li button::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    text-align: center;
    opacity: 1;
    background: #333;
    border-radius: 50%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.home-feedback .feedback-slider .slick-dots li.slick-active button::before {
    background: var(--primary);
}

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

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

.home-brand .brand-item {
    text-align: center;
}

.home-brand .brand-item .box-img {
    aspect-ratio: 1/1;
    overflow: hidden;
    height: 150px;
    width: 150px;
    margin: 0 auto;
}

.back-to-top #to-top {
    width: 45px;
    height: 45px;
    cursor: pointer;
    transition: all ease-in-out 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    background: var(--third);
    right: 20px;
    bottom: -100px;
    border-radius: 50%;
    z-index: 999;
}

.back-to-top #to-top i {
    color: #fff;
}

.back-to-top.active #to-top {
    bottom: 220px;
}

.home-blog {
    padding: 40px 0 20px;
}

@media screen and (max-width: 996px) {
    .home-blog {
        padding: 20px 0;
    }
}

.home-blog h2 {
    text-align: center;
}

@media screen and (max-width: 996px) {
    .blog-item {
        margin-bottom: 15px;
    }
}

.blog-item .box-img {
    position: relative;
}

.blog-item .time {
    position: absolute;
    content: "";
    color: #fff;
    text-align: center;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 20px;
    background: #c6a47e;
    position: absolute;
    min-width: 40px;
    top: 10px;
    right: 10px;
    background: #c6a47e;
    color: #fff;
    text-align: center;
    height: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 12px 20px 0 rgba(255, 29, 77, 0.18);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 20px;
}

.blog-item .time strong {
    display: block;
}

.blog-item .box-content {
    margin-top: 10px;
}

.blog-item .box-content h4 a {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: #333;
}

.blog-item .box-content h4 a:hover {
    color: var(--primary);
}

.blog-item .second-btn {
    width: 100%;
    justify-content: center;
}

.banner-page {
    padding: 300px 0 100px;
    position: relative;
    background-position: bottom;
    background-size: cover;
}

@media screen and (max-width: 996px) {
    .banner-page {
        padding: 200px 0 40px;
    }
}

.banner-page::before {
    position: absolute;
    content: "";
    z-index: 1;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.banner-page .box-content {
    text-align: center;
    z-index: 9;
    position: relative;
}

.banner-page .box-content h1,
.banner-page .box-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.75;
    text-transform: uppercase;
}

@media screen and (max-width: 996px) {
    .banner-page .box-content h1,
    .banner-page .box-content h2 {
        font-size: 24px;
    }
}

.breadcrumb ul {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 30px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 0;
}

.breadcrumb ul li {
    position: relative;
}

.breadcrumb ul li:last-child a {
    color: var(--primary);
}

.breadcrumb ul li::before {
    content: "/";
    color: #fff;
    position: absolute;
    left: -15px;
}

.breadcrumb ul li:first-child::before {
    display: none;
}

.breadcrumb ul li a {
    color: #fff;
    font-weight: 600;
}

.products {
    padding: 40px 0 20px;
}

.slogan {
    padding-bottom: 40px;
}

.slogan .box-btn {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.slogan .box-content {
    padding: 30px 30px 10px;
    background: #fff;
    max-width: 996px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.17);
    text-align: left;
}

.slogan .box-content h2 {
    font-size: 20px;
    color: #000;
    margin-bottom: 0;
    text-transform: capitalize;
}


/* .slogan .box-content p {
  font-style: italic;
} */

.blog-item {
    margin-bottom: calc(2 * (var(--gap)));
}

.blog-item .box-img {
    overflow: hidden;
    aspect-ratio: 3/2;
}

.blog-item img {
    transition: all ease 0.7s;
}

.blog-item:hover img {
    transform: scale(1.2);
}

.blog-item.flex {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #cdcdcd;
    display: flex;
    gap: 20px;
}

.blog-item.flex span {
    left: 5px;
    top: 5px;
    right: unset;
}

.blog-item.flex:last-child {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 0;
}

.blog-item.flex .box-img {
    height: 90px;
    width: 120px;
    flex-shrink: 0;
}

.blog {
    padding: 40px 0;
}

.blog .top-blog {
    margin-bottom: 50px;
}

@media screen and (max-width: 996px) {
    .blog .top-blog {
        margin-bottom: 20px;
    }
    .blog {
        padding: 20px 0;
    }
}

.blog .top-blog .frist-item {
    position: relative;
}

.blog .top-blog .frist-item .box-content {
    padding: 10px 30px;
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.blog .top-blog .frist-item .box-content h4 {
    font-size: 26px;
}

.blog .top-blog .frist-item .box-content h4 a {
    color: #ffc000;
}

.blog .top-blog .frist-item .box-content p {
    color: #fff;
}

.pagination {
    margin-top: 20px;
}

.pagination ul {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 15px;
}

.pagination ul li a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    background: var(--dark);
    border-radius: 4px;
    justify-content: center;
    color: #fff;
}

.pagination ul li.active a,
.pagination ul li:hover a {
    background: var(--primary);
}

.aside-item .aside-child-item {
    margin-bottom: 15px;
    display: flex;
    gap: 10x;
    padding-bottom: 15px;
    border-bottom: 1px dashed #888;
    align-items: center;
}

.aside-item .aside-child-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.aside-item .aside-child-item .box-content {
    margin-top: 0;
}

.aside-item .aside-child-item .box-content h4 {
    font-size: 16px;
    line-height: 1.5;
}

.aside-item .aside-child-item .box-content h4 a {
    color: #333;
}

.aside-item .aside-child-item .box-content h4 a:hover {
    color: var(--primary);
}

.aside-item .aside-child-item .box-content p {
    margin-bottom: 0;
}

.detail-page {
    padding: 40px 0;
}

.detail-page h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    text-transform: uppercase;
}

.detail-page .blog-detail {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.09);
}

.detail-page .blog-detail .box-time {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.detail-page .blog-detail .box-time .time {
    padding-right: 15px;
    border-right: 3px var(--primary) solid;
    color: #888;
}

.detail-page .blog-detail .box-time .author {
    font-weight: 600;
}

.detail-page .blog-detail .box-time .author a {
    color: #000;
}

.detail-page .blog-detail h1 {
    text-align: left;
    margin-bottom: 20px;
}

@media screen and (max-width: 996px) {
    .detail-page .blog-detail h1 {
        font-size: 24px;
    }
}

.detail-page .blog-detail h2 {
    font-size: 24px;
    font-weight: 600;
    text-transform: unset;
    margin-bottom: 10px;
}

@media screen and (max-width: 996px) {
    .detail-page .blog-detail h2 {
        font-size: 20px;
    }
}

.detail-page .blog-detail p {
    margin-bottom: 5px;
}

.detail-page .blog-detail h3 {
    font-size: 16px;
    font-weight: 600;
}

.detail-page .blog-detail ul {
    padding-left: 15px;
    margin-bottom: 15px;
}

.detail-page .blog-detail ul li {
    list-style: disc;
}

.box-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 0;
}

.box-share ul {
    display: flex;
    align-items: center;
    margin-bottom: 0 !important;
    padding: 0 !important;
    gap: 10px;
}

.box-share ul li {
    list-style: none !important;
}

.box-share ul li a {
    height: 40px;
    width: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #1e4297;
}

.box-share ul li:nth-child(2) a {
    background: red;
}

.box-share ul li:nth-child(3) a {
    background: #0073b1;
}

figcaption {
    text-align: center;
    font-style: italic;
    color: #888;
}

.sub-title {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.photo-slider .slick-list {
    padding: 0 12% 0 0 !important;
}

.photo-slider .slick-list .item {
    margin-right: 10px;
}

.photo-slider .item {
    display: block;
    opacity: 0.75;
    position: relative;
}

.photo-slider .item::before {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    content: "";
}

.photo-slider .item.slick-active {
    opacity: 1;
}

.photo-slider .item.slick-active::before {
    display: none;
}

.photo-slider .item .box-img {
    aspect-ratio: 3/2;
    overflow: hidden;
}

.more-products-slider,
.more-project-slider {
    margin: 0 -10px;
}

.more-products-slider .item,
.more-project-slider .item {
    margin: 0 10px;
}

.more-products-slider .item .products-item,
.more-project-slider .item .products-item {
    margin-bottom: 0;
}

.more-products-slider .slick-dots li button::before,
.more-project-slider .slick-dots li button::before {
    background: #000;
}

.more-products-slider .slick-dots li.slick-active button::before,
.more-project-slider .slick-dots li.slick-active button::before {
    background: var(--primary);
}

.list-main-cat {
    padding: 0 0 40px;
}

.list-main-cat ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.list-main-cat ul li a {
    display: flex;
    padding: 8px 15px;
    border-radius: 6px;
    border: 1px solid var(--primary);
    color: #000;
}

.list-main-cat ul li.active a,
.list-main-cat ul li:hover a {
    background: var(--primary);
    color: #fff;
}

.products-detail {
    padding: 40px 0;
}

.products-detail h1 {
    font-size: 24px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.products-detail .box-descs {
    padding: 30px 30px 10px;
    background: #fff;
    max-width: 996px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.17);
    margin-bottom: 10px;
}

.products-detail .box-descs h2 {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--primary);
}

.products-detail .box-descs h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.products-detail .box-descs ul li {
    margin-bottom: 10px;
    list-style: disc;
}

.products-detail .box-descs ul {
    padding-left: 15px;
}

.box-more,
.box-photo {
    padding: 20px 0 0;
}

.projects {
    padding: 40px 0;
}

.contact {
    padding: 20px 0;
}

.contact .logo {
    text-align: center;
    margin-bottom: 15px;
}

.contact .logo img {
    margin: 0 auto;
    width: 250px;
}

.list-contact li {
    display: flex;
    gap: 10px;
    margin: 0 0 10px;
    align-items: center;
}

.list-contact li::before {
    display: none;
}

.list-contact li .footer-info-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
}

.list-contact li .footer-info-icon svg {
    fill: var(--primary);
    height: 20px;
    width: 30px;
}

.contact-form {
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.17);
    width: 100%;
}

.contact-form .vuta-input {
    margin-bottom: 15px;
}

.contact-form textarea {
    min-height: 100px;
}

@keyframes animate {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

.hotline-sticky ul {
    --size: 40px;
    --shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    bottom: 0;
    right: 0;
    z-index: 20;
    transform: translateY(-50%);
    background: var(--third);
    padding: 10px !important;
    border-radius: 30px 0 0 30px;
    position: fixed;
    transition: var(--br-transition);
}

.hotline-sticky ul::before {
    top: -30px;
    border-radius: 0 0 50px 0;
    box-shadow: 30px 1px 0 0 var(--third);
    content: "";
    position: absolute;
    right: 0;
    height: 30px;
    width: 60px;
    pointer-events: none;
}

.hotline-sticky ul::after {
    bottom: -30px;
    border-radius: 0 50px 0 0;
    box-shadow: 30px -1px 0 0 var(--third);
    content: "";
    position: absolute;
    right: 0;
    height: 30px;
    width: 60px;
    pointer-events: none;
}

.hotline-sticky ul li a {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotline-sticky ul li a img {
    width: 32px;
}

.hotline-sticky ul li:last-child a img {
    animation: animate 1.5s ease infinite;
}

.fb-page {
    data-width: 100% !important;
    width: 100% !important;
}

.fb-page iframe {
    width: 100% !important;
}

.header {
    position: fixed;
    z-index: 999;
    width: 100%;
}

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

.header.fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
}

.header.fixed-top .header-top {
    display: none;
}

.header.fixed-top .header-main {
    background: #1a1a1a;
}

.header .header-top {
    background: var(--dark);
    padding: 10px 0;
}

.header i svg {
    width: 14px;
}

.header .list-left {
    display: flex;
    gap: 25px;
}

.header .list-left li a {
    display: flex;
    color: #fff;
    font-size: 14px;
    gap: 10px;
}

.header .list-left li a svg {
    fill: var(--primary);
}

@media screen and (max-width: 575px) {
    .header .list-left {
        display: block;
    }
}

.header .header-main {
    background: rgba(26, 26, 26, 0.9019607843);
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.55);
    transition: all ease 0.3s;
    padding: 0;
    z-index: 999;
}

.header .header-main .header-logo img {
    height: 80px;
}

.header .header-main .header-menu #menu .accordion {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header .header-main .header-menu #menu .accordion li>.link>a {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    padding: 15px 0;
    display: flex;
}

.header .header-main .header-menu #menu .accordion li.active .link>a,
.header .header-main .header-menu #menu .accordion li:hover .link>a {
    color: var(--primary);
}

.header .header-main .header-menu #menu .accordion .dropdown {
    position: relative;
}

.header .header-main .header-menu #menu .accordion .dropdown .link>a {
    padding-right: 20px;
    position: relative;
}

.header .header-main .header-menu #menu .accordion .dropdown .link>a::before {
    content: "\f0d7";
    font-family: fontawesome;
    right: 0;
    position: absolute;
}

.header .header-main .header-menu #menu .accordion .dropdown:hover .sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

.header .header-main .header-menu #menu .accordion .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    background: #fff;
    min-width: 230px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.4s;
}

.header .header-main .header-menu #menu .accordion .sub-menu li a {
    display: flex;
    padding: 8px 12px;
    border-left: 3px solid var(--dark);
    color: var(--body);
    border-bottom: 1px solid #cdcdcd;
}

.header .header-main .header-menu #menu .accordion .sub-menu li a:hover {
    background: var(--third);
    color: #fff;
    border-left: 3px solid var(--primary);
    border-bottom: 1px solid var(--primary);
}

.list-social {
    display: flex;
    gap: 30px;
}

.list-social li a {
    color: #fff;
}

.mobile-btn {
    display: none;
}

@media screen and (max-width: 1200px) {
    .mobile-btn {
        display: block;
    }
}

.mobile-btn #mobile-btn span {
    background: var(--primary);
    margin-bottom: 5px;
}

@media screen and (max-width: 1200px) {
    .header-menu {
        display: none;
    }
}

.footer .footer-top {
    padding: 40px 0 10px;
    background: #000;
    color: #fff;
}

.footer .footer-top strong {
    font-weight: 600 !important;
}

.footer .footer-top .footer-logo {
    text-align: center;
}

.footer .footer-top img {
    width: 200px;
    margin: 0 auto 20px;
}

.footer .footer-top ul {
    margin-bottom: 15px;
    padding-left: 15px;
}

.footer .footer-top ul li {
    margin-bottom: 10px;
    list-style: circle;
}

.footer .footer-top ul li a {
    color: #fff;
}

.footer .footer-top ul li a:hover {
    color: var(--primary);
}

@media screen and (max-width: 996px) {
    .footer .footer-top .second-btn {
        margin-bottom: 20px;
    }
}

.footer .footer-top .list-info,
.footer .footer-top .list-social {
    padding-left: 0;
}

.footer .footer-top .list-info li,
.footer .footer-top .list-social li {
    list-style: none;
}

.footer .footer-top h3 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer .footer-top .list-social li a {
    display: flex;
    height: 36px;
    width: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--third);
}

.footer .footer-top .list-social li a:hover {
    background: var(--primary);
    color: #fff;
}

.footer .footer-copyright {
    background: #333;
    text-align: center;
    padding: 5px 0;
}

.footer .footer-copyright p {
    margin-bottom: 0;
    color: #fff;
    font-size: 14px;
}

.footer .footer-copyright p a {
    font-weight: 700;
    color: #fff;
}

.mobile-logo {
    text-align: center;
}

.mobile-logo img {
    width: 150px;
}