.how_it_works {
    margin-bottom: 100px;
}

.how_top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.how_top_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 66px;
}

.how_top_info {
    display: flex;
    margin: 0 -20px 56px;
}

.how_top_info_title {
    padding: 0 20px;
    box-sizing: border-box;
    flex: 1;
    color: #000;
    font-family: DM-Serif-Italic, serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    line-height: 28px; /* 116.667% */
    margin: 0;
}

.how_top_info_description {
    padding: 0 20px;
    box-sizing: border-box;
    flex: 1;
    margin: 0;
    color: rgba(0, 0, 0, 0.5);
    font-family: Sans-400, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

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

.how_item {
    padding: 20px;
    box-sizing: border-box;
    width: 25%;
}

.how_item_wrapper {
    padding: 20px;
    box-sizing: border-box;
    border-radius: 24px;
    height: 100%;
}

.how_item_wrapper.booking {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 100%), #DFF6DA;
}

.how_item_wrapper.connected {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.50) 0%, rgba(255, 255, 255, 0.50) 100%), #FFDF80;
}

.how_item_wrapper.zero {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.50) 0%, rgba(255, 255, 255, 0.50) 100%), #F7D5C8;
}

.how_item_wrapper.smart {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.50) 0%, rgba(255, 255, 255, 0.50) 100%), #C4E5F2;
}

.how_item_wrapper.empty {
    background-image: url("/img/how_empty_item.webp?v=2");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.how_item_wrapper.always {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.50) 0%, rgba(255, 255, 255, 0.50) 100%), #ECC7EE;
}

.how_item_wrapper.action {
    background: #F3F6DA;
}

.how_item_wrapper.hub {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.50) 0%, rgba(255, 255, 255, 0.50) 100%), #CEB0F6;
}

.how_item_icon {
    width: 48px;
    height: 48px;
    display: flex;
    border-radius: 50%;
    background: #000;
    margin: 0 0 88px;
}

.how_item_icon svg {
    margin: auto;
}

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

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

@media all and (max-width: 1200px) {
    .how_list {
        margin: 0 -12px;
    }

    .how_item {
        padding: 12px;
        box-sizing: border-box;
        width: 50%;
    }

    .how_item_icon {
        margin: 0 0 52px;
    }

    .how_item_title {
        margin: 0 0 8px;
        font-size: 16px;
        line-height: 28px; /* 175% */
    }

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

    .how_item_wrapper.empty {
        background-position: center;
    }
}

@media all and (max-width: 1024px) {

    .how_top_title {
        margin: 0 0 36px;
        font-size: 24px;
        line-height: 36px;
    }

    .how_top_info {
        margin: 0 -12px 50px;
    }

    .how_top_info_title {
        padding: 0 12px;
        font-size: 20px;
        line-height: 28px; /* 116.667% */
    }

    .how_top_info_description {
        padding: 0 12px;
        font-size: 14px;
        line-height: 20px; /* 150% */
    }
}

@media all and (max-width: 767px) {
    .how_top_info {
        margin: 0 -12px 14px;
        flex-direction: column;
        align-items: center;

    }

    .how_top_info_title {
        margin-bottom: 24px;
    }

    .how_top_info_description {
        margin-bottom: 24px;
    }

    .how_item {
        width: 100%;
    }

    .how_item_wrapper.empty {
        min-height: 216px;
    }
}