 /* Section project banner */
.section-project-banner {
    margin-top: calc(-1 * var(--header-height));
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.section-project-banner .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-project-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
    z-index: 1;
}

/* Tablet */
@media (max-width: 992px) {
    .section-project-banner {
        height: 240px;
    }

}

/* Mobile */
@media (max-width: 576px) {
    .section-project-banner {
        height: 200px;
    }

    .section-project-banner::before {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    }
}

/* End section project banner */


/* Section header projects */
.section-project-header {
    padding: 60px 0 40px;
    background-color: #ffffff;
}

.section-project-header .header-content {
    text-align: center;
}

.section-project-header .section-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-project-header .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 40px;
}

.section-project-header .filter-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.section-project-header .filter-tab {
    background-color: #f8f9fa;
    color: #636e72;
    border: none;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.section-project-header .filter-tab:hover {
    background-color: var(--secondary-color-main);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(228, 182, 65, 0.3);
}

.section-project-header .filter-tab.active {
    background-color: var(--secondary-color-main);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(228, 182, 65, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .section-project-header {
        padding: 50px 0 35px;
    }

    .section-project-header .section-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .section-project-header .filter-tabs {
        gap: 14px;
    }

    .section-project-header .filter-tab {
        padding: 11px 24px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .section-project-header {
        padding: 40px 0 30px;
    }

    .section-project-header .section-subtitle {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .section-project-header .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .section-project-header .filter-tabs {
        gap: 12px;
    }

    .section-project-header .filter-tab {
        padding: 10px 20px;
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .section-project-header {
        padding: 35px 0 25px;
    }

    .section-project-header .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .section-project-header .filter-tabs {
        gap: 10px;
        flex-direction: column;
        width: 100%;
    }

    .section-project-header .filter-tab {
        width: 100%;
        max-width: 300px;
        padding: 12px 20px;
    }
}

/* End Section header projects */

/* Section-project-cta */
.section-project-cta {
    padding-bottom: 80px;
    background-color: #f8f9fa;
}

.section-project-cta .cta-wrapper {
    display: flex;
    align-items: stretch;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.section-project-cta .cta-content {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 50px;
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-project-cta .cta-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #ffffff;
}

.section-project-cta .cta-description {
    font-size: 15px;
    line-height: 1.7;
    color: #b8b8b8;
    margin-bottom: 30px;
}

.section-project-cta .cta-button {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-color-main);
    border: 2px solid var(--secondary-color-main);
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.section-project-cta .cta-button:hover {
    background-color: var(--secondary-color-main);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 166, 85, 0.4);
}

.section-project-cta .cta-image {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

.section-project-cta .cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.section-project-cta .cta-wrapper:hover .cta-image img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
    .section-project-cta {
        padding: 60px 0;
    }

    .section-project-cta .cta-wrapper {
        flex-direction: column;
    }

    .section-project-cta .cta-content {
        flex: 1;
        padding: 50px 40px;
    }

    .section-project-cta .cta-title {
        font-size: 32px;
    }

    .section-project-cta .cta-image {
        flex: 1;
        min-height: 350px;
    }
}

@media (max-width: 767px) {
    .section-project-cta {
        padding: 40px 0;
    }

    .section-project-cta .cta-content {
        padding: 40px 30px;
    }

    .section-project-cta .cta-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .section-project-cta .cta-description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .section-project-cta .cta-button {
        padding: 12px 28px;
        font-size: 13px;
    }

    .section-project-cta .cta-image {
        min-height: 300px;
    }
}

@media (max-width: 575px) {
    .section-project-cta {
        padding: 30px 0;
    }

    .section-project-cta .cta-content {
        padding: 35px 25px;
    }

    .section-project-cta .cta-title {
        font-size: 24px;
    }

    .section-project-cta .cta-button {
        width: 100%;
        text-align: center;
    }

    .section-project-cta .cta-image {
        min-height: 250px;
    }
}

/*End  Section-project-cta */

.section-project-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-project-content .project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.section-project-content .project-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
    height: 340px;
}

.section-project-content .project-item:hover {
    transform: translateY(-5px);
}

.section-project-content .project-item:first-child {
    grid-row: span 2;
    height: 700px;
}

.section-project-content .project-item:nth-child(8) {
    grid-row: span 2;
    height: 700px;
}

.section-project-content .project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.section-project-content .project-item:hover img {
    transform: scale(1.05);
}

.section-project-content .project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 25px;
    margin: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.section-project-content .project-item:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

.section-project-content .project-name {
    color: var(--primary-color-main);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    max-width: calc(100% - 60px);
}

.section-project-content .project-button {
    width: 48px;
    height: 48px;
    background-color: var(--secondary-color-main);
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.section-project-content .project-button:hover {
    opacity: 0.9;
    transform: translateX(5px);
    background-color: var(--primary-color-main);
}

.section-project-content .project-button svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
    .section-project-content {
        padding: 60px 0;
    }

    .section-project-content .project-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .section-project-content .project-item {
        height: 250px;
    }

    .section-project-content .project-item:first-child,
    .section-project-content .project-item:nth-child(8)
    {
        grid-row: span 1;
        height: 250px;

    }
    
}

@media (max-width: 576px) {
    .section-project-content {
        padding: 40px 0;
    }

    .section-project-content .project-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .section-project-content .project-item {
        height: 250px;
    }

    .section-project-content .project-item:first-child {
        grid-column: auto;
        height: 300px;
    }

    .section-project-content .project-overlay {
        padding: 20px 15px;
        margin: 15px;
    }

    .section-project-content .project-name {
        font-size: 16px;
    }

    .section-project-content .project-button {
        width: 40px;
        height: 40px;
    }

    .section-project-content .project-button svg {
        width: 20px;
        height: 20px;
    }
}

/* Section project detail */
.section-project-detail {
    overflow: hidden;
    padding: 80px 0;
    background-color: #ffffff;
}

.section-project-detail .main-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.section-project-detail .main-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.section-project-detail .content-badge {
    display: inline-block;
    background-color: #fde4e4;
    color: #d63031;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.section-project-detail .content-title {
    font-size: 36px;
    font-weight: 700;
    color: #2d3436;
    line-height: 1.3;
}

.section-project-detail .content-description {
    font-size: 15px;
    line-height: 1.8;
    color: #636e72;
}

.section-project-detail .info-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #2d3436;
}

.section-project-detail .info-label {
    font-weight: 600;
    color: #2d3436;
    min-width: 130px;
}

.section-project-detail .info-value {
    color: #636e72;
}

/* Responsive */
@media (max-width: 991px) {
    .section-project-detail {
        padding: 60px 0;
    }

    .section-project-detail .content-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .section-project-detail {
        padding: 40px 0;
    }

    .section-project-detail .content-title {
        font-size: 28px;
    }

    .section-project-detail .content-description {
        font-size: 14px;
    }

    .section-project-detail .info-label {
        min-width: 110px;
        font-size: 14px;
    }

    .section-project-detail .info-value {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .section-project-detail {
        padding: 30px 0;
    }

    .section-project-detail .content-title {
        font-size: 24px;
    }

    .section-project-detail .info-section-title {
        font-size: 18px;
    }
}

/*  Section project detail content */

.section-project-detail-content {
    padding-top: 60px;
    background-color: #ffffff;
    margin: 0 auto;
}

.section-project-detail-content .content-text {
    font-size: 15px;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 20px;
}

.section-project-detail-content .content-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.section-project-detail-content .content-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/10;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 991px) {
    .section-project-detail-content {
        padding: 50px 0;
    }
}

@media (max-width: 767px) {
    .section-project-detail-content {
        padding: 40px 0;
    }

    .section-project-detail-content .content-text {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .section-project-detail-content {
        padding: 30px 0;
    }
}

/* Gallery Carousel  */
.section-content-detail-gallery * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 900px;
}

.section-content-detail-gallery {
    padding: 40px 0;
}

.section-content-detail-gallery .gallery-container {
    position: relative;
    overflow: hidden;
}

.section-content-detail-gallery .image-wrap {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0 20px 0;
    justify-content: space-evenly;
}

.section-content-detail-gallery .image-wrap::-webkit-scrollbar {
    display: none;
}

.section-content-detail-gallery .gallery-item {
    flex: 0 0 auto;
    width: 200px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.section-content-detail-gallery .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.section-content-detail-gallery .gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.section-content-detail-gallery .zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.section-content-detail-gallery .gallery-item:hover .zoom-icon {
    opacity: 1;
}

.section-content-detail-gallery .zoom-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--secondary-color-main);
}

.section-content-detail-gallery .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.section-content-detail-gallery .nav-btn:hover {
    background: var(--secondary-color-main);
    box-shadow: 0 6px 16px var(--primary-color-main);
}

.section-content-detail-gallery .nav-btn:hover svg {
    fill: #fff;
}

.section-content-detail-gallery .nav-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--secondary-color-main);
    transition: fill 0.3s ease;
}

