<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * 	Name: layout.css
 *
 *  Styling for the layout of the pages - header, footer, page sections etc.
 *
 *  T.O.C
 *
 *	=Wrap
 *	=Header Wrap
 *	=Header Top
 *	=Header Middle
 *	=Header
 *	=Logo
 *	=Menu
 *		=Menu Basics
 *		=Menu Skin
 *		=DropDown
 *		=Mega Menu Section
 *		=Menu Arrows
 *	=Mobile Menu 
 *	=Mobile menu trigger
 *	=Custom search form 
 *	=Sticky Header
 *	=Content
 *	=Page Header
 *	=Fullwidth Section
 *	=Footer Top
 *	=Footer
 *	=Footer Bottom
 *	=Back to top
 *	=Misc 
 *
 */
 
/* ==========================================================================
   =Wrap
   ========================================================================== */

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

		#wrap {}

	}
	
/* ==========================================================================
   =Header Wrap
   ========================================================================== */	
	
	#header-wrap {}
	
	.header-style-2 #header-wrap {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		z-index: 30; 
	}
	
	#header-wrap .container-fluid { padding: 0 40px; }
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.header-style-2 #header-wrap { position: relative; }
		
		#header-wrap .container-fluid { padding: 0 25px; }
		
	}
	
	@media (max-width: 767px) {

		.header-style-2 #header-wrap { position: relative; }
		
		#header-wrap .container-fluid { padding: 0 15px; }

	}


/* ==========================================================================
	=Header Top
	========================================================================== */
   
   #header-top {
		background-color: #f3f3f3;
   }
   
   @media (max-width: 767px) {

		#header-top {}

	}
   
/* ==========================================================================
   =Header 
   ========================================================================== */
   	
	#header { 
		margin: 0 auto;
		background-color: #D2972B; 	
	}
	
	@media (min-width: 992px) {
		
		#header .logo-wrapper { display: none; } 
		
		.header-style-2 #header .logo-wrapper { display: block; }
		
		#header [class^="span9"] { width: 100%; }
		
		.header-style-2 #header [class^="span9"] { width: 75%; }
		
	}
	
	.header-style-2 #header { 
		border-bottom: 1px solid rgba(255,255,255,0.25);
		background-color: transparent; 
	}
	
	@media (max-width: 991px) {
		
		.header-style-2 #header { background-color: #D2972B; }
		
	}
	
/* ==========================================================================
   =Header Middle
   ========================================================================== */	
	
	#header-middle { background-color: #ffffff; }
	
/* ==========================================================================
   =Logo
   ========================================================================== */
   
	#logo { padding: 10px 0 0; }
	
	/**
	 * 1. we need the &lt;a&gt; to be only the size of it's child &lt;img&gt; element
	 * 2. it shouldn't extend beyond the size of it's parent if it's child &lt;img&gt; is very large e.g 1000x1000 px
	 */
	
	#logo a {
		display: inline-block; /* 1 */
		max-width: 100%; 	   /* 2 */
	}
	
	#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 &lt;a&gt;
		 *    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 &gt; li { float: left; }
	
	.sf-menu li { margin: 0; }

	.sf-menu &gt; li &gt; 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:last-child ul {
		right: 0;
		left: auto;
	}
	
	.sf-menu li.dropdown { position: relative; }
	
	.sf-menu li.dropdown ul ul {
		top: -1px;
		left: 100%;
	}
	
	.sf-menu li:last-child ul ul {
		left: auto;
		right: 100%;
	}
	
	.sf-menu li:hover &gt; .sf-mega,
	.sf-menu li.sfHover &gt; .sf-mega,
	.sf-menu li.dropdown:hover &gt; ul,
	.sf-menu li.dropdown.sfHover &gt; ul { display: block; }

