@charset "utf-8";
/* CSS Document */

/* headline: font-family: "Oswald", sans-serif;
paragraph: font-family: "Roboto Slab", serif;
*/

/*Poseidon:
dark blue: #012030
medium blue: #13678A
light blue-green: #45C4B0
light green: #9AEBA3
green-yellow: #DAFDBA
*/

/*
Teal and Grey:
medium blue: #00747C
light blue: #00BBC9
light grey: #CACACA
grey: #878787
black: #202022
*/

/* Background color for navbar and dropdown menus */
.navbar-custom, .navbar-custom .dropdown-menu {
    background-color: #00BBC9;
}
/* Text color for navbar and dropdown menus */
.navbar-custom .navbar-brand, .navbar-custom .navbar-text,
.navbar-custom .navbar-nav .nav-link,
.navbar-custom .dropdown-item {
    color: #ecf0f1;
}
/* Background and text colors for current page link and links on hover and focus */
.navbar-custom .nav-item.active .nav-link,
.navbar-custom .nav-item:hover .nav-link,
.navbar-custom .nav-item:focus .nav-link,
.navbar-custom .dropdown-item:hover, 
.navbar-custom .dropdown-item:focus {
    background-color: #346f7e;
    color: #fff;
}
/* Border and text colors for menu icon on small screens */
.custom-toggler.navbar-toggler {
    border-color: #ecf0f1;
    color: #fff;
}
/* Hamburger icon - use same rgb values as previous rule for stroke */
.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(236,240,241, 0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

/*navbar-brand logo*/
.navbar-brand {
	background-image: url(images/logo-01.png);
	background-repeat: no-repeat;
	background-size: 50px auto;
	background-position: 6% center;
	padding-left: 80px;	
}

/*footer section*/

footer{
	color: #FFFFFF;
	background-color: #000000;
	text-align: center;
	line-height: 40px;
}

body {font-family:"Oswald", sans-serif;

}

h1, h2, h3, h4, h5, h6 {font-family: "Roboto Slab", serif;

}

.navbar-custom {font-family: "Roboto Slab", serif;

}

/*header banner section*/

#home_banner {
	padding-left: 0px;
	padding-right: 0px;
	position: relative;
}

/*rem values are relative to the root html element, 1rem=16px*/

#home_banner h1 {
	font-size: 2rem;
	color: #fff;
	text-shadow: 2px 1px rgba(71,71,71,0.68);
	position: absolute;
	left: 3%;
	bottom: 7%;
}

/**/

/*Media Query Breakpoints*/
/*X-SMALL ONLY*/
@media screen and (min-width:375px){
#home_bg h1 {
    font-size: 1rem;
    bottom: 3%;
    left: 3%;
    }    
}


/*SMALL SIZE ONLY*/
@media screen and (min-width:576px){
#home_bg h1 {
    font-size: 1rem;
    bottom: 3%;
    left: 3%;
    }    


/*MEDIUM SIZE ONLY*/
@media (min-width: 768px) {
  #home_bg h1 {font-size: 2rem;
               bottom: 5%;
               left: 3%;
              }
  }


/*LARGE SIZE ONLY*/
@media screen and (min-width:992px){
    #home_bg h1 {
        font-size: 3rem;
        bottom: 5%;
        left: 3%;
        }
}
