.hero-container .white {
    color: #fff;
}

.hero-container .blue {
    color: #fff;
}

.hero-container h2 {
    margin: 0;
    font-size: 120px;
    line-height: 1.2;
}

.hero-container {
    position: relative;
    height: calc(100vh - var(--header-height));
}

.hero-container .hero-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-container .hero-banner::after {
    content: '';
    background-color: rgba(0,0,0,0.25);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.hero-container .hero-banner img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}

.hero-container .container {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 60px;
    padding-left: 60px;
}

.hero-container .description {
    margin-top: 20px;
}

.hero-container .description p {
    color: #fff;
    margin: 0; 
    font-family: 'Poppins-Medium';
}

@media screen and (max-width: 767px) {
    .hero-container h2 {
        font-size: 50px;
    }
}