@charset "utf-8";
/* CSS Document */
/*===========================================================================================================*/
/*=========================================== GENERAL SETTINGS ==============================================*/
/*===========================================================================================================*/
body{
	margin:0;
	padding:0;
	font-size: 10px;
	background-color:#131313;
	background-image: url(../img/footer-bnn.jpg);
	background-size: 6px;
	-webkit-font-smoothing: antialiased;
	font-family: 'Lato', sans-serif;
}
.modal {
	top: 0!important;
	padding-top: 40px;
}
* {
	margin: 0;
}
.break-word {
	-webkit-word-wrap: break-word;
	-moz-word-wrap: break-word;
	-ms-word-wrap: break-word;
	-o-word-wrap: break-word;
	word-wrap: break-word;
}
p {
	line-height: 1.3em;
	font-size: 1.6em;
	color: #494949;
	margin-bottom: 18px;
}
ul, ol {
	margin-bottom: 18px;
}
li {
	line-height: 26px;
	font-size: 16px;
	color: #494949;
}
td, th {
	line-height: 26px;
	font-size: 16px;
	color: #494949;
}
a {
	color:#b13339;
	text-decoration: none;
	display: inline-block;
	
	-o-transition:color .2s ease-out, background .2s ease-in;
	-ms-transition:color .2s ease-out, background .2s ease-in;
	-moz-transition:color .2s ease-out, background .2s ease-in;
	-webkit-transition:color .2s ease-out, background .2s ease-in;
	/* ...and now for the proper property */
	transition:color .2s ease-out, background .2s ease-in;	
}
a:hover,
a:focus,
a:active {
  color: #661F22;
  text-decoration: none;
  outline: none!important;
}
a img{
	border:none;
}
img {
	max-width: 100%;
	width: auto;
}
h1, .heading {
	text-align: center;
	font-size: 2em;
	line-height: 1.2em;
	font-weight: 900;
	color: #000;
	padding-bottom: 1px;
	text-transform: uppercase;
	margin-top: 35px;
	margin-bottom: 35px;
}
h2 {
	font-size: 2em;
	line-height: 1.2em;
	font-weight: 900;
	color: #000;
	text-transform: uppercase;
	margin-top: 18px;
	margin-bottom: 18px;
}
h3 {
	font-size: 1.8em;
	line-height: 1.2em;
	font-weight: 900;
	color: #000;
	text-transform: uppercase;
	margin-top: 18px;
	margin-bottom: 18px;
}
h4 {
	font-size: 1.6em;
	line-height: 1.3em;
	font-weight: 900;
	color: #000;
	text-transform: uppercase;
	margin-top: 18px;
	margin-bottom: 18px;
}
/*===========================================================================================================*/
/*=========================================== TOP ===========================================================*/
/*===========================================================================================================*/	
.menu {
	position: fixed;
	z-index: 5;
	top: 0;
	right: 0;
	left: 0;
	padding: 10px 8px;
	background-color: #347871;
	border-bottom: solid 6px #5f9d98;
	
	-webkit-transition: all 100ms linear;
	-moz-transition: all 100ms linear;
	-ms-transition:  all 100ms linear;
	-o-transition: all 100ms linear;
	transition: all 100ms linear;
}
.menu.actived {
	
}
.menu.behaved {
	border: none;
	background-color: transparent!important;
}
.customize-support .menu {top: 30px;}
.menu .logo-nav {
	max-width: 243px;
	-webkit-transition: max-width 100ms linear;
	-moz-transition: max-width 100ms linear;
	-ms-transition:  max-width 100ms linear;
	-o-transition: max-width 100ms linear;
	transition: max-width 100ms linear;
}
.menu.actived .logo-nav {
	max-width: 200px;
}
.menu.behaved .logo-nav {
	display: none;
}
.menu > .navigation {
	color: #fff;
    font-size: 2.35em;
    font-weight: 900;
    line-height: 1em;
    text-transform: uppercase;
    position: relative;
    padding-left: 22px;
    margin-top: 15px;
    text-decoration: none;
    float: right;
	-webkit-transition: all 100ms linear;
	-moz-transition: all 100ms linear;
	-ms-transition:  all 100ms linear;
	-o-transition: all 100ms linear;
	transition: all 100ms linear;
}
.menu > .navigation:hover,
.menu > .navigation:focus {
	text-decoration: none;
}
.menu > a > .bar {
	position: absolute;
	left: 0;
	width: 25px;
	height: 3px;
	background-color: #fff;
	
	-webkit-transition: top 100ms linear, transform 150ms linear, opacity 100ms linear;
	-moz-transition: top 100ms linear, transform 150ms linear, opacity 100ms linear;
	-ms-transition: top 100ms linear, transform 150ms linear, opacity 100ms linear;
	-o-transition: top 100ms linear, transform 150ms linear, opacity 100ms linear;
	transition: top 100ms linear, transform 150ms linear, opacity 100ms linear;
}
.menu > a > span:first-child {
	top: 3px;
}
.menu > a > span:nth-child(2) {
	top: 11px;
}
.menu > a > span:nth-child(3) {
	top: 19px;
}
.menu > a:hover > span:first-child {
	top: 0px;
}
.menu > a:hover > span:nth-child(3) {
	top: 22px;
}
.menu > a.behaved > span:first-child {
	top: 10px;
	transform: rotate(135deg);
}
.menu > a.behaved > span:nth-child(2) {
	opacity: 0;
}
.menu > a.behaved > span:nth-child(3) {
	top: 10px;
	transform: rotate(-135deg);
}
.menu.behaved .navigation {
	color: #fff;
}
.menu.actived .navigation {
	color: #fff;
}
.menu.behaved a .bar {
	color: #fff;
}
.menu.actived a .bar {
	background-color: #fff;
}

