section.container.benefits-section {
    background-color: var(--yellow-variant-3);
    padding-bottom: 0;
}

.benefits-section img {
    width: 30%;
}

.benefits-section > .container:last-child {
    padding-bottom: 0;
    align-items: flex-start;
}

.benefits-section h2 {
    color: var(--main-blue);
}

.benefits-section h3 {
    margin-bottom: 15px;
}

.benefits-section .benefits {
    margin-left: 75px; 
}

.benefits-section .benefit {
    width: 50%;
    position: relative;
    border-left: 1px solid var(--main-blue);
    padding-top: 0;
}

.benefits-section .benefit:nth-child(n+2) {
    padding-bottom: calc((var(--gap) * 3) + 50px);
}

.benefits-section .benefit::before {
    content: '';
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color:var(--main-blue);
    position: absolute;
    left: -7px;
    top: 7px;
    transform: translate(0, -50%);
    transition: all 300ms ease;
    width: 14.5px;
    height: 14.5px;
}

.benefits-section .benefit h3 {
    margin-top: 0;
    line-height: 1;
}

@media screen and (max-width: 767px) {
    .benefits-section img {
        width: 100%;
    }

    .benefits-section > .container {
        padding-left: 0;
        padding-right: 0;
    }

    .benefits-section h2 {
        font-size: 35px;
    }

    .benefits-section > .container:last-child {
        flex-direction: column;
    }
    .benefits-section .benefits {
        margin-left: 0;
        margin-top: 50px;
    }

    .benefits-section .benefit {
        width: 100%;
        margin: 0;
    }

    .benefits-section .benefit h3 {
        font-size: 20px;
    }

    .benefits-section .benefit .description {
        font-size: 14px;
    }

    .benefits-section .benefit:nth-child(n+2) {
        padding-bottom: var(--gap);
    }
}