/* video-section
---------------------------------------------------------- */
.video-section {
    position: relative;
    z-index: 1;
    padding: 80px 40px;
}
.video-section-inner {
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 67px;
}
.video-section-content-holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 9px;
    max-width: 1200px;
}
.video-section-title-holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 9px;
}
.video-section-title-holder h2 {
    font-size: var(--h1-font-size);
    color: var(--main-color);
    line-height: 1.12;
    font-weight: var(--font-weight-bold);
    letter-spacing: .48px;
}
.video-section-title-holder h3 {
    font-size: var(--h2-font-size);
    color: var(--secondary-color);
    line-height: 1.5;
}
.video-section-content-holder p {
    letter-spacing: 1px;
    line-height: 1.5;
    margin-bottom: 0;
}
.video-section-video-holder {
    position: relative;
    z-index: 1;
    width: min(100%, 796px);
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-section-video-box {
    position: relative;
    max-width: 796px;
    width: 100%;
}
.video-holder-stat {
    position: absolute;
    z-index: 1;
    color: var(--white);
    border: 1px solid var(--accent-green);
    background: linear-gradient(104deg, #4C5A70 -12.31%, #2B3345 79.18%);
    box-shadow: 0px 2.512px 6.28px 0px rgba(53, 61, 82, 0.10), 0px 2.512px 12.56px 0px rgba(45, 52, 71, 0.10);
    min-width: 276px;
    padding: 15px 19px;
}
.video-holder-stat.stat_1 {
    top: 0;
    left: 100%;
    transform: translate(-20%, 20%);
}
.video-holder-stat.stat_2 {
    top: 50px;
    left: 100%;
    transform: translate(-5%, 100%);
}
.video-holder-stat.stat_3 {
    bottom: 0;
    right: 100%;
    transform: translate(5%, -80%);
}
.video-holder-stat-big-text {
   font-size: var(--h2-font-size);
   line-height: 1.5;
   font-weight: var(--font-weight-bold);
   margin-bottom: 4px;
}
.video-holder-stat-small-text {
   line-height: 1.12;
   text-transform: uppercase;
   letter-spacing: .36px;
   font-weight: 500;
}

.gradient-smudge.video-smudge .smudge {
    border-radius: 1140px;
    width: 1140px;
    height: 800px;
    transform: translate(-50%, 0%);
    left: 100%;
    top: 200px;
}
.gradient-smudge.video-smudge .smudge::before {
    background: linear-gradient(240deg, rgba(213, 241, 161, 0.50) 4.67%, rgba(48, 191, 255, 0.50) 44.99%, rgba(76, 90, 112, 0.50) 85.31%);
    transform: rotate(270deg);
}

@media (max-width: 1400px) {
    .video-section-inner {
        gap: 130px;
    }
    .video-holder-stat.stat_1 {
        top: -100px;
        left: 0%;
        transform: translate(-10%, 0%);
    }
    .video-holder-stat.stat_2 {
        top: -70px;
        left: 100%;
        transform: translate(-90%, 0%);
    }
    .video-holder-stat.stat_3 {
        bottom: -10px;
        right: 100%;
        transform: translate(90%, 100%);
    }
}
@media (max-width: 700px) {
    .video-section {
        padding: 80px 25px;
    }
    .video-section-inner {
        gap: 50px;
    }
    .video-holder-stat {
        display: none;
    }
}