html, body{
    height: 100%!important;
}

#main{
    min-height: 100vh;
    height: 100%;
    padding: 0;
}

#header{
    display: none;
}

.contact-container{
    width: 100%;
    min-height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.form-container {
    width: 40%;
    margin: 50vh auto 0;
    border-radius: 5px;
    background-color: #fff;
    padding: 40px;
    transform: translateY(-50%);
}

.logo{
    text-align: center;
    padding-bottom: 3rem;
}

.logo img{
    max-width: 65%;
}

.form-container p{
    font-style: italic;
    text-align: center;
}

.input-div{
    display: flex;
    flex-direction: column;
    padding: .5rem
}

.input-div-checkbox{
    flex-direction: row;
    padding: 1rem;
    border-radius: 5px;
    transition: border-color .2s ease-out;
}

.input-div label{
    margin-bottom: 0;
}

.input-div span, .address-error{
    text-align: right;
    font-style: italic;
    font-size: 1rem;
    display: none;
}

.input-div input{
    width: 100%;
    padding: 1rem;
    border: 1px groove #eee;
    border-radius: 5px;
    transition: border-color .2s ease-out;
}

/* The container must be positioned relative: */
.custom-select {
    position: relative;
    width: 100%;
    border: 1px solid #eee;
    border-radius: 5px;
}

.custom-select select {
    display: none; /*hide original SELECT element: */
}

.select-selected {
    background-color: #fff;
}

/* Style the arrow inside the select element: */
.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #000 transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #000 transparent;
    top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
}

/* Style items (options): */
.select-items {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border: 1px solid #eee;
    border-radius: 5px;
    max-height: 15rem;
    overflow-y: scroll;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.4);
}

.footer{
    padding: 3rem ;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.footer p, .footer a{
    margin-bottom: 0;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.banner-container{
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    position: absolute;
    top: 50%;
    left:50%;
    width: 40%;
    background-color: rgba(0,0,0,.2);
    padding: 2rem;
}

.banner-container .title{
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0;
}

.footer-container{
    background-color: #262626;
    padding: 2rem;
}

.invalid {
    border: 2px solid #FF0000 !important;
}

.valid{
    border: 2px solid #36CE6A !important;
}

#form-btn {
    border: none;
    font-size:1.5rem;
    font-style: normal;
}

@media (min-width: 1201px) and (max-width: 1500px) {
    .banner-container .title{
        font-size: 4rem
    }
    #form-btn{
        font-size: 1.2rem;
    }
}

@media (min-width: 991px) and (max-width: 1200px) {

    .form-container{
        width: 50%;
    }

    .banner-container{
        left: 60%;
        max-width: 30%;
    }

    .banner-container .title{
        font-size: 2rem;
    }

    #form-btn{
        font-size: 1.3rem;
    }

}
@media (max-width: 991px) {

    .form-container{
        width: 60%;
    }

    #form-btn{
        font-size: 2.1rem;
        white-space: normal;
    }

}

@media (max-width: 600px) {

    .form-container{
        width: 80%;
    }


    #form-btn{
        font-size: 1.8rem;
    }
}


@media (max-width: 470px) {

    .form-container{
        padding:20px;
    }


    h1{
        font-size: 2.5rem;
    }

    .banner-container .title{
        font-size: 2.5rem;
    }

    .input-div-checkbox{
        flex-direction: column;
        justify-content: center;
    }

    .radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline{
        margin-left: 0;
    }

    .input-div button{
        font-size: .9rem;
    }

    #form-btn{
        font-size: 1.9rem;
    }
}

@media (max-width: 360px) {


    #form-btn{
        font-size: .9rem;
    }
}