.how_it_works__container {
    padding: 40px 0 100px 0;
}
.how_it_works__subtitle {
    max-width: 440px;
    margin-right: auto;
    margin-left: auto;
}
.how_it_works__item-col {
    margin-bottom: 30px;
    position: relative;
}
.how_it_works__item-col::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url('../../../../image/icon/arrow-right.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    position: absolute;
    top: 60px;
    right: -9px;
    -webkit-filter: var(--filter-orange-400);
    filter: var(--filter-orange-400);
}
.how_it_works__item-col:last-child::after {
    display: none;
}
.how_it_works__item {
    height: 100%;
    border-radius: 20px;
    background-color: var(--color-white);
    overflow: hidden;
    max-width: 335px;
    margin: 0 auto;
    position: relative;
}
.how_it_works__item-image-container {
    background-color: var(--color-orange-50);
    text-align: center;
    height: 130px;
}
.how_it_works__item-image {
    object-fit: contain;
    max-width: 100%;
    height: 100%;
}
.how_it_works__item-info {
    padding: 20px 30px 35px 30px;
}
.how_it_works__item-title {
    font-family: var(--ff-primary);
    font-style: normal;
    font-weight: var(--fw-medium);
    color: var(--color-text);
    font-size: 20px;
    line-height: 26px;
    display: block;
    cursor: default;
    margin-bottom: 10px;
}
.how_it_works__item-text,
.how_it_works__item-text * {
    font-family: var(--ff-primary);
    font-style: normal;
    font-weight: var(--fw-regular);
    color: var(--color-gray-500);
    font-size: 16px;
    line-height: 21px;
    cursor: default;
}
.how_it_works__item-text {
    margin-bottom: 0;
}
.how_it_works__item-text * {
    margin-bottom: 0;
}
.how_it_works__item-text p {
    margin-bottom: 10px;
}
.how_it_works__item-text p:last-child {
    margin-bottom: 0;
}
.how_it_works__item-text strong {
    font-weight: var(--fw-bold);
}
.how_it_works__item-text em {
    font-style: italic;
}

@media screen and (max-width: 1201px) {
    
}

@media screen and (max-width: 992px) {
    
}

@media screen and (max-width: 768px) {
    .how_it_works__container {
        padding: 30px 0 60px 0;
    }
    .how_it_works__item-col {
        margin-bottom: 20px;
    }
    .how_it_works__item-col::after {
        top: auto;
        right: auto;
        bottom: -25px;
        left: 50%;
        transform: rotate(90deg) translateX(-50%);
    }
    .how_it_works__item-col:last-child::after {
        display: none;
    }
    .how_it_works__button-container {
        padding: 15px 0 0 0;
    }
}