/* ////////////////////////////////////////

Your custom css here

/////////////////////////////////////////*/

/* #03254C and #9FC3ED */

:root {
    --primary-color: #03254C;
    --secondary-color: #9FC3ED;
    --text-color: #373737;
}

.btn-primary{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover{
    background-color: #003b80;
    border-color: #003b80;
}

p{
    font-family: 'Muli', sans-serif;
    font-size: 24px;
    line-height: 1.526;
    margin-bottom: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-top: 30px;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1.25rem;
}

a:hover {
    text-decoration: underline;
}

.navbar-light .navbar-nav .nav-link{
    color: var(--primary-color);
}

.navbar-brand .logo-mobile{
    width: 240px;
    max-width: 240px;
    display: none;
}

.page-content{
    min-height: calc(100vh - 92px);
    padding-bottom: 115px;
}

.headline-content .headline-title{
    /* font-weight: 300; */
    color: var(--primary-color);
}

nav.navbar{
    -webkit-box-shadow: 0 1px 5px rgba(0,0,0,.1);
    -moz-box-shadow: 0 1px 5px rgba(0,0,0,.1);
    box-shadow: 0 1px 5px rgba(0,0,0,.1);
}

nav.navbar,
footer.footer{
    background-color: #f9f9f9;
}

footer.footer{
    margin-top: 0;
}

footer.footer > .container{
    max-width: 960px;
}

footer.footer h4{
    color: var(--primary-color);
}

/* HOMEPAGE */

.homepage .headline-content .headline-title{
    /* font-weight: 300; */
}



/* Contact form */

.contact .form-control{
    background-color: #f9f9f9;
}

.form-control.invalid,
.form-control.touched:invalid{
    border-color: red;
}

.contact-success{
    font-size: 30px;
    font-weight: bold;
    display: none;
}

.contact-success.fa-check:before{
    color: rgb(27, 201, 4);
}

.contact-success.fa-times:before{
    color: red;
}

.submission-message{
    margin-top: 0;
    line-height: 28px;
}

#contact-form .form-group.phone,
#contact-form .form-group.phone .form-control{
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}


/* MEDIA QUERIES */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px){
    
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px){
    .navbar-brand img:not(.logo-mobile){
        display: none;
    }
    .navbar-brand .logo-mobile{
        display: block;
    }
    .homepage .headline{
        margin-top: 25px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px){
    .headline-title{
        font-size: 50px;
        line-height: 80px;
    }
    footer.footer .links-wrap{
        margin-bottom: 48px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px){
    .headline-title{
        font-size: 40px;
        line-height: 60px;
    }
}