section.full-banner {
    padding-block: var(--spacing-large);
    margin-top: var(--spacing-xl);
}

.full-banner .banner-wrapper {
    position: relative;
    height: 595px;
}

.full-banner .banner-bg {
    display: flex;
    position: absolute;
    height: 100%;
    width: 100%;
}

.full-banner .banner-bg img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.full-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #005B8B 0%, rgba(0, 91, 139, 0.00) 58.13%);
}

.full-banner .banner-content {
    display: flex;
    justify-content: space-between;
    padding-inline: var(--spacing-xl);
    height: 100%;
    position: relative;
    z-index: 2;
}

.full-banner .banner-content .left-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    max-width: 675px;
}

.benefit-item {
    display: flex;
    gap: 12px;
}

.card-image {
    margin-top: -154px;
    max-width: 814px;
    width: 100%;
}

.card-image img {
    width: 100%;
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1200px) {

    section.full-banner {
        margin-top: var(--spacing-large);
    }

    .card-image {
        margin-top: 0;
        max-width: 400px;
        width: auto;
    }

}

@media (max-width: 576px) {

    .full-banner .banner-content .left-col {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .full-banner .banner-content {
        flex-direction: column-reverse;
        align-items: center;
        padding: var(--spacing-small);
    }

    .card-image {
        margin-top: 0;
        max-width: 300px;
        width: auto;
    }

    .full-banner .banner-overlay {
        background: linear-gradient(90deg, #005B8B 0%, rgba(0, 91, 139, 0.00) 100%);
    }

    .benefit-item {
        display: flex;
        gap: 12px;
        align-items: center;
    }

}