/* ==========================================================================
   =Wrap
   ========================================================================== */

	#wrap {
		position: relative;
		background-color: #fff;
	}
	
	@media (max-width: 767px) {

		#wrap {}

	}
   
/* ==========================================================================
   =Header 
   ========================================================================== */
   	
	#header { margin: 0 auto;	}
	
	@media (max-width: 767px) {
	
		#header { padding: 50px 0; }
	
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
	
		#header { padding: 50px 0; }
	
	}
	
	@media (min-width: 991px) and (max-width: 1024px) {
		
		#header { padding: 75px 0 50px; }
		
	}
	
/* ==========================================================================
   =Logo
   ========================================================================== */
   
	#logo {  }
	
	/**
	 * 1. displaying the <a> inline-block makes it depends on the size of it's children
	 *    we add max-width:100% to tell it not that it shouldn't extend beyond the size of it's
	 *    parent if it's child is very large eg a 1000x1000 logo img
	 */
	
	#logo a {
		display: inline-block;
		max-width: 100%; 	/* 1 */
	}
	
	#logo img { display: block; }	
	
	@media (max-width: 767px) {

		/**
		 * 1. on mobile devices logo padding right needs to be the width of the
		 *	  mobile menu trigger + some spacing so as to not let the logo <a>
		 *    overlap the mobile menu trigger
		 */
	
		#logo {  
			padding-right: 50px; 	/* 1 */
		}
		
	}
	
/* ==========================================================================
   =Menu 
   ========================================================================== */

/* =Menu Basics
   ========================================================================== */
   
	.sf-menu,
	.sf-menu ul {
		padding: 0;
		margin: 0;
		list-style: none;
	}
	
	.sf-menu > li { float: left; }

	.sf-menu > li > a {
		position: relative;
		display: block;
	}
	
	/**
 	 * 1. z-index is 1025 because the sticky menu is 1020
 	 */
	
	.sf-menu .sf-mega,
	.sf-menu li.dropdown ul {
		position: absolute;
		z-index: 1025;		/* 1 */
		top: 100%;
		left: 0;
		display: none;		
	}
	
	.sf-menu li.dropdown { position: relative; }
		
	.sf-menu li.dropdown ul ul {
		top: -1px;
		left: 100%;
	}
	
	.sf-menu li:hover > .sf-mega,
	.sf-menu li.sfHover > .sf-mega,
	.sf-menu li.dropdown:hover > ul,
	.sf-menu li.dropdown.sfHover > ul { display: block; }

/* =Menu Skin
   ========================================================================== */
	
	.sf-menu { float: right; } 
	
	.sf-menu a {
		display: block;
		padding: 10px 20px;
		color: #111; 
		font-size: 12px;
		font-family: "Montserrat", sans-serif;
		text-decoration: none;
		text-transform: uppercase;
	}
	
	.sf-menu li.dropdown a {}
	
	.sf-menu li:last-child > a { border-bottom: none; }
	
	.sf-menu > li > a,
	.sf-menu > li.dropdown > a {
		padding: 5px 15px 25px;
		border: none;
		color: #111;
		font-size: 14px;
		text-transform: uppercase;	
	}
	
	.sf-menu > li a i { margin-right: 5px; }
	
	.sf-menu > li.current > a,
	.sf-menu li.sfHover > a,
	.sf-menu a:hover,
	.sf-menu li.sfHover a:hover {
		color: #45BF65;
		text-decoration: none;	
	}

/* =DropDown
   ========================================================================== */
	
	/**
 	 * 1. allow long menu items to determine submenu width
 	 */
	
	.sf-menu li.dropdown ul {
		min-width: 200px; 	/* 1 */
		border: 1px solid rgba(0, 0, 0, 0.1);	
		background-color: #fff;			
	}

	.sf-menu > li.dropdown > ul { 
		padding: 10px 0;
		border-top: 2px solid #45BF65; 
	}
	
	.sf-menu > li.dropdown > ul  ul { 
		padding: 10px 0;
		border-top: 2px solid #45BF65; 		
	}
		
		
