#home-header {
    background-image: url("http://astrisk.com/assets/images/header.jpg");
    background-size: cover;
    background-color: #005384;
}

.navbar-brand {
    background-image: url("");
    background-size: cover;
}

.footer {
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 60px; /* Set the fixed height of the footer here */
    line-height: 60px; /* Vertically center the text there */
    background-color: #f5f5f5;
    text-align: center;
}

.nav-link {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 30px;
    background-color: #fff;
    color: #005384;
}

.btn {
    background-color: #fff;
	color: #005384;
    border: 0px #005384;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 10px;
    margin-right: 10px;
}

.btn:hover {
    background-color: #fff;
}

.card-text {
    text-align: justify;
    font-size: 16px;
}

.lead {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: normal;
}

html {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
} 

h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 32px;
    text-transform: none;
    line-height:180%;
    letter-spacing: 1px;
}

h5 {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

/* Dropdown Button */
.dropbtn {
    background-color: #fff;
    color: #2a96cf;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 7px;
    margin-left: 30px;
    border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: #2a96cf;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #fff;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #fff; color: #2a96cf;}