.banner .container 
{
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.banner
{
    position: relative;
    height: 325px;
}

.banner-holder
{
    width: 100%;
}

.banner-holder .banner-image
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
    height: 325px;
}

.banner-title-holder
{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.banner-title {
    font-size: 40px;
    color: var(--green-primary);
    max-width: 361px;
}

.banner-subtitle {
    display: block;
    margin-top: 8px;
    color: var(--green-primary);
    max-width: 50%;
	font-size: 32px;
	line-height: 38.4px;
}


.banner.empty .banner-holder{
    background-color: var(--green-primary);
    height: 100%;
}

.banner.empty .banner-title,
.banner.empty .banner-subtitle{
    color: #FFFFFF;
}

@media screen and (max-width: 1199px)
{
    .banner{
        height: 186px;
    }
    .banner-holder .banner-image{
        height: 186px;
    }
    .banner.empty{
        height: 70px;
    }

    .banner.empty .banner-holder .banner-image{
        height: 70px;
    }

    .banner-title {
        font-size: 24px;
        line-height: 28.8px;
    }

    .banner-subtitle {
        font-size: 18px;
        line-height: 22px;
    }

}