/* =Mega Menu Section
   ========================================================================== */
	
	.sf-mega {
		width: 100%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 15px 0;
		border: 1px solid rgba(0, 0, 0, 0.1);
		border-top: 2px solid #45BF65;	
		background-color: #fff;
	}

	.sf-mega-section {
		float: left;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 0;
	}
	
	.sf-mega-section:last-child { border-right: none; }

	/**
 	 * 1. set mega menu section size, as a percentage of the mega menu width
 	 */
	
	.sf-mega.sf-mega-1-col .sf-mega-section{ width: 100%; } /* 1 */
	
	.sf-mega.sf-mega-2-col .sf-mega-section{ width: 50%; }
	
	.sf-mega.sf-mega-3-col .sf-mega-section{ width: 33.3333333333%; }
	
	.sf-mega.sf-mega-4-col .sf-mega-section{ width: 25%; }
	
/* =Menu Arrows
   ========================================================================== */
	
	.sf-arrows .sf-with-ul:after {
		position: absolute;
		top: 50%;
		right: 0;
		display: none;
		width: 0;
		height: 0;
		border: 4px solid transparent;
		border-top-color: #999;
		margin-top: 0;
		content: "";
	}
		
	.sf-arrows > li > .sf-with-ul:focus:after,
	.sf-arrows > li:hover > .sf-with-ul:after,
	.sf-arrows > .sfHover > .sf-with-ul:after { border-top-color: rgba(0, 0, 0, 0.7); }
		
	.sf-arrows ul .sf-with-ul:after {
		display: block;
		border-color: transparent;
		border-left-color: #999;
		margin-top: -4px;
		margin-right: 15px;
	}
	
	.sf-arrows ul li > .sf-with-ul:focus:after,
	.sf-arrows ul li:hover > .sf-with-ul:after,
	.sf-arrows ul .sfHover > .sf-with-ul:after { border-left-color: rgba(0, 0, 0, 0.7); }
	
	@media (min-width: 768px) and (max-width: 991px) {

		#menu { display: none; }

	}
	
	@media (max-width: 767px) {

		#menu { display: none; }
	
	}
	
/* ==========================================================================
   =Mobile Menu 
   ========================================================================== */
			
	#mobile-menu {
		border-bottom: 1px solid #fff;
		background-color: #45BF65;		
		margin-bottom: 0;
	}
	
	#mobile-menu li {	
		display: block;
		margin: 0;
	}
		
	#mobile-menu > li > ul, 
	#mobile-menu > li > ul > li > ul {
		display: none;
		margin-left: 0;
	}
	
	#mobile-menu .sf-mega {
		display: none;
		padding: 0;
		border: none;
		margin: 0;
	}
	
	#mobile-menu .sf-mega-section {
		float: none;
		width: 100%;
		padding: 0;
		border: none;
	}
	
	#mobile-menu .sf-mega-section ul { 
		margin-bottom: 0;
		margin-left: 0; 		
		background-color: #45BF65;		
	}

	#mobile-menu li a {
		position: relative;
		display: block;
		padding: 15px 25px;
		border-top: 1px solid #fff;
		color: #fff;
		font-size: 13px;
		text-align: left;
		text-decoration: none;
	}
	
	#mobile-menu ul a { padding-left: 45px; }
	
	#mobile-menu ul li ul a  { padding-left: 65px; }
	
	#mobile-menu .mobile-menu-submenu-arrow {
		position: absolute;
		top: 0;
		right: 0;
		width: 70px;
		height: 100%;
		border-left: 1px solid #e0e0e0;
		color: #fff;
		font-size: 20px;
		line-height: 50px;
		text-align: center;
		cursor: pointer;
	}
	
	#mobile-menu .mobile-menu-submenu-arrow:hover { background-color: #17acd4; }
	
	#mobile-menu li a:hover {}
	
	#mobile-menu { display: none; }

/* ==========================================================================
   =Mobile menu trigger
   ========================================================================== */
				
	#mobile-menu-trigger { 
		float: right;
		display: none;
		font-size: 28px;
	}

	@media (min-width: 768px) and (max-width: 991px) {

		#mobile-menu-trigger { 
			display: block;
			margin-top: 0;
			margin-right: 0;
		}	

	}

	@media (max-width: 767px) {

		#mobile-menu-trigger { 
			position: absolute;
			right: 15px;
			top: -12px;
			display: block;
			padding: 10px;
			margin-top: 0;
		}

	}

	@media only screen and (min-width: 480px) and (max-width: 767px) {

		#mobile-menu-trigger {}
	
	}		

