.custom_benefits {
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    margin: 0 auto;
}
/*.custom_benefits_element {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    flex-direction: column;*/
/*    height: 200px;*/
/*}*/
/*.custom_benefits_element p {*/
/*    height: 50%;*/
/*    margin-top: 0;*/
/*}*/
/*.custom_benefits_element_flex {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    height: 50%;*/
/*    gap: 10px;*/
/*}*/
/*.custom_benefits_icon {*/
/*    background-image: url("../img/icons/correct.png");*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    background-size: contain;*/
/*    background-repeat: no-repeat;*/
/*}*/
/*.custom_main_section_h2 {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    font-size: 18px;*/
/*    width: 90%;*/
/*    margin-top: 0;*/
/*}*/
.custom_benefits_element {
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-radius: 12px;
}

.custom_benefits_element p {
    margin: 16px 0 0 0;
    line-height: 1.5;
    color: #475569;
    font-size: 1rem;
}

.custom_benefits_element_flex {
    display: flex;
    align-items: center;
    gap: 16px;
}

.custom_benefits_icon {
    background-image: url("../img/icons/correct.png");
    width: 48px;
    height: 48px;
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.custom_main_section_h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
}






.custom_companies_icons_wrapper {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 50px;
    justify-content: center;
    align-items: center;
    padding: 0 60px;
    margin: 0 auto;
}
.custom_companies_icons_wrapper img {
    width: 150px;
    max-width: 100%;
    height: 100px;
    object-fit: contain;
    object-position: center;
}
.star_full {
    background-image: url("../img/icons/star-full.svg");
    width: 30px;
    height: 30px;
    background-size: cover;
    display: inline-block;
}
.custom_quality_stars {
    display: flex;
    align-items: center;
    gap: 5px;
}
.custom_quality_stars span {
    font-weight: 700;
}

.custom_quality {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: fit-content;
    color: #5F5F5F;
}
.custom_quality p {
    font-size: 18px;
}
.custom_quality_wrapper {
    display: flex;
    justify-content: space-between;
    text-align: center;
    width: 80%;
    margin: 0 auto;
}
.custom_companies_icons_wrapper {
    margin: 100px 0;
}

@media (max-width: 1300px) {
    .custom_benefits {
        grid-template-columns: repeat(3, 1fr);
    }
    .custom_companies_icons_wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 850px) {
    .custom_companies_icons_wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
    .custom_quality_wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
    .custom_benefits {
        grid-template-columns: repeat(1, 1fr);
    }
    .custom_benefits_element {
        margin-bottom: 40px;
        height: 100px;
    }

}
@media (max-width: 450px) {
    .custom_main_section_h2 {
        font-size: 16px;
    }
    .custom_companies_icons_wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    .custom_companies_icons_wrapper img {
        display: none;
    }
    .custom_companies_icons_wrapper img:nth-child(-n+4) {
        display: inline-block;
    }
    .custom_benefits_element {
        max-width: 100%;
    }
    .custom_benefits_element p {
        font-size: 12px;
    }
}
