body {
	background: #4c4f5c;
	margin:0;
}

.navbar {

	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #142b47;
	color:antiquewhite;
	padding: 1rem;
}

.brand-title {
	font-size: 1.5rem;
	margin: 5rem;
	
}
.navbar-links ul {
	margin: 0;
	padding:.5rem;
	display:flex;


	
}
.navbar-links li{
	float:left;
	background: #142b47;

}
.navbar-links li {
	list-style: none;
}
.navbar-links li a {
	text-decoration: none;
	color: antiquewhite;
	padding: 1rem;
	display: block;

}
.navbar-links li:hover {
	background-color: #555;
}

.toggle-button {
position:absolute; 
top: 1.3rem;
right: 5rem;
display: none;
flex-direction: column;
justify-content: space-between;
width: 10px;
height: 21px;

}

.toggle-button .bar{
    height: 3px;
    width: 45px;
    background-color:antiquewhite;
    border-radius: 10px;

}

@media(max-width: 600px){
	.toggle-button {
		display: flex;
		
		
	} 

	.navbar-links {
		display: none;
		width: 100%;
	}
	.navbar {flex-direction: column;
		align-items: flex-start;
	}

	.navbar-links ul {
		width: 100%;
		flex-direction: column;
	}
	.navbar-links li  {
		text-align: center;
	}
	.navbar-links li a {
		padding: .5rem 1rem;
	}
	.navbar-links.active {
		display: inline;
	}
	
}


.sticky {
    position: fixed;
    top: 0;
    width: 100%;
  }
  .sticky + .container {
    padding-top: 75px;
  }
 .sticky-top {
	 position:sticky;
	 top: 0;
	 z-index: 5;
 } 


.container{
	overflow: hidden;
}

.flex-container {
	display: flex;
	flex-direction: row;
	font-size: 30px;
	text-align: center;
  }
  
  .flex-item-left {
	padding: 10px;
	flex: 50%;
  }
  
  .flex-item-right {
	padding: 10px;
	flex: 50%;
  }

@media(max-width: 600px){
	.flex-container {
		flex-direction:column;
	}
}
p.a {
	font-style: italic;
  }
  
  p.b {
	font-style: italic;

  }

  .column {
    float: left;
    width: 31%;
    padding: 2px;
    margin: 20px 5px 0px 10px
  }
  .row{
    content: "";
    clear: both;
    display: table;
    
  }
  .fa {
	padding: 20px;
	font-size: 30px;
	width: 50px;
	text-align: center;
	text-decoration: none;
	margin: 5px 2px;
  }
  
  .fa:hover {
	  opacity: 0.7;
  }
  
  .fa-facebook {
	background: #3B5998;
	color: white;
	
  }
  
  .fa-twitter {
	background: #55ACEE;
	color: white;
  }
  .fa-linkedin {
	background: #007bb5;
	color: white;
  }
  .fa-instagram {
	background: #125688;
	color: white;
  }  
  #tobottom {background: #949492;
	color: #142b47;
	width: 100%;
	text-align: center;
	margin: 50px 0px 0px 0px;
	padding: 5px 5px 5px 0px;
  }
  #copyright {background-color: #142b47;
  color: #fff;
  text-align: center;
 width: 100%;
 margin:0px 20px 0px 0px;
 padding: 5px 5px 5px 0px;
  }