@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;0,700;1,400&family=Roboto:wght@400;700&family=Teko:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');
html {
    height: 100%;
}
body {
    height: auto;
    background: #fff;
    font-family: 'Roboto', 'Century Gothic', Helvetica, Arial, sans-serif;
    color: #1f1f1f;
}
a {
    text-decoration: underline;
    color: #254da2;
}
a:hover {
    color: #222;
}
p, ul li, ol li {
    font-family: 'Roboto', 'Century Gothic', Helvetica, Arial, sans-serif;
}
h1, h2, h3, h4, h5 {}
.navbar {
    position: relative;
    min-height: 95px;
    height: auto;
    background: #254da2;
    z-index: 1;
}
.navbar-toggler {
    float: right;
}
.logo {
    height: 95px;
    position: absolute;
    top: 0;
    right: 0;
}
.hspacer {
    height: 95px;
}
.breakout strong, .highlight {
    color: #01a858;
}
.job {
    margin-bottom: 10px;
    background: #fafafa;
    border: 1px solid #e1e1e1;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .12);
}
.alert {
    margin: 0 auto 15px auto;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .20);
    z-index: 10;
}
.btn {
    position: relative;
    display: inline-block;
    background-color: #01a858;
    padding: 5.5px 20px;
    border-radius: 5px;
    font: 400 1rem/1rem 'Poppins', 'Century Gothic', Helvetica, Arial, sans-serif;
    text-decoration: none;
    color: #fff;
}
#footer {
    border-top: 1px solid #ddd;
}
@media (max-width: 600px) {
    h1, h2, h3, h4, h5 {
        font-size: 6vw;
    }
    p, ul li, ol li {
        font-size: 4vw;
    }
}
@media (max-width:767px) {
    p, li, a {
        font-size: 3.5vw;
    }
    .lead {
        font-size: 4.5vw;
    }
}
@media all and (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
    }
    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }
    .navbar .dropdown-menu.fade-up {
        top: 180%;
    }
    .navbar .nav-item:hover .dropdown-menu {
        transition: .3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
    }
}