/* ==========================================================================
   =Sticky Header
   ========================================================================== */

	@media (min-width: 1025px) {
		
		/**
		 * 1. The height of the #header-wrap can be increased or decreased to accommodate the logo
		 */
		 
		#header-wrap {
			position: relative;
			height: 54px; /* 1 */
			padding: 75px 0 50px;
		}
		
		#header {
			position: absolute;
			top: 75px; 					
			right: 0;
			left: 0;
			margin: 0 auto; 
		}
		
		/**
		 * 1. The z-index has to be 1020 so it is bigger than the back to top buttons z-index that is 1010
		 */
		
		#header.stuck {
			position: fixed;
			z-index: 1020; /* 1 */
			top: 0;
			width: 100%;
			padding: 15px 0 0 0;
			margin: 0 auto;
			box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);			
			background-color: rgba(255, 255, 255, 0.95);
			-webkit-transition: padding 0.6s;
					transition: padding 0.6s;
		}
		
		#header.stuck #logo { padding: 14px 0 7px 0; }
		
		#header.stuck .sf-menu > li > a,
		#header.stuck .sf-menu > li.dropdown > a { padding: 15px 15px 30px; }	
	
	}
	
/* ==========================================================================
   =Content
   ========================================================================== */
   	
	#content { padding-bottom: 100px; }

/* ==========================================================================
   =Page Header
   ========================================================================== */
   	
	#page-header { 
		padding: 75px 0;
		margin-bottom: 100px;
		background-color: #45BF65; 
	}
	
	#page-header h3 { 
		margin-bottom: 0; 
		color: #fff;
		letter-spacing: 3px;
	}
	
	#page-header h5 { 
		margin-bottom: 0; 
		color: #fff;
		text-transform: none;
	}
	
