.section-services2 {
    background-color: var(--color-1);
}

.section-services2 .section_title {
    margin-bottom: 5px;
}

.section-services2 .section_text {
    text-align: center;
    color: #1c1c1c;
    margin-bottom: 40px;
}

.services2_list-block {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.services2_item {
    width: 100%;
    max-width: 33.3%;
    text-align: center;
    background: #ffffff;
    border-radius: 10px;
    padding: 55px 40px 70px 40px;
}

.services2_item-img {
    min-height: 140px;
}

.services2_item:nth-child(1) img {
    position: relative;
    top: 15px;
}

.services2_item-text h3 {
    margin-bottom: 35px;
}

.services2_item-text p {
    font-size: 18px;
    line-height: 33px;
    color: #202020;
}

@media (max-width: 1440px) {
    .services2_list-block {
        gap: 20px;
    }

    .services2_item-text h3 {
        font-size: 29px;
        line-height: 37px;
    }

    .services2_item-text p {
        font-size: 17px;
        line-height: 30px;
    }
}

@media (max-width: 992px) {
    .services2_list-block {
        flex-wrap: wrap;
    }

    .section-services2 .section_title {
        margin-bottom: 25px;
    }

    .services2_item {
        max-width: 430px;
    }

    .services2_item-img {
        min-height: inherit;
        margin-bottom: 40px;
    }

    .services2_item:nth-child(1) img {
        top: 0;
    }
}

@media (max-width: 576px) {
    .section-services2 .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .services2_item {
        padding: 50px 30px 60px 30px;
    }

    .services2_item-text h3 {
        font-size: 25px;
        line-height: 33px;
    }

    .services2_item-text p {
        font-size: 16px;
    }
}