.gallery-image img {
    height: 430px;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 10px;
}

.gallery-image {
    margin-inline: 10px;
    display: block;
    border-radius: 10px;
}

.gallery-section {
    background-color: rgba(17, 43, 77, 1);
    padding-block: 20px;
    position: relative;
}


.default-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}

.default-arrow.left {
    left: 20px;
}

.default-arrow.right {
    right: 20px;
}

.default-arrow:hover {
    background-color: var(--green-color);
}

.default-arrow:hover span {
    background-color: #ffffff;
}

.play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 29px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(40px);
    background: rgba(255, 255, 255, 0.2);
    width: 130px;
    height: 130px;
    border-radius: 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-button span {
    transition: 0.3s all ease-in;
    -webkit-mask: url('/wp-content/uploads/2026/01/polygon-woodbuffalo.svg');
    -webkit-mask-position: center center;
    width: 49px;
    height: 49px;
    border-radius: 2px;
    background: #ffffff;
}

.gallery-video {
    position: relative;
}

.play-button:hover {
    background-color: var(--green-color);
}

@media(max-width: 575px) {
    .gallery-image img {
        height: 125px;
    }

    .gallery-section {
        padding-block: 10px;
    }

    .gallery-image {
        margin-inline: 10px;
    }

   .default-arrow {
        display: none !important;
    }

    .play-button {
        width: 65px;
        height: 65px;
    }

    .play-button span {
        width: 35px;
        height: 35px;
        -webkit-mask-size: contain;
    }
}