html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}


body {
    font-family: 'Poppins',sans-serif;
    background: #f7f7f7;
}

.hero-image {
    background: url('https://specializedretailstorage.blob.core.windows.net/retailtrainingmedia/hero.jpg') center/cover no-repeat;
    height: 80vh;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.55);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

    .hero-overlay h1 {
        font-size: 60px;
        font-weight: 700;
    }

    .hero-overlay p {
        font-size: 22px;
        margin-top: 10px;
    }



/* animations */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* feature cards */

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .feature-card i {
        font-size: 40px;
        margin-bottom: 15px;
        color: #e21b23;
    }

/* section titles */

.section-title {
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

/* CTA section */

.cta {
    background: #32c24d;
    color: white;
    padding: 80px 0;
    text-align: center;
}

    .cta h2 {
        font-weight: 700;
        margin-bottom: 20px;
    }

/* page header */

.page-header {
    background: #1e4fa3;
    color: white;
    padding: 70px 0;
    text-align: center;
}

.footer {
    width: 100%;
}