.heroP{
    display: flex;
    flex-direction: column;
    gap: 32px;
    color: #202020;
    padding: 120px 40px;
}

.heroP_title{
    font-size: 39px;
    line-height: 120%;
    letter-spacing: -0.39px;
    font-weight: 700;
}

.heroP_list{
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.heroP_list_element{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.heroP_list_title{
    font-size: 25px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.25px;
}

.heroP_list_text{
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
}

.heroP_list li span{
    color: #ba282d;
    text-decoration: underline;
}

@media screen and (max-width: 768px){
    .heroP{
        width: auto;
        gap: 32px;
        margin: 72px 16px;
    }

    .heroP_title{
        font-size: 25px;
        letter-spacing: -0.25px;
    }

    .heroP_list{
        gap: 24px;
    }

    .heroP_list li{
        font-size: 13px;
    }
}

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

}