.hero_service_bg{
    background-image: url(../items/backgrounds/hero_service.svg);
    background-size: 100%;    
}

.heroS{
    display: flex;
    flex-direction: column;
    padding: 120px 40px 100px 40px;
}

.heroS_text{
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.heroS_top{
    display: flex;
    justify-content: space-between;
    margin: auto;
}

.heroS_large{
    font-size: 76px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -3.04px;
    color: #202020;
}

.heroS_small{
    font-size: 25px;
    width: 50%;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.25px;
    color: #202020;
}

.heroS_panel{
    display: flex;
    gap: 24px;
}

.heroS_frame{
    display: flex;
    align-items: center;
    padding: 24px;
    justify-content: space-between;
    font-size: 25px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.25px;
    background-color: #eceded;
    border-radius: 12px;
    transition: 0.5s;
    cursor: pointer;
    color: #202020;
}

.heroS_frame .who_button{
    align-self: center;
}

.heroS_frame:hover .who_button div{
    transform: rotate(45deg);
}

.heroS_frame:hover{
    color: #ba282d;
}

.heroS_frame_background{
    display: flex;
}

@media screen and (max-width: 768px){
    .heroS{
        padding: 72px 16px;
    }

    .heroS_text{
        gap: 72px;
    }

    .heroS_top{
        flex-direction: column;
        justify-content: initial;
        gap: 32px;
    }

    .heroS_large{
        font-size: 61px;
        letter-spacing: -2.44px;
    }

    .heroS_small{
        font-size: 20px;
        letter-spacing: -0.2px;
        width: auto;
    }

    .heroS_panel{
        flex-direction: column;
    }

    .heroS_frame:hover .who_button div{
        transform: none;
    }

    .heroS_frame:hover{
        color: #202020;
    }
}

@media screen and (min-width: 1440px) {

}