.section-services1 {
    background-color: var(--color-1);
    padding: 95px 0 150px;
}

.section-services1.page-services {
    padding-bottom: 0;
}

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

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

.services1_list-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 30px;
}

.services1_item {
    width: 100%;
    max-width: calc(50% - 15px);
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 21px;
    padding: 40px 50px 30px 60px;
}

.services1_item-img {
    min-width: 170px;
}

.services1_item-text {
    line-height: 31px;
    color: #202020;
}

@media (max-width: 1440px) {
    .services1_item-text h3 {
        font-size: 29px;
        line-height: 37px;
    }

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

@media (max-width: 1200px) and (min-width: 993px) {
    .services1_item {
        flex-direction: column;
    }

    .services1_item-img {
        min-width: inherit;
        min-height: 121px;
        margin-bottom: 30px;
    }
}

@media (max-width: 992px) {
    .section-services1 {
        padding: 80px 0;
    }

    .services1_list-block {
        gap: 20px 0;
    }

    .services1_item {
        max-width: inherit;
    }
}

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

    .services1_item {
        flex-direction: column;
        padding: 40px 20px 60px 20px;
    }

    .services1_item-img {
        min-width: inherit;
        min-height: 121px;
        margin-bottom: 30px;
    }

    .services1_item-text {
        text-align: center;
    }

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

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