.benefits-wrapper {
    position: relative;
}

.benefits-area {
    background-color: #fff;
    border-radius: 4px;
    border-bottom: 1px solid #e6e6e6;
    padding: 24px 0;
}

.single-benefit {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 16px 0;
}

.single-benefit .icon-wrapper {
    height: 32px;
    width: auto;
    margin: 0;
    padding-right: 16px;
}

.single-benefit .icon-wrapper img,
.single-benefit .icon-wrapper .benefit-svg {
    height: 100%;
}

.single-benefit .icon-wrapper .benefit-svg path {
    fill: inherit;
}

.single-benefit .single-benefit-text p {
    font-size: 17px;
    letter-spacing: 0.21px;
    margin-bottom: 0;
}

.single-benefit .single-benefit-disclaimer {
    font-size: 11px;
    color: #000;
    text-decoration: none;
    display: block;
}

.single-benefit .text-wrapper {
    width: 75%;
}

.single-benefit .text-wrapper .single-benefit-text {
    padding-bottom: 8px;
}

.single-benefit .text-wrapper .link {
    font-size: 14px;
    font-weight: normal;
}

@media screen and (max-width: 1024px) {
    .benefits-wrapper {
        top: 0 !important;
    }
}

@media screen and (min-width: 641px) {
    .benefits-area {
        padding: 0;
    }

    .single-benefit {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 48px;
    }

    .single-benefit .icon-wrapper {
        height: 48px;
        margin: 32px 0;
    }

    .single-benefit .text-wrapper {
        width: 100%;
    }
}


