section.gallery {
    display: flex;
    justify-content: center;
    background-color: #0e0e0e;
    color: white;
    width: 100%;
    padding: 0;
    overflow: hidden;
    min-height: auto;
}

section.gallery .section-content {
    max-width: 1500px;
    margin: 0 auto;
    text-align: left;
    width: 100%;
}

section.gallery h2 {
    width: 220px;
    color: white;
    font-size: 60px;
    font-weight: 400;
    line-height: 60px;
    margin: 0 0 70px;
    text-align: left;
}

section.gallery .canvas {
    position: relative;
    width: 100%;
    aspect-ratio: 1720 / 2000;
    overflow: hidden;
    border-radius: 16px;
}

section.gallery .canvas .photo {
    position: absolute;
}

section.gallery .canvas .photo:nth-child(1)  { left: 0;       top: 0.4%;    width: 20.3%;  height: 23%; }
section.gallery .canvas .photo:nth-child(2)  { left: 0;       top: 25%;  width: 20.3%;  height: 26.1%; }
section.gallery .canvas .photo:nth-child(3)  { left: 22%;  top: 0.4%;    width: 33.5%;  height: 14.5%; }
section.gallery .canvas .photo:nth-child(4)  { left: 22%;  top: 16.5%;   width: 33.5%;  height: 14.15%; }
section.gallery .canvas .photo:nth-child(5)  { left: 57.2%;  top: 0.4%;    width: 23.24%;  height: 27.5%; }
section.gallery .canvas .photo:nth-child(6)  { left: 82%;  top: 0.4%;    width: 16.5%;  height: 16.5%; }
section.gallery .canvas .photo:nth-child(7)  { left: 82%;  top: 18.55%;  width: 16.5%;  height: 9.45%; }
section.gallery .canvas .photo:nth-child(8)  { left: 22%;  top: 31.95%;  width: 38.44%;  height: 13%; }
section.gallery .canvas .photo:nth-child(9)  { left: 62%;  top: 29.5%;   width: 36.7%;  height: 15.5%; }
section.gallery .canvas .photo:nth-child(10) { left: 23.61%;  top: 47.75%;  width: 17.66%;  height: 2.05%; }
section.gallery .canvas .photo:nth-child(11) { left: 0;       top: 52.85%;  width: 43.13%;  height: 22.3%; }
section.gallery .canvas .photo:nth-child(12) { left: 44.9%;   top: 46.45%;  width: 27.41%;  height: 14.7%; }
section.gallery .canvas .photo:nth-child(13) { left: 44.9%;   top: 62.8%;   width: 27.41%;  height: 12.1%; }
section.gallery .canvas .photo:nth-child(14) { left: 74%;  top: 46.45%;  width: 24.76%;  height: 28.7%; }
section.gallery .canvas .photo:nth-child(15) { left: 0;       top: 76.6%;   width: 45.58%;  height: 19.05%; }
section.gallery .canvas .photo:nth-child(16) { left: 47%;  top: 76.6%;   width: 51.97%;  height: 19.05%; }

section.gallery .photo img {
    width: 100%;
    height: 100%;
    filter: saturate(0%);
    object-fit: cover;
    transition: 0.7s ease;
}

section.gallery .photo img:hover {
    transform: scale(1.03);
    filter: saturate(100%);
}

section.gallery .caption {
    color: #fff;
    padding: 10px;
    text-align: center;
}

section.gallery .carousel-cell {
    width: calc(50% - 20px);
    max-width: 700px;
    margin-right: 20px;
    display: flex;
    justify-content: center;
}

section.gallery .video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

section.gallery .flickity-prev-next-button {
    display: none;
}

section.gallery .video-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

section.gallery .video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

section.gallery .carousel-wrapper {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
}

section.gallery .carousel {
    width: 100%;
    margin: 0 auto;
    border-top: 3px solid #212121;
    border-bottom: 3px solid #212121;
    padding: 50px 0;
}

section.gallery .custom-prev {
    left: -60px;
}

section.gallery .custom-next {
    right: -60px;
}

section.gallery .custom-prev img,
section.gallery .custom-next img {
    width: 25px;
    height: auto;
    transition: transform 0.3s ease;
}

section.gallery .custom-prev:hover img,
section.gallery .custom-next:hover img {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    section.gallery h2 {
        font-size: 40px;
        text-align: center;
    }
    section.gallery .carousel-cell {
        width: 100%;
        max-width: 100%;
        margin-right: 15px !important;
    }
    section.gallery .video {
        width: 100% !important;
        height: auto !important;
    }
    section.gallery .custom-prev {
        left: 10px;
    }
    section.gallery .custom-next {
        right: 10px;
    }
    section.gallery .custom-prev img,
    section.gallery .custom-next img {
        width: 30px;
    }
}