.hero-slider__big.video-hero {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
}

.hero-slider__big.video-hero .hero-block {
    min-height: fit-content;
}

.hero-slider__big.video-hero .hero-block__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    min-height: 550px;
    max-height: 550px;
}

.hero-slider__big.video-hero .hero-block__content {
    flex: 1 1 48%;
    max-width: 560px;
    padding: 0;
}

.hero-slider__big.video-hero .hero-block__visual {
    flex: 0 0 600px;
    width: 600px;
    height: 500px;
    overflow: hidden;
    background: transparent;
}

.hero-slider__big.video-hero .hero-block__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 0 70px 0;
}

.hero-slider__big.video-hero .hero-block__title {
    margin: 22px 0 16px;
}

.hero-slider__big.video-hero .hero-block__text {
    margin-bottom: 22px;
}


.hero-slider__big.video-hero .hero-block__actions-cell .btn {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50px;
    padding: 14px 27px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 20px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, border 0.3s ease, color 0.3s ease;
  }
  .hero-slider__big.video-hero .hero-block__actions-cell .btn--bg {
    background: #3E4143;
    position: relative;
    z-index: 0;
    border: none;
    color: white;
    box-shadow: none;
  }
  .hero-slider__big.video-hero .hero-block__actions-cell .btn--bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(149deg, #7B13FF 19.28%, #5CDCFF 119.47%);
    border-radius: 20px;
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 1;
  }
  .hero-slider__big.video-hero .hero-block__actions-cell .btn--bg:hover::before {
    opacity: 0;
  } 
  .hero-slider__big.video-hero .hero-block__actions-cell .btn {
    text-decoration: none;
  }

@media (max-width: 1024px) {
    .hero-slider__big.video-hero .hero-block__container {
        gap: 30px;
    }

    .hero-slider__big.video-hero .hero-block__visual {
        flex-basis: 360px;
        width: 360px;
        height: 360px;
    }
}

@media (max-width: 767px) {

    .page-section {
        margin: 40px 0;
    }


    .hero-slider__big.video-hero .hero-block__content.hero-block__content {
        margin: 0;
    }

    .hero-slider__big.video-hero .hero-block__title {
        font-size: 42px;
    }

    .hero-slider__big.video-hero .hero-block__actions-cell .btn--bg {
        max-width: fit-content;
    }

    .hero-slider__big.video-hero .hero-block__container {
        /* flex-direction: column-reverse; */
        align-items: flex-start;
        max-height: max-content;
    }

    .hero-slider__big.video-hero .hero-block__content {
        max-width: none;
    }

    .hero-slider__big.video-hero .hero-block__visual {
        width: 100%;
        max-width: 420px;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .hero-slider__big.video-hero .hero-block {
        border-radius: 0;
    }

    .hero-slider__big.video-hero .hero-block__video {
        border-radius: 20px;
    }
}
