/* Hero Screen */
.hero-screen {
    background: 
    #E2CDA9;
}

.hero-screen-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 47px;
    margin: 0 auto;
    padding: 57px 0;
}

.hero-screen-content::before {
    position: absolute;
    content: '';
    width: 438px;
    height: 350px;
    bottom: 0;
    left: -9%;
    background: 
    url(../img/hero-screen/hero-screen-img-1.png) center / cover no-repeat
}

.hero-screen-content::after {
    position: absolute;
    content: '';
    width: 261px;
    height: 366px;
    bottom: 0;
    right: 40px;
    background: 
    url(../img/hero-screen/hero-screen-img-2-new.png) center / contain no-repeat
}

.hero-screen__text {
    max-width: 600px;
    font-size: 50px;
    font-weight: 600;
    line-height: 120%;
    color: #222222;
    text-align: center;
    margin: 0;
}

@media(max-width: 1180px) {
    .hero-screen-content::before {
        width: 438px;
        height: 350px;
        left: -18%;
    }

    .hero-screen-content::after {
        position: absolute;
        content: '';
        width: 261px;
        height: 366px;
        right: -30px;
    }
}

@media(max-width: 767px) {
    .hero-screen-content {
        gap: 7px;
        padding: 32px 0 160px;
    }

    .hero-screen-content .decor--bottom {
        display: none;
    }

    .hero-screen-content::before {
        width: 212px;
        
        height: 165px;
        bottom: 0;
        left: -8%;
        transform: rotate(18deg);
    }

    .hero-screen-content::after {
        width: 131px;
        height: 173px;
        bottom: 0;
        right: 12px;
    }

    .hero-screen__text {
        max-width: 360px;
        font-size: 24px;
    }
}