body{
    margin:0;
    color:white;
    font-family: Montserrat;
}

.w-100{
    width: 100%;
}

.h-100{
    height: 100vh;
}

.flex{
    display: flex;
}

.flex-column{
    flex-direction: column;
}

.flex-row{
    flex-direction: row;
    flex-wrap: wrap;
}

.justify-content-center{
    justify-content: center;
}

.justify-content-evenly{
    justify-content: space-evenly;
}

.overflow-hidden{
    overflow: hidden;
    position: relative;
}

.header-img{
    display:block;
    position:absolute;
    width:auto;
    height:100%;
    right: 0;
}

.header-heading{
    position: absolute;
    z-index: 15;
    padding: 0 calc(2rem + 5vw);
}

.overlay{
    width:100%;
    height: 100%;
    position: absolute;
    z-index: 10;
}

.bg-overlay-black{
    background-color: rgba(0,0,0,0.85);   
}

.bg-black{
    background-color: rgba(0,0,0,0.98);
}

h1 span{
    font-weight: 200;
    text-transform: uppercase;
    font-style:italic;
}

h1 strong{
    font-size: calc(3rem + 0.8vw);
    font-weight: 800;
    text-transform: uppercase;
}

h2{
    margin: 0;
}

.button{
    padding:2rem 0;
}

svg{
    fill: white;
    display:block;
    left:0;
    right:0;
    margin:auto;
}

.button img{
    height: 4rem;
    width: auto;
    display: block;
    left: 0;
    right: 0;
    margin: auto;
}