@font-face {
    font-family: "BebasNeueBold";
    src: url("fonts/BebasNeueBold.eot");
    src: url("fonts/BebasNeueBold.woff") format("woff"),
    url("fonts/BebasNeueBold.otf") format("opentype"),
    url("fonts/BebasNeueBold.svg#filename") format("svg");
}

* {
    margin: 0;
    padding: 0;
}

img {
    box-sizing: unset;
}

html {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

body {
    font-family: Arial, Helvetica, Tahoma, Verdana, sans-serif;
    font-size: 16px;
    background-color: black;
    color: white;
}

h1 {
    font-family: 'BebasNeueBold', sans-serif;
    font-size: 40px;
    padding-top: 20px;
}

h2 {
    font-family: 'BebasNeueBold', sans-serif;
}

h3 {
    font-family: 'BebasNeueBold', sans-serif;
}

p {
    font-family: 'PT Sans', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.2;
}

a {
    color: white;
    text-decoration: none;
}

button {
    border-radius: .25rem;
}

.above-logo {
    background-color: black;
    text-align: center;
    padding: 0;
    height: 40px;
    border-bottom: 2px solid white;
    box-sizing: initial;
}

.above-logo img {
    height: 30px;
    padding-top: 5px;
    box-sizing: initial;
}

.content-wrapper {
    padding-bottom: 20px;
}

.left-side-container {
    display: block;
    margin-bottom: 40px;
}

.right-side-container {
    display: block;
}

.back-button {
    border: none;
    font-family: 'BebasNeueBold', sans-serif;
    font-size: 30px;
    padding: 6px 12px 2px 12px;
    line-height: 1;
    cursor: pointer;
}

.back-button-wrapper {
    margin: 30px 0;
}

.back-button-wrapper.top {
    margin: 15px 0 30px 0;
}

.back-button-wrapper.bottom {
    margin: 30px 0 15px 0;
}

.back-button:hover {
    background: #C8C8C8;
}

.back-button.small {
    font-size: 20px;
}

.contact-form .row {
    padding-bottom: 10px;
}

.contact-form .col {
    flex-basis: unset;
}

.contact-form #email {
    margin-bottom: 10px;
}

.contact-form small.form-text {
    margin-bottom: 8px;
}

.btn-send {
    margin-top: 10px;
    border: none;
    font-family: 'BebasNeueBold', sans-serif;
    font-size: 30px;
    padding: 6px 12px 2px 12px;
    line-height: 1;
    cursor: pointer;
}

.btn-send:hover {
    background: #C8C8C8;
}

.successfully-sent-wrapper {
    margin: 0 auto;
    width: 120px;
}

.successfully-sent-wrapper .fa-check {
    font-size: 120px;
    color: green;
}

@media (min-width: 900px) {
    .above-logo {
        padding: 5px;
        padding-top: 12px;
    }

    .container {
        display: grid;
    }

    .content-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 3em auto;
        padding: 0;
    }

    .left-side-container {
        width: 40%;
        margin-right: 10%;
    }

    .right-side-container {
        width: 100%;
    }

    .contact-form .row {
        padding-bottom: 25px;
    }

    .contact-form .col {
        flex-basis: 0;
    }

    .back-button {
        font-size: 34px;
    }

    .back-button.small {
        font-size: 26px;
    }

    .back-button-wrapper.top, .back-button-wrapper.bottom {
        margin: 30px 0;
    }

    .back-button-wrapper.bottom {
        display: none;
    }

    .hamburger-menus-wrapper {
        top: 57px !important;
    }
}