@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

.header-area .container {
    max-width: 1270px;
}

a:hover {
    text-decoration: none;
}

.container {
    max-width: 1250px;
    margin: 0 auto;
}

section .container {
    padding: 35px 15px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid #e0e0e0;
}

.service-card {
    display: flex;
    flex-direction: column;
    padding: 24px 40px;
    text-align: center;
    border: 1px solid #e0e0e0;
    min-height: 250px;
    position: relative;
}

.service-card h3 {
    font-family: Fira Sans;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0%;
    text-align: left;
}

.service-card .icon {
    margin-bottom: 16px;
    color: #b80000;
    width: 100%;
    max-width: 93px;
}

h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.service-card .view-more {
    color: #6d6d6d;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.service-card .view-more:hover {
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* @media (max-width: 640px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
} */

/* About Us */

section.sc-about,
section.projects-section {
    background-repeat: no-repeat;
    background-size: cover;
}

section.projects-section .view-more-btn {
    color: #fff;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.left-section h1 {
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
}

.left-section p {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.3em;
}

.building-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
}

.right-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 0;
    justify-content: center;
}

.service-item h2 {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
}

.service-item p {
    font-size: 18px;
    max-width: 500px;
    font-weight: 400;
    color: #fff;
}

/* Responsive styles */
@media (min-width: 768px) {
    .content-wrapper {
        flex-direction: row;
    }

    .left-section {
        flex: 1;
    }

    .right-section {
        flex: 1;
    }

    .left-section h1 {
        font-size: 30px;
        margin-bottom: 5px;
    }
}

/* Stats */

.stats-section {
    border-bottom: 1px solid #e5e5e5;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    color: #b80000;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1em;
}

.stat-label {
    color: #000;
    font-size: 20px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        gap: 32px;
    }
}

/* Projects */

/* Header section */
.header-title {
    /* text-align: center; */
    /* margin-bottom: 40px; */
}

.title-container {
    position: relative;
    display: inline-block;
    margin-bottom: 0px;
    max-width: 70%;
}

.title {
    color: #b80000;
    font-size: 35px;
    font-weight: bold;
    text-transform: uppercase;
}

.accent {
    position: absolute;
    color: #b80000;
    font-size: 20px;
    top: -5px;
}

.accent-1 {
    right: -10px;
}

.accent-2 {
    right: -20px;
}


.subtitle {
    font-size: 18px;
    margin-top: 10px;
}

.sc-project .subtitle {
    font-size: 22px;
    font-weight: 700;
    margin-top: 5px;
}

/* Projects grid */
.projects-design-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

/* For tablets and larger */
@media (min-width: 768px) {
    .projects-design-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .title {
        font-size: 35px;
    }

    .subtitle {
        font-size: 20px;
    }
}

.project-item {
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    max-height: 350px;
}

.project-item:hover .hover-content,
.gallery-item:hover .hover-content {
    display: flex;
}

.hover-content .pro-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    max-width: calc(100% - 32px);
}

.hover-content {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 80px;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 15px 20px;
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
    transition: ease 0.3s;
    align-items: center;
}

.project-item img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover;
    cursor: pointer;
}

.project-item:hover img {
    transform: scale(1.05);
}

/*=============================================
=            hero slider            =
=============================================*/

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Canh giữa theo chiều dọc */
    margin-bottom: 20px;
}

/* Button */
.button-container {
    text-align: right;
    margin-top: 40px;
}

.view-more-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #b80000;
    color: #3e3d3d;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background-color: #b80000;
    color: white;
}

/*=====  End of hero slider  ======*/
/* Projects Contrusction */

/* Main section styles */
.projects-section {
    position: relative;
    background-color: var(--primary-color);
    overflow: hidden;
}

.projects-section .section-title,
.projects-section .section-subtitle {
    color: #fff;
}

/* Header styles */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.section-title {
    color: white;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 8px;
}

.section-subtitle {
    color: white;
    font-size: 18px;
}

.view-more {
    display: inline-block;
    color: #ffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-more:hover {
    /* background-color: #b80000; */
    color: #3e3d3d;
    text-decoration: none;
}

/* Project cards grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}

.custom-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Chia thành 3 cột */
    gap: 20px;
    /* Khoảng cách giữa các mục */
    margin-top: 20px;
}

.custom-project-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.3s ease;
}

.custom-project-card:hover {
    transform: translateY(-5px);
}

.custom-project-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.custom-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hover-zoom:hover img {
    transform: scale(1.05);
}

.custom-project-footer {
    padding: 8px;
    text-align: center;
}

.custom-project-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-decoration: none;
}

.custom-project-title a {
    color: inherit;
    text-decoration: none;
}

.custom-arrow-button svg {
    fill: #333;
    transition: fill 0.3s ease;
}

.custom-arrow-button:hover svg {
    fill: #B80000;
}

/* Phân trang */
.custom-pagination {
    margin-top: 30px;
    text-align: center;
}

.custom-pagination ul {
    display: inline-flex;
    list-style: none;
    padding: 0;
}

.custom-pagination ul li {
    margin: 0 5px;
}

.custom-pagination ul li a {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-pagination ul li a:hover {
    background-color: #B80000;
    color: #fff;
}

.custom-pagination ul li span.current {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f0f0f0;
    color: #333;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-projects-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Chuyển thành 2 cột trên màn hình nhỏ hơn */
    }
}

@media (max-width: 576px) {
    .custom-projects-grid {
        grid-template-columns: 1fr;
        /* Chuyển thành 1 cột trên màn hình điện thoại */
    }
}

/* Project card styles */
.project-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-image {
    height: 250px;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
}

.project-footer {
    background-color: #b80000;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-title {
    color: white;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: calc(100% - 32px);
    margin-bottom: 0;
}

.arrow-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    color: white;
    text-decoration: none;
}

a.arrow-button:hover {
    background-color: #fff;
}

a.arrow-button svg {
    transition: ease 0.3s;
}

a.arrow-button:hover svg {
    rotate: -45deg;
}

a.arrow-button:hover svg path {
    stroke: #b80000;
}

/* Decorative elements */
.decoration-top-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 33%;
    height: 33%;
    opacity: 0.2;
}

.decoration-top-right::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-top: 100px solid #d9d9d9;
    border-right: 100px solid #d9d9d9;
    border-top-right-radius: 100%;
}

.decoration-bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 50%;
    opacity: 0.2;
}

.decoration-bottom-left::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-bottom: 150px solid #d9d9d9;
    border-left: 150px solid #d9d9d9;
    border-bottom-left-radius: 100%;
}

/* Responsive styles */
@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header {
        align-items: end;
    }
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Interior */