/* =Menu Skin
   ========================================================================== */
	
	.sf-menu { float: left; } 
	
	.sf-menu a {
		box-sizing: border-box;
		display: block;
		padding: 15px 0;
		color: #3e3d3d;
		text-decoration: none;
		font-weight: 400;
		-webkit-transition: all .2s linear;
				transition: all .2s linear;
	}
	
	.sf-menu li.dropdown a { padding: 15px; }
	
	.sf-menu li:last-child &gt; a { border-bottom: none; }
	
	.sf-menu &gt; li &gt; a,
	.sf-menu &gt; li.dropdown &gt; a {
		padding: 30px;
		border: none;
		font-weight: 500;	
		font-size: 14px;
		text-transform: uppercase;
		color: #ffffff;
	}
	
	.navigation-style-2 .sf-menu &gt; li &gt; a,
	.navigation-style-2 .sf-menu &gt; li.dropdown &gt; a { padding: 30px 15px; }

	.sf-menu &gt; li a i { margin-right: 5px; }
	
	.sf-menu &gt; li.current &gt; a,
	.sf-menu li.sfHover &gt; a,
	.sf-menu li.sfHover a:hover,
	.sf-menu a:hover {
		background-color: #D2972B;
		text-decoration: none;
		color: #ffffff;
	}
	
	@media (min-width: 1200px) {
	
		.navigation-style-2 .sf-menu &gt; li &gt; a,
		.navigation-style-2 .sf-menu &gt; li.dropdown &gt; a { padding: 30px; }
		
	}
	
/* =DropDown
   ========================================================================== */
	
	/**
 	 * 1. allow long menu items to determine submenu width
 	 */
	
	.sf-menu li.dropdown ul {
		min-width: 190px; 	/* 1 */
		background-color: #fdfeff;
		box-shadow: 0 5px 40px 0 rgba(0, 0, 0, 0.2);
	}
	
	.sf-menu li.dropdown ul a {
		position: relative;
		padding: 15px 30px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	}
	
	.navigation-style-2 .sf-menu li.dropdown ul a:before {
		position: absolute;
		left: 0;
		top: 50%;
		height: 2px;
		width: 0;
		content: "";
		background-color: #ffffff;
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
		-webkit-transition: all .3s linear;
				transition: all .3s linear;
	}
	
	.navigation-style-2 .sf-menu li.dropdown ul a:hover:before { width: 15px; }

/* =Mega Menu Section
   ========================================================================== */
	
	.sf-mega {
		width: 100%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		margin-top: -2px;
		background-color: #fdfeff;
		box-shadow: 0 5px 40px 0 rgba(0, 0, 0, 0.2);
	}

	.sf-mega-section {
		float: left;
		border-right: 1px solid #b0b0b0;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
	}

	
	.sf-mega-section:last-child { border-right: none; }
	
	.sf-mega-section a { 
		position: relative;
		padding: 15px 30px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	}
	
	.navigation-style-2 .sf-mega-section a:before {
		position: absolute;
		left: 0;
		top: 50%;
		height: 2px;
		width: 0;
		content: "";
		background-color: #ffffff;
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
		-webkit-transition: all .3s linear;
				transition: all .3s linear;
	}
	
	.navigation-style-2 .sf-mega-section a:hover:before { width: 15px; }

	/**
 	 * 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%; } 
	
	.sf-mega.sf-mega-5-col .sf-mega-section{ width: 20%; }
	
	.sf-mega-section-title {}
	
/* =Menu Arrows
   ========================================================================== */
	
	.sf-arrows .sf-with-ul:after {
		position: absolute;
		top: 50%;
		right: 0;
		width: 0;
		height: 0;
		border: 4px solid transparent;
		border-top-color: #e0e0e0;
		margin-top: 0;
		content: "";
		display: none;
	}
		
	.sf-arrows &gt; li &gt; .sf-with-ul:focus:after,
	.sf-arrows &gt; li:hover &gt; .sf-with-ul:after,
	.sf-arrows &gt; .sfHover &gt; .sf-with-ul:after { border-top-color: rgba(0, 0, 0, 0.7); }
		
	.sf-arrows ul .sf-with-ul:after {
		border-color: transparent;
		border-left-color: #e0e0e0;
		margin-top: -5px;
		margin-right: 15px;
		display: inline;
	}
	
	@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 #e0e0e0;
		margin-bottom: 0;
	}
	
	#mobile-menu li {	
		display: block;
		margin: 0;
	}
		
	#mobile-menu &gt; li &gt; ul, 
	#mobile-menu &gt; li &gt; ul &gt; li &gt; ul {
		display: none;
		margin-left: 0;
		background-color: #fdfeff;
	}
	
	#mobile-menu .sf-mega {
		display: none;
		padding: 0;
		border: none;
		margin: 0;
		box-shadow: none;
	}
	
	#mobile-menu .sf-mega-section {
		float: none;
		width: 100%;
		padding: 0;
		border: none;
	}
	
	#mobile-menu .sf-mega-section ul { 
		margin-left: 0; 
		margin-bottom: 0;
	}

	#mobile-menu li a {
		position: relative;
		display: block;
		padding: 15px 25px;
		border-top: 1px solid #e0e0e0;
		color: #111;
		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: #111;
		font-size: 20px;
		line-height: 50px;
		text-align: center;
		cursor: pointer;
	}
	
	#mobile-menu .mobile-menu-submenu-arrow:hover { background-color: #f3f3f3; }
	
	#mobile-menu li a:hover {}
	
	#mobile-menu { display: none; }

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

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

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

	}

	@media (max-width: 767px) {

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

	}

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

		#mobile-menu-trigger {}
	
	}		
		
