.part {
    margin-bottom: 120px;
}

.part__block {
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.part__items {
    display: -ms-flexbox;
    display: flex;
    gap: 17px;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
}

.part-item {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.part-item img {
    object-fit: cover;
    width: auto;
    height: auto;
}

.part__body {
    -ms-flex: 0 0 446px;
    flex: 0 0 446px;
}

.part__title {
    font-weight: 800;
    font-size: 40px;
    margin-bottom: 29px;
}

.part__text {
    font-size: 28px;
    margin-bottom: 50px;
}

.part__btn {
    width: 330px;
    height: 60px;
    font-size: 24px;
    background: #92c0e9;
    border-radius: 11.5px;
    transition: 0.3s;
}

.part__btn:hover {
    background: rgba(146, 192, 233, 0.6);
}

.part__btn a {
    width: 100%;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    color: #ffffff;
}

@media (max-width: 960px) {
    .part {
        margin-bottom: 80px;
    }
    .part__block {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 30px;
    }
    .part__body {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
    .part__title {
        font-size: 32px;
        margin-bottom: 25px;
    }
    .part__text {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .part__btn {
        width: 250px;
        height: 45px;
        font-size: 18px;
        border-radius: 8.6px;
    }
}
@media (max-width: 767px) {
    .part {
        margin-bottom: 50px;
    }
    .part__block {
        gap: 20px;
    }
    .part__title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .part__text {
        margin-bottom: 20px;
    }
    .part__btn {
        width: 160px;
        height: 35px;
        font-size: 14px;
    }
}
