@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', serif !important;
    overflow-x: hidden;
    margin-top: 50px!important;
}

nav {
    width: 100%;
    border-bottom: 1px solid #69A2B9;
    background-color: #fff !important;  
}



.nav-pills {
    list-style-type: none;
    margin: 0;
    padding: 5px;
    position: fixed;
    top: 0;
    opacity: 1;
    z-index: 1;
    padding: 20px;
    display: inline;
    color: #707070;
}


.nav-pills a {
    color: #707070;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    background-color: #fff;
    margin: 5px;
}

/* Change the link color to #111 (black) on hover */
.nav-pills a:hover {
    background-color: #e2e2e2;
    color: #707070;
    border-radius: 10px!important;
    text-decoration: none;
}

.navbar-fixed-top {
    position:fixed !important;
    background-color: #fff;
}

#login {
    background-color: #69A2B9;
    color: #fff!important;
    border-radius: 10px;
}

#login:hover {
    background-color: #707070;
}


.hero {
    background: url('../images/homepage-hero-desk.png') cover no-repeat;
    height: auto;
    color: #fff;
}

.hero-text {
    padding: 20% 0px;
    display: block!important;
}

.hero h1 {
    font-size: 72px;
}

.hero h2 {
    font-size: 54px;
}

.content {
    margin: 20px auto 20px auto;
}

footer {
    background: #69A2B9;
    padding: 50px 10px;
}

footer p {
    list-style: none;
    padding: 10px;
    color: #fff
}


section {
    padding-bottom: 30px;
}


@media (max-width: 800px) {
    .hero {
    background: url('../images/homepage-hero.jpg');
    background-size: cover;
    background-position: 50% 15%;
    color: #fff;
    box-shadow: inset 0 0 0 1000px rgba(105,162,185,.6);
    }

    .hero-text {
    padding: 20% 0px;
    display: block!important;
    text-align: center!important;
    }
    
    .hero h1 {
    font-size: 54px;
    }
    
    .hero h2 {
    font-size: 42px;
    }

    .content {
    margin: 30px 0px;
    }
}


@media (min-width: 801px) {
    .hero {
    background: url('../images/homepage-hero-desk.png');
    background-size: cover;
    background-position: 15%;
    color: #fff;
    }
    
    .hero-text {
    padding: 20% 0px;
    display: block!important;
    }
    
    .hero-text h1 {
    font-size: 60px;
    }
    
    .hero-text h2 {
    font-size: 44px;
    }

}

@media (min-width: 1200px) {
    .hero {
    background: url('../images/homepage-hero-desk.png');
    background-size: contain no-repeat;
    background-position-x: 50%;
    color: #fff;
    }
    
    .hero-text {
    padding: 20% 0px;
    display: block!important;
    }
    
    .hero-text h1 {
    font-size: 64px;
    }
    
    .hero-text h2 {
    font-size: 50px;
    }
}