.first-screen {
    position: relative;
    margin-top: 33.5px; 
}

.first-screen__wrapper {
    position: relative;
    z-index: 3;
}

.first-screen__subheading {
    margin-bottom: 12px;
    margin-top: 0;
}

.first-screen__bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 125px;
    margin-bottom: 73px;
}

.btn-bottom-position .first-screen__bottom-wrapper {
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
}

.btn-bottom-position .first-screen__text,
.btn-bottom-position .first-screen__button{
    flex-basis: fit-content;
}

.btn-bottom-position .first-screen__text {
    max-width: 908px;
    font-size: 24px;
}

.first-screen__preview-overlay,
.first-screen__preview-overlay-2 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.5;
    z-index: 2;
    transform: rotate(180deg);
}


.first-screen__preview-overlay {
    background: linear-gradient(180deg, #111 0%, rgba(17, 17, 17, 0) 100%);
}


.first-screen__preview-overlay-2 {
    background: rgba(135, 89, 0, 0.57);
}

.first-screen__preview-wrapper {
    position: relative;
    height: 520px;
}

.first-screen__preview-wrapper img{
    width: 100%;
    height: 100%;
}

.first-screen__text {
    flex-basis: 900px;
}

.first-screen__button {
    flex-basis: 318px;
    flex-shrink: 0;
}

.first-screen__play-btn {
    cursor: pointer;
    top: 161px;
    right: 109px;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    color: #FFF;
    display: flex;
    gap: 12px;
    font-size: 16px;
    width: 198px;
    height: 198px;
    padding-right: 35px;
    padding-left: 35px;
    backdrop-filter: blur(48px);
    border-radius: 100%;
    background: rgba(255, 255, 255, 0.04);
    z-index: 3;
    transition: all 0.5s ease;
}

.first-screen__play-btn:hover {
    background: #FFC91A;
    color: #0c0500;
}

.first-screen__play-btn:active {
    color: #894a0b;
}

.first-screen__play-btn svg path {
    transition: all 0.5s ease;
}

.first-screen__play-btn:hover svg path {
    fill: #0c0500;
}

.first-screen__play-btn:active svg path {
    fill: #894a0b;
}


.first-screen__play-icon {
    display: flex;
    width: 12px;
    height: 14px;
}

.first-screen__play-btn.play-btn-mobile {
    display: none;
}


.first-screen__backdrop {
    z-index: 10000000000000001;
}

@media screen and (max-width: 1199.98px) {
    .first-screen__bottom-wrapper {
       gap: 75px;
        margin-bottom: 60px;
    }

    .first-screen__preview-wrapper {
        position: relative;
        height: 455px;
    }
}

@media screen and (max-width: 1023.98px) {
    .first-screen {
        margin-top: 0;
    }

    .first-screen__subheading {
        margin-bottom: 18px;
        margin-top: 0;
    }

    .first-screen__bottom-wrapper {
        gap: 24px;
        align-items: flex-start;
        margin-bottom: 48px;
    }

    .first-screen__button {
        margin-top: 7px;
        flex-basis: 224px;
        font-size: 12px;
        padding: 16px 15px;
    }

    .first-screen__text {
        flex-basis: 472px;
    }

    .btn-bottom-position .first-screen__bottom-wrapper {
        flex-direction: row;
        gap: 24px;
        align-items: flex-start;
    }

    .btn-bottom-position .first-screen__text {
        font-size: 16px;
        flex-basis: 472px;
    }

    .first-screen__preview-wrapper {
        height: 390px;
    }

    .first-screen__play-btn {
        right: 24px;
        top: 158px;
        width: 148px;
        height: 148px;
        font-size: 12px;
    }
}


@media screen and (max-width: 767.98px) {
    .first-screen {
        height: calc(100svh - 102.8px);
        min-height: 340px;
        max-height: 100svh;
    }

    .first-screen__play-btn {
        display: none;
    }

    .first-screen__text {
        display: none;
    }

    .btn-bottom-position .first-screen__text {
        display: block;
        color: #FFF;
        flex-basis: fit-content;
    }

    .btn-bottom-position .first-screen__bottom-wrapper {
        flex-direction: column;
        gap: 16px;
    }

    .first-screen__play-btn.play-btn-mobile {
        padding: 0;
        display: flex;
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 16px;
        flex-direction: row;
        gap: 9px;
        align-items: center;
        justify-content: flex-start;
        background: none;
        width: fit-content;
        height: fit-content;
    }

    .first-screen__heading,
    .first-screen__subheading {
        margin-bottom: 16px;
        color: #FFF;
    }

    .first-screen__button {
        flex-basis: 100%;
        width: 100%;
        margin-top: 0;
        font-size: 16px;
        padding: 22px 15px;
    }

    .first-screen__play-icon {
        height: 12px;
    }

    .first-screen__container {
        height: 100%;
    }

    .first-screen__wrapper {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: 100%;
    }


    .first-screen__preview-wrapper {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
    }
}

@media screen and (max-width: 599.98px) {
    .first-screen {
        height: calc(100svh - 62.8px);
    }
}