/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    /* line-height: 1.5rem; */
}
h1,h2,h3,h4 {
    /* letter-spacing: 0.25rem; */
}
p {
    line-height: 1.25rem;
}
.border-success {
    border-color: #96DC12!important;
}
.bg-black-overlay {background: rgba(0,0,0,.75);}
.bg-lightgrey {background-color: #eee;}
.bg-navy {background-color: #000099;}
.bg-sky {
    background-color: #B3E5FC;
    right: 0; 
    top: 0; 
    z-index: 2;
}
.btn-navy {background-color: #000099; color: white;}
.btn-navy:hover {
    color: rgba(255,255,255,.5);
    text-decoration: none;
}
.form-control {
    font-size: .8rem;
}
#jumbotron-overlay {width: 50%;}
@media screen and (min-width: 992px) {
    #jumbotron-overlay {width: 40%;
    }
}
@media screen and (min-width: 1280px) {
    #jumbotron-overlay {width: 30%;
    }
}
@media screen and (min-width: 1920px) {
    #jumbotron-overlay {width: 20%;
    }
}
/* Navbar */
.navbar-light .navbar-nav .nav-link {
    border-radius: 4px;
    /* padding: 8px 16px; */
    padding: .5rem 1rem;
    margin: 0 .25rem;
    color: rgba(0,0,0,.5);
}
.navbar-light .navbar-nav .active>.nav-link, 
.navbar-light .navbar-nav .nav-link.active {
    background-color: #96DC12;
    /* color: #0D47A1; */
    color: rgba(0,0,0,.9);
}
/* .navbar-light .navbar-nav .nav-link.show, 
.navbar-light .navbar-nav .show>.nav-link {
    background-color: pink;
    color: rgba(0,0,0,.9);
} */
.dropdown-item {
    display: block;
    width: 100%;
    /* padding: .25rem 1.5rem; */
    padding: 0.5rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.dropdown-menu {
    font-size: 0.8rem;
}
.modal-footer {
    justify-content: flex-start;
}
/* Newsticker */
.newsticker li {
    /* padding: 16px; */
    height: 160px;
    list-style: none;
}
/* Flickity */
#our-clients {max-width: 272px;}
#our-clients .carousel-cell {
    margin-right: 16px;
    width: 128px;
    height: 64px;
}
#our-clients .carousel-cell img {
    max-width: 128px;
    max-height: 64px;
}
#gallery .carousel-cell {
    width: 100%;
    /* height: 360px; */
    margin-right: 2%;
    background: #333;
}
#gallery .carousel-cell-image {
    display: block;
    max-height: 100%;
    margin: 0 auto;
    max-width: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
            transition: opacity 0.4s;
}
@media screen and (min-width: 768px) and (max-width:991px) {
    #our-clients {max-width: 560px;}
    #gallery .carousel-cell {
        width: 49%;
        margin-right: 2%;
        background: #333;
    }
  }
@media screen and (min-width: 992px) {
    #our-clients {max-width: 560px;}
    #gallery .carousel-cell {
        width: 32%;
        margin-right: 2%;
        background: #333;
    }
}
/* fade in lazy loaded image */
#gallery .carousel-cell-image.flickity-lazyloaded,
#gallery .carousel-cell-image.flickity-lazyerror {
    opacity: 1;
}