﻿.main {
    position: relative
}

.hero--case .hero_bg-img {
    min-height: 66vh
}

.hero--homepage {
    position: relative;
    overflow: hidden
}
.hero_bg-img {
    min-height: 100vh;
    background-size: contain;
	background-repeat: no-repeat;
	background-position: 50%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out
}
.hero_bg-img: after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .33;
    background-color: #000
}
.hero_bg-img--blur {
    -webkit-filter: blur(.8rem);
    filter: blur(.8rem);
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}
.hero_bg-img.hideOverlay: after {
    z-index: -1;
    opacity: 0
}
.hero_container {
    -ms-flex-item-align: baseline;
    align-self: baseline;
    z-index: 1
}
.hero_headline {
    color: #fff;
    padding-bottom: 3.2rem;
    font-size: 3.2rem
}
@media (max-width: 1279px) {
    .hero_headline {
        font-size: 5.2rem
    }
}
@media (max-width: 767px) {
    .hero_headline {
        font-size: 4rem
    }
}
.hero_header {
    text-align: center
}
