.slick-dots {
    display: flex;
    width: 100%;
    padding: 0 0;
    list-style: none;
    margin: 1vw 0 0;
}
.slick-dots li {
    background-color: rgba(52, 52, 52, 0.4);
    flex: 1;
    margin: 0 0.4vw 0 0;
    height: 0.25vw;
    cursor: pointer;
}
.slick-dots li.slick-active {
    background-color: rgba(52, 52, 52, 0.6);
}
.slick-dots li button{
    opacity: 0;
    width: 100%;
    position: relative;
    top: -0.6vw;
}

.close {
    position: absolute;
    right: 5%;
    top: 5%;
    width: 32px;
    height: 32px;
    opacity: 0.8;
    cursor: pointer;
    z-index: 220;
}
.close:hover {
    opacity: 1;
}
.close:before, .close:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 33px;
    width: 2px;
    background-color: #fff;
}
.close:before {
    transform: rotate(45deg);
}
.close:after {
    transform: rotate(-45deg);
}

@media only screen and (max-width: 767px) {
    .close {
        top: 25%;
    }
    .slick-dots {
        margin: 3vw 0 0;
    }
    .slick-dots li {
        margin: 0 0.4vw 0 0;
        height: 0.6vw;
    }
    .slick-dots li button{
        top: -1.2vw;
    }
}

.gallery-section {
    position: relative;
    padding: 14vw 0 20vw;
    overflow: hidden;
}

.gallery-title {
    font-family: 'Kapakana';
    font-weight: 400;
    font-size: 24.04vw;
    width: 100%;
    color: rgba(241, 233, 224, 0.1);
    text-align: center;
    position: absolute;
    top: 10vw;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 1;
}

.gallery-slider {
    position: relative;
    z-index: 2;
    margin-top: 10vw;
}

.gallery-slide {
    padding: 0 10vw;
}
.gallery-slider .slick-list {
    overflow: visible;
    padding: 0 25%;
}

.gallery-slide img {
    width: 100%;
    height: 38vw;
    object-fit: cover;
}
.gallery-slide img:hover {
    transform: scale(1.05);
    transition: all ease-in-out 0.3s;
}

.gallery-slide a {
    display: block;
    cursor: pointer;
    overflow: hidden;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
    display: flex;
    justify-content: space-between;
    width: 50vw;
    z-index: 3;
    pointer-events: none;
}
.gallery-prev,
.gallery-next {
    width: 5.52vw;
    height: 5.52vw;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    pointer-events: all;
    
}

.gallery-prev:hover img,
.gallery-next:hover img{
    opacity: 0.7;
}

.gallery-prev img,
.gallery-next img {
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
    object-fit: contain;
}

.gallery-slider .slick-track {
    display: flex;
    align-items: center;
}

.gallery-slider .slick-slide {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.gallery-slider .slick-slide.slick-current {
    opacity: 1;
}

.gallery-section.gallery-section--has-video .gallery-slider .slick-list{
  padding: 0 20%;
}
.gallery-section.gallery-section--has-video .gallery-slide{
 padding: 0 5vw;
}
.gallery-section.gallery-section--has-video .gallery-nav {
    width: 65vw;
}
.gallery-section.gallery-section--has-video .gallery-slide img {
    height: 30vw;
}
.gallery-slide--video .gallery-video-thumbnail {
    position: relative;
    width: 100%;
    height: 30vw;
    overflow: hidden;
    border-radius: 2.5vw;
}

.gallery-slide--video .video-thumb-canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #1a1a1a;
        filter: brightness(0.5);
}

.gallery-slide--video .gallery-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5.5vw;
    height: 5.5vw;
    z-index: 2;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-slide--video .gallery-play-icon img {
    width: 100%;
    height: 100% !important;
    object-fit: contain;
}

.gallery-slide--video a:hover .gallery-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-slide--video a:hover .video-thumb-canvas {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-content video {
    background-color: #000;
}

.lightbox-close {
    position: absolute;
    top: 2vw;
    right: 2vw;
    width: 3vw;
    height: 3vw;
    cursor: pointer;
    z-index: 2001;
    background: none;
    border: none;
    padding: 0;
}

.lightbox-close::before,
.lightbox-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #A37F66;
}