.menu ul.list-inline {
	margin: 6px 0 0;
	padding: 18px 5px;
	text-align: left;
	float: right;
	-webkit-transition: all 100ms linear;
	-moz-transition: all 100ms linear;
	-ms-transition:  all 100ms linear;
	-o-transition: all 100ms linear;
	transition: all 100ms linear;
}
.menu.actived ul.list-inline {
	margin-top: 0;
	padding: 15px 5px;
}
.menu ul.list-inline > li > ul {
	display: none;
	background-color: #2A6660;
	box-shadow: 0 5px 10px rgba(0,0,0,0.10);
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 5;
	padding: 5px 0;
	width: 220px;
	margin-top: 0!important;
}
.menu ul.list-inline > li > ul > li > ul {
	display: none;
	background-color: #2A6660;
	box-shadow: 0 5px 10px rgba(0,0,0,0.10);
	position: absolute;
	top: 0;
	left: 100%;
	right: 0;
	z-index: 5;
	padding: 5px 0;
	width: 220px;
	margin-top: 0!important;
}
.menu ul.list-inline > li ul > li {
	padding: 0;
	position: relative;
	font-size: 13px;
	text-transform: capitalize;
}
.menu ul.list-inline > li > ul > li > ul > li {
	font-size: 11px;
}
.menu ul.list-inline > li ul > li a {
	display: block;
	padding: 5px 10px;
	color: #fff;
}
.menu ul.list-inline > li ul > li a:focus {
	color: #fff;
	text-decoration: none;
}
.menu ul.list-inline > li ul > li:hover>a {
	color: #D7D7D7;
	background-color: #22524D;
}
.menu ul.list-inline > li {
	padding: 0 10px;
	font-weight: 400;
	font-size: 20px;
	text-transform: capitalize;
}
.menu ul.list-inline > li.dad {
	position: relative;
}
.menu ul.list-inline > li > a {
	color: #fff;
}
.menu ul.list-inline > li > a:hover {
	color: #D7D7D7;
}
/*
.menu.actived ul.list-inline > li > a {
	color: #fff;
}
.menu.actived ul.list-inline > li > a:hover {
	color: #D1D1D1;
}*/