/* ==========================================================================
   =Fullwidth Section
   ========================================================================== */
   
    /**
 	 * Full width section
 	 *
	 * 1. background-image must be supplied using inline css as it is different for every .fullwidth-section
	 *
	 */
	 
   .fullwidth-section {
		position: relative;
		overflow: hidden;
		z-index: 0;	
		padding: 30px 0;
		margin-bottom: 30px;
		color: #fff;
		background-color: #45BF65;
		background-attachment: scroll;
		background-repeat: no-repeat; /* 1 */ 
		background-position: 50% 0;		
	}
	
	.fullwidth-section-content {
		position: relative;
		z-index: 3;
	}
   
   	.fullwidth-section-overlay {
		position: absolute;
		z-index: 2;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-repeat: repeat;
		background-position: 0 0;	
	}
	
	.fullwidth-section-video {
		position: absolute;
		overflow: hidden;
		z-index: 1;
		top: 0;
		width: 100%;
		height: 100%;
	}
	
	/**
 	 *
	 * 1. We add background-size cover so the parallax looks ok if you provide smaller images
	 *
	 */
	
	.parallax.parallax-enabled { 
		background-attachment: fixed !important;
		-webkit-background-size: cover;
				background-size: cover;	/* 1 */
	}
	
	.horizontal-parallax { background-repeat: repeat-x; }
	
	.animated-parallax { background-repeat: repeat-x; }	

	#bg-1 {
		padding: 110px 0;
		margin: 50px 0 110px 0;
		background: #f7f7f7 url(../../content/background/960x540-1.jpg) no-repeat center right;
		background-size: 50% 100%;
		color: #101010;
	}

	#bg-1 .btn, 
	#bg-2 .btn {
		margin: 40px 0 0;
		color: #fff;
	}
	
	#bg-2 { 
		margin: 0;
		padding: 0;
		background: transparent;
		color: #101010;
		text-align: right;
	}
	
	#bg-2 .headline { padding-top: 40px; }
	
	#bg-3 {
		margin: 110px 0;
		padding: 110px 0 60px 0;
		background-image: url(../../content/background/1920x1080-1.jpg); 
		color: #fff;
	}
	
	#bg-4 {
		padding: 70px 0;
		margin-bottom: -100px;
		background-color: #45BF65;
	}
	
	#bg-4 ul { list-style-type: none; }
	
	#bg-4 ul li {
		display: inline-block;
		width: 19%;
		text-align: center;
	}

	#bg-7 {
		padding: 110px 0 50px;
		margin: 110px 0 0;
		background-color: #f7f7f7;
		color: #101010;
	}
	
	#bg-8 {
		padding: 110px 0;
		margin: 0;
		background: #f7f7f7 url(../../content/background/960x540-1.jpg) no-repeat center right;
		background-size: 50% 100%;
		color: #101010;
	}
	
	#bg-8 .btn {
		margin: 40px 0 0;
		color: #fff;
	}

	#bg-9 {
		padding: 110px 0;
		margin: 0px 0;
		background: #45BF65 url(../../content/background/960x540-2.jpg) no-repeat center left;
		background-size: 50% 100%;
		color: #fff;
	}
	
	#bg-9 h5 { color: #101010; }
	
	#bg-9 .btn { margin-top: 40px; }

	#bg-10 {
		padding: 110px 0;
		margin: 0 0 110px;
		background: #f7f7f7 url(../../content/background/960x540-3.jpg) no-repeat center right;
		background-size: 50% 100%;
		color: #101010;
	}
	
	#bg-10 .btn {
		margin: 40px 0 0;
		color: #fff;
	}

	#bg-11 {
		padding: 70px 0;
		margin: 110px 0;
		background-color: #45BF65;
	}
	
	#bg-11 ul { list-style-type: none; }
	
	#bg-11 ul li {
		display: inline-block;
		width: 19%;
		text-align: center;
	}

	#bg-12 {
		padding: 110px 0;
		margin: 110px 0 -100px;
		background: url(../../content/background/1920x1080-2.jpg) no-repeat left top;
	}
	
	#bg-5 {
		overflow: visible;
		padding: 110px 0;
		margin: 110px 0;
		background-color: #393939;		
		color: #fff;
	}
	
	#bg-5 p img {
		margin-top: -140px;
		width: 100%;
	}

	#bg-6 {		
		padding: 110px 0;
		margin-top: 90px;
		margin-bottom: -100px;
		background-color: #f7f7f7;
		color: #101010;
	}
	
	#bg-13 {
		padding: 110px 0;
		margin: 110px 0 0;
		background: url(../../content/background/1920x1080-2.jpg) no-repeat left top;
		color: #101010;		
	}
	
	#bg-14 {
		padding: 35px 0;
		margin: 0 0 110px;
		background: #45BF65;
		color: #fff;		
	}
	
	#bg-15 {
		padding: 110px 0;
		margin: 110px 0 -100px;
		background: #f7f7f7;
		color: #101010;		
	}
	
	#bg-16 {		
		padding: 0;
		margin-bottom: -100px;		
		background-color: #45BF65;		
	}
	
	#bg-16 ul {
		margin-bottom: 0;
		list-style-type: none;
	}
	
	#bg-16 ul li a {
		display: block;
		width: 14.28%;
		padding: 30px 0;
		color: #fff;
	}
	
	#bg-16 ul li a:hover {		
		color: #fff !important;
		background-color: #17acd4;
	}
	
	#bg-17 {
		padding: 70px 0;
		margin: 110px 0;
		background-color: #f7f7f7;		
	}
	
	#bg-18 {
		padding: 70px 0;
		margin: 110px 0 -100px;
		background: url(../../content/background/1920x1080-3.jpg) no-repeat left top;
	}
	
	#bg-19 {
		padding: 80px 0 0;
		margin: 110px 0;
		background: url(../../content/background/1920x1080-4.jpg) no-repeat left top;
	}
	
	#bg-21 {
		padding: 50px 0 30px;
		margin: 110px 0 0;				
		background: url(../../content/background/1920x1080-6.jpg) no-repeat left top;
		color: #fff;
	}
	
	#bg-21 h3 {
		line-height: 1;
		letter-spacing: 4px;
	}
	
	#bg-22 {
		padding: 120px 0 80px;
		margin: 50px 0 120px;
		background-image: url(../../content/background/1920x1080-5.jpg);
		color: #101010;
	}
	
	#bg-23 {
		overflow: visible;
		padding: 120px 0 50px 0;
		margin: 120px 0;
		background-image: url(../../content/background/1920x1080-1.jpg);
	}
	
	#bg-23 img { margin-top: -140px; }
	
	#bg-24 {
		padding: 120px 0 90px 0;
		margin: 100px 0;
		background-image: url(../../content/background/1920x2000.jpg);
		color: #101010;
	}
	
	#bg-25 {
		padding: 120px 0;
		margin: 100px 0 -100px 0;
		background-color: #181f21;
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		#bg-1 { background: none; }
		
		#bg-8 { background: #f7f7f7; }
		
		#bg-9 { background: #45BF65; }
		
		#bg-10 { background: #f7f7f7; }
		
		#bg-23 img { margin-top: 0; }
		
	}
	
	@media (max-width: 767px) {

		.fullwidth-section {
			-webkit-background-size: cover;
					background-size: cover;		
		}
		
		#bg-1 { background: none; }
		
		#bg-4 ul li { width: 100%; }
		
		#bg-8 { background: #f7f7f7; }
		
		#bg-9 { background: #45BF65; }
		
		#bg-10 { background: #f7f7f7; }
		
		#bg-11 ul li { width: 100%; }
		
		#bg-5 p img { margin-top: 30px; }
		
		#bg-23 img { margin-top: 0; }
		
	}
	
