.how-we-help {
    position: relative;
    padding: 80px 0 120px;
}
.how-help-card__button {
    margin-top: 20px;
}
.how-we-help__cards {
    position: relative;
    padding-top: 50px;
}

.how-help-card-slot {
    position: relative;
    margin-bottom: 20px;
}

.how-help-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    padding: 65px;
    color: #fff;
    border-radius: 15px;
    background: linear-gradient(180deg, #262626 0%, hsl(0deg 0% 14.9% / 90%) 100%), #fff;
    min-height: 500px;
    opacity: 1 !important;
    visibility: visible !important;
    box-sizing: border-box;
    margin-block: 20px;
}

.how-help-card.is-fixed {
    position: fixed;
    top: 150px;
    left: 50%;
    width: min(1204px, calc(100% - 40px));
    transform: translateX(-50%);
}



.how-help-card:nth-child(1) { z-index: 1; }
.how-help-card:nth-child(2) { z-index: 2; }
.how-help-card:nth-child(3) { z-index: 3; }

.how-help-card-text_right .how-help-card__content {
    order: 2;
}

.how-help-card-text_right .how-help-card__image {
    order: 1;
}

.how-help-card__heading {
    margin: 0 0 20px;
    color: #fff;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 300;
    text-transform: uppercase;
}

.how-help-card__heading strong,
.how-help-card__heading b {
    display: block;
    font-weight: 800;
}

.how-help-card__description {
    color: #fff;
    font-size: 17px;
    line-height: 1.45;
    max-width: 500px;
}

.how-help-card__description ul{
    margin-block-end: 1.5rem;
}

.how-help-card__points {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
}

.how-help-card__points li {
    position: relative;
    padding-left: 22px;
    color: #1fffc3;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 800;
}

.how-help-card__points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 10px;
    background: #fff;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.how-help-card__image img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

@media (max-width: 991px) {
    .how-help-card-slot {
        height: auto !important;
        margin-bottom: 24px;
    }
	
	.how-we-help {
    position: relative;
    padding: 80px 0 0px;
}

     .how-help-card,
    .how-help-card.is-fixed {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: auto !important;
        transform: none !important;
        grid-template-columns: 100%;
        gap: 30px;
        padding: 35px 25px;
    }
	.how-help-card__button a.rsg-btn {
    display: block !important;
    white-space: unset !important;
}
    .how-help-card-text_right .how-help-card__content,
    .how-help-card-text_right .how-help-card__image {
        order: initial;
    }

    .how-help-card__heading {
        font-size: 28px;
    }
    
    .how-we-help__cards .how-help-card__content{
        order: 1;
    }
    .how-we-help__cards .how-help-card__image{
        order: 0;
    }
    .how-help-card__description {
        max-width: 100%;
    }
}