.navigation-overlay {
	display: none;
	position: fixed;
	z-index: 4;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.92);
	padding-top: 104px;
	padding-bottom: 70px;
	overflow-x: hidden;
	overflow-y: auto;
}
.navigation-overlay > ul {
	opacity: 0;
	margin: 0;
	-webkit-transition: transform 500ms cubic-bezier(0.77, 0, 0.175, 1), opacity 400ms linear;
	-moz-transition: transform 500ms cubic-bezier(0.77, 0, 0.175, 1), opacity 400ms linear;
	-ms-transition: transform 500ms cubic-bezier(0.77, 0, 0.175, 1), opacity 400ms linear;
	-o-transition: transform 500ms cubic-bezier(0.77, 0, 0.175, 1), opacity 400ms linear;
	transition: transform 500ms cubic-bezier(0.77, 0, 0.175, 1), opacity 400ms linear;
	
	-webkit-transform-origin: 50% 50%;
	-moz-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	-o-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	
	-webkit-transform: scale(2);
	-moz-transform: scale(2);
	-ms-transform: scale(2);
	-o-transform: scale(2);
	transform: scale(2);
}
.navigation-overlay.behaved > ul {
	-webkit-transition-delay: 200ms;
	-moz-transition-delay: 200ms;
	-ms-transition-delay: 200ms;
	-o-transition-delay: 200ms;
	transition-delay: 200ms;
	
	opacity: 1;
	
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
.navigation-overlay > ul > li {
	text-align: center;
}
.navigation-overlay > ul > li > a {
	color: #fff;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.1em;
	margin-top: 15px;
	margin-bottom: 15px;
	text-transform: uppercase;
	border-bottom: solid 3px transparent;
	
	-webkit-transition: border-bottom 150ms linear;
	-moz-transition: border-bottom 150ms linear;
	-ms-transition: border-bottom 150ms linear;
	-o-transition: border-bottom 150ms linear;
	transition: border-bottom 150ms linear;
}
.navigation-overlay > ul > li > a:focus {
	color: #fff;
	text-decoration: none;
}
.navigation-overlay > ul > li > a:hover,
.navigation-overlay > ul > li > a.actived {
	text-decoration: none;
	color: #f1f1f1;
	border-bottom: solid 3px #f1f1f1;
}
.navigation-overlay > ul > li > ul {
	background-color: rgba(0,0,0,0.35);
	display: none;
	padding: 15px 0;
}
.navigation-overlay > ul > li > ul > li {
	padding: 5px 0;
}
.navigation-overlay > ul > li > ul > li a {
	color: #fff;
	font-size: 1.65em;
	text-transform: uppercase;
}
.navigation-overlay > ul > li > ul > li a:focus {
	color: #fff;
	text-decoration: none;
}

body.behaved {
	overflow: hidden;
	background-color: #fff;
}
.page {
	position: relative;
	background-color: #E5E5E5;
	-webkit-transition: transform 500ms cubic-bezier(0.77, 0, 0.175, 1);
	-moz-transition: transform 500ms cubic-bezier(0.77, 0, 0.175, 1);
	-ms-transition: transform 500ms cubic-bezier(0.77, 0, 0.175, 1);
	-o-transition: transform 500ms cubic-bezier(0.77, 0, 0.175, 1);
	transition: transform 500ms cubic-bezier(0.77, 0, 0.175, 1);
	
	-webkit-transform-origin: 50% 50%;
	-moz-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	-o-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}
.page.behaved {
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	-o-transform: scale(0.9);
	transform: scale(0.9);
}

@media screen and (max-width: 1200px) {
	.menu ul.list-inline > li {padding: 0 6px}
}

@media screen and (min-width: 1060px) {
	/*============== TOP ================*/
	.menu > .navigation,
	.navigation-overlay {
		display: none !important;
	}
	body.behaved {
		overflow: auto!important;
		background: #131313!important;
	}
	.page.behaved {
		-webkit-transform: scale(1)!important;
		-moz-transform: scale(1)!important;
		-ms-transform: scale(1)!important;
		-o-transform: scale(1)!important;
		transform: scale(1)!important;
	}
}
@media screen and (max-width: 1060px) {
	/*============== TOP ================*/
	.menu.actived > .navigation {
		margin-top: 12px;
	}
	.menu ul.list-inline {
		display: none;
	}
	.menu .logo-nav {
		max-width: 180px;
	}
	.menu.actived .logo-nav {
		max-width: 160px;
	}
}
@media screen and (max-width: 850px) {
	
}
@media screen and (max-width: 768px) {
	/*============== TOP ================*/
	.navigation-overlay > ul > li > a {
		font-size: 22px;
	}
	.page {
		-webkit-transform-origin: 50% 10%;
		-moz-transform-origin: 50% 10%;
		-ms-transform-origin: 50% 10%;
		-o-transform-origin: 50% 10%;
		transform-origin: 50% 10%;
	}
	
}
@media screen and (max-width: 650px) {
	/*============== TOP NAV ================*/
	.menu > a > .txt {
		display: none;
	}
	.menu .logo-nav {
		max-width: 140px;
	}
	.menu.actived .logo-nav {
		max-width: 120px;
	}
	.navigation-overlay {
		padding-top: 70px;
	}
	.navigation-overlay > ul > li > a {
		font-size: 18px;
		margin-top: 10px;
		margin-bottom: 10px;
	}
	.navigation-overlay > ul > li > ul > li a {
		font-size: 12px;
	}
	.menu .navigation {
		margin-top: 10px;
	}
	.menu.actived .navigation {
		margin-top: 7px;
	}
}
@media screen and (max-width: 600px) {
	.customize-support .menu {top: 46px;}
	.customize-support .menu.actived {top: 0;}
}

/*===========================================================================================================*/
/*=========================================== INTERIOR ======================================================*/
/*===========================================================================================================*/
.interior-banner {
	position: relative;
	overflow: hidden;
	min-height: 400px;
}
.interior-banner span.background-img {
	display: block;
	position: absolute;
	background-position: center bottom;
	background-size: cover;
	left: -15px;top:0 ;right: -15px;bottom: -15px;
	-webkit-filter: blur(15px);
	-moz-filter: blur(15px);
	-o-filter: blur(15px);
	-ms-filter: blur(15px);
	filter: blur(15px);
}
.interior-banner .page-heading {
	position: absolute;
	z-index: 2;
	left: 15px; right: 15px; top: 62%;
	text-align: center;
	transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
}
.interior-banner .page-heading h1 {
	margin: 0;
	color: #fff;
	font-size: 46px;
}
.interior-banner .page-heading h2 {
	margin: 5px 0 0;
	color: #fff;
	font-size: 23px;
	font-weight: 300;
}
.section-white {
	background-color: #fff;
	padding-bottom: 40px;
	padding-top: 40px;
	position: relative;
    z-index: 2;
}
.event-date {
	display: block;
	color: #b13339;
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
}
@media screen and (max-width: 991px) {
	.interior-banner {
		min-height: 320px;
	}
	.interior-banner .page-heading h1 {
		margin: 0;
		color: #fff;
		font-size: 38px;
	}
	.interior-banner .page-heading h2 {
		font-size: 21px;
	}
}
@media screen and (max-width: 768px) {
	.interior-banner {
		min-height: 280px;
	}
	.interior-banner .page-heading h1 {
		font-size: 32px;
	}
	.interior-banner .page-heading h2 {
		margin: 10px 0 0;
		font-size: 18px;
	}
}