section.about-us img.about-us-logo {
    width: 110px;
}

section.about-us h3 {
    font-size: 24px;
    font-weight: 300;
    margin: 8px 0 24px;
}

section.about-us a.button {
    display: table;
    margin-top: 36px;
}

section.credit-lines .credit-lines-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    row-gap: 24px;
}

section.credit-lines .credit-lines-container .credit-line {
    position: relative;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    row-gap: 12px;
    padding: 24px;
    border-radius: 16px;
}

section.credit-lines .credit-lines-container .credit-line .credit-line-icon-container {
    background-color: #000;
    width: 40px;
    height: 40px;
    padding: 4px 8px;
    border-radius: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

section.credit-lines .credit-lines-container .credit-line .credit-line-icon-container .credit-line-icon {
    color: #fff;
    font-size: 20px;
}

section.credit-lines .credit-lines-container .credit-line .credit-line-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

section.credit-lines .credit-lines-container .credit-line .credit-line-desc {
    font-size: 0.9rem;
    margin: 0;
}

section.credit-lines .credit-lines-container .credit-line a {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 16px;
    height: 16px;
}

section.benefits .section-title {
    font-size: 3.2rem;
    margin-bottom: 24px;
}

section.benefits .section-desc {
    font-size: 20px;
    text-align: center;
}

section.benefits .benefits-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    column-gap: 3rem;
    margin: 60px auto 75px;
}

section.benefits .benefits-container .benefit {
    background-image: url(../img/card-bg-light.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 33.3%;
    height: auto;
    padding: 28px;
    aspect-ratio: 81 / 50;
}

section.benefits .benefits-container .benefit .benefit-icon-container {
    background-color: #fff;
    width: 44px;
    height: 44px;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.benefits .benefits-container .benefit .benefit-icon-container .benefit-icon {
    color: #000;
    font-size: 20px;
}

section.benefits .benefits-container .benefit .benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 12px 0;
    color: currentColor;
}

section.benefits .benefits-container .benefit .benefit-desc {
    color: currentColor;
}

section.benefits .benefits-container .benefit.benefit-dark {
    background-image: url(../img/card-bg-dark.svg);
    color: #fff;
}

section.benefits a.button {
    margin: 0 auto;
}

section.cta {
    background-image: url(../img/bg-cta.png);
    background-position: left center;
    background-size: cover;
    padding: 0;
    overflow: hidden;
}

section.cta img.pse-online {
    max-width: 65%;
    height: auto;
    margin: 40px auto 0;
}

section.cta img.pse-logo {
    width: 130px;
}

section.cta .section-title {
    text-align: left;
    margin: 2.5rem 0 1.5rem;
}

section.cta .button {
    align-self: flex-start;
    margin: 1.5rem 0 0;
}

@media only screen and (max-width: 900px) {
    section.about-us .order-2 {
        margin-top: 32px;
    }

    section.credit-lines .col-lg-8 {
        margin-bottom: 32px;
    }

    section.benefits .benefits-container {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        margin: 24px auto;
    }

    section.benefits .benefits-container .benefit {
        background-size: contain;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 16px;
        padding: 12px;
    }
}