.lightbox-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.lightbox-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 5.52vw;
    height: 5.52vw;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2001;
    transition: opacity 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 0.7;
}

.lightbox-prev {
    left: 2vw;
}

.lightbox-next {
    right: 2vw;
}

.lightbox-prev img,
.lightbox-next img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media only screen and (max-width: 767px) {
    .lightbox-close {
        top: 5vw;
        right: 5vw;
        width: 8vw;
        height: 8vw;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 12vw;
        height: 12vw;
        transform: unset;
    }

    .lightbox-prev {
        left: 45%;
        top: 5%;
    }

    .lightbox-next {
        right: 42%;
        top: unset;
        bottom: 5%;
    }
    .lightbox-content img, .lightbox-content video {
        max-width: 100%;
        max-height: 65vh;
    }
    .gallery-section {
        padding: 5vw 0 25vw;
    }

    .gallery-title {
        font-size: 25vw;
        top: 14vw;
    }

    .gallery-slider {
        margin-top: 20vw;
    }
    .gallery-slider .slick-list {
        padding: 0 14%;
    }
    .gallery-slide {
        padding: 0 5vw;
    }
    .gallery-slide img {
        width: 100%;
        height: 70vw;
    }

   
    .gallery-slide--video .gallery-video-thumbnail {
        height: 60vw;
        border-radius: 2vw;
    }

    .gallery-slide--video .gallery-play-icon {
        width: 15vw;
        height: 15vw;
    }

    .gallery-nav {
        width: 85%;
    }

    .gallery-prev,
    .gallery-next {
        width: 10vw;
        height: 10vw;
    }
     .gallery-section.gallery-section--has-video .gallery-slider .slick-list{
    padding: 0 14%;
    }
    .gallery-section.gallery-section--has-video .gallery-slide{
    padding: 0 5vw;
    }
    .gallery-section.gallery-section--has-video .gallery-nav {
        width: 85%;
        top: 45%;
    }
    .gallery-section.gallery-section--has-video .gallery-slide img {
        height: 60vw;
    }
}

.btn-animated {
    text-transform: uppercase;
    color: #A37F66;
    font-family: 'CormorantGaramond', serif;
    font-size: 1.15vw;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-bottom: 0.5vw;
    width: fit-content;
}

.btn-animated::after {
    content: "";
    height: 1px;
    width: 105%;
    right: -2.5%;
    bottom: 0;
    background-color: #A37F66;
    position: absolute;
    transition: width ease-in-out 0.4s;
}

.btn-animated:hover::after {
    width: 0;
}

.btn-animated:hover .btn-animated__circle-container {
    transform: scale(1);
    width: 1.7vw;
    margin-right: 0.8vw;
}

.btn-animated:hover .btn-animated__arrow {
    transform: translateX(0);
}

.btn-animated__circle-container {
    justify-content: center;
    align-items: center;
    display: flex;
    height: 1.7vw;
    transform: scale(0);
    width: 0;
    transition: all ease-in-out 0.3s;
    overflow: hidden;
}

.btn-animated__arrow svg {
    width: 0.8vw;
    height: auto;
}

.btn-animated__circle-bg {
    transition: transform ease-in-out 0.3s;
    background-color: #A37F66;
    border: 1px solid transparent;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 1.7vw;
    height: 1.7vw;
    padding: 0.3vw;
    display: flex;
    flex-shrink: 0;
}

.btn-animated__arrow {
    color: #fff;
    justify-content: center;
    align-items: center;
    display: flex;
    transform: translateX(-1vw);
    transition: transform ease-in-out 0.6s;
}

@media only screen and (max-width: 767px) {
    .btn-animated {
        font-size: 4vw;
        padding-bottom: 2vw;
    }

    .btn-animated::after {
        height: 1px;
    }

    .btn-animated__arrow svg {
        width: 2.5vw;
    }

    .btn-animated__circle-bg {
        width: 5vw;
        height: 5vw;
        padding: 0.8vw;
    }

    .btn-animated__circle-container {
        height: 5vw;
    }

    .btn-animated:hover .btn-animated__circle-container {
        width: 5vw;
        margin-right: 2.5vw;
    }

    .btn-animated__arrow {
        transform: translateX(-2vw);
    }
}