@import url('../fonts/Gilroy/stylesheet.css');
/*@import url('../fonts/Revard/stylesheet.css');*/

h2 {
    /*font-family: 'Revard', serif;*/
    font-size: 48px !important;
    color: var(--thm-gray);
    line-height: 26px;
    font-weight: 900 !important;
}

.banner-one__btn-box{
    text-align: center;
}

.video-container {
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.video-card {
    overflow: hidden;
    height: auto;
    transform: rotate(0deg);
    transition: all 0.4s ease;
}

.video-card:hover {
    transform: rotate(-1deg) scale(1.03);
}

.video-card video {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    height: auto;
    max-width: 100%;
}

.video-1 {
    top: 0;
    right: 0;
    z-index: 1;


}

.video-2 {
    top: 40px;
    left: 40%;
    z-index: 2;

}

.video-3 {
    top: 80px;
    left: 60px;
    z-index: 3;

}

/* Для адаптивности */
@media (max-width: 992px) {
    .banner-one {
        padding: 10px 0 0;
    }

    .banner-one__text-1{
        margin-bottom: 25px;
    }

    .gallery-one__inner {
        margin-top: 0 !important;
        padding-bottom: 30px;
    }

    .gallery-one__btn-box {
        bottom: -35px;
    }
}