.section_intro .section__video {
    z-index: 2;
}
.section_intro .section__video-wrapper {
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section_intro .section__video-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.414) 100%);
    z-index: 3;
}
.section_intro .section__video-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 85% center;
    z-index: 1;
}
.section_intro .section__bg {
    background-position: right center;
}
.section_intro .section__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.414) 100%);
}
.section_intro .section__content {
    display: table;
    width: 100%;
    height: calc(100vh - 32px);
    padding: 0;
}
.section_intro .section__content-inner {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: bottom;
    padding: 80px 0;
}
@media screen and (max-width: 767px) {
    .section_intro .section__content {
        height: 100vh;
    }
    .section_intro .section__content-inner {
        padding-bottom: 15px;
    }
}

.intro-block__helper {
    font-weight: bold;
    font-size: 14px;
    line-height: 130%;
    color: #FFFFFF;
    background: #9F33FF;
    padding: 4px 8px;
    display: inline;
}
.intro-block__helper + .intro-block__title {
    margin-top: 16px;
}
.intro-block__title {
    font-weight: 800;
    font-size: 60px;
    line-height: 130%;
    color: #231F25;
}
@media screen and (max-width: 1199px) {
    .intro-block__title {
        font-size: 52px;
    }
}
@media screen and (max-width: 991px) {
    .intro-block__title {
        font-size: 40px;
    }
}
@media screen and (max-width: 767px) {
    .intro-block__title {
        font-size: 22px;
    }
}
@media screen and (max-width: 399px) {
    .intro-block__helper {
        font-size: 13px;
    }
}
@media screen and (max-width: 359px) {
    .intro-block__helper {
        font-size: 11px;
    }
}

.typewriter-block:after {
    content: "";
    display: inline-block;
    vertical-align: center;
    width: 1px;
    height: 1.3em;
    background: #fff;
    position: relative;
    top: 4px;
    margin-left: 1px;
}
.typewriter-block_finished:after {
    opacity: 0;
    animation: blink 0.5s 3;
}

@keyframes blink {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}
