@charset "utf-8";
/* CSS Document */
* {
  
  box-sizing: border-box;
}

.container {
	background: #fff;
}
.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
 background-color: #fff;
 /*  W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #1a75bc;
  height: 60px;
 padding: .5em  0 0; 
	font-size: .9em;
	letter-spacing: .12em;
overflow: hidden; 
	margin-bottom: 5px;
}
.top-nav .icon {
	width: 90px;
}
.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
	 justify-content: space-around;
	width: 100%;
	max-width: 1000px;
}

.menu > li {
 /*  margin: 0px 1.2rem; */
  overflow: hidden;
}

.menu  li:hover {
	text-decoration-line: underline;
	text-underline-offset: .75em;
	color: #1a75bc; 
	}

.menu li {
	padding: 7px 10px; 
	font-weight: 550;
	font-variant: small-caps;
}
.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color:#f7953f;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}
@media (max-width: 992px){
	p.tagline {
		letter-spacing: 3.2px;
		padding-top: 0;
		margin-bottom: -15px;
	}
	p.lhid{
		margin-bottom: -10px;
	}
}
@media (max-width: 600px) {
	.top-nav {
		margin-bottom: 0px;
}}
@media (max-width: 720px){
	.top-nav {
		padding: 0 1em;
		background: #fff;
}
 .menu-button-container {
    display: flex;
  }
	.menu {
    position: absolute;
    top: 0;
    margin-top: 64px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	  width: 80%;
	  margin-left: 7%;
		max-width: 450px;
  }
	.menu li { 
		font-weight: 600;
	letter-spacing: .35em;
	font-variant: small-caps;
		}
	
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    border-bottom: 1px solid #fff;
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
	
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color:  #f7953f;
	  
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
	
	.menu  li:hover {
		background: #1a75bc;
		color: #fff;
		text-decoration: none ;
	}

}