/* ==========================================================================
   =Footer
   ========================================================================== */		
	
	#footer { 
		padding: 75px 0;	
		background-color: #d6d6d6;
	}
	
	#footer-widget-area-1 {}
	#footer-widget-area-2 {}
	#footer-widget-area-3 {}
	#footer-widget-area-4 {}
	
	@media (max-width: 767px) {
	
		#footer-widget-area-1 + #footer-widget-area-2 { margin-top: 50px; }
		#footer-widget-area-2 + #footer-widget-area-3 { margin-top: 50px; }
		#footer-widget-area-3 + #footer-widget-area-4 { margin-top: 50px; }
	
	}
	
/* ==========================================================================
   =Footer Bottom
   ========================================================================== */	
  
	#footer-bottom { 
		padding: 35px 0;	
		background-color: #101010;
		color: #d6d6d6;
	}
	
	#footer-bottom a { color: #d6d6d6; }
	
	.copyright {
		margin-bottom: 0;
		font-size: 14px;
		font-family: "Montserrat", sans-serif;
		text-transform: uppercase;
	}

	#footer-bottom-widget-area-1 {}
	#footer-bottom-widget-area-2 {}
	#footer-bottom-widget-area-3 {}
	#footer-bottom-widget-area-4 {}
	
	@media (max-width: 767px) {
	
		/**
		 * 1. since the last widget in every widget area has no margin bottom, on phone breakpoint, we must give the widgetable areas margins top
		 *    equal to widget margin bottom for spacing purposes 
		 */
	
		#footer-bottom-widget-area-1 + #footer-bottom-widget-area-2 { margin-top: 50px; } /* 1 */
		#footer-bottom-widget-area-2 + #footer-bottom-widget-area-3 { margin-top: 50px; }
		#footer-bottom-widget-area-3 + #footer-bottom-widget-area-4 { margin-top: 50px; }
		
		.copyright { text-align: center; }
	
	}
	
/* ==========================================================================
   =Back to top
   ========================================================================== */

	#back-to-top {
		position: fixed;
		z-index: 1010;
		right: -40px;
		bottom: 40px;
		width: 40px;
		height: 40px;
		background-color: rgba(0, 0, 0, 0.7); 
		color: #fafafa;
		font-size: 30px;
		line-height: 40px;
		text-align: center;
		text-decoration: none;	
		opacity: 0.5;
		cursor: pointer;
		-webkit-transition: all 0.4s ease 0s;
				transition: all 0.4s ease 0s;
	}
	
	#back-to-top i {
		font-size: 16px;
		line-height: 40px;
		font-weight: 400;
		vertical-align: top;
		-webkit-transition: all 0.4s ease 0s;
				transition: all 0.4s ease 0s;
	}
	
	#back-to-top:hover { 
		background-color: rgba(0, 0, 0, 0.7); 
		text-decoration: none;
	}
	
	#back-to-top:hover i { color: #fff; }
	#back-to-top.visible { right: 40px; }
	#back-to-top.gone { right: -40px; }	

/* ==========================================================================
   =Misc
   ========================================================================== */
   
	.javascript-required,
	.modern-browser-required {
	    padding: 15px 0;
		background-color: #d50f25;
		color: #fff;
		font-weight: 700;
		text-align: center;
	}