.section-content-detail-gallery .nav-btn.prev {
    left: 10px;
}

.section-content-detail-gallery .nav-btn.next {
    right: 10px;
}

.section-content-detail-gallery .nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 1200px) {
    .section-content-detail-gallery .gallery-item {
        width: 250px;
    }
}

@media (max-width: 992px) {
    .section-content-detail-gallery .gallery-item {
        width: 220px;
    }

    .section-content-detail-gallery .gallery-item img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .section-content-detail-gallery {
        padding: 30px 0;
    }

    .section-content-detail-gallery .gallery-item {
        width: 200px;
    }

    .section-content-detail-gallery .gallery-item img {
        height: 160px;
    }

    .section-content-detail-gallery .nav-btn {
        width: 38px;
        height: 38px;
    }

    .section-content-detail-gallery .nav-btn svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 576px) {
    .section-content-detail-gallery .gallery-item {
        width: 150px;
    }

    .section-content-detail-gallery .gallery-item img {
        height: 120px;
    }

    .section-content-detail-gallery .nav-btn {
        width: 35px;
        height: 35px;
    }

    .section-content-detail-gallery .nav-btn svg {
        width: 14px;
        height: 14px;
    }

    .section-content-detail-gallery .zoom-icon {
        width: 40px;
        height: 40px;
    }

    .section-content-detail-gallery .zoom-icon svg {
        width: 20px;
        height: 20px;
    }
}
/* End Gallery Carousel */

