html, body {
	min-height: 100%;
    font-family: 'proxima-nova-reg';
    color: #024f9d;
}
body {
    background-image: url("images/background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
}
* { 
	box-sizing: border-box;
}
.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    min-height: 100vh;
    margin: 0;
    padding: 10px 30px
}
.heading_logo {
    display:flex;
    flex: 100%;
}
.heading_logo img {
    margin: auto;
    width: 100%;
    max-width: 448px;
    padding-top: 30px;
}
.heading_text {
    flex: 100%;
    margin: auto;
}
.heading_text h1 {
    text-align: center;
}
.nova-reg {
    font-family: 'proxima-nova-reg';
}
.nova-bold {
    font-family: 'proxima-nova-bold';
}
.nova-black {
    font-family: 'proxima-nova-black';
}
.izb_logo img{
    max-width: 300px;
    position: absolute;
    right: 10%;
    top: 5%;
}
.subheading {
    font-size: 21px;
    position: relative;
    margin-top: 20px;
    margin-bottom: 10px;
    display: block;
}
.topheadingline {
    font-size: 42px;
}
input {
    margin: 5px;
    padding: 15px;
    width: 400px;
    height: 60px;
}
.form-container {
    display: flex;
    flex: 1 1 100%;
    justify-content: center;
    max-width: 1024px;
    background: #024f9d;
    padding: 20px 60px 20px 60px;
    flex-wrap: wrap;
}
#form {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-evenly;
}
.formtext {
    color: white;
    margin-bottom: 20px;
}
input.btn {
    margin-top: 25px;
    max-width: 200px;
    color: #024f9d;
    font-size: 20px;
    padding: 10px;
    background: white;
    border: none;
}
input::placeholder {
    text-align: center;
    font-family: 'proxima-nova-reg';
    font-size: 22px;
}
input[type="text"] {
    font-size: 22px;
    text-align: center;
}
.submit-button {
    display: flex;
    flex: 1 1 100%;
    justify-content: center;
}
.submit-button input {
    cursor: pointer;
}
.izb_logo_mobile {
    display: none;
}
.after-form-text {
    margin-top: 30px;
    font-size: 18px;
    display: flex;
    flex: 100%;
    justify-content: center;
    max-width: 1024px;
    padding: 0 100px;

}
.footer-logos {
    display: flex;
    flex: 100%;
    justify-content: center;
    padding: 60px 0px 20px 0px;
}
.footer-text {
    color: black;
    font-family: 'proxima-nova-reg';
    text-align: center;
}
.response {
    color: white;
    margin-top: 10px;
}
@media (max-width: 1476px) {
    .izb_logo img{
        max-width: 200px;
        top: 2%;
        right: 2%;
    }
}
@media (max-width:1015px) {
    .form-container,.after-form-text {
        max-width: 60vw;
    }
    .after-form-text {
        padding: 0;
    }
    .footer-text {
        max-width: 80vw;
    }
    .izb_logo {
        display:none;
    }
    .izb_logo_mobile {
        display: block;
    }
    .izb_logo_mobile img {
        max-width: 200px;
    }
    .after-form-text {
        text-align: center;
    }

}

@media (max-width:692px) {
    .form-container, .after-form-text,.footer-text {
        max-width: 80vw;
    }
}
.just-validate-error-label {
    color: red !important;
    font-size: 20px;
    text-align: center;
}
/*
Fonts embeds
*/
@font-face {
    font-family: 'proxima-nova-reg';
    src: url("fonts/ProximaNova-Regular.otf") format("opentype");
}
@font-face {
    font-family: 'proxima-nova-bold';
    src: url("fonts/Proxima\ Nova\ Bold.otf") format("opentype");
}
@font-face {
    font-family: 'proxima-nova-black';
    src: url("fonts/Proxima-Nova-Black.otf") format("opentype");
}