@charset "utf-8";
/* CSS Document */
/*===========================================================================================================*/
/*=========================================== GENERAL SETTINGS ==============================================*/
/*===========================================================================================================*/
body{
	margin:0;
	padding:0;
	font-size: 10px;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	font-family: 'Roboto Condensed', sans-serif;
}
.slabo {font-family: 'Slabo 27px', serif;}
.back-to-top{display:none;padding-top:12px;text-align:center;position:fixed;z-index:5;bottom:45px;right:25px;font-size:22px;color:#b0b0b0;line-height:52px;width:50px;height:50px;border:solid 2px #e8e8e8;border-radius:50%;-webkit-border-radius:50%;-moz-border-radius:50%;-o-border-radius:50%;background-color:transparent;}
.back-to-top .fa{display:block;}
.back-to-top:focus{color:#b0b0b0;border-color:#e8e8e8;background-color:transparent;}
.back-to-top:hover{color:#b0b0b0;border-color:#e8e8e8;background-color:#e8e8e8;}
strong.stronger {font-weight: 700}
.loader {
	position: fixed;
	top: 0;
	z-index: 9999999999999;
	width: 100%;
	height: 100%;
	background-color: #081636;
	background-image:url(../img/loader.gif);
	background-position: center;
	background-repeat: no-repeat;
	display: block;
}
* {
	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, .section-white {
	font-size: 16px;
    line-height: 20px;
    color: #5b5b5b;
    font-weight: 400;
}
p {
	margin: 0 0 25px;
}
ul, ol {
	margin-bottom: 25px;
}
li {
	font-size: 16px;
    line-height: 20px;
    color: #5b5b5b;
    font-weight: 400;
}
td, th {
	font-size: 16px;
    line-height: 20px;
    color: #5b5b5b;
    font-weight: 400;
}
a {
	color:#b91f27;
	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 {
  color: #791419;
  text-decoration: none;
}
a img{
	border:none;
}
img {
	max-width: 100%;
	width: auto;
}
h1, .h1-style {
	font-family: 'Slabo 27px', serif;
	font-size: 35px;
	line-height: 1.15em;
	color: #5b5b5b;
	text-transform: uppercase;
    font-weight: 400;
	margin: 25px 0;
}
h2 {
	font-family: 'Slabo 27px', serif;
	font-size: 30px;
	line-height: 1.15em;
	color: #5b5b5b;
	text-transform: uppercase;
    font-weight: 400;
	margin: 25px 0;
}
h3 {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 24px;
	line-height: 1.15em;
	color: #5b5b5b;
	text-transform: uppercase;
    font-weight: 600;
	margin: 25px 0;
}
h4 {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 18px;
	line-height: 1.15em;
	color: #5b5b5b;
	text-transform: uppercase;
	font-weight: 600;
    margin: 25px 0;
}
/*===========================================================================================================*/
/*=========================================== TOP ===========================================================*/
/*===========================================================================================================*/	
.menu {
	position: fixed;
	z-index: 99;
	top: 0;
	right: 0;
	left: 0;
	padding: 12px 5px;
	background-color: #00142d;
	border-bottom: solid 1px #00142d;
	
	-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>.container {
	width: 100%!important;
}
.menu.actived {
	
}
.menu.behaved {
	border: none;
	background-color: transparent;
}
.customize-support .menu {top: 30px;}
.menu .logo-nav {
	display: inline-block;
    max-width: 301px;
    margin: 24px 0;
	-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 .logo-nav {
	max-width: 200px;
    margin: 10px 0;
}
.menu.behaved .logo-nav {
	display: none;
}
.menu .navigation {
	color: #fff;
    font-size: 2.6em;
    font-weight: 300;
    line-height: 1em;
    text-transform: capitalize;
    position: relative;
    padding-left: 18px;
    text-decoration: none;
    float: right;
    margin-top: 35px;
	-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 .navigation {
	margin-top: 20px;
}
.menu .navigation:hover,
.menu .navigation:focus {
	text-decoration: none;
}
.menu .navigation .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 .navigation span:first-child {
	top: 3px;
}
.menu .navigation span:nth-child(2) {
	top: 11px;
}
.menu .navigation span:nth-child(3) {
	top: 19px;
}
.menu .navigation:hover span:first-child {
	top: 0px;
}
.menu .navigation:hover span:nth-child(3) {
	top: 22px;
}
.menu .navigation.behaved span:first-child {
	top: 10px;
	transform: rotate(135deg);
}
.menu .navigation.behaved span:nth-child(2) {
	opacity: 0;
}
.menu .navigation.behaved span:nth-child(3) {
	top: 10px;
	transform: rotate(-135deg);
}
/*
.menu.behaved .navigation,
.menu.actived .navigation {
	color: #fff;
}
.menu.behaved a .bar,
.menu.actived a .bar {
	background-color: #fff;
}*/

.menu ul.list-inline {
	float: right;
	margin: 34px 0 0;
	-webkit-transition: margin 100ms linear;
	-moz-transition: margin 100ms linear;
	-ms-transition:  margin 100ms linear;
	-o-transition: margin 100ms linear;
	transition: margin 100ms linear;
}
.menu.actived ul.list-inline {
	margin: 10px 0;
}
.menu ul.list-inline > li > ul {
	display: none;
	background-color: #0b1523;
    border-color: #0b1523;
	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: 200px;
	margin-top: 0!important;
}
.menu ul.list-inline > li > ul > li {
	float: none;
	margin: 0;
    width: auto;
    padding: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
	letter-spacing: 1px;
    text-transform: uppercase;
}
.menu ul.list-inline > li > ul > li a {
	display: block;
	padding: 4px 10px;
	color: #bcc5d6;
}
.menu ul.list-inline > li > ul > li a:focus {
	color: #bcc5d6;
	text-decoration: none;
}
.menu ul.list-inline > li > ul > li a:hover {
	color: #fff;
	background-color: #0e1e33;
}
.menu ul.list-inline li.dad {
	position: relative;
}
.menu ul.list-inline > li {
	position: relative;
    padding: 0 8px;
	margin: 0;
    text-transform: uppercase;
    font-weight: 200;
    font-size: 18px;
}
.menu ul.list-inline > li > a {
	color: #bcc5d6;
	padding: 16px 0;
	opacity: 1;
	transition: color 200ms linear;
	-webkit-transition: color 200ms linear;
	-moz-transition: color 200ms linear;
	-ms-transition: color 200ms linear;
	-o-transition: color 200ms linear;
}
.menu.actived ul.list-inline > li > a {
	padding: 14px 0;
}
.menu ul.list-inline > li > a:hover {
	color: #fff;
}/*
.menu.actived ul.list-inline > li > a {
	color: #fff;
}
.menu.actived ul.list-inline > li > a:hover {
	color: #D1D1D1;
}*/
.menu ul.social-nav {
    position: absolute;
	z-index: 2;
    top: 18px;
    right: 20px;
    margin: 0;
    list-style: none;
}
.menu.actived ul.social-nav {
	top: 8px;
}
.menu ul.social-nav li {
    display: inline-block;
    padding: 0 10px;
    font-size: 27px;
}
.menu.actived ul.social-nav li {
	font-size: 21px;
}

.menu ul.social-nav li a,
.menu ul.social-nav li a:focus {color: #bcc5d6;}
.menu ul.social-nav li a:hover {color: #fff;}

.navigation-overlay {
	display: none;
	position: fixed;
	z-index: 4;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: rgba(23, 23, 23, 0.95);
	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;
	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 {
    background-color: #fff;
	position: relative;
	-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: 1300px) {
	.menu ul.list-inline > li {
		padding: 0 4px;
		font-size: 16px;
	}
}
@media screen and (max-width: 1200px) {
	.menu .logo-nav {
		max-width: 256px;
		margin: 18px 0;
	}
	/*.menu.actived .logo-nav {
		max-width: 160px;
    	margin: 5px 0;
	}*/
	.menu ul.list-inline {
		margin: 23px 0 0;
	}
	/*.menu.actived ul.list-inline {
		margin: 1px 0 0;
	}*/
	.menu ul.list-inline > li {
		font-size: 15px;
	}
}
@media screen and (min-width: 991px) {
	/*============== 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: 991px) {
	/*============== TOP ================*/
	.menu ul.list-inline,
	.menu ul.social-nav {
		display: none;
	}
}
@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 .navigation .txt {
		display: none;
	}
	.menu .logo-nav {
		max-width: 191px;
		margin: 8px 0;
	}
	.menu.actived .logo-nav {
		max-width: 151px;
		margin: 4px 0;
	}
	.navigation-overlay {
		padding-top: 90px;
	}
	.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: 17px;
	}
	.menu.actived .navigation {
		margin-top: 9px;
	}
}
@media screen and (max-width: 600px) {
	.customize-support .menu {top: 46px;}
	.customize-support .menu.actived {top: 0;}
}

/*=========================================== BANNER TOP ======================================================*/
.banner-top {
	padding-top: 350px;
	padding-bottom: 45px;
	overflow: hidden;
	position: relative;
}
.banner-top  span.parallax {
	content: '';
	display: block;
	position: absolute;
	left: 0; bottom: 0; right: 0; height: 180%;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}
.banner-top .banner-video-iframe{width:104%;position:absolute;z-index:2;left:50%;top:50%;transform:translate(-50%, -50%);-webkit-transform:translate(-50%, -50%);-moz-transform:translate(-50%, -50%);-o-transform:translate(-50%, -50%);}
.banner-top .banner-video-iframe .iframe-holder{width:104%;padding-bottom:56.25%;position:relative;}
.banner-top .banner-video-iframe .iframe-holder iframe{position:absolute;left:0;right:0;width:100%;height:100%;}
.banner-top .search-wrapper {
	position: relative;
	display: block;
	max-width: 680px;
	opacity: 0;
    filter: alpha(opacity=0);
	top: 50%;
	left: 50%;
	margin-top: -126px;
	margin-left: -340px;
	padding: 0 15px;
	top: 40px;
}
.banner-top.ready .search-wrapper {
	-webkit-transition: opacity .8s ease 0s, top .4s ease 0s;
    -moz-transition: opacity .8s ease 0s, top .4s ease 0s;
    -o-transition: opacity .8s ease 0s, top .4s ease 0s;
	top: 0;
    opacity: 1;
    filter: alpha(opacity=100);
}
.banner-top .search-wrapper form {
	position: relative;
}
.banner-top .search-wrapper form input[type="text"] {
	font-family: 'Slabo 27px', serif;
	padding: 0 105px 0 10px;
	width: 100%;
	display: block;
	height: 76px;
	color: #5b5b5b;
	font-size: 20px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
}
.banner-top .search-wrapper form button[type="submit"] {
	display: block;
	position: absolute;
	top: 0; right: 0;
	background-color:#b91f27;
	color: #fff;
	font-size: 40px;
	border-radius: 0 5px 5px 0;
	-webkit-border-radius: 0 5px 5px 0;
	-moz-border-radius: 0 5px 5px 0;
	-o-border-radius: 0 5px 5px 0;
	border: none;
    padding: 0 28px;
    top: 0;
    bottom: 0;
}
.banner-top .search-wrapper form button[type="submit"]:hover,
.banner-top .search-wrapper form button[type="submit"]:focus {
	background-color:#791419;
}
.banner-top .search-wrapper .btn-layout {
	background-color: #0071ff;
	border-color: #0071ff;
	margin-top: 15px;
	font-size: 20px;
}
.banner-top .search-wrapper .btn-layout:hover,
.banner-top .search-wrapper .btn-layout:focus {
	background-color: #0053BC;
	border-color: #0053BC;
}

@media screen and (max-width: 768px) {
	.banner-top .banner-video-iframe {display:none;}
	.banner-top {
    	padding-top: 200px;
	}
	.banner-top .search-wrapper {
		max-width: 378px;
		margin-top: -29px;
		margin-left: -189px;
	}
	.banner-top .search-wrapper form input[type="text"] {
		padding: 0 66px 0 10px;
		height: 58px;
		font-size: 14px;
	}
	.banner-top .search-wrapper form button[type="submit"] {
		font-size: 22px;
	    padding: 0 21px;
	}
	.banner-top .search-wrapper .btn-layout {font-size: 16px;}
}
@media screen and (max-width: 400px) {
	.banner-top {
    	padding-top: 150px;
	}
	.banner-top .search-wrapper {
		max-width: 310px;
		margin-left: -155px;
	}
}

/*===========================================================================================================*/
/*=========================================== INTERIOR ======================================================*/
/*===========================================================================================================*/
.section-white {
	background-color: #fff;
    width: 100%;
    padding: 60px 0;
}
.section-white>.container {
	position: relative;
	z-index: 2;
	top: 40px;
	opacity: 0;
    filter: alpha(opacity=0);
}
.section-white.ready>.container {
	top: 0;
	opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transition: opacity .8s ease 0s, top .4s ease 0s;
    -moz-transition: opacity .8s ease 0s, top .4s ease 0s;
    -o-transition: opacity .8s ease 0s, top .4s ease 0s;
    -webkit-backface-visibility: hidden;
}
.event-date {
	display: block;
	color: #021f43;
	font-size: 24px;
	font-weight: 200;
	text-transform: uppercase;
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 350px) {
}