.gallery-wrapper .section-header {
    display: flex;
}

.gallery-wrapper .gallery-title {
    max-width: 650px;
}

.gallery-wrapper .gallery-description {
    max-width: unset;
}


.gallery-wrapper .gallery-description-lists {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.gallery-items {
    display: grid;
    grid-template-columns: repeat(15, 1fr);
    grid-auto-rows: 265px;
    gap: 40px; 
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.gallery-item__image {
    display: block;
    height: 100%;
    width: 100%;
}

.gallery-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.gallery-item:nth-child(1) {
    grid-column: span 4;
    grid-row: span 2;
}

.gallery-item:nth-child(2) {
    grid-column: span 11;
    grid-row: span 2;
}


.gallery-item:nth-child(n+3) {
    grid-column: span 5;
    grid-row: span 1;
}

.gallery-wrapper .gallery-slider.owl-carousel {
    display: none;
    position: relative;
}

.gallery-slide .gallery-slide__image img {
    object-fit: cover;
    display: block;
    flex: none;
    overflow: hidden;
    width: 100%;
    height: 400px;
    border-radius: 30px;
}

.gallery-wrapper .owl-nav {
    justify-content: space-between;
    display: flex !important;
    pointer-events: none;
    position: absolute;
    left: -110px;
    right: -110px;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-wrapper .owl-nav.disabled {
    display: none !important;
}

.gallery-wrapper .owl-nav button {
    width: 60px;
    height: 60px;
    background-color: #FFFFFF !important;
    border: 1px solid #87A5C099 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.4s;
    pointer-events: all;
}


.gallery-wrapper .owl-nav button svg path {
    transition: 0.4s;
}

.gallery-wrapper .owl-nav button:not(.disabled):hover {
    background: var(--accent) !Important;
    border-color: var(--accent) !Important;
}

.gallery-wrapper .owl-nav button:not(.disabled):hover svg path {
    stroke: #fff;
}

.gallery-wrapper .owl-nav button.disabled {
    opacity: .5;
    pointer-events: none;
}

.gallery-wrapper .owl-nav button.disabled svg path {
    opacity: .5;
}

@media all and (max-width: 1750px) {
    .gallery-wrapper .owl-nav {
        left: 5px;
        right: 5px;
    }
}

@media all and (max-width: 1024px) {
    .gallery-wrapper .gallery-header {
        flex-direction: column;
    }

    .gallery-wrapper .gallery-items {
        display: none;
    }

    .gallery-wrapper .gallery-slider.owl-carousel {
        display: block;
    }

    .gallery-wrapper .owl-nav {
        justify-content: center;
        position: static;
        margin: 40px 0 0;
        transform: none;
    }

    .gallery-wrapper .owl-nav > * {
        margin: 0 8px;
    }

}

@media all and (max-width: 640px) {
    .gallery-wrapper .gallery-description-lists {
        flex-direction: column;
        gap: 0;
    }

    .gallery-wrapper .gallery-description ul li {
        font-size: 16px;
    }


}

@media all and (max-width: 480px) {

}

@media all and (max-width: 440px) {

}

@media all and (max-width: 360px) {

}
