.heading {
    background-image: url("../images/bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: calc(var(--header-height-desktop) + 72px);
    background-position: center;
    margin-bottom: -42px;
    z-index: 0;
    position: relative;
}

.heading__inner {
    width: 565px;
    padding-bottom: 111px;
}

.heading__title {
    font-weight: bold;
    font-size: 45px;
    line-height: 55px;
    text-transform: uppercase;
}

.heading__description {
    font-size: 24px;
    margin-top: 32px;
    line-height: 30px;
    max-width: 468px;
}

.heading__play-btn {
    margin-top: 80px;
}

@media screen and (max-width: 767px) {
    .heading {
        padding-top: calc(var(--header-height-mobile) + 48px);
    }

    .heading__inner {
        width: auto;
    }

    .heading__title {
        font-size: 24px;
        line-height: 28px;
    }

    .heading__description {
        margin-top: 16px;
        font-size: 14px;
        line-height: 20px;
    }

    .heading__play-btn {
        margin-top: 32px;
    }

    .heading__inner {
        padding-bottom: 80px;
        margin-bottom: -34px;
    }
}

@media screen and (max-width: 1023px) {
    .heading__play-btn {
        margin-left: 6px;
    }
}

@media screen and (max-width: 1279px) {
    .heading:before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #051854;
        opacity: .4;
        z-index: -1;
    }
}