section.top_bar {
	height: 95px;
	color: #525c65;
	background-color: #fff;

	padding-top: 33px;
}

section.top_bar a {
	color: #525c65;
}


section.top_bar .logo_area {
    display: block;
    padding-top: 8px;
}

section.top_bar .icon {
	font-size: 2rem;	
	padding-right: 30px;
    color: #4183c4;
}

section.top_bar .company_name {
	font-size: 1.8rem;	
}


section.top_bar .logged_in_data {
    border-left: solid 1px #ddd;
    padding-left: 24px;
    color: #888;
}

section.top_bar .logged_in_data .username {
	font-weight: bold;
    color: #4183c4;
}

section.top_bar .logged_in_data form.logout {
    display: inline;
}



/* NEW TOP BAR */

    section.top_bar {
        background: rgba(0, 0, 0, 0.9);
        width: 100%;
    }

    section.top_bar .top_nav a {
        color: #ddd;
    }

    section.top_bar .company_name {
        color: #ddd;
    }
    




section.top_nav {
	float: right;
}

section.top_nav ul {
	padding-left: 0px;
	margin-top: 0px;
}

section.top_nav ul li {
	display: inline-block;
	list-style-type: none;
	padding: 10px 20px;
	
}


section.top_nav ul li a {
	color: #777;
}

section.top_nav ul li:hover {
    
}

section.top_nav ul li:hover a {
	color: #fff;
}


section.top_nav ul li .icon {
	font-size: 1rem;	
	padding-right: 20px;
}




section.top_bar i.hamburger_menu {
    float: right;
    margin-top: 10px;
    display: none;
}


section.top_bar section.hamburger_menu {
    position: absolute;
    right: 0;
    top: 95px;
    
    width: 220px;
    z-index: 100;
    
    background-color: #666;

}

section.top_bar section.hamburger_menu ul {
    list-style-type: none;
    padding-left: 0px;
    margin-top: 0px;
    font-size: 1.5rem;
}

section.top_bar section.hamburger_menu ul li {
    border-bottom: solid 1px #777;
}

section.top_bar section.hamburger_menu ul li a {
    display: block;
    color: #ddd;
    width: 100%;
    height: 100%;
    padding: 16px 0px 16px 20px;
}

section.top_bar section.hamburger_menu ul li a:hover {
    color: #666;
    background-color: #ddd;
}











section.content {
	padding: 0px 0px 0px 0px;
	min-height: 600px;
}

section.content h1 {
	font-size: 4rem;
	color: #2e3a47;
	font-weight: 200;
	margin-bottom: 40px;
    padding-top: 40px;
}


.light-blue.background {
    background-image: linear-gradient(to bottom right,#f7f7f7,#eafbff);
    min-height: 600px;
}




section.content .hero_area {
	height: 600px;
	position: relative;
	z-index: 1;
	background-color: #333;
	margin-top: 0px;
}

section.content .hero_area::before {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;  
  opacity: .4; 
  z-index: -1;
  background-image: url('/static/images/placeholder1.jpg');
  background-size: cover;
}

section.content .hero_area .column {
	padding: 30px;	
}

section.content .hero_area h2 {
	font-size: 4rem;
	color: #eee;
	padding-bottom: 40px !important;
}


section.content .hero_area iframe {
    width: 100%;
    height: 80%;
}




section.footer {
	margin-top: 0px;
	padding: 30px 0px;
	text-align: center;
	font-size: 0.8rem;
    /* background-image: linear-gradient(to bottom right,#333,#111); */
    background: rgba(0, 0, 0, 0.9);
    color: #ddd;
    
}



/* RESPONSIVE */


@media screen and (max-width: 1000px) {
  section.top_nav {
    display: none;
  }
  
  section.top_bar i.hamburger_menu {
    display: block;
  }

  section.content .hero_area h2 {
    font-size: 2rem;
  }

  section.content .hero_area a.button {
    width: 100%;
  }

  section.content .hero_area iframe {
    width: 100%;
    height: 200px;
  }

  section.content h1 {
    font-size: 2rem;
  }
}




/* UTILITIES */

.hidden_by_default {
    display: none;
}