/*@font-face {
    font-family: montserrat;
    src: url(../fonts/montserrat.ttf);
}*/

html, body, h1, h2, h3, h4, h5 {
    font-family: 'montserrat', system-ui;
}

.top-bar {
    padding: 0.5rem 12%;
}

.top-bar, .top-bar ul {
    background-color: #f2fbff;
}

.top-bar .company-logo img {
    width: 80px;
}

.top-bar .button{
    border-radius: 6px;
}

.button.rounded {
    border-radius: 25px;
    white-space: nowrap;
}

.button.alert {
    background: #EA2425;
}

.menu li > a {
    color: #06163a;
    font-size: .825rem;
}

.menu li.active > a {
    border-radius: 6px;
    background-color: #06163a;
    color: #fff;
}

.bg-primary {
    background-color: #06163a;
}

.bg-secondary {
    background-color: #EA2425;
}

.menu.right-aligned {
    justify-content: end;
}

.button.dark {
    background-color: #06163a;
    color: #fff;
}

.button.light {
    background-color: #fff;
    color: #000;
}


.text-primary {
    color: #06163a;
}

.text-red, .text-alert, .text-secondary {
    color: #EA2425;
}

.text-white, .text-light {
    color: #fff;
}



.bg-primary {
    background-color: #06163a;
}

.footer-section-1 {
    text-align: center;
    padding: 2em 3em;
}

.footer-section-1 img {
    width: 100px;
    margin-bottom: 30px;
}
.footer-section-1 p {
    color: #9b9b9b;
    font-size: .8em;
    text-align: left;
}
.footer-section-1 h5 {
    font-size: 1em;
    text-align: left;
}
.footer-section-1 ul {
    list-style: none;
    text-align: left;
    margin: 0;
    font-size: .8em;
}
.footer-section-1 ul li , .footer-section-1 ul li a {
    color: #9b9b9b;
}
.footer-section-1 ul.inline {
    display: flex;
}
.footer-section-1 ul.inline li a {
    color: initial;
    font-size: 1.5em;
    margin: 0 5px;
}

.footer-section-2{
    background-color: #06163a;
    padding: 20px 5%;
    color: #fff;
    font-size: .625em;
}
.footer-map-section {
    position: relative;
}

.address-container {
    position: absolute;
    width: 50%;
    padding: 2em;
    top: 4em;
    z-index: 99999;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 13px #9c9c9c;
    left: 2em;
}

.address-container p {
    color: #9b9b9b;
    font-size: .825em;
}



.get-in-touch-section {
    padding: 2.5em 10%;
}

.banner-section {
    position: relative;
}

.banner-section img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.banner-caption {
    /*background-color: rgba(6, 22, 58, 0.5);*/
    position: absolute;
    height: 100%;
    width: 100%;
    bottom: 0;
    color: #fff;
    display: flex;
    align-items: center;
}

.caption-container {
    margin: 0 150px;
    width: 100%;
}

.banner-caption h4{
    font-weight: bold;
}
.banner-caption p {
    font-size: .825em;
    width: 50%;
    margin: 0;
    border-left: 2px solid #EA2425;
    padding-left: 2em;
}

.font-weight-bold {
    font-weight: bold;
}

.callout.success {
    background-color: #3c68b0!important;
    color: #fff!important;
    position: fixed;
    z-index: 999999;
    width: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 10%;
    border-radius: 120px;
}

@media (max-width: 425px) {
    .menu.right-aligned {
        justify-content: center!important;
    }
    .top-bar ul {
        justify-content: center!important;
    }
    .address-container {
        width: 85%;
        left: 0;
        right: 0;
        margin: auto;
    }
    .caption-container {
        margin: 0 25px;
    }
    .banner-caption p {
        width: 100%;
    }
}