/* * {
    border: red solid 1px;
} */

body {
    font-family: 'Open Sans', sans-serif;
}
header {
    padding: 1.5em;
}

header img {
    width: 300px;
}

@media screen and (max-width: 768px) {
    header img {
        width: 200px;
    }
}

.container-fluid {
    padding:0;
}

.jumbotron {
    display: flex;
    min-height: 500px;
}

@media (min-width: 576px){
    .jumbotron {
        padding: 10rem 0rem 5rem;
    }
}

.intro-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #fff;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 15% calc(15% - 50px) 0%;
}

@media screen and (max-width: 576px) {
    .intro-content {
        padding: 0 25px;
    }
}

.intro-content-text {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
	padding: 0;
}

.intro-content-text h5 {
    font-weight: 700;
    margin-bottom: 20px;
}

.intro-content-text p {
    font-weight: 300;
    font-size: 2rem;
}

@media screen and (max-width: 576px) {
    .intro-content-text p {
        font-size: 1.3rem;
    }
}

.info-form {
    padding: 0 calc(15% - 50px);
}

@media screen and (max-width: 576px) {
    .info-form {
        padding: 0 25px;
    }
}

.info, form {
    margin-bottom: 50px;
}

form input {
    margin-bottom: 1vw;
}

.form-control {
    background-color: #ececec;
    border-radius: 0;
    border: none;
    color: #bababb;
}

.form-control:focus {
    color: #1d57ae;
    border-color: #1d57ae;
    box-shadow: 0 0 0 0.2rem rgb(24, 84, 177);
}

.submit {
    background: #1d57ae;
    color: #fff;
}

footer {
    background: #1d57ae;
    padding: 1.3em;
}

footer img {
    width: 100px;
}