section.gallery {
    margin-top: 120px;
    position: relative;
    padding-bottom: 90px;
    display: flex;
    justify-content: center;
    max-width: 100%;
    min-width: 100%;
}

section.gallery .container {
    margin-top: -50px;
}

section.gallery .splide__arrow {
    background: var(--dark-blue-100);
}

section.gallery .splide__arrow svg {
    fill: #fff;
}


section.gallery .gallery__full {
    margin-bottom: 30px;
}

section.gallery .gallery__full .splide__slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

section.gallery .gallery__full img {
    margin: auto;
    width: 770px;
    max-width: 90%;
    height: auto;
    display: block;
    border-radius: 30px;
}

section.gallery .gallery__thumbnail .splide__track {
    justify-content: center;
}

section.gallery .gallery__thumbnail .splide__track--nav>.splide__list>.splide__slide {
    border: 0 !important; 
    background: #000;   
    border-radius: 32px;
    overflow: hidden;
}

section.gallery .gallery__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .4;
}

section.gallery .gallery__thumbnail li.splide__slide.is-active img {
    opacity: 1;
}

@media all and (max-width: 768px) {

    section.gallery .container {
        max-width: 90%;
    }

    section.gallery .gallery__full img {
        max-width: 70%;
    }


    section.gallery .gallery__thumbnail .splide__track {
        padding: 0 40px;
    }

    section.gallery .gallery__thumbnail .splide__slide {
        width: 70px !important;
        height: 70px !important;
        border-radius: 15px !important;
    }
}