.title {
    color: #b80000;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 0;
}

.sc-interior .subtitle {
    font-family: Fira Sans;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 0%;
    color: #000;
    margin-bottom: 0;
}

.sc-interior .header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 25px;
}

.sc-interior .view-more {
    border: 2px solid #b80000;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.sc-interior .view-more:hover {
    background-color: #b80000;
    color: white;
}

/* Gallery styles */
.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.gallery-wrap-fancy {
    cursor: pointer;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.large-item {
    grid-column: 1;
    grid-row: 1 / span 2;
    height: 600px;
}

.medium-item {
    height: 290px;
}

.wide-item {
    grid-column: 2 / span 2;
    height: 290px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
    }

    .view-more {
        margin-top: 15px;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .large-item,
    .medium-item,
    .wide-item {
        grid-column: auto;
        grid-row: auto;
        height: 300px;
    }
}

/* Why Choose Us */

/* Section styles */
.why-choose-us {
    background-color: #F5F6F6;
    position: relative;
}

.why-choose-us .container {
    z-index: 2;
    position: inherit;
}

/* Background overlay */
.background-overlay {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    height: 100%;
    aspect-ratio: 391 / 489;
}

/* Heading styles */
.section-title {
    color: #b80000;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: center;
}

.section-subtitle {
    font-family: Fira Sans;
    font-weight: 500;
    font-size: 25px;
    letter-spacing: 0%;
    color: #000;
    margin-bottom: 15px;
}

.projects-section .section-subtitle {
    margin-bottom: 0;
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

/* Feature card styles */
.feature-card {
    background-color: #fff;
    padding: 24px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    color: #b80000;
}

.feature-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

.feature-underline {
    width: 64px;
    height: 4px;
    background-color: #b80000;
    margin-bottom: 16px;
}

.feature-description {
    color: #333;
    line-height: 1.5;
}

/* Responsive styles */
@media (min-width: 768px) {
    .section-title {
        font-size: 40px;
        text-align: left;
    }

    .section-subtitle {
        font-size: 22px;
        font-weight: 500;
        text-align: left;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* News Section */

/* Main title */
.main-title {
    color: #b80000;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Featured News Section */
.featured-news {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 3rem;
}

.featured-item {
    border-radius: 0.375rem;
    overflow: hidden;
}

.featured-item-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.featured-image {
    width: 100%;
    aspect-ratio: 579 / 317;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    padding: 15px 44px;
    width: calc(100% - 50PX);
    margin: 0 auto;
    background-color: #f7f7f7;
    margin-top: -100px;
    z-index: 1;
    position: relative;
}

.date {
    color: #000000;
    margin-bottom: 0.5rem;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 400;
    font-size: 18px;
    /* line-height: 100%; */
    letter-spacing: 0%;
}

.featured-item .title,
.featured-item .title a {
    font-family: "Source Sans 3", sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 2rem;
}

.news-item {
    display: flex;
    flex-direction: row;
    height: 100%;
    grid-gap: 12px;
}

.news-image {
    width: 100%;
    max-width: 150px;
    overflow: hidden;
    aspect-ratio: 1.82;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1.82;
}

.news-item .title,
.news-item .title a {
    font-family: "Source Sans 3", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0%;
    color: #000;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.read-more {
    text-align: right;
}

.read-more a {
    font-size: 0.875rem;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0%;
    color: #949494;
}

.new-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

/* Divider */
.sc-news .divider {
    border: none;
    border-top: 3px solid #B80000;
    margin: 2rem 0;
    max-width: 640px;
    margin: 0 auto;
    opacity: 1;
}

/* Media Queries for Responsive Design */
@media (min-width: 768px) {
    .featured-news {
        grid-template-columns: 1.1fr 1.5fr;
    }

    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .news-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* Footer styles */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 0;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

/* Logo */
.logo {
    margin-bottom: 0px;
    padding: 12px 0 !important;
}

.logo img {
    max-width: 100%;
    height: auto;
}

/* Description */
.description {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.social-icon img {
    width: 24px;
    height: 24px;
}

/* Footer titles */
.footer-title {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Contact list */
.contact-list {
    list-style: none;
    padding-left: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    align-items: center;
    margin-bottom: 15px;
    grid-gap: 10px;
}

.contact-item i {
    margin-right: 10px;
    margin-top: 3px;
    width: 16px;
}

.contact-item a {
    color: white;
    text-decoration: underline;
}

.contact-item a:hover {
    color: #f0f0f0;
}

/* Menu list */
.menu-list {
    list-style: none;
    padding-left: 0;
}

.menu-item {
    margin-bottom: 10px;
}

.menu-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.menu-item a:hover {
    color: #f0f0f0;
    text-decoration: underline;
}

/* Copyright */
.copyright {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

.copyright a {
    color: white;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
    }

    .footer-column {
        width: 100%;
    }
}

/*=============================================
=            Header            =
=============================================*/

.header-area {
    background-color: var(--primary-color);
    z-index: 999999;
}

.header-area.header-sticky.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-animation: .95s ease-in-out 0s normal none 1 running fadeInDown;
    animation: .95s ease-in-out 0s normal none 1 running fadeInDown;
    z-index: 999;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);

}

.header-area.header-sticky.is-sticky .header-top-bar {
    display: none;
}

.header-area.header-sticky.is-sticky .search-form {
    display: none;
}

.header-area.header-sticky.is-sticky .header-navigation {
    -webkit-flex-basis: calc(100% - 400px);
    -ms-flex-preferred-size: calc(100% - 400px);
    flex-basis: calc(100% - 400px);
}

.header-area.header-sticky.is-sticky .header-search {
    -webkit-flex-basis: 180px;
    -ms-flex-preferred-size: 180px;
    flex-basis: 180px;
}

.header-area.header-sticky.is-sticky .header-below {
    display: none;
}

.header-area.header-sticky.is-sticky.header-area--transparent .header-top-area {
    display: none;
}

.header-area.header-sticky.is-sticky.header-area--transparent .header-navigation-area--transparent-bg {
    background-color: #ffffff;
}

.header-area.header-sticky.is-sticky.header-area--transparent .header-navigation__nav--transparent nav>ul>li>a {
    color: #222222;
}

.header-area.header-sticky.is-sticky.header-area--transparent .header-navigation__nav--transparent nav>ul>li>a:hover {
    color: #178FD1;
}

.header-area.header-sticky.is-sticky.header-area--transparent .header-navigation__icon--transparent .header-navigation__icon__search a {
    color: #222222;
}

.header-area.header-sticky.is-sticky.header-area--transparent .header-navigation__icon--transparent .header-navigation__icon__search a:hover {
    color: #178FD1;
}

.header-area.header-sticky.is-sticky.header-area--transparent .header-navigation__icon--transparent .header-navigation__icon__cart a {
    color: #222222;
}

.header-area.header-sticky.is-sticky.header-area--transparent .header-navigation__icon--transparent .header-navigation__icon__cart a:hover {
    color: #178FD1;
}

.header-area.header-sticky.is-sticky .header-top-bar-area {
    display: none;
}

.header-area.header-sticky.is-sticky .header-navigation-wrapper--style5 .header-navigation {
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
}

.header-area.header-sticky.is-sticky .header-navigation-wrapper--style5 .header-navigation__nav nav>ul>li>a {
    padding: 35px 15px;
}

.header-area.header-sticky.is-sticky .header-bottom-bar {
    display: none;
}

/*.header-area.header-sticky--default.is-sticky .header-info-area
{
    display : none;
}*/
.header-area__desktop--default .header-contact-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header-area__desktop--default .mobile-navigation-icon {
    display: none;
}

.header-area__desktop--default .mobile-navigation-icon i {
    background-color: #222222;
}

.header-area__desktop--default .mobile-navigation-icon i:before {
    background-color: #222222;
}

.header-area__desktop--default .mobile-navigation-icon i:after {
    background-color: #222222;
}

.header-area__desktop--default .header-info-single-item {
    margin-right: 60px;
}

.header-area__desktop--default .header-info-single-item:last-child {
    margin-right: 0;
}

.header-area__mobile {
    display: none;
}

.header-area__mobile .logo {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    padding-right: 0;
}

.header-area--absolute {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
}

.header-top-bar {
    background-color: #313131;
    color: #dddddd;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
}

.header-top-bar--white {
    padding: 0;
    background-color: #ffffff;
    color: #1d1d25;
    border-bottom: 1px solid #eeeeee;
}

.topbar-menu li {
    display: inline-block;
    margin-right: 15px;
}

.topbar-menu li:last-child {
    margin-right: 0;
}

.topbar-menu li a {
    display: block;
}

.topbar-menu li a:hover {
    color: #178FD1;
}

.top-bar-right-wrapper {
    text-align: right;
}

.top-bar-right-wrapper .text a {
    color: #05103b;
}

.top-bar-right-wrapper .text a:hover {
    color: #178FD1;
}

.topbar-info {
    display: inline-block;
}

.topbar-info li {
    display: inline-block;
    margin-right: 30px;
}

.topbar-info li:last-child {
    margin-right: 0;
}

.topbar-info li a {
    display: block;
}

.topbar-info li a:hover {
    color: #178FD1;
}

.topbar-info li a i {
    margin-right: 5px;
    font-size: 18px;
    line-height: 1;
    vertical-align: middle;
}

.language-change-wrapper {
    display: inline-block;
    color: #dddddd;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    margin-left: 30px;
    position: relative;
    cursor: pointer;
}

.language-change-wrapper a:hover {
    color: #178FD1;
}

.language-change-wrapper .language-flag {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    vertical-align: middle;
    overflow: hidden;
    margin-right: 9px;
}

.language-change-wrapper .language-flag img {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 48px;
    height: 48px;
    max-width: 48px;
}

.language-change-wrapper .selected-lang i {
    font-size: 8px;
    vertical-align: middle;
}

.language-change-wrapper .language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    -webkit-box-shadow: 0 0 37px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 37px rgba(0, 0, 0, 0.07);
    background-color: #ffffff;
    z-index: 9;
    min-width: 200px;
    text-align: left;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.language-change-wrapper .language-dropdown li a {
    display: block;
    padding: 10px;
    color: #222222;
    font-size: 13px;
}

.language-change-wrapper .language-dropdown li a:hover {
    background: #eeeeee;
}

.language-change-wrapper .language-dropdown li a img {
    width: 18px;
    margin-right: 10px;
}

.language-change-wrapper:hover .language-dropdown {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.header-navigation-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.logo {
    -webkit-flex-basis: 220px;
    -ms-flex-preferred-size: 220px;
    flex-basis: 220px;
    padding-right: 30px;
}

.logo a img {

    /*max-width : 190px;*/
}

.header-navigation {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.header-navigation__nav {
    padding: 0 20px;
    position: relative;
}

.header-navigation__nav nav>ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
    -webkit-justify-content: left;
    -ms-flex-pack: left;
    justify-content: left;
    margin: 0;
}

.header-navigation__nav nav>ul>li {
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.header-navigation__nav nav>ul>li>a {
    white-space: nowrap;
}

.header-navigation__nav nav>ul>li.has-children>a {
    position: relative;
}

.header-navigation__nav nav>ul>li.has-children>a:after {
    position: static;
    margin-left: 10px;
    font-family: Ionicons;
    content: 'http://www.w3.org/2000/svg';
    font-size: 8px;
    font-weight: 500;
    vertical-align: middle;
}

.header-navigation__nav nav>ul>li.has-children--multilevel-submenu {
    position: relative;
}

.header-navigation__nav nav>ul>li.has-children:hover .megamenu {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.header-navigation__nav nav>ul>li.has-children:hover .megamenu--home-variation__item {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.header-navigation__nav nav>ul>li.has-children:hover>.submenu {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.header-navigation__nav nav>ul>li>a {
    display: block;
    font-size: 13px;
    color: #222222;
    line-height: 1.26;
    font-weight: 400;
    padding: 46px 16px;
    position: relative;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.header-navigation__nav nav>ul>li>a:before {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    content: '1.1';
    height: 3px;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    background-color: #ffffff;
}

.header-navigation__nav nav>ul>li:hover>a,
.header-navigation__nav nav>ul>li.active>a {
    color: #178FD1;
}

.header-navigation__nav nav>ul>li:hover>a:before,
.header-navigation__nav nav>ul>li.active>a:before {
    width: 100%;
    left: 0;
    right: auto;
}

.header-navigation__icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    color: #222222;
}

.header-navigation__icon i {
    font-size: 20px;
}

.header-navigation__icon__search>a {
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.header-navigation__icon__search>a:hover {
    color: #178FD1;
}

.header-navigation__icon__cart {
    margin-left: 20px;
    position: relative;
}

.header-navigation__icon__cart>a {
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.header-navigation__icon__cart>a:hover {
    color: #178FD1;
}

.header-navigation__icon__cart:before {
    position: absolute;
    top: -5px;
    right: -10px;
    padding: 0 4px;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    color: #222222;
    background: #178FD1;
    content: attr(data-count);
    font-weight: 500;
    font-size: 10px;
    line-height: 15px;
    text-align: center;
}

.header-navigation__icon__cart .minicart-box {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    z-index: 99999;
    visibility: hidden;
    overflow: auto;
    padding: 30px 20px 27px;
    max-height: 700px;
    width: 360px;
    border-bottom: 3px solid #178FD1;
    background-color: #ffffff;
    opacity: 0;
    -webkit-box-shadow: 0 0 37px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 37px rgba(0, 0, 0, 0.07);
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.header-navigation__icon__cart .minicart-box.active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.header-navigation__icon--transparent .header-navigation__icon__search>a {
    color: #ffffff;
}

.header-navigation__icon--transparent .header-navigation__icon__search>a:hover {
    color: #178FD1;
}

.header-navigation__icon--transparent .header-navigation__icon__cart>a {
    color: #ffffff;
}

.header-navigation__icon--transparent .header-navigation__icon__cart>a:hover {
    color: #178FD1;
}

.header-navigation--header-default {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header-navigation--header-default .header-navigation__nav {
    padding: 0;
}

.header-navigation--header-default .header-navigation__nav nav>ul>li {
    padding: 0 5px;
}

.header-navigation--header-default .header-navigation__nav nav>ul>li:first-child {
    padding-left: 0;
}

.header-navigation--header-default .header-navigation__nav nav>ul>li>a {
    padding: 15px 0;
    color: #fff !important;
    font-weight: 500;
    font-size: 1rem;
    font-family: "Fira Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 88px;
    letter-spacing: 0%;

}

.social-links ul li {
    display: inline-block;
    margin-right: 20px;
}

.social-links ul li:last-child {
    margin-right: 0;
}

.social-links ul li a {
    color: rgba(34, 34, 34, 0.4);
    display: block;
}

.social-links ul li a:hover {
    color: #222222;
}

.social-links--white-topbar {
    margin-right: 30px;
}

.social-links--white-topbar ul li a {
    font-size: 16px;
    color: #ffffff;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.social-links--white-topbar ul li a:hover {
    color: #178FD1;
}

.megamenu {
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-box-shadow: 0 10px 37px rgba(0, 0, 0, 0.07);
    box-shadow: 0 10px 37px rgba(0, 0, 0, 0.07);
    border-bottom: 3px solid #178FD1;
    background-color: #ffffff;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
    -webkit-transition-duration: 0.6s;
    -o-transition-duration: 0.6s;
    transition-duration: 0.6s;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
}

.megamenu--mega {
    min-width: 980px;
    width: 100%;
    padding: 50px 25px 35px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.megamenu--mega>li {
    -webkit-flex-basis: 22%;
    -ms-flex-preferred-size: 22%;
    flex-basis: 22%;
}

.megamenu--mega>li .page-list-title {
    font-size: 16px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
    letter-spacing: 1px;
}

.megamenu--mega>li>ul>li {
    position: relative;
    padding-left: 15px;
}

.megamenu--mega>li>ul>li:after {
    position: absolute;
    width: 5px;
    height: 5px;
    top: 50%;
    border-radius: 50%;
    left: 0;
    content: '10px';
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #d8d8d8;
}

.megamenu--mega>li>ul>li a {
    padding: 10px 0;
    color: #999999;
    line-height: 1.2;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.megamenu--mega>li>ul>li a:hover {
    color: #178FD1;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-box-shadow: 0 10px 37px rgba(0, 0, 0, 0.07);
    box-shadow: 0 10px 37px rgba(0, 0, 0, 0.07);
    border-bottom: 3px solid #178FD1;
    background-color: #ffffff;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    /*-webkit-transition-delay    : 0.3s;*/

    /*-o-transition-delay         : 0.3s;*/

    /*transition-delay            : 0.3s;*/
    -webkit-transition-duration: 0.6s;
    -o-transition-duration: 0.6s;
    transition-duration: 0.6s;
    visibility: hidden;
    opacity: 0;
    min-width: 270px;
    padding: 0;
    z-index: 9;
}

.submenu li {
    position: relative;
}

.submenu li>a {
    display: block;
    padding: 11px 30px;
    color: #999999;
}

.submenu li>a:hover {
    color: #178FD1;
}

.submenu li:hover>.submenu {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    z-index: 9;
}

.submenu li.has-children>a {
    position: relative;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.submenu li.has-children>a:after {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: Ionicons;
    content: '15px';
    font-size: 8px;
    font-weight: 500;
    vertical-align: middle;
}

.submenu .submenu {
    top: 0;
    left: 100%;
    right: auto;
}

.submenu .submenu .submenu {
    left: auto;
    right: 100%;
    background: #ffffff;
}

.submenu .submenu .submenu .submenu {
    left: 100%;
    right: auto;
    background: #ffffff;
}

.submenu .submenu .submenu .submenu .submenu {
    left: auto;
    right: 100%;
    background: #ffffff;
}

/* header info area */
.header-info-area {
    padding: 5px 0;
}

.header-info-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.header-info-wrapper .logo img {
    width: auto;
    max-width: 118px;
    height: auto;
    max-height: 85px;
}

.header-info-wrapper .header-contact-info {
    width: calc(100% - 600px);
}

.header-info-single-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header-info-single-item__icon {
    color: #741313;
    width: 50px;
    height: 50px;
    border: 1px solid #741313;
    border-radius: 50%;
    text-align: center;
    margin-right: 15px;
}

.header-info-single-item__icon i {
    line-height: 50px;
    font-size: 26px;
}

.header-info-single-item__title {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 500;
}

.header-info-single-item__subtitle {
    font-size: 16px;
    color: #737373;
}

/* mobile menu */
.mobile-menu-area {
    padding: 15px 0;
}

.mobile-menu-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.mobile-menu-content .social-links {
    padding: 0 15px;
}

.mobile-menu-content .mobile-navigation-icon {
    margin-left: 15px;
}

.mobile-navigation-icon {
    width: 24px;
    height: 25px;
    position: relative;
    cursor: pointer;
    float: right;
}

.mobile-navigation-icon:hover i {
    background-color: #222222;
}

.mobile-navigation-icon:hover i:before {
    width: 80%;
    background-color: #222222;
}

.mobile-navigation-icon:hover i:after {
    background-color: #222222;
    width: 60%;
}

.mobile-navigation-icon i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background-color: rgba(34, 34, 34, 0.4);
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobile-navigation-icon i:before {
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(34, 34, 34, 0.4);
    content: '';
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobile-navigation-icon i:after {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(34, 34, 34, 0.4);
    content: '';
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobile-navigation-icon--desktop-off {
    display: none;
}

/* mobile menu overlay */
.header-wrapper--shadow {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
}

.header-wrapper__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header-wrapper__inner .logo {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.header-wrapper__inner .header-navigation {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.header-wrapper__inner .header-navigation__nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

.header-wrapper__inner .request-quote-button-wrapper {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

/* offcanvas mobile menu */
.header-mobile-navigation {
    padding: 20px 0;
}

.header-mobile-navigation .mobile-navigation .header-cart-icon a span {
    left: 50%;
}

.offcanvas-widget-area {
    margin-bottom: 35px;
    margin-top: auto;
}

.off-canvas-contact-widget {
    margin-bottom: 20px;
}

.off-canvas-contact-widget .header-contact-info {
    -webkit-flex-basis: 33.33%;
    -ms-flex-preferred-size: 33.33%;
    flex-basis: 33.33%;
}

.off-canvas-contact-widget .header-contact-info__list li {
    display: inline-block;
    margin-right: 25px;
}

.off-canvas-contact-widget .header-contact-info__list li i {
    font-size: 14px;
    margin-right: 5px;
}

.off-canvas-contact-widget .header-contact-info__list li a {
    color: #666666;
    font-weight: 400;
    line-height: 22px;
}

.off-canvas-contact-widget .header-contact-info__list li a:hover {
    color: #178FD1;
}

.off-canvas-contact-widget .header-contact-info__list li:last-child {
    margin-right: 0;
}

.offcanvas-mobile-menu {
    position: fixed;
    left: -61px;
    top: 0;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    z-index: 9999;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    padding-left: 60px;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}

.offcanvas-mobile-menu.active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.offcanvas-mobile-menu.inactive {
    -webkit-transform: translateX(calc(100% + 60px));
    -ms-transform: translateX(calc(100% + 60px));
    transform: translateX(calc(100% + 60px));
}

.offcanvas-menu-close {
    position: absolute;
    right: -56px;
    left: auto;
    top: 0;
    background: #343538;
    z-index: 9;
    width: 60px;
    height: 60px;
    color: #ffffff;
    line-height: 60px;
    text-align: center;
    font-size: 30px;
}

.offcanvas-menu-close:hover,
.offcanvas-menu-close:focus {
    color: #ffffff;
}

.offcanvas-menu-close i {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.offcanvas-menu-close:hover i {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.offcanvas-wrapper {
    overflow: auto;
    height: 100%;
    -webkit-box-shadow: 0 0 87px 0 rgba(0, 0, 0, 0.09);
    box-shadow: 0 0 87px 0 rgba(0, 0, 0, 0.09);
    background-color: #ffffff;
}

.offcanvas-mobile-search-area {
    background-color: #e6e6e6;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 60px);
    z-index: 9;
    margin-left: 60px;
}

.offcanvas-mobile-search-area input {
    width: 100%;
    font-size: 16px;
    display: block;
    padding: 9px 25px;
    color: #222222;
    background: #e6e6e6;
    border: none;
}

.offcanvas-mobile-search-area button {
    background: none;
    border: none;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #aaaaaa;
    padding: 0;
}

.offcanvas-mobile-search-area button i {
    font-size: 18px;
    line-height: 40px;
}

.offcanvas-inner-content {
    padding: 90px 35px 0;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.offcanvas-navigation {
    margin-bottom: 50px;
}

.offcanvas-navigation>ul>li>a {
    font-size: 15px;
    color: #222527;
    font-weight: 600;
    line-height: 20px;
    padding: 10px 0;
}

.offcanvas-navigation>ul>li>a:hover {
    color: #178FD1;
}

.offcanvas-navigation ul.sub-menu {
    margin-left: 25px;
}

.offcanvas-navigation ul.sub-menu>li>a {
    font-size: 13px;
    color: #222527;
    font-weight: 400;
    line-height: 20px;
    padding: 10px 0;
}

.offcanvas-navigation ul.sub-menu>li>a:hover {
    color: #178FD1;
}

.offcanvas-navigation ul li.menu-item-has-children {
    position: relative;
    display: block;
}

.offcanvas-navigation ul li.menu-item-has-children a {
    display: block;
}

.offcanvas-navigation ul li.menu-item-has-children.active>.menu-expand i:before {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.offcanvas-navigation ul li.menu-item-has-children .menu-expand {
    position: absolute;
    right: auto;
    left: 95%;
    top: -5px;
    width: 30px;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
    text-align: center;
}

.offcanvas-navigation ul li.menu-item-has-children .menu-expand i {
    display: block;
    margin-top: 25px;
    border-bottom: 1px solid;
    position: relative;
    width: 10px;
    -webkit-transition: all 250ms ease-out;
    -o-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
}

.offcanvas-navigation ul li.menu-item-has-children .menu-expand i:before {
    width: 100%;
    content: '';
    border-bottom: 1px solid;
    display: block;
    position: absolute;
    top: 0;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.off-canvas-widget-social a {
    margin: 0 10px;
    font-size: 14px;
}

.off-canvas-widget-social a:first-child {
    margin-left: 0;
}

.off-canvas-widget-social a:hover {
    color: #178FD1;
}

/* offcanvas settings */
.offcanvas-settings .offcanvas-navigation>ul>li>a {
    font-size: 12px;
    font-weight: 400;
    padding: 5px 0;
}

.offcanvas-settings .offcanvas-navigation>ul>li.menu-item-has-children .menu-expand {
    height: 30px;
    top: -15px;
    margin-top: 0;
}

.offcanvas-settings .offcanvas-navigation ul.sub-menu>li>a {
    padding: 5px 0;
}

#main-nav ul li {
    list-style: none;
    position: relative;
    float: left;
    margin-bottom: 0;
}

#main-nav ul li:last-child,
#main-nav ul li:last-child a {
    padding-right: 0;
}

#main-nav ul li:hover {
    background-color: rgba(255, 255, 255, 0.253);
    border-radius: 5px;
}

#main-nav ul li a:active {
    background-color: rgba(255, 255, 255, 0.253);
}

#main-nav ul li a {
    padding: 3px 4px;
    color: #fff;
    font-size: 17px;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 25px;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-transform: uppercase;
}

#main-nav ul.sub-menu li a {
    font-size: 15px;
}

#main-nav ul li ul {
    position: absolute;
    left: 0;
    width: 265px;
    /* background-color: #741313; */
    background: #741313;
    display: none;
    padding-left: 0;
    top: 27px;
    z-index: 2;
}

#main-nav ul li ul li {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

#main-nav ul li ul li ul {
    left: 200px;
    top: 0;
}

#main-nav ul li:focus-within>ul,
#main-nav ul li:hover>ul {
    display: initial;
}

/*=====  End of Header  ======*/

/*=============================================
=            hero slider            =
=============================================*/

@media only screen and (min-width: 768px) {
    .hero-slider__content-wrapper {
        height: calc(100vh - 114px);
    }

    .hero-slider__content-wrapper .content-banner {
        height: calc(100% - 62.5px);
    }
}

.hero-slider__content-wrapper:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    max-height: 166px;
    background: linear-gradient(180deg, rgba(128, 81, 0, 0) 0%, var(--primary-color) 100%);
    z-index: -1;
}

.hero-slider__container-area {
    position: relative;
    overflow: hidden;
}

.hero-slider__container-area .ht-swiper-button-nav {
    background-color: rgba(255, 255, 255, 0.3);
    border: 0;
    color: #ffffff;
}

.hero-slider__container-area .ht-swiper-button-nav:hover {
    background: #741313;
}

.hero-slider__container-area .ht-swiper-button-prev {
    left: 100px;
}

.hero-slider__container-area .ht-swiper-button-next {
    right: 100px;
}

.hero-slider__wrapper .swiper-slide-active .hero-slider__content>*:nth-child(1) {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.hero-slider__wrapper .swiper-slide-active .hero-slider__content>*:nth-child(2) {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.hero-slider__wrapper .swiper-slide-active .hero-slider__content>*:nth-child(3) {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

.hero-slider__single-item {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.hero-slider__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 730px;
    /* width                   : 580px; */
    width: 100%;
    max-width: 820px;
}

.hero-slider__content>* {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    color: #fff;
}

.hero-slider__title {
    font-family: "Inter", sans-serif;
    font-weight: 900;
    font-size: 60px;
    line-height: 88px;
    letter-spacing: 0%;
    color: #ffffff;
    text-shadow: 4px 8px 9.1px rgba(0, 0, 0, 0.5);
}

.hero-slider__text {
    font-size: 24px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

.hero-slider__btn {
    font-size: 13px;
    line-height: 1;
    padding: 20px 60px;
    color: #ffffff;
    border: 1px solid #ffffff;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    border-radius: 50px;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hero-slider__btn--style2 {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}

.hero-slider__btn:hover,
.hero-slider__btn:focus,
.hero-slider__btn:active {
    color: #ffffff;
    background-color: #178FD1;
    border-color: #178FD1;
}

.hero-slider__content .put {
    font-weight: 700;
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: rgb(255, 255, 255);
    border-radius: 0px;
    letter-spacing: 2px;
    margin: 0px;
    z-index: auto;
    border-width: 0px;
    display: flex;
    align-items: flex-start;
    gap: 33px;
}

.hero-slider__content .put a {
    text-decoration: none;
    background: #B80000;
    padding: 17px 30px;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    display: inline-flex;
    grid-gap: 30px;
    justify-content: center;
    align-items: center;
}

.hero-slider__content .put a:hover {
    color: #fff;
}

.footer-banner {
    padding: 20px 0;
    display: none;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-info span.value {
    font-size: 14px;
    color: #ffffff;
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0%;
    text-shadow: 2px 2px 2.1px rgba(0, 0, 0, 0.5);
}

.footer-info span.type {
    font-size: 14px;
    color: #B80000;
    font-family: Inter;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0%;
    text-shadow: 2px 2px 2.1px rgba(0, 0, 0, 0.5);
}

@media only screen and (min-width:1200px) and (max-width:1499px),
only screen and (min-width:992px) and (max-width:1199px) {
    .hero-slider__content {
        height: 660px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .hero-slider__container-area .ht-swiper-button-prev {
        left: 20px;
    }

    .hero-slider__container-area .ht-swiper-button-next {
        right: 20px;
    }

}


/*=====  End of hero slider  ======*/


/* Show case */

.showcase-container {
    width: 100%;
    background-color: rgba(245, 246, 246, 0.96);
}

/* .showcase-container .gallery-item:hover .hover-content {
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 0 27%;
} */

.showcase-container .gallery-item .hover-content .pro-title {
    font-size: 18px;
    max-width: calc(100% - 40px);
}

.showcase-container .gallery-item .hover-content .arrow-button {
    width: 40px;
    height: 40px;
}

.showcase-title {
    color: #b80000;
    font-family: 'Fira Sans', sans-serif;
    font-size: 35px;
    font-weight: 700;
    margin: 0;
}

.showcase-subtitle {
    color: #000;
    font-family: 'Fira Sans', sans-serif;
    font-size: 22px;
    font-weight: 500;
    margin: 0;
    margin-top: 10px;
}

.image-gallery {
    display: flex;
    gap: 19px;
    margin-top: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    flex-direction: column;
}

.gallery-image {
    width: 386px;
    height: 508px;
    object-fit: cover;
    border-radius: 4px;
}

.navigation-container {
    margin-top: 0px;
    position: relative;
}

.progress-container {
    display: flex;
    align-items: center;
}

.progress-bar {
    height: 4px;
    width: 605px;
    border-radius: 9999px;
    background-color: #6D6D6D;
}

.progress-indicator {
    height: 4px;
    width: 168px;
    background-color: #b80000;
    border-radius: 9999px;
}

.navigation-controls {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.nav-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: 4px;
}

.nav-button:hover {
    background-color: #b80000;
}

.nav-button:hover svg path {
    stroke: #fff;
}

.nav-button svg {
    width: 35px;
    height: 35px;
}

/* Media Queries */
@media (max-width: 991px) {
    .showcase-container {
        padding: 0px;
    }

    .showcase-title {
        font-size: 32px;
    }

    .showcase-subtitle {
        font-size: 22px;
    }

    .image-gallery {
        gap: 15px;
    }

    .gallery-image {
        width: 300px;
    }

    .progress-bar {
        width: 100%;
    }
}

@media (max-width: 640px) {

    .showcase-title {
        font-size: 28px;
        line-height: 44px;
        text-align: center;
    }

    .showcase-subtitle {
        font-size: 18px;
        line-height: 22px;
    }

    .image-gallery {
        flex-direction: column;
        align-items: center;
    }

    .gallery-image {
        width: 100%;
        height: auto;
    }

    .navigation-container {
        margin-top: 40px;
    }

    .navigation-controls {
        display: none;
    }
}

.slider-partner {
    margin-top: 20px;
    margin-bottom: 15px;
}

.slider-partner .item {
    padding: 0;
    /* height: 132px; */
}

.slider-partner .owl-pagination {
    margin-top: 15px;
}

.header-sm {
    background-color: var(--primary-color) !important;
    padding: 0;
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 30%);
    -webkit-box-shadow: 0 0 5px 0 rgb(0 0 0 / 30%);
    -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    -o-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    display: none;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}

#hamburger:before,
#hamburger:after,
#hamburger span {
    background-color: #e3ab54;
}

.header-sm .logo img {
    max-height: 39px;
    margin: auto;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}

@media screen and (max-width: 991px) {
    .header-area {
        display: none !important;
    }

    .header-sm,
    .header-sm #hamburger {
        display: block !important;
    }

    .header-sm .logo img {
        margin: 5px 0;
        max-height: 65px;
        max-width: 280px;
    }
}

@media screen and (max-width: 991px) {
    .hero-slider__title {
        font-size: 40px;
        line-height: normal;
    }

    .title {
        font-size: 26px;
    }
}

@media screen and (max-width: 576px) {
    .content-wrapper {
        gap: 25px;
    }

    .hero-slider__title {
        font-size: 18px;
        line-height: normal;
        text-align: center;
        max-width: 256px;
    }

    .hero-slider__content {
        aspect-ratio: 390 / 268;
        height: auto;
        justify-content: center;
        align-items: center;
        padding-top: 40px;
    }

    .footer-banner {
        display: none;
    }

    .hero-slider__content-wrapper:before {
        max-height: 20px;
    }

    .put a svg {
        display: none;
    }

    .hero-slider__content .put a {
        padding: 5px 18px;
        font-size: 14px;
    }

    .hero-slider__content .put svg {
        width: 36px;
        height: 32px;
    }

    .hero-slider__content .put {
        gap: 10px;
    }

    .service-card {
        padding: 23px 27px;
        justify-content: center;
        align-items: center;
        min-height: unset;
    }

    .service-card .icon img {
        width: 100%;
    }

    .service-card .icon {
        max-width: 52px;
    }

    .service-card h3 {
        font-size: 16px;
        text-align: center;
    }

    .service-card .view-more {
        font-size: 14px;
    }

    .left-section h1 {
        font-size: 26px;
        text-align: center;
    }

    .left-section p {
        font-size: 18px;
        text-align: center;
    }

    .right-section {
        padding-top: 0;
        gap: 15px;
    }

    .service-item h2 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .service-item p {
        font-size: 16px;
        margin-bottom: 0;
    }

    .stat-label {
        font-size: 20px;
    }

    .stats-grid {
        gap: 0px;
    }

    .stat-item:last-child {
        border-bottom: 0;
    }

    .stat-item {
        padding: 20px;
        border-bottom: 1px solid #000;
    }


    /*=============================================
=            hero slider            =
=============================================*/
    .button-container {
        margin-top: 10px;
        display: none;
    }

    .wrap_title {
        width: 100%;
    }

    /*=====  End of hero slider  ======*/
    .view-more-btn {
        padding: 9px;
    }

    .projects-section .view-more,
    .sc-interior .view-more,
    .featured-news {
        display: none;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle,
    .sc-interior .subtitle {
        font-size: 18px;
        text-align: center;
    }

    .group-title-2 .title,
    .sc-interior .title {
        text-align: center;
    }

    section .container {
        padding: 20px 15px;
    }
}

#hamburger:before {
    top: 13px;
}

#hamburger:after {
    top: 27px;
}

#hamburger:before,
#hamburger:after,
#hamburger span {
    width: 23px;
    height: 2px;
}


#hamburger {
    top: 50%;
    background-color: transparent;
    transform: translateY(-50%);
}

.showcase-container .swiper {
    width: 100%;
    height: 100%;
}

.showcase-container .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-container .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    height: 500px;
    cursor: pointer;
}

.showcase-container .swiper-slide {
    width: 80%;
}

/* .showcase-container .swiper-slide:nth-child(2n) {
    width: 60%;
}

.showcase-container .swiper-slide:nth-child(3n) {
    width: 40%;
} */

.swiper-scrollbar-drag {
    background: #B80000;
}

@media screen and (max-width: 767px) {
    .logo {
        padding: 6px 0 !important;
        text-align: center;
    }

    .header-sm .logo img {
        margin: 0;
        max-height: 25px;
        max-width: 43px;
    }
}

.hover-img-zoom img {
    transition: transform 0.3s ease;
}

.hover-img-zoom:hover img {
    transform: scale(1.05);
}

.menu-item-has-children>a::after {
    content: "▼";
    /* Unicode arrow or use an icon */
    font-size: 0.6em;
    margin-left: 2px;
    display: inline-block;
    vertical-align: middle;
}

.no-arrow.menu-item-has-children>a::after {
    display: none;
}

/* Card styles */
.brochure-card {
    border-radius: 0.5rem;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.brochure-card p,
.brochure-card h3 {
    margin-bottom: 0;
}

/* Tabs navigation */
.tabs-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.tab-trigger {
    padding: 0.75rem;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    color: #6b7280;
    border: none;
    background: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tab-trigger.active {
    color: #111827;
    background-color: white;
    box-shadow: inset 0 -2px 0 0 currentColor;
}

.tab-trigger:hover:not(.active) {
    background-color: #f3f4f6;
}

.tab-trigger svg {
    width: 16px;
    height: 16px;
}

/* Tab content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Brochure styles */
.brochure-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.brochure-cover {
    position: relative;
    height: 200px;
    width: 100%;
}

.brochure-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brochure-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brochure-cover:hover .brochure-overlay {
    opacity: 1;
}

.brochure-overlay svg {
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
}

.brochure-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #f9fafb;
}

.brochure-details h3 {
    font-weight: 600;
    font-size: 1rem;
    color: #111827;
}

.brochure-details p {
    font-size: 0.875rem;
    color: #6b7280;
}

.external-icon {
    width: 20px;
    height: 20px;
    color: #6b7280;
}

/* QR code styles */
.qr-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: white;
}

.qr-header {
    margin-bottom: 9px;
    text-align: center;
}

.qr-header svg {
    width: 24px;
    height: 24px;
    margin: 0 auto 0.5rem;
    color: #374151;
}

.qr-header h3 {
    font-weight: 500;
    font-size: 1rem;
    color: #000;
}

.qr-image-wrapper {
    width: 150px;
    height: 150px;
    margin-bottom: 1rem;
}

.qr-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-description {
    font-size: 0.875rem;
    text-align: center;
    color: #6b7280;
}

.wrap-lang {
    display: flex;
    list-style-type: none;
    gap: 4px;
}

.wrap-lang .lang-item img {
    width: 27px !important;
    height: 16px !important;
    border-radius: 4px;
    cursor: pointer;
}

.socialfollow {
    float: none;
    clear: both;
    margin: 10px 0;
}

.socialfollow a:first-of-type {
    margin-left: 0;
}

.socialfollow a {
    background: #fff;
}

.socialfollow a {
    border-radius: 8px;
    padding: 8px;
    margin-right: 7px;
    transition: .3s all;
}

.socialfollow a {
    width: 35px;
    height: 36px;
    text-align: center;
    padding: 8px;
    float: left;
    text-decoration: none;
    display: block;
    -webkit-transition: all 0.31s ease;
    -moz-transition: all 0.31s ease;
    -ms-transition: all 0.31s ease;
    -o-transition: all 0.31s ease;
    transition: all 0.31s ease;
    color: #888;
    display: flex;
}

.socialfollow a.zalo {
    padding: 2px
}

.socialfollow a svg {
    width: 100%;
    height: 100%;
}

.widget .socialfollow svg {
    height: 18px;
}

.socialfollow a.facebook:hover {
    background: #3b5996;
}

.socialfollow a.youtube:hover {
    background: #cb322c;
}

.socialfollow a.instagram:hover {
    background: #457399;
}

.socialfollow a.zalo:hover {
    background: #457399;
}

.slider-partner .owl-item>div {
    padding: 7.5px;
    /* adds space inside each item */
}

.img-partner a,
.img-partner a img {
    width: 100%;
}

.form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 15px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-container .icon {
    width: 60px;
    height: 60px;
    background: rgb(255 255 255 / 20%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form-container .icon svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.form-container h2 {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.form-container .description {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.form-container .form-group {
    margin-bottom: 20px;
}

.form-container .email-input {
    width: 100%;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.form-container .email-input::placeholder {
    color: #fff;
}

.form-container .email-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(128, 81, 0, 0.2);
}

.form-container .subscribe-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-container .subscribe-btn:hover {
    background: #9d6200;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(128, 81, 0, 0.3);
}

.form-container .subscribe-btn:active {
    transform: translateY(0);
}

.form-container .subscribe-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 30px 20px;
        margin: 10px;
    }

    h2 {
        font-size: 20px;
    }

    .description {
        font-size: 13px;
    }
}

.youtube svg path {
    fill: #FF0033;
}

.facebook svg path {
    fill: #0866FF;
}

.main-layout {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 2rem;
    margin-top: 50px;
    margin-bottom: 50px;
}

/* Main Content */
.main-content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(128, 81, 0, 0.1);
    overflow: hidden;
    padding-top: 0;
}

.hero-section {
    position: relative;
    background: linear-gradient(rgba(128, 81, 0, 0.6), rgba(128, 81, 0, 0.4)), url('/placeholder.svg?height=400&width=800');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px 15px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #fff8e7;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #fff8e7;
}

.content-section {
    padding: 1.2rem;
}

.section-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.single .service-card {
    background: #fff8e7;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e6d4a3;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(128, 81, 0, 0.2);
    background: #fff;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-card p {
    color: #5a4000;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.portfolio-item {
    position: relative;
    height: 200px;
    background: url('/placeholder.svg?height=200&width=200');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    border: 2px solid #e6d4a3;
}

.portfolio-item:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(128, 81, 0, 0.9));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h4 {
    color: #fff8e7;
    margin-bottom: 0.3rem;
}

.portfolio-overlay p {
    color: #ffcc66;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-widget {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(128, 81, 0, 0.1);
    border: 1px solid #e6d4a3;
}

.widget-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    font-weight: 600;
}

.category-list {
    list-style: none;
    padding-left: 0;
}

.category-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0e6cc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    color: #5a4000;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.category-list a:hover {
    color: var(--primary-color);
}

.post-count {
    background: var(--primary-color);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.recent-post {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0e6cc;
}

.recent-post:last-child {
    border-bottom: none;
}

.post-thumbnail {
    width: 60px;
    height: 60px;
    background: url('/placeholder.svg?height=60&width=60');
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    flex-shrink: 0;
    border: 2px solid #e6d4a3;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.post-info h4 {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    line-height: 1.3;
    font-weight: 600;
}

.post-info h4:hover {
    color: #a66800;
    cursor: pointer;
}

.post-date {
    font-size: 0.8rem;
    color: #996600;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-color), #a66800);
    color: white;
    text-align: center;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #fff8e7;
}

.contact-item {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #fff8e7;
}

/* About section styling */
#about p {
    margin-bottom: 1rem;
    color: #5a4000;
    text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 1rem 0;
    }

    .main-layout {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional styling for better visual hierarchy */
.single .service-card:nth-child(even) {
    background: #f5f0e6;
}

.service-card:nth-child(even):hover {
    background: #fff;
}

/* Accent elements */
.accent-line {
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ffcc66, var(--primary-color));
    margin: 1rem 0;
    border-radius: 2px;
}

/* Search widget */
.search-widget {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e6d4a3;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #a66800;
}

@media only screen and (max-width: 767px) {

    .header-title,
    .showcase-subtitle,
    .main-title {
        text-align: center;
    }

    .section-header,
    .sc-interior .header {
        justify-content: center;
    }

    .sc-interior .header .wrap_title {
        width: 100%;
    }

    .section-title {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 576px) {
    .footer-title {
        font-size: 20px;
    }

    .view-more-btn {
        display: none;
    }

}

#newsletterForm .wpcf7-not-valid-tip {
    color: #fff;
}

.custom-pagination-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.custom-pagination-container>* {
    list-style: none;
}

.custom-pagination-container .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    color: #007bff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-pagination-container .page-numbers:hover {
    background-color: #007bff;
    color: white;
}

.custom-pagination-container .page-numbers.current {
    background-color: #007bff;
    color: white;
    font-weight: bold;
    pointer-events: none;
    border-color: #007bff;
}

@media (max-width: 576px) {
    .custom-pagination-container {
        gap: 4px;
    }

    .custom-pagination-container .page-numbers {
        padding: 6px 8px;
        font-size: 14px;
    }

    .sc-project .subtitle {
        font-size: 18px;
    }
}

/* Breadcrumb Styles */
.breadcrumb {
    padding: 15px 0;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 0px;
}

.breadcrumb-nav {
    font-size: 14px;
    color: #666;
}

.breadcrumb-nav a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--primary-color);
}

.breadcrumb-nav .separator {
    margin: 0 8px;
    color: #999;
}

.breadcrumb-nav .current {
    color: var(--primary-color);
    font-weight: bold;
}

/* Header Styles */
.page-header {
    margin-bottom: 30px;
}

.page-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.page-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.page-date {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.page-date::before {
    content: "📅";
    margin-right: 8px;
}

.page-categories {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.page-categories::before {
    content: "🏷️";
    margin-right: 8px;
    color: #666;
}

.category-tag {
    background-color: #f0f0f0;
    color: #666;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.category-tag:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.category-tag.primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.partner {
    background-color: rgba(245, 246, 246, 0.96);
}

.copyright .container {
  padding: 0;
}

.top-ft {
  padding: 40px 0 25px;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.top-ft:before {
  content: "";
  display: block;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}