body {
    font-family: 'Source Sans Pro', Arial, sans-serif !important;
    font-weight: 400;
}

a {
    text-decoration: none !important;
    margin: 0;
    padding: 0;
}

header,
footer {
    background: #c52127;
}

header {
    position: fixed;
    top: 30px;
    right: 5vw;
    z-index: 999;
    width: 15vw;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5px;
    z-index: 999;
}

footer p {
    color: #fff !important;
    font-size: 13px;
}

.page-banner {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center center;
    -webkit-object-fit: cover;
    -webkit-object-position: center center;
}

.form-wrap {
    height: 100vh;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;

}

form {
    width: 85%;
    max-width: 500px;
}

label {
    padding: 0px;
    margin: 0px;
    margin-top: 5px;
    font-size: 16px;
}

label span {
    color: #c52127;
}

label.error {
    color: #c52127;
    font-size: 13px;
    margin: 0px;
    padding: 0px;
}

label.info {
    background: rgba(235, 179, 33, 0.5);
    color: #000;
    padding: 5px 15px;
    display: block;
}

.form-control {
    outline: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 8px 0px 6px !important;
    border: none !important;
    border-bottom: 1px solid #e0e0e0 !important;
    transition: all 0.3s ease-in-out;
    -webkit-appearance: none !important;
    appearance: none !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.form-control:hover,
.form-control:focus,
.form-control:active {
    border-color: #c52127 !important;
}

.form-group {
    margin-bottom: 20px;
}

h3 {
    color: #c52127;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
}

textarea {
    resize: none;
}

.btns {
    background: #ebb321;
}

.btn-custom {
    background: #c52127 !important;
    color: #ffffff !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    border: none !important;
    font-weight: 600;
    padding: 8px 20px;
    font-size: 15px;
}

input.btn-custom {
    text-transform: uppercase;
    min-width: 150px;
    text-align: center;
    padding: 10px 35px;
}

.btns p {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    line-height: 1;
}

.image-wrap {
    min-height: 200px;
    background: #e0e0e0;
    margin-top: 35px;
    border: 1px solid #e0e0e0;
    border-bottom: none;
}

.image-wrap img:hover {
    cursor: zoom-in;
}

@media( max-width: 991px ) {
    .image-wrap {
        min-height: 150px;
    }

    .page-banner {
        height: auto;
    }
    
    .form-wrap {
        height: auto;
        padding: 40px 20px 80px;
    
    }

    label.info {
        font-size: 14px;
        padding: 5px 5px;
    }

    header {
        position: absolute;
        top: 20px;
        left: 15px;
        right: auto;
        width: 120px;
    }

    footer {
        position: static;
    }

    form {
        width: 100%;
        max-width: 100%;
    }
    
}

@media( max-width: 380px ) {
    .image-wrap {
        min-height: 100px;
    }
}

@media( max-width: 768px ) {
    .navbar-brand img {
        width: 200px;
    }

    h2 {
        font-size: 50px;
    }
}

@media( max-width: 444px ) {
    .btn-custom {
        padding: 8px 10px;
        font-size: 14px;
    }
    
    input.btn-custom {
        padding: 10px 35px;
        font-size: 15px;
    }
    
    .btns p {
        font-size: 14px;
    }
}

@media( max-width: 375px ) {
    .btn-custom {
        padding: 8px 10px;
        font-size: 14px;
        max-width: auto;
        width: calc( 50vw - 30px );
    }

    .btns p {
        font-size: 14px;
        padding: 8px 10px;
    }
}




