/*--------------------------------------------------------------
# glav-slider
--------------------------------------------------------------*/

.top-sliders {
    overflow: hidden;
}

@media screen and (max-width: 576px) {
    .top-sliders {
        z-index: 80;
        background: white;
    }
}

.glav-slider .swiper-button-prev, .glav-slider .swiper-button-next {
    width: 60px;
    height: 60px;
    border: 2px solid white;
    text-align: center;
    line-height: 56px;
    font-size: 20px;
    font-weight: 800;
    text-shadow: none;
    transition: none;
    color: #171717;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    opacity: 1;
    background: white;
    border-radius: 14px;
    top: 30px;
}


.glav-slider .swiper-button-prev, .glav-slider .swiper-button-next {
    text-align: center;
    line-height: 56px;
    font-size: 20px;
    font-weight: 800;
    text-shadow: none;
    color: #171717;
}

.glav-slider .swiper-button-prev:hover, .glav-slider .swiper-button-next:hover {
    background: var(--href-color-hover);
    color: white;
}

.glav-slider {
    overflow: visible;
}

.glav-slider .swiper-button-disabled {
    opacity: 0.2;
}

@media screen and (max-width: 768px) {
    .glav-slider .swiper-slide {
        min-height: 475px;
    }

    .top-sliders .container {
        padding: 0;
        border-radius: 50px;
    }
}

/*
video index
 */

.video-button-wrapper {
    position: relative;
    display: inline-block;
}

.play-button {
    background: var(--href-color-dark);
    padding: 0px;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.play-button:hover {
    transform: scale(0.95);
    background: var(--color-violet-hover);
}

.video-button-wrapper::before,
.video-button-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--href-color-hover);
    border-radius: 999px;
    animation: pulse 2s infinite;
    z-index: 1;
}

.video-bg-img {
    background-image: url('../../assets/images/stel-video.jpg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    min-height: 480px;
}

.button-wrapper::after {
    animation-delay: 0.5s;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-button-wrapper {
    position: relative;
    display: inline-block;
}

.play-button {
    background: red;
    padding: 0px;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.play-button:hover {
    transform: scale(0.95);
}

.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
}

.close-video {
    color: #fff;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.video-modal-content video {
    width: 100%;
}

/*
# about us
 */
.ice-fruit::before {
    content: "";
    display: block;
    width: 490px;
    height: 500px;
    color: #fff;
    background-image: url('../../assets/images/ice-top.png');
    position: absolute;
    background-repeat: no-repeat;
    top: -116px;
    z-index: -1;
    left: -239px;
}

.ice-fruit::after {
    content: "";
    display: block;
    width: 512px;
    height: 400px;
    color: #fff;
    background-image: url('../../assets/images/ice-bot.png');
    position: absolute;
    background-repeat: no-repeat;
    bottom: -80px;
    z-index: -1;
    right: -200px;
}