@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root{
    --silvernail-blue: #0b2f88;
    --silvernail-grey: #d4d5d5;
    --silvernail-aqua: #258ea6;
    --silvernail-darkgreen: #273c2c;
    --sivlernail-green: #628b48;
}

body, html{
    margin: 0;
    position: relative;
    font-family: 'Roboto', sans-serif;
}

#nav{
    position: relative;
}

.navigation{
    position: absolute;
    top: 125px;
    right: 0;
    width: calc(100% - 440px);
    background-color: #D4D5D5;
    height: 90px;
    z-index: 999;
}

.inner .navigation{
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0px 0px 10px rgba(0,0,0,.5);
}

.navigation a{
    color: var(--silvernail-blue);
    text-decoration: none;
    font-weight: 400;
}

.navigation a:hover{
    text-decoration: none;
}

.nav_logo{
    position: absolute;
    top: 36px;
    right: calc(100% - 440px);
    z-index: 999;
}

.inner .nav_logo{
    display: none;
}

.nav_logo_small{
    display: none;
}

.inner .nav_logo_small{
    display: flex;
    height: 100%;
    position: absolute;
    left: 5vw;
    align-items: center;
    z-index: 999999;
}

.inner .nav_logo_small img{
    width: 100%;
    max-width: 250px;
}
.nav_link_container{
    align-items: center;
    height: 100%;
    flex-direction: row;
    width: 100%;
    justify-content: flex-end;
}

.nav_link{
    width: max-content;
    text-align: center;
    display: inline-block;
    margin: 0 25px;
}

.nav_link:hover{
    text-decoration: underline;
}

.mobile_nav{
    display: none;
}

.dropdown-toggle{
    cursor: default;
}

.button{
    background-color: var(--silvernail-grey);
    color: var(--silvernail-blue);
    border: 2px solid #FFF;
    border-radius: 50px;
    padding: 10px 20px;
    transition: .2s;
    width: max-content;
    display: inline-block;
    margin-left: 20px;
    text-decoration: none;
}

.button:hover{
    background-color: var(--silvernail-blue);
    color: #FFF;
    transition: .2s;
    cursor: pointer;
}

.button.invert{
    background-color: var(--silvernail-blue);
    color: #FFF;
}

.button.invert:hover{
    background-color: var(--silvernail-grey);
    color: var(--silvernail-blue);
}

h1{
    font-size: 3rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
}

h2, h3, h4{
    margin-top: 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
}

xsmall{
    font-size: .75rem;
}

.hero_container{
    height: 80vh;
    margin-top: 90px;
}

.landing{
    height: 100vh;
}

.landing_hero{
    background-image: url('../img/landing_hero_bg.jpg');
    background-position: bottom center;
    background-size: cover;
    position: relative;
}

.hero_overlay{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,.4);
    z-index: 1;
}

.landing_text_container{
    background-color: #0B2F88;
    color: #FFF;
    position: relative;
    display: flex;
    align-items: center;
}

.landing_text h1{
    font-size: 3rem;
    margin-bottom: 1rem;
}

.landing_text p{
    font-size: 1.5rem;
    font-weight: 300;
}

.footer_links_container h4{
    font-weight: 600;
}

.footer_links_container a{
    color: inherit;
    text-decoration: none;
    transition: .2s all;
}

.footer_links_container a:hover{
    color: inherit;
    text-decoration: underline;
    transition: .2s all;
}

.footer_links_container a:active{
    color: inherit;
}

.footer_links_container a:visited{
    color: inherit;
}

.footer_links_container ul{
    list-style: none;
    margin-block-start: 0;
    padding-inline-start: 0;
}

.footer_links_container li{
    margin: 1em 0;
}

.current{
    font-weight: bold;
    color: unset;
}

@media screen and (max-width: 991px) {
    h4{
        text-align: center;
    }

    .footer_logo_container {
        text-align: center;
    }

    .footer_logo{
        max-width: 140px;
    }

    .footer_links_container{
        text-align: center;
        margin-bottom: 40px;
    }

    .navigation, .nav_logo{
        display: none;
    }

    .mobile_nav{
        display: flex;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 75px;
        background-color: var(--silvernail-grey);
        z-index: 999;
    }

    .mobile_nav img{
        width: 100%;
        max-width: 200px;
    }

    .hamburger{
        position: absolute;
        top: 22px;
        right: 22px;
        color: white;
        font-size: 2rem;
        z-index: 99999;
        padding: 0 10px;
        border-radius: 5px;
    }

    .mobile_nav_logo{
        margin-left: 5vw;
    }

    .mobile_nav_logo img{
        width: 100%;
    }

    .hero_container{
        height: unset;
        margin-top: 0;
    }

    .landing{
        height: unset;
    }

    .landing_hero{
        height: 40vh;
        margin-top: 75px;
    }

    .landing_text_container{
        min-height: 40vh;
        text-align: center;
    }

    .landing_text h2{
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .landing_text p{
        font-size: 1rem;
    }

    .button{
        display: block;
        margin: 0 auto 20px;
    }
}

.dropdown:hover > ul.dropdown-menu {
    display: block;    
}

.btn{
    background: none;
    border: 0;
}

.btn:hover, .btn:focus-visible {
    color: #FFF;
    background-color: var(--silvernail-blue);
    border-color: transparent;
    border: 0;
}

.btn:active{
    color: #FFF;
    background-color: var(--silvernail-blue);
    border: 0;
}

.dropdown-item:hover{
    color: #FFF;
    background-color: var(--silvernail-blue);
}



#nav-icon3 {
    width: 35px;
    height: 35px;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
  
#nav-icon3 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--silvernail-blue);
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
  

#nav-icon3 span:nth-child(1) {
    top: 0px;
}

#nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3) {
    top: 12px;
}

#nav-icon3 span:nth-child(4) {
    top: 24px;
}

#nav-icon3.open span:nth-child(1) {
    top: 12px;
    width: 0%;
    left: 50%;
}

#nav-icon3.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

#mobileNav{
    display: none;
}

@media (max-width: 991px){

    #mobileNav {
        position: fixed;
        display: block;
        top: 76px;
        right: -75%;
        width: 75%;
        height: calc(100vh - 75px);
        background-color: var(--silvernail-blue);
        /*box-shadow: 0 10px 10px rgba(0,0,0,.5);*/
        transition: .4s all;
        z-index: 999;
    }

    .mobile_open{
        right: 0 !important;
        transition: .4s all;
    }

    .mobile_navigation__links{
        margin-top: 40px;
    }

    .mobile_navigation__links ul{
        list-style: none;
        color: #FFF;
    }

    .mobile_navigation__links ul li{
        font-size: 1.75rem;
        padding: 0 10px;
    }

    .mobile_navigation__links ul li a{
        text-decoration: none;
        color: #FFF;
    }

    .mobile_navigation__links ul li ul{
        padding-left: 0 !important;
    }

    .mobile_navigation__links ul li li {
        font-size: 1.25rem;
        padding: 0;
        font-weight: 100;
    }

}