/* CUSTOMER STYLES
-------------------------------------*/

.mobile-bar,
.mobile-navigation {
	display: none;
}


@media only screen and (max-width: 991px) {
	.main-navigation,
	.headerarea  {
		display: none;
	}
	.mobile-navigation {
		display: none;
		position: fixed;
		bottom: 0;
		width: 100%;
		height: 0;
		background: rgba(0, 0, 0, .8);
        overflow: hidden;
        z-index: 12;
	}
	.menu-toggle {
		display: none;
	}
	.mobile-bar {
		height: 50px;
		background: #10253d;
		display: block;
		z-index: 15;
		position: fixed;
		width: 100%;
		bottom: -1px;
		box-shadow: 0px 0px 1px #000;
	}

	.toggle-x {
		color: #fff;
		right: 8px;
    	top: 12px;
		position: absolute;
	}

	.toggle-x span {
		width: 30px;
		height: 3px;
		background-color: #fff;
		display: block;
		margin-bottom: 8px;
		
		
	}

	.mobile-navigation.active {
		height: 100%;
		display: visible;
		
	}
	.mobile-navigation ul {
		list-style: none;
		margin: 0;
	}
	.mobile-navigation ul li {
		margin-bottom: 30px;
	}

	.mobile-navigation ul li a {
		color: #fff;
		text-decoration: none;
	}

	.nav-inner {
		display: flex;
		align-items: center;
		height: 100%;
	}

	.toggle-x span {
		transition: .5s ease;
	}

	.toggle-x.active .hamburger-top {
		transform: rotate(45deg);
		margin-top: 10px;
    	width: 36px;
		
	}
	.toggle-x.active .hamburger-bot {
		transform: rotate(-45deg);
		margin-top: -10px;
		width: 36px;
	}
	.toggle-x.active .hamburger-mid {
		display: none;
	}

	.mobile-logo {
		position: absolute;
		left: 30px;
		bottom: 5px;
		width: 40px;
	}
  }

  
/* HEADERAREA
-------------------------*/

.headerarea {
	position: absolute;
	width: 100%;
	z-index: 10;
	padding: 10px;
}


.headerarea .container {
	max-width: 1800px;
}

.logo-side {
	width: 100px;
}

.nav-side .main-navigation {
	display: flex;
	justify-content: flex-end;
}



.nav-side ul li a {
	padding: 10px 30px;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1.15px;
	
}



.nav-side ul li a:hover, 
.current-menu-item.page_item a {
	color: #008b94;
}
.home .current-menu-item.page_item a,
.home .nav-side ul li a:hover, 
.home .current-menu-item.page_item a
.sticky .nav-side ul li a:hover, 
.sticky .current-menu-item.page_item a,
.mobile-navigation .nav-side ul li a:hover, 
.mobile-navigation .current-menu-item.page_item a {
	color: #008b94;
}


/* BANNERAREA
-------------------------------*/

.banner {
	min-height: 100vh;
	width: 100%;
	top: 0;
    left: 0;
	border-bottom: 2px solid #fff;
	position: relative;
	overflow: hidden;
	
	 
}

.no-webp .banner {
	background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(../img/team-office.jpg); 
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}

.webp .banner {
	background-image:linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(../img/team-office.webp); 
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}

.banner-content {
	position: absolute;
	left: 12%;
	bottom: 41%;
	z-index: 5;
	max-width: 800px;
}

.banner-content h2 {
	color: #fff;
	font-size: 60px;
	line-height: 70px;
	letter-spacing: 3px;
	margin-bottom: 25px;
}
.banner-content p {
	font-size: 30px;
	line-height: 40px;
	padding: 10px 0;
	color: #fff;

}


.sticky.headerarea {
	position: fixed;
	background-color: rgba(243,203,153,0.9);
}

.sticky.headerarea .row {
	align-items: center;
}

.sticky .logo-side {
	width: 75px;
}


/* RESPONSIVE
-------------------------------*/

@media only screen and (min-width: 992px) {
	.mobile-navigation.active {
		display: none !important;
	}
}

@media only screen and (max-width: 1600px) {
	.banner-content {
		bottom: 32%;
	}
}

@media only screen and (max-width: 1300px) {
	.banner-content h2 {
		font-size: 60px;
		line-height: 70px;
	}
	.banner-content {
		max-width: 656px;
	}
	
	.banner-content p {
		font-size: 18px;
		line-height: 28px;
	}
}
@media only screen and (max-width: 1025px) {
	.nav-side ul li a{
		padding: 10px 17px; 
	}
}

@media only screen and (max-width: 979px) {
	.banner-content {
		left: 7%;
		bottom: 21%;
	}
}

@media only screen and (max-width: 767px) {
	.banner-content {
		max-width: 541px;
		padding: 0 15px;
	}
	
}

@media only screen and (max-width: 600px) {
	.banner-content {
		left: 1%;
		max-width: 415px;
	}
	
	.banner-content h2 {
		font-size: 40px;
		line-height: 50px;
	}
	
}

@media only screen and (max-width: 500px) {
	.banner-content p {
		display: none;
	}
	.banner-content h2 {
		margin-bottom: 50px;
	}
}

