body {
    font-family: Arial, sans-serif;
    font-size: 1.6rem;
    height: 100vh;
    background-color: #142007;
    color: #e9e3c7;
}

h1 {
    font-size: 2.2rem;
    font-family: Arial,sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

@media (min-width: 19.375em) {
    h1 {
        font-size:calc(.44944vw + 1.6rem)
    }
}

@media (min-width: 75em) {
    h1 {
        font-size:2.8rem
    }
}

p {
    font-size: 1.4rem;
    font-family: Arial,sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

@media (min-width: 19.375em) {
   p {
        font-size:calc(.44944vw + 1.2rem)
    }
}

@media (min-width: 75em) {
    p {
        font-size:1.6rem
    }
}

.logo {
    display: inline-block;
    max-width: 150px;
}

@media (min-width: 75em) {
    .logo {
        max-width: 300px;
    }
}

.background {
    background-image: url(bg-md.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1
}

@media (min-width: 75em) {
    .background {
        background-image: url(bg-hq.jpg);
    }
}

.background--cover {
    background-size: cover
}

.background--center {
    background-position: center center
}

.background-blur {
    backdrop-filter: blur(.7rem);
    background: rgba(0,0,0,.1);
    box-sizing: border-box;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 9999
}

.btn-cta {
    text-decoration: none;
    background: url(button.png) center/cover no-repeat #dd5a12;
    border: 0;
    cursor: pointer;
    display: inline-block;
    line-height: 1.6;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    padding: .75em;
    text-align: center;
    text-overflow: ellipsis;
    vertical-align: middle;
    white-space: nowrap;
    width: auto;
    font-family: Arial,sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    color: #e9e3c7;
    opacity: 1;
    position: relative;
    transition: .3s;
    visibility: visible;
    z-index: 1
}

.btn-cta:focus,
.btn-cta:hover {
    text-decoration: none
}

@media (min-width: 19.375em) {
    .btn-cta {
        font-size:calc(.44944vw + 1.2rem)
    }
}

@media (min-width: 75em) {
    .btn-cta {
        font-size:1.6rem
    }
}

.btn-cta:before {
    background: #c84d0f;
    bottom: 0;
    content: '';
    height: .5rem;
    left: 0;
    position: absolute;
    transition: .3s;
    width: 100%;
    z-index: -1
}

.btn-cta:hover {
    color: #e9e3c7
}

.btn-cta:hover:before {
    height: 100%;
    transition: .3s
}