@font-face {
    font-family: 'Gill';
    src: url('../fonts/gill.woff2');
}
html, body{
    font-family: 'Gill';
    color: #6c6c6c;
}
header{
    text-transform: uppercase;
    letter-spacing:  0.5px;
}
h1, h2, h3, h4, h5{
    color: #183C29;
}
.section__title{
    color: #6DA78F;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.3125rem;
}
.container{
    max-width: 1200px;
}
.banner{
    background-image: url(../img/banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 500px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
.banner h1{
    font-size: 2.0rem;
    padding: 0.5rem 1.25rem 0.5rem 1.25rem;
    background-color: rgba(255, 255, 255, .75);
    border-radius: 0.25rem;
    color: #355246;
    font-weight: 600;
}
.text-block{
    position: absolute;
    bottom: -35%;
    max-width: 980px;
    width: 100%;
    color: #355246;
    transform: translate(10%, -100px);
    padding: 0.5rem 1.25rem 0.5rem 1.25rem;
    background-color: rgba(255, 255, 255, .75);
    font-weight: 600;
    font-size: 18px;
}
.bg-gray{
    background-color: #f5f6f6;
}
.button{
    background-color: #6da78f;
    color: #ffffff;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    display: inline-block;
    border-width: 1px;
    border-color: transparent;
    font-weight: 600;
    border-radius: 0.25rem;
    text-decoration: none;
}
.button:hover{
    background-color: #304a3f;
    color: #ffffff;
}
footer{
    padding: 3.75rem 0;
    border-top: 1px solid rgba(106,105,108,0.31);
}
footer h5{
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}
footer ul li{
    list-style: none;
}
footer a{
    color: #6c6c6c;
    text-decoration: none;
}