:root {
    --primary-100: #fbeae3;
    --primary-500: #b9684a;
    --secondary-600: #b8743a;
}

.banner-us {
    background: url('../images/images-us/background-banner-us-2.webp') no-repeat;
    background-position: center;
    background-size: cover;
}

.history-grid {
    gap: 3rem;
    align-items: center;
}

@media(min-width: 992px) {
    .history-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.history-text {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--secondary-600);
}

.mission-card {
    padding: 2rem;
    background-color: var(--primary-500);
    border-radius: 1rem;
}

.mission-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--primary-100);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    gap: .75rem;
}

.factory-icon {
    margin-bottom: 1rem;
}

.who-we-are-content-card {
    position: relative;
    height: 350px;
    border-radius: .5rem;
}

.who-we-are-content-cards {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.who-we-are-content-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-we-are-content-card-overlay {
    position: absolute;
    inset: 0;
}

.who-we-are-content-card-overlay.blue {
    background: rgba(45, 50, 146, 0.5);
}

.who-we-are-content-card-overlay.gray {
    background: rgba(85, 87, 87, 0.5);
}

.who-we-are-content-card-overlay.green {
    background: rgba(36, 105, 47, 0.5);
}

.who-we-are-content-card-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
    padding: 1rem;
}

@media(max-width:768px) {
    .banner-us {
        background: url('../images/images-us/background-banner-us-2-min.webp');
        background-position: left;
    }
}

@media(max-width: 576px) {
    .who-we-are-content-cards {
        grid-template-columns: 1fr;
    }
}