.key_powers {
    margin-bottom: 44px;
}

.key_powers_wrapper {
    display: flex;
    flex-direction: column;
}

.key_powers_title {
    color: #000;
    text-align: center;
    font-family: DM-Serif, serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px; /* 133.333% */
    margin: 0 0 20px;
}

.key_powers_items {
    margin: 0 -20px;
    display: flex;
    list-style: none;
    padding: 0;
}

.key_powers_item {
    flex: 1;
    height: 480px;
    padding: 20px;
    box-sizing: border-box;
}

.key_powers_item_title {
    margin: auto 0 12px;
    color: #FFF;
    font-family: Sans-700, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px; /* 140% */
    letter-spacing: -0.8px;
}

.key_powers_item_description {
    color: #FFF;
    font-family: Sans-400, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin: 0;
}

.key_powers_item_wrapper {
    border-radius: 24px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 40px 50px;
    box-sizing: border-box;
    background-position: right top;
}

.key_powers_item_wrapper.one {
    background-image: url("/img/key_1.webp?v=2");
}

.key_powers_item_wrapper.two {
    background-image: url("/img/key_2.webp?v=2");
}

.key_powers_item_wrapper.three {
    background-image: url("/img/key_3.webp?v=2");
}

@media all and (max-width: 1200px) {
    .key_powers {
        margin-bottom: 52px;
    }

    .key_powers_items {
        margin: 0 -12px;
        display: flex;
        list-style: none;
        padding: 0;
    }

    .key_powers_item {
        padding: 12px;
    }

    .key_powers_item_wrapper {
        border-radius: 24px;
        overflow: hidden;
        background-repeat: no-repeat;
        background-size: cover;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        padding: 40px 32px 32px;
        box-sizing: border-box;
        background-position: right top;
    }
}

@media all and (max-width: 1024px) {
    .key_powers_title {
        font-size: 24px;
        line-height: 36px; /* 133.333% */
        margin: 0 0 24px;
    }
    .key_powers_items {
        flex-wrap: wrap;
        justify-content: center;
    }

    .key_powers_item {
        width: 50%;
        flex: initial;
    }
}

@media all and (max-width: 767px) {
    .key_powers_items {
        flex-direction: column;
        align-items: center;
    }

    .key_powers_item {
        width: 100%;
        max-width: 400px;
        height: 380px;
    }
    .key_powers_item_title {
        margin: auto 0 8px;
        font-size: 16px;
        line-height: 28px; /* 140% */
    }

    .key_powers_item_description {
        font-size: 14px;
        line-height: 20px; /* 150% */
    }
}