/*------------------------------------------------ header top -------------------------------------*/

.containerHeader {
    max-width: 100%;
    padding: 1%;
    /* position: fixed; */
    margin: auto;
    padding-bottom: 5%;
  }
  


/*** Header Styles ***/
.active, .btn:hover {
	background-color: #8AC63C;
	color: white;
  }
	

  .dropbtn {
	background-color: #1e2d3a;
	color: white;
	font-size: 15px;
	border: none;
	padding: 0 10px;
	  text-transform: uppercase;
	  font-weight: 600;
	  letter-spacing: 1px;
	  line-height: 1.8em;
  }
  
  .dropdown {
	position: relative;
	display: inline-block;
  }
  
  .dropdown-content {
	display: none;
	position: absolute;
	background-color: #1e2d3a;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
  }
  
  .dropdown-content a {
	color: #fff;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
  }
  
  .dropdown-content a:hover {background-color: #ddd;}
  
  .dropdown:hover .dropdown-content {display: block;}

  
button.btn.w3ls-btn {
	padding: 4px 24px;
	background: #12b797;
	color: #fff;
	border: none;
	border-radius: 90px;
  }
  
  /*** Navigation Styles ***/
  
  nav.main-header {
	width: 100vw;
	height: 120px;
	background: #1e2d3a;
	display: grid;
	grid-template-columns: 1fr 1fr;
	position: fixed;
	top:0;
	z-index: 10;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
  }
  
  nav.main-header.navShadow {
	-webkit-box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.2);
	box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.2);
	height: 80px;
  }
  
  nav.navShadow #word-mark {
	opacity: 0;
  }
  
  #brand,
  #menu,
  ul.nav-agile {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  }
  
  #brand {
	padding-left: 0px;
  }
  
  #logo {
	width: 75px;
	height: 75px;
	background: #fff;
	border-radius: 50%;
	cursor: pointer;
  }
  
  #word-mark {
	width: 120px;
	border-radius: 90px;
	margin-left: 20px;
	opacity: 1;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
  }
  
  #logo a i {
	font-size: 2em;
	text-align: center;
	display: block;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.69);
  }
  
  div#word-mark h1 a {
	color: #fff;
	font-size: 1em;
	text-transform: capitalize;
	font-weight: 800;
	line-height: 0;
	letter-spacing: 1px;
  }
  
  /*** Menu Styles ***/
  
  #menu {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding-right: 40px;
  }
  
  .nav-agile li {
	margin-left: 20px;
  }
  
  .nav-agile li a {
	width: 80px;
	background: #fff;
	display: block;
	border-radius: 90px;
	color: #000;
	font-size: 0.85em;
	font-weight: 600;
	line-height: 28px;
  }
  
  #menu-toggle {
	width: 55px;
	height: 55px;
	background: #12b797;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 50%;
	cursor: pointer;
	display: none;
  }
  
  #menu-toggle:hover .bar {
	width: 25px;
  }
  
  #menu-toggle.closeMenu .bar {
	width: 25px;
  }
  
  #menu-toggle.closeMenu .bar:first-child {
	-webkit-transform: translateY(7px) rotate(45deg);
	transform: translateY(7px) rotate(45deg);
  }
  
  #menu-toggle.closeMenu .bar:nth-child(2) {
	-webkit-transform: scale(0);
	transform: scale(0);
  }
  
  #menu-toggle.closeMenu .bar:last-child {
	-webkit-transform: translateY(-7px) rotate(-45deg);
	transform: translateY(-7px) rotate(-45deg);
  }
  
  .bar {
	width: 25px;
	height: 2px;
	background: #fff;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
  }
  
  .bar:nth-child(2) {
	width: 20px;
	margin: 5px 0;
  }
  
  .bar:last-child {
	width: 15px;
  }
  
  .nav-agile li a.active {
	background: #12b797;
	color: #fff;
  }
  
  /*** Responsive Menu For Smaller Device ***/
  
  @media screen and (max-width: 800px) {
	#menu-toggle {
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	}
	nav.main-header {
	  height: 75px;
	}
	ul.nav-agile {
	  display: inline-block;
	  width: 100vw;
	  height: auto;
	  background: #1e2d3a;
	  position: absolute;
	  top: 75px !important;
	  -webkit-box-shadow: 0 5px 30px -4px rgba(0, 0, 0, 0.2);
	  box-shadow: 0 5px 30px -4px rgba(0, 0, 0, 0.2);
	  -webkit-transition: all 0.3s;
	  transition: all 0.3s;
	}
	div#word-mark h1 a {
	  font-size: 0.9em;
	}
	nav.main-header.navShadow {
	  height: 65px;
	}
	ul.showMenu li {
	  height: auto;
	  opacity: 1;
	  visibility: visible;
	  padding-top: 2em;
	}
	ul.showMenu li {
	  height: 80px;
	  opacity: 1;
	  visibility: visible;
	}
	.nav-agile li {
	  width: 15%;
	  float: left;
	  padding-left: 40px;
	  opacity: 0;
	  visibility: hidden;
	  margin-left: 0;
	  -webkit-transition: all 0.3s 0.1s;
	  transition: all 0.3s 0.1s;
	}
	#head-line {
	  -webkit-transform: scale(0.8);
	  transform: scale(0.8);
	}
  }


  /*** Responsive Menu For Smaller Device ***/

@media screen and (max-width: 800px) {
	#menu-toggle {
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	}
	nav.main-header {
	  height: 75px;
	}
	ul.nav-agile {
	  display: inline-block;
	  width: 100vw;
	  height: auto;
	  background: #1e2d3a;
	  position: absolute;
	  top: 65px !important;
	  -webkit-box-shadow: 0 5px 30px -4px rgba(0, 0, 0, 0.2);
	  box-shadow: 0 5px 30px -4px rgba(0, 0, 0, 0.2);
	  -webkit-transition: all 0.3s;
	  transition: all 0.3s;
	}
	div#word-mark h1 a {
	  font-size: 0.9em;
	}
	nav.main-header.navShadow {
	  height: 65px;
	}
	ul.showMenu li {
	  height: auto;
	  opacity: 1;
	  visibility: visible;
	  padding-top: 2em;
	}
	ul.showMenu li {
	  height: 80px;
	  opacity: 1;
	  visibility: visible;
	}
	.nav-agile li {
	  width: 15%;
	  float: left;
	  padding-left: 40px;
	  opacity: 0;
	  visibility: hidden;
	  margin-left: 0;
	  -webkit-transition: all 0.3s 0.1s;
	  transition: all 0.3s 0.1s;
	}
	#head-line {
	  -webkit-transform: scale(0.8);
	  transform: scale(0.8);
	}
  }

  
  
  /*  */

  #share {
	width: 100%;
  	margin: auto auto;
  	text-align: center;
}

/* buttons */

#share a {
	width: 50px;
  	height: 50px;
  	display: inline-block;
  	margin: 8px;
  	border-radius: 50%;
  	font-size: 24px;
  	color: #fff;
	opacity: 0.75;
	transition: opacity 0.15s linear;
}

#share a:hover {
	opacity: 1;
}

/* icons */

#share i {
  	position: relative;
  	top: 40%;
  	transform: translateY(-50%);
}

/* colors */

.facebook {
 	background: #3b5998;
}

.twitter {
  	background: #55acee;
}

.googleplus {
  	background: #dd4b39;
}

.linkedin {
  	background: #0077b5;
}

.youtube {
	background: #cb2027;
}

.instagram {
	background: #cb2027;
}