/* Section project view more */
        .section-project-view-more {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .section-project-view-more {
            padding: 60px 0;
            background: #fff;
        }

        /* Section Header */
        .section-project-view-more .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-project-view-more .section-subtitle {
            color: var(--secondary-color-main);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .section-project-view-more .section-title {
            color: var(--primary-color-main);
            font-size: 32px;
            font-weight: 700;
            margin: 0;
        }

        /* Carousel Container */
        .section-project-view-more .carousel-container {
            position: relative;
            overflow: hidden;
        }

        /* Project Wrapper - Carousel Track */
        .section-project-view-more .project-wrap {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 10px 0 20px 0;
        }

        .section-project-view-more .project-wrap::-webkit-scrollbar {
            display: none;
        }

        /* Project Card */
        .section-project-view-more .project-card {
            flex: 0 0 auto;
            width: 280px;
            text-decoration: none;
            color: inherit;
            position: relative;
            transition: transform 0.3s ease;
        }

        .section-project-view-more .project-card:hover {
            transform: translateY(-8px);
        }

        .section-project-view-more .project-image {
            width: 100%;
            height: 380px;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: box-shadow 0.3s ease;
            position: relative;
        }

        .section-project-view-more .project-card:hover .project-image {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .section-project-view-more .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .section-project-view-more .project-card:hover .project-image img {
            transform: scale(1.08);
        }

        /* Project Info Overlay */
        .section-project-view-more .project-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .section-project-view-more .project-card:hover .project-info {
            transform: translateY(-15px);
        }

        .section-project-view-more .project-name {
            color: var(--primary-color-main);
            font-size: 15px;
            font-weight: 600;
            line-height: 1.4;
            margin: 0;
            flex: 1;
        }

        .section-project-view-more .project-arrow {
            flex-shrink: 0;
            width: 36px;
            height: 36px;
            background: var(--secondary-color-main);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .section-project-view-more .project-card:hover .project-arrow {
            background: var(--secondary-color-main);
        }

        .section-project-view-more .project-arrow svg {
            width: 18px;
            height: 18px;
            fill: #fff;
        }

        /* Navigation Buttons */
        .section-project-view-more .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.95);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            z-index: 10;
        }

        .section-project-view-more .nav-btn:hover:not(:disabled) {
            background: var(--secondary-color-main);
            box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
        }

        .section-project-view-more .nav-btn:hover:not(:disabled) svg {
            fill: #fff;
        }

        .section-project-view-more .nav-btn svg {
            width: 24px;
            height: 24px;
            fill: var(--primary-color-main);
            transition: fill 0.3s ease;
        }

        .section-project-view-more .nav-btn.prev {
            left: -20px;
        }

        .section-project-view-more .nav-btn.next {
            right: -20px;
        }

        .section-project-view-more .nav-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .section-project-view-more .project-card {
                width: 260px;
            }

            .section-project-view-more .project-image {
                height: 360px;
            }

            .section-project-view-more .nav-btn.prev {
                left: -10px;
            }

            .section-project-view-more .nav-btn.next {
                right: -10px;
            }
        }

        @media (max-width: 992px) {
            .section-project-view-more {
                padding: 50px 0;
            }

            .section-project-view-more .section-title {
                font-size: 28px;
            }

            .section-project-view-more .project-card {
                width: 240px;
            }

            .section-project-view-more .project-image {
                height: 330px;
            }

            .section-project-view-more .nav-btn {
                width: 45px;
                height: 45px;
            }

            .section-project-view-more .nav-btn svg {
                width: 20px;
                height: 20px;
            }

            .section-project-view-more .project-name {
                font-size: 14px;
            }

            .section-project-view-more .project-arrow {
                width: 34px;
                height: 34px;
            }
        }

        @media (max-width: 768px) {
            .section-project-view-more {
                padding: 40px 0;
            }

            .section-project-view-more .section-subtitle {
                font-size: 12px;
            }

            .section-project-view-more .section-title {
                font-size: 24px;
            }

            .section-project-view-more .section-header {
                margin-bottom: 30px;
            }

            .section-project-view-more .project-card {
                width: 220px;
            }

            .section-project-view-more .project-image {
                height: 300px;
            }

            .section-project-view-more .nav-btn {
                width: 40px;
                height: 40px;
            }

            .section-project-view-more .nav-btn svg {
                width: 18px;
                height: 18px;
            }

            .section-project-view-more .nav-btn.prev {
                left: 5px;
            }

            .section-project-view-more .nav-btn.next {
                right: 5px;
            }

            .section-project-view-more .project-info {
                padding: 14px 16px;
            }

            .section-project-view-more .project-name {
                font-size: 13px;
            }

            .section-project-view-more .project-arrow {
                width: 32px;
                height: 32px;
            }

            .section-project-view-more .project-arrow svg {
                width: 16px;
                height: 16px;
            }
        }

        @media (max-width: 576px) {
            .section-project-view-more .project-card {
                width: 200px;
            }

            .section-project-view-more .project-image {
                height: 280px;
            }

            .section-project-view-more .nav-btn {
                width: 36px;
                height: 36px;
            }

            .section-project-view-more .nav-btn svg {
                width: 16px;
                height: 16px;
            }

            .section-project-view-more .project-info {
                padding: 12px 14px;
            }

            .section-project-view-more .project-name {
                font-size: 12px;
            }

            .section-project-view-more .project-arrow {
                width: 30px;
                height: 30px;
            }

            .section-project-view-more .project-arrow svg {
                width: 14px;
                height: 14px;
            }
        }
/* End Section project view more */