.gallery-images-page .section-top {
    padding-top: 48px;
}

@media (max-width: 1280px) {
    .gallery-images-page .section-top {
        padding-top: 20px;
    }
}

@media (max-width: 600px) {
    .gallery-images-page .section-top {
        padding-top: 14px;
    }
}

.gallery-images-page .section-top .section-inner {
    border-top: 1px solid #DBDBDB;
    border-bottom: 1px solid #DBDBDB;
    padding: 80px 0;
}

@media (max-width: 1700px) {
    .gallery-images-page .section-top .section-inner {
        padding: 64px 0;
    }
}

@media (max-width: 1280px) {
    .gallery-images-page .section-top .section-inner {
        padding: 56px 0;
    }
}

@media (max-width: 900px) {
    .gallery-images-page .section-top .section-inner {
        padding: 48px 0;
    }
}

@media (max-width: 600px) {
    .gallery-images-page .section-top .section-inner {
        padding: 40px 0;
    }
}

.gallery-images-page .section-top .header {
    font-size: 64px;
    line-height: 72px;
    text-align: center;
}

@media (max-width: 1280px) {
    .gallery-images-page .section-top .header {
        font-size: 56px;
        line-height: 64px;
    }
}

@media (max-width: 900px) {
    .gallery-images-page .section-top .header {
        font-size: 40px;
        line-height: 48px;
    }
}

@media (max-width: 600px) {
    .gallery-images-page .section-top .header {
        font-size: 32px;
        line-height: 40px;
    }
}

.gallery-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 0 10px;
}

.gallery-tabs::-webkit-scrollbar {
    display: none;
}

.gallery-tabs .tab-button:last-child {
    margin-right: 10px;
}

.tab-button.active {
    border: 1px solid #004A8F;
    background: #004A8F;
    pointer-events: none;
    color: #fff;
}

.tab-button {
    flex-shrink: 0;
    white-space: nowrap;
    background: transparent;
    color: #000;
}

.tab-button:hover {
    color: #fff !important;
    background-color: #004A8F !important;
}

.gallery-slider {
    width: 100%;
    position: relative;
}

.gallery-slider .swiper-slide {
    height: 600px;
}

.gallery-slider .image {
    display: block;
    width: 100%;
    height: 100%;
}

.gallary-image {
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.gallery-slider .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    top: 50%;
}

.swiper-pagination {
    bottom: 10px !important;
}

.gallery-slider .swiper-pagination .swiper-pagination-bullet-active {
    background: #fff;
}

.gallery-slider .swiper-button-next {
    background-image: none !important;
    mask-image: url("../img/collections/next-64432499389395684daba28498afd447.svg") !important;
    width: 40px;
    height: 44px;
    mask-size: contain;
    mask-position: center;
    background-color: #fff;
    mask-repeat: no-repeat;
    transition: all 0.2s linear;

    &:hover {
        background-color: #004A8F;
    }
}

.gallery-slider .swiper-button-prev {
    background-image: none !important;
    mask-image: url("../img/collections/next-64432499389395684daba28498afd447.svg") !important;
    width: 40px;
    height: 44px;
    mask-size: contain;
    mask-position: center;
    background-color: #fff;
    mask-repeat: no-repeat;
    transform: rotate(180deg);
    transition: all 0.2s linear;

    &:hover {
        background-color: #004A8F;
    }
}