.video-component {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.video-component__heading {
    max-width: 615px;
    width: 100%;
}

.video-component__heading h1 {
    font-family: "Open Sans", "sans-serif";
    font-weight: 600;
    font-style: normal;
    font-size: 64px;
    color: #0E0E0F;
}

.video-component__heading h1 span {
    color: #00A76B;
}

.video-component__video {
    max-width: 486px;
    width: 100%;
    height: 486px;
    border-radius: 1000px;
    overflow: hidden;
    position: relative;
}

.video-component__video video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0 auto;
}

.video-component__video_large {
    max-width: 1280px;
    width: 100%;
    height: 584px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.video-component__video img {
    margin: 0 auto;
}

.video-component__controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-component__controls .button-play {
    cursor: pointer;
}

@media screen and (max-width: 980px) {
    .video-component {
        flex-direction: column;
    }

    .video-component__heading {
        text-align: center;
    }

    .video-component__heading h1 {
        font-family: "Open Sans", "sans-serif";
        font-weight: 600;
        font-style: normal;
        font-size: 40px;
    }
}

@media screen and (max-width: 500px) {
    .video-component__heading {
        max-width: 300px;
    }

    .video-component__heading h1 {
        font-family: "Open Sans", "sans-serif";
        font-weight: 600;
        font-style: normal;
        font-size: 24px;
    }

    .video-component__video {
        max-width: 300px;
        height: fit-content;
        margin: 0 auto;
    }
}