/* ==========================================================================
   =Custom search form 
   ========================================================================== */
	
	#custom-search-button + nav { margin-right: 50px; }
	
	#custom-search-button { 
		position: absolute;
		top: 32px;
		right: 10px;
		display: block;
		width: 20px;
		height: 20px;
		transition: none;
	}
	
	#custom-search-button i { 
		color: #ffffff; 
		font-size: 20px;
	}
	
/**
 	 * 1. z-index is 1030 because the menu has a z-index of 1025 
 	 */
	 
	#custom-search-form-container {
		position: absolute;
		z-index: 1030;
		top: 0px;
		left: 0px;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		opacity: 0;
		-webkit-transition: all 0.3s ease-in-out;
				transition: all 0.3s ease-in-out;
		-webkit-transform: translate(100%, 0);
			 -ms-transform: translate(100%, 0);
				 transform: translate(100%, 0);
	}

	#custom-search-form-container.open {
		opacity: 1;
		-webkit-transform: translate(0px, 0px);
			-ms-transform: translate(0px, 0px);
				transform: translate(0px, 0px); 
	}
	
	#custom-search-form {
		position: absolute;
		top: 0;
		right: 0; 
		bottom: 0;
		left: 0;
	}
	
	#custom-search-form-container input[type="text"] {
		width: 100%;
		height: 100%;
		padding-right: 200px;
		box-sizing: border-box; 
		margin: 0;
		font-size: 30px;
		border: none;
		background-color: #D2972B;
		color: #ffffff;
	}
	
	#custom-search-form-container input[type="submit"] {
		position: absolute;
		right: 50px;
		top: 0;
		margin: 0;
		height: 100%;
	}
	
	#custom-search-form-container input[type="submit"]:hover { box-shadow: none; }
	
	#custom-search-form-container .close {
		position: fixed;
		z-index: 1031;
		top: 50%;
		right: 6px;
		padding: 10px;
		margin: 0;
		font-size: 40px;
		font-weight: 500;
		color: #ffffff;
		background-color: transparent;
		opacity: 1;
		border: none;
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
	}
	
	@media (min-width: 768px) and (max-width: 991px) {

		#custom-search-button { 
			right: 70px; 
			top: 26px;
		}
		
	}
	
	@media (max-width: 767px) {

		/**
		 * Hide search on mobile
		 */
		 
		/**
		 * 1. !important is needed to overwrite the display:block added by the js
		 */ 
	
		#custom-search-form { 
			display: none !important; /* 1 */
		}
		
		#custom-search-button { display: none; }
		
	}

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

	@media (min-width: 1025px) {
		
		/**
		 * 1. The height of the #header-wrap should be increased or decreased to accommodate the logo
		 */
		 
		#header-wrap {
			position: relative;
			height: 84px; /* 1 */
		}
		
		#header {
			position: absolute;
			top: 0; 					
			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%;
			margin: 0 auto;
			box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);			
			background-color: #fdfeff;
			-webkit-transition: padding 0.3s;
					transition: padding 0.3s;
		}
		
		#header.stuck .logo-wrapper { display: block; }
		
		#header.stuck [class^="span9"] { width: 75%; }
		
		#header.stuck #logo { padding: 12px 0 0 0; }
		
		#header.stuck .sf-menu { float: right; }
		
		.navigation-style-2 #header.stuck .sf-menu { float: left; }
		
		.header-style-2 #header.stuck { border-bottom: none; }
		
 		#header.stuck .sf-menu &gt; li &gt; a,
		#header.stuck .sf-menu &gt; li.dropdown &gt; a { 
			padding: 25px;
			color: #3e3d3d;
		}
		
		#header.stuck .sf-menu &gt; li.current &gt; a,
		#header.stuck .sf-menu &gt; li &gt; a:hover,
		#header.stuck .sf-menu &gt; li.dropdown &gt; a:hover,
		#header.stuck .sf-menu li.sfHover &gt; a { color: #ffffff; }

		#header.stuck .site-header-cart .cart-contents:after { color: #3e3d3d; }
	
		#header.stuck .site-header-cart a.cart-contents .count {
			background-color: #3e3d3d;
			color: #ffffff;
		}
		
		#header.stuck #custom-search-button i { color: #000; }

		#header.stuck .sf-mega { margin-top: 0; }

		#header.stuck .sf-arrows .sf-with-ul:after { margin-top: -6px; }		
	
		#header.stuck #custom-search-button { top: 26px; }
	
	}
	
