@font-face {
    font-family: 'halenoir-boldregular';
    src: url('../fonts/halenoir-bold-webfont.woff2') format('woff2'), url('../fonts/halenoir-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'halenoir-mediumregular';
    src: url('../fonts/halenoir-medium-webfont.woff2') format('woff2'), url('../fonts/halenoir-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html {
    margin-top: 0 !important
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: var(--placeholder);
    opacity: 1
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: var(--placeholder);
    opacity: 1
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: var(--placeholder);
    opacity: 1
}

.form-control::placeholder {
    color: var(--placeholder)
}

body,
html {
    -webkit-text-size-adjust: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    transition: background-color .15s ease-in-out;
}

.rounded {
    border-radius: var(--rounded) !important;
    overflow: hidden
}

.rounded-2x {
    border-radius: 1.3rem !important;
    overflow: hidden
}

img {
    border: none;
    margin: 0;
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent
}

a,
a:focus,
a:link,
a:visited,
input:focus,
textarea:focus {
    outline: 0;
    text-decoration: none
}

body {
    font-family: 'halenoir-mediumregular';
    background-size: cover;
    min-height: 100vh;
    width: 100%;
    color: #fff;
    font-size: 1rem;
}

.overlay {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

.header {
    padding-top: 2rem;
}

.header .logo img {
    max-width: 150px;
}

.split-between {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: 100%;
    min-height: 100vh;
}

.body-content {
    margin-top: auto;
}

.body-content h1 {
    font-size: 2.6rem;
    font-weight: 600;
    /* font-family: 'halenoir-boldregular'; */
    font-family: 'halenoir-mediumregular'
}

.body-content p {
    font-size: 20px;
}

.footer {
    background: linear-gradient(rbga(0, 0, 0, 0.8), rgb(0, 0, 0));
    text-align: center;
    padding: 1rem;
    font-size: .8rem;
    margin-top: auto;
}

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-bg video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

@media (max-width:767px) {
    body .overlay {
        padding: 1.5rem;
    }
    .video-bg {
        display: none;
    }
}