/* Banner */
.banner-container {
    background-color: var(--color-secondary);
    width: 100%;
    padding: var(--space-16) var(--space-16);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.banner-item img {
    width: 12px;
    height: 12px;
    object-fit: contain;
}

.banner-item p {
    font-size: 8px;
    font-weight: 600;
    margin: 0;
    color: var(--color-neutral);
}

@media (min-width: 1024px) {
    .banner-item p {
        font-size: 24px;
    }

    .banner-item img {
        width: 35px;
        height: 35px;
        object-fit: contain;
    }

    .banner-container {
        padding: var(--space-48) var(--space-48);
    }
}

.hero-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-image: url('/assets/images/hero-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
