.section-op {
    background-color: #F0F0F0;
    padding: 56px 0 108px;
}

.section-op__container {
    padding: 0 16px;
}

.op__title {
    text-align: center;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-size: 28px;
    line-height: 1.28;
    color: #003259;
    padding: 0 0 38px;
}

.op__subtitle {
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    padding: 0;
    letter-spacing: 0.5px;
    max-width: 558px;
    margin: 0 auto;
}

.op-columns {
    display: flex;
    justify-content: center;
    margin: 88px auto 0;
    gap: 136px;
}

.op-item {
    background-color: #88C4DD;
    border-radius: 25px;
    border: 2px solid #fff;
    padding: 44px 40px 38px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.op-item__image-wrapper {
    width: 140px;
    height: 140px;
    /*border: 1px solid #fff;*/
    margin: 0 auto 13px;
    border-radius: 9999px;
    overflow: hidden;
    position: relative;
}

.op-item__image {
    object-fit: cover;
    font-family: 'object-fit: cover;';
    overflow: hidden;
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.op-item__title {
    font-family: "Roboto", sans-serif;
    color: #003259;
    font-size: 24px;
    line-height: 1.333;
    padding-bottom: 17px;
    min-height: 80px;
    font-weight: 400;
}

.op-item__text {
    font-family: "Roboto", sans-serif;
    letter-spacing: 0.5px;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 127px;
}

.op-item__button {
    max-width: 300px;
    width: 100%;
    display: inline-block;
    border: 1px solid #fff;
    padding: 19px 32px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #fff;
    border-radius: 400px;
    margin-top: auto;
    transition: background-color, border 0.3s ease;
}

.op-item__button:hover {
    background-color: #003259;
    border-color: #003259;
}

@media screen and (max-width: 1199px) {
    .op-columns {
        gap: 40px;
    }
}

@media screen and (max-width: 1023px) {
    .op-columns {
        gap: 16px;
    }

    .op-item__text {
        margin-bottom: 16px;
    }

    .op-item__button {
        max-width: 240px;
        padding: 16px 26px;
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .section-op {
        padding: 40px 0;
    }

    .op__title {
        font-size: 22px;
        padding: 0 0 20px;
    }

    .op-item {
        padding: 32px 16px;
    }

    .op-item__image-wrapper {
        width: 100px;
        height: 100px;
    }

    .op-item__title {
        font-size: 18px;
        min-height: auto;
        padding-bottom: 16px;
    }
    
    .op-columns {
        flex-direction: column;
        margin-top: 32px;
    }
}