/* ==========================================================================
   =Content
   ========================================================================== */
   	
	#content { padding-bottom: 60px; }
	
	#content.no-padding { padding: 0; }

/* ==========================================================================
   =Page Header
   ========================================================================== */
   	
	#page-header {
		padding: 200px 0;
		margin-bottom: 80px;
		background: #262626 no-repeat center center; 
	}
	
	#page-header.no-margin-bottom { margin-bottom: 0; }
	
	.page-header-style-2 #page-header { padding: 130px 0; }

	#page-header h1 {
		font-size: 48px;
		color: #ffffff;
		text-align: center;
	}
	
	.page-header-style-2 #page-header h1 { 
		text-align: left;
		font-family: 'Source Sans Pro', sans-serif;
		font-weight: 700;
	}
	
	#page-header h1 span { 
		position: relative; 
		display: inline-block;
		padding-bottom: 35px;
	}
	
	#page-header h1 span:before {
		position: absolute;
		bottom: 0;
		left: 50%;
		content: "";
		width: 50px;
		height: 4px;
		background-color: #D2972B;
		-webkit-transform: translateX(-50%);
			-ms-transform: translateX(-50%);
				transform: translateX(-50%);
	}
	
	.page-header-style-2 #page-header h1 span:before {
		left: 0;
		-webkit-transform: translateX(0);
			-ms-transform: translateX(0);
				transform: translateX(0);
	}

	@media (max-width: 767px) {
		
		#page-header h1 { font-size: 28px; }
		
	}

/* ==========================================================================
   =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: 40px 0;
		margin-bottom: 40px;
		background-color: #f3f3f3;
		background-attachment: scroll;
		background-repeat: no-repeat; /* 1 */ 
		background-position: 50% 0;	
		background-size: cover;
	}

	.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%;
	}
	
	.yt-player { display: none; }
	
	/**
 	 *
	 * 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; }
	
	@media (max-width: 767px) {

		.fullwidth-section {
			-webkit-background-size: cover;
					background-size: cover;		
		}
		
	}
	
/* ==========================================================================
   =Footer Top
   ========================================================================== */

	#footer-top { 
		color: #ffffff;
		background-color: #D2972B;
	}
	
	#footer-top a { color: #ffffff; }
	
	#footer-top .btn { border-color: #ffffff; }

	#footer-top-widget-area-1 {}
	#footer-top-widget-area-2 {}
	#footer-top-widget-area-3 {}
	#footer-top-widget-area-4 {}
   
/* ==========================================================================
   =Footer
   ========================================================================== */		
	
	#footer { 
		color: #ffffff;
		background-color: #333333;
		background-image: url('../../content/backgrounds/1920x1300-1.jpg');
	}
	
	#footer a { color: #ffffff; }
	
	#footer a:hover { color: #D2972B; }

	#footer-widget-area-1 {}
	#footer-widget-area-2 {}
	#footer-widget-area-3 {}
	#footer-widget-area-4 {}
	
/* ==========================================================================
   =Footer Bottom
   ========================================================================== */	
  
	#footer-bottom { 
		color: #ffffff;
		background-color: #262626;	
	}
	
	#footer-bottom a { color: #ffffff; }
	
	#footer-bottom a:hover { color: #D2972B; }
	
	#footer-bottom-widget-area-1 {}
	#footer-bottom-widget-area-2 {}
	#footer-bottom-widget-area-3 {}
	#footer-bottom-widget-area-4 {}
	
/* ==========================================================================
   =Back to top
   ========================================================================== */

	#back-to-top {
		position: fixed;
		z-index: 1010;
		right: -40px;
		bottom: 20px;
		width: 40px;
		height: 40px;
		background-color: #111;
		color: #fafafa;
		font-size: 30px;
		line-height: 40px;
		text-align: center;					
		opacity: 0.5;
		cursor: pointer;
		-webkit-transition: all 0.4s ease 0s;
				transition: all 0.4s ease 0s;
	}
	
	#back-to-top i {
		font-size: 14px;
		line-height: 40px;
		font-weight: normal;
		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); }
	#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;
	}</pre></body></html>