@charset "utf-8";
/* CSS Document */

/* ============ FONT FACE  ============ */

@import url('https://fonts.googleapis.com/css?family=Barlow+Condensed:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Barlow+Semi+Condensed:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Barlow:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap&subset=latin-ext');


/* ============ NAVIGATION  ============ */

.nav {
	overflow: hidden;
	width: 100%;
	float: right;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.nav a, .dropdown { width: 25%; }
.dropbtn, .dropbtn a, .dropdown-content a { width: 100%; }
	
/* Style the links inside the navigation bar */
.nav a {
	float: left;
	display: block;
	color: #EDF1F1;
	text-align: center;
	padding: 13px 15px 12px 15px;
	text-decoration: none;
	font-size: 14px;
	line-height: 18px;
	font-weight: 500;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	text-transform: uppercase;	
	font-family:"Barlow";
}

/* Add an active class to highlight the current page */
.nav a.active {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	
}
.nav a.active:hover {
}


/* Dropdown container - needed to position the dropdown content */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn a {
	color: #EDF1F1;
	font-weight: 500;
	font-size: 14px;
	line-height: 18px;
	border: none;
	outline: none;
	padding: 13px 25px 12px 15px;
	background-color: inherit;
	font-family: inherit;
	margin: 0;
	background-image: url(../img/icons/arrow-down.png);
	background-repeat: no-repeat;
	background-position: 90% 55%;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #F4F4F4;
	min-width: 160px;
	z-index: 100;
	-webkit-box-shadow: 0px 1px 3px 1px rgba(0,0,0,0.2);
	box-shadow: 0px 1px 3px 1px rgba(0,0,0,0.2);
}

/* Style the links inside the dropdown */
.dropdown-content a {
  	float: none;
  	color: black;
  	padding: 8px 16px;
  	text-decoration: none;
  	display: block;
  	text-align: left;
	font-size: 13px;
	
}


/* Add a dark background on topnav links and the dropdown button on hover */
.nav a:hover, .dropdown:hover .dropbtn {
  	color: white;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
	background-color: #CFCFCF;
	color: #14181A;
	text-indent: 3px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {display:block;}
 
/* Hide the link that should open and close the topnav on small screens */
.nav .nav-icon {
	display: none;
	width: 48px;
	height: 48px;
	padding-left: 12px;
	text-indent: 0px;
}

/* ---- menu bars ---- */
.bar-wrap {
	display: inline-block;
	cursor: pointer;
	z-index: 2;
	text-indent: 0px;
	width: 24px;
	height: 24px;

}
.bar1, .bar2, .bar3 {
	width: 24px;
	height: 3px;
	background-color: #EFEFEF;
	margin: 4px 0;
	transition: 0.4s;
}
.change .bar1 {
  	-ms-transform: rotate(45deg) translate(6px 10px); /* IE 9 */
  	-webkit-transform: rotate(45deg) translate(6px, 10px); /* Safari 3-8 */
  	transform: rotate(45deg) translate(8px, 9px);
	width: 26px;
  	margin: 0;
}
.change .bar2 {opacity: 0; margin:0;}
.change .bar3 {
  	-ms-transform: rotate(-45deg) translate(-5px, 2px); /* IE 9 */
  	-webkit-transform: rotate(-45deg) translate(-5px, 2px); /* Safari 3-8 */
  	transform: rotate(-45deg) translate(-5px, 3px);
	width: 26px;
  	margin: 0;
}
 

/* When the screen is less than 600 pixels wide, hide all links,. Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 768px) {
	
	.nav a, .dropdown {width: 100%; }
	.dropbtn, .dropbtn a {width: 100%; }	

  .nav a, .dropdown .dropbtn {
    display: none;
  }
  .nav a.nav-icon {
	float: right;
	display: block;
	text-indent: 0px;
	
  }
.nav a.nav-icon:hover {	
	background-color:#696E74;
	text-indent: 0px;
	}
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */

@media screen and (max-width: 768px) {
  .nav.mob-nav {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 1;
  	top: 0;
  	left: 0;
  	background-color: rgb(0,0,0);
  	background-color: rgba(0,0,0, 0.9);
  	overflow-x: hidden;
  	transition: 0.5s;
	padding: 15px 15px;

}
  .nav.mob-nav a.nav-icon {
    position: absolute;
    right: 15px;
    top: 15px;
  }
  .nav.mob-nav a.nav-icon:hover {
	text-indent: 0px;
  }
  .nav.mob-nav a {
	color: #C9C9C9;
	float: none;
	display: block;
	text-align: left;
	border-bottom: 1px solid #363A40;
  }
	
.nav.mob-nav a:hover, .nav.mob-nav .dropdown .dropbtn:hover {
	color: #FFFFFF;
	text-indent: 3px;
	
  }
	
 .nav.mob-nav .dropdown {float: none; background-color: transparent;}
 .nav.mob-nav .dropdown-content {position: relative; padding-left:6%; background-color: transparent;}
 .nav.mob-nav .dropdown-content a {
	background-color: transparent;
	border-bottom: 1px solid #363A40;
}
.nav.mob-nav .dropdown-content a:hover {
	color: #FFFFFF;}
	
 .nav.mob-nav .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
	
  }
	
/* ---- underline ---- */	
	
.hvr-underline-center.active::before,
.hvr-underline-center:hover:before,
.hvr-underline-center:focus:before,
.hvr-underline-center:active:before  {display: none;}	

}

/* Underline From Center */
.hvr-underline-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: #9E030D;
  height: 3px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-center:hover:before, .hvr-underline-center:focus:before, .hvr-underline-center:active:before {
  left: 0;
  right: 0;
}
.hvr-underline-center.active::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  background: #9E030D;
  height: 3px;
	
}
