
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Default Styles
2.0 Head Styles
3.0 Main Content
4.0 Footer
5.0 BS Overides
6.0 Navscroll
7.0 Slick Overides
8.0 Magic Placeholder
9.0 Responsive Captcha
10.0 Sticky Nav
11.0 Media Queries
--------------------------------------------------------------*/

/* 
colours 
	
	
		
*/

body 
{
	font-family: 'Raleway', sans-serif;
	color:#2b2e32;
}
p
{
	font-family: 'Raleway', sans-serif;
	color:#2b2e32;
	font-size:14px;
	font-weight:500;
}
p.medium{font-size:16px; font-weight:500;}
p.large{font-size:18px; font-weight:400;}
span.small, p.small{font-size:12px; font-weight:400; color: inherit;}
h1
{
	margin:0;
	font-family: "Times New Roman", Times, serif;
	font-weight:700;
	font-size:48px;
}

h2
{
	margin:0;
	font-family: "Times New Roman", Times, serif;
	font-weight:700;
	font-size:36px;
}
h2.small
{
	font-size:30px;
}
h3
{
	margin:0;
	font-family: "Times New Roman", Times, serif;
	font-weight:700;
	font-size:30px;
}
h3.small{
	font-size:24px;
}
h4
{
	margin:0;
	font-family: 'Raleway', sans-serif;
	font-weight:700;
	font-size:16px;
}
h4.small
{
	font-size:13px;
}
.raleway{font-family: 'Raleway', sans-serif;}
.title-hr{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}
.title-hr span{
	flex-shrink:0;
}
.title-hr span:first-child, .title-hr span:last-child{
	height:1px;
	background-color:#2b2e32;
	display:block;
	width:100%;
	flex-shrink:unset;
}
.title-hr span:first-child{
	margin-right:15px;
}
.title-hr span:last-child{
	margin-left:15px;
}
.times{
	font-family: "Times New Roman", Times, serif;
}
.quote{
	font-size:60px;
	font-weight:700;
	position: relative;
    top: -30px;
	margin:0 40px;
}
.underline{
	text-decoration: underline;
}
.underline:hover, .underline:focus{
	text-decoration: none;
}
a
{
	transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	color:inherit;
	font-family: 'Raleway', sans-serif;

}
a:hover, a:focus
{
	color:inherit;
}
.fix-body
{
	position: fixed;
	width:100%;
}

.header-underline{
	height:1px;
	width:40%;
	margin:20px 0;
	display:inline-block;
	background-color:#d4b467;
}
.header-underline.black{
	width:60%;
	background-color:#2b2e32;
}
.header-underline.full{
	width:100% !important;
}
/*--------------------------------------------------------------
1.0 Default Styles
--------------------------------------------------------------*/

/** New flex **/
.row.flexheight {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	flex-wrap: wrap;
}
.row.flexheight > [class*='col-'] {
	display: flex;
	flex-direction: column;
}

.flex-center-container
{
    width:100%;
    height:0;
    padding-bottom:100%;
    position:relative;
}
.flex-center {
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-inline-box;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: absolute;
    width: 100%;
}
.flex-bottom {
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-inline-box;
    display: flex;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    position: absolute;
    width: 100%;
}
.flex-left {
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-inline-box;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    justify-content: center;
	-ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    position: absolute;
}

.flex-default{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.flex-col{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
 	-ms-flex-direction:column;
 	flex-direction:column;
}
.flex-row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
 	-ms-flex-direction:row;
 	flex-direction:row;
}
.flex-in{
	-ms-flex: 1;  
	-webkit-box-flex: 1;  
	flex: 1;
}
.flex-wrap{
	-webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.margin-top-auto{
	margin-top:auto;
}

.flex-justify{
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.flex-justify-between{
	-webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
}
.flex-center-h {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}

.flex-center-full{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex: 1;  
	-webkit-box-flex: 1;  
	flex: 1;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
 	-ms-flex-direction:column;
 	flex-direction:column;
}
.social-icon{
	transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	margin-left:15px;
	display: inline-block;
    border-radius: 50%;
    overflow: hidden;
	vertical-align: middle;
	height:25px;
	width:25px;
	background-size:contain;
	background-repeat:no-repeat;
}
.social-icon:hover{
    border-radius: 5px;
}
.social-icon:last-child{
	margin-right:0;
}

.social-icon.facebook{
	background-color:#4266b3;
	background-image:url('/images/facebook.svg');
}
.social-icon.twitter{
	background-color:#4e94da;
	background-image:url('/images/twitter.svg');
}

textarea{ resize:vertical;}
.btn.custom
{
	transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	font-family: 'Raleway', sans-serif;
	font-size:14px;
	font-weight:700;
	background-color: #f4f2f0;
	text-align:left;
	color:#2b2e32;
	border:none;
	padding:14px 25px;
	border-radius:0;
}
.btn.custom:hover, .btn.custom:focus
{
	background-color:#e1dfdd;
	color:#2b2e32;
}
.bg-light-grey .btn.custom
{
	border:1px solid #2b2e32;
}
.btn.custom.border{
	background-color:#ffffff;
	border:1px solid #2b2e32;
}
.btn.custom.border:hover, .btn.custom.border:focus{
	background-color:#ffffff;
	border:1px solid #2b2e32;
}
.btn.custom.alt
{
	background-color:#931c1c;
	color:#ffffff;
}
.btn.custom.alt:hover, .btn.custom.alt:focus
{	
	background-color:#811414;
	color:#ffffff;
}
.btn.custom.white
{
	background-color:#ffffff;
}
.btn.custom.white:hover, .btn.custom.white:focus
{	
	background-color:#f4f2f0;
}
.btn.custom.gold
{
	background-color:#d4b467;
	color:#ffffff;
	border:none;
}
.btn.custom.gold:hover, .btn.custom.gold:focus
{	
	background-color:#c2a254;
	color:#ffffff;
}
.btn.custom.red{
	background-color:#931c1c;
	color:#ffffff;
	border:none;
}
.btn.custom.red:hover, .btn.custom.red:focus
{	
	background-color:#b92929;
	color:#ffffff;
}
.btn.custom.facebook
{
	background-color:#4266b3;
	color:#ffffff;
	line-height: 25px;
	font-family: "Times New Roman", Times, serif;
	font-weight:700;
	font-size:18px;
}
.btn.custom.facebook:hover, .btn.custom.facebook:focus
{	
	background-color:#31549d;
	color:#ffffff;
}
.btn.custom.twitter
{
	background-color:#4e94da;
	color:#ffffff;
	line-height: 25px;
	font-family: "Times New Roman", Times, serif;
	font-weight:700;
	font-size:18px;
}
.btn.custom.twitter:hover, .btn.custom.twitter:focus
{	
	background-color:#397fc6;
	color:#ffffff;
}
.btn.custom.tag{
	color: #931c1c;
    font-size: 12px;
    padding: 5px 7px;
	margin-right:5px;
	margin-bottom:5px;
}
.btn.custom.small{
	font-size: 12px;
    padding: 10px;
}
	
.slick-container .btn.custom{
	border:1px solid #ffffff;
	background-color: rgba(0,0,0,0.2);
	color:#ffffff;
	padding-left: 65px;
    padding-right: 65px;
}
.slick-container .btn.custom:hover, .slick-container .btn.custom:focus{
	border:1px solid #ffffff;
	background-color: rgba(255,255,255,0.4);
	color:#ffffff;
}
.arrow-btn{
	height:25px;
	width:25px;
	background-position:center;
	background-repeat:no-repeat;
	background-color:#ffffff;
	background-size: 30%;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
}
.arrow-btn.facebook{
	background-image:url('/images/chevron-right-fb.svg');
}
.arrow-btn.twitter{
	background-image:url('/images/chevron-right-twitter.svg');
}
.arrow-btn.red{
	background-image:url('/images/chevron-right-small.svg');
	background-color:#931c1c;
}
.arrow-btn.grey{
	background-image:url('/images/chevron-right-small.svg');
	background-color:#3a3226;
	height:48px;
	width:48px;
}
.arrow-btn.white{
	background-image:url('/images/chevron-right-red.svg');
	background-color:#ffffff;
	height:48px;
	width:48px;
}
.default-bg-image
{
	width:100%;
	height:0;
	padding-bottom:100%;
	position:relative;
	background-position: center;
	background-repeat:no-repeat; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.default-bg-image.hero
{
	padding-bottom:30%;
}
.default-bg-image.standard
{
	padding-bottom:15%;
}
.default-bg-image.landscape
{
	padding-bottom:50%;
}
.default-bg-image.hero h1
{
	font-size:48px;
}
.bg-image{
	position:relative;
	background-position: center;
	background-repeat:no-repeat; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.img-mask{
	height:0;
	padding-top:50%;
	overflow:hidden;
	position:relative;
}
.img-mask img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

a.image-border{
	display:block;
}
.image-border{
	padding:5px;
	border:1px solid #3b67ae;
}
.image-border .default-bg-image:before{
	transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	content:'';
	position: absolute;
    bottom: 0;
    width: 100%;
	background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(59,103,174,0.8) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(59,103,174,0.8) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(59,103,174,0.8) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	    height: 80%;
    left: 0;
}
a.image-border:hover .default-bg-image:before{
	height: 40%;
}
.image-text{
	font-size: 30px;
    color: #ffffff;
    font-weight: 600;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 55px 20px;
}

.padding-remove{padding:0;}
.margin-remove{margin:0;}

.margin-top-large{margin-top:100px;}
.margin-top-medium{margin-top:50px;}
.margin-top-small{margin-top:25px;}
.margin-top-xsmall{margin-top:15px;}
.margin-top-xxsmall{margin-top:7px;}
.margin-bottom-xxsmall{margin-bottom:7px;}
.margin-bottom-xsmall{margin-bottom:15px;}
.margin-bottom-small{margin-bottom:25px;}
.margin-bottom-medium{margin-bottom:50px;}
.margin-bottom-large{margin-bottom:100px;}
.padding-bottom-large{padding-bottom:100px;}
.padding-bottom-medium{padding-bottom:50px;}
.padding-bottom-small{padding-bottom:25px;}
.padding-top-large{padding-top:100px;}
.padding-top-medium{padding-top:50px;}
.padding-top-small{padding-top:25px;}

.padding-xsmall{padding:15px;}
.padding-small{padding:25px;}
.padding-medium{padding:50px;}
.padding-large{padding:100px;}

.margin-left-small{
	margin-left:25px;
}
.margin-right-small{
	margin-right:25px;
}

.red		{color:#901b1b;}
.gold		{color:#d4b467;}
.light-grey	{color:#f4f2f0;}
.white		{color:#ffffff;}

.bg-red		{background-color:#901b1b;}
.bg-gold		{background-color:#d4b467;}
.bg-light-grey	{background-color:#f4f2f0;}

.bg-red p, .bg-red h2, .bg-red h3{color:#ffffff;}
.underline{	text-decoration:underline;}
.underline:hover, .underline:focus{	text-decoration: none;}

.border-light-grey{
	border:10px solid #f4f2f0;
}
.border-top-black{
	border-top:1px solid #3a3226;
}
.border-white{
	border:10px solid #ffffff;
}
/*default styles end*/

/*--------------------------------------------------------------
2.0 Head Styles
--------------------------------------------------------------*/
.buttons
{
	display:none;
	/* width:100%; */
	margin:0;
	background-color: #931c1c;
	position: absolute;
	z-index:21;
	text-align:left;
}

.buttons button
{
	margin:0;
	background-color: transparent;
}
.buttons button:hover
{
	background-color: #811414;
}
nav.menu
{
	background-color: #e6e4e2;
	overflow:scroll;
}
nav.menu ul {
    padding: 60px 0 0 0;
	width:100%;
}
nav.menu ul .dropdown-menu
{
	width:100%;
	border-radius:0;
	padding:0;
}
nav.menu ul .dropdown-menu a
{
	color:#000000;
}
nav.slide-menu-left button.close-menu
{
	width:100%;
	background-color:#6a0f0f;
	font-size:22px;
	margin:0;
}
nav.slide-menu-left li
{
	border:none;
}
nav.slide-menu-left a
{
	font-size: 16px;
	padding: 10px;
	letter-spacing:2px;
	text-transform: uppercase;
	color: #2b2e32;
}
nav.slide-menu-left a:hover
{
	text-decoration:none;
	background-color: #d4b467;
	color: #ffffff;
}


#nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
  width: 40px;
  height: 25px;
  position: relative;
  margin: 5px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon1 span, #nav-icon3 span, #nav-icon4 span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #ffffff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 10px;
}

#nav-icon1 span:nth-child(3) {
  top: 20px;
}

#nav-icon1.open span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
nav.slide-menu-left, nav.push-menu-left {
    left: -100%;
	width: 100%;
}

.mobile-logo{
	position: relative;
    vertical-align: super;
    display: inline-block;
}
.mobile-logo img{
	height: 35px;
    vertical-align: sub;
    margin-left: 10px;
}
.header-logo h1{
	font-size:30px;
	display:inline-block;
	margin-left:15px;
}
.header .btn.custom{
	text-align:center;
	border-radius:0;
	font-family: "Times New Roman", Times, serif;
	padding-top:28px;
	padding-bottom:8px;
}
.header .logged-in .btn.custom{
	padding: 10px 5px;
	font-size:12px;
}
.header .btn.custom:first-child{
	border-right:4px solid #ffffff;
}
.header .btn.custom:last-child{
	border-left:4px solid #ffffff;
}
.header .form-control{
	border:none;
	font-style:italic;
	font-size:16px;
	font-family: "Times New Roman", Times, serif;
	border-bottom:1px solid #2b2e32;
	box-shadow:none;
	 padding: 12px 20px;
}

.header .magic-placeholder .form-group span.placeholder{
	font-style:italic;
	font-size:16px;
	font-family: "Times New Roman", Times, serif;
	padding-left:20px;

}
.header .input-group-btn .btn.custom{
	padding:0;
	font-size:40px;
	background-color: transparent;
}
.hero-gradient:before{
	content:'';
	position: absolute;
    height: 100%;
    width: 55%;
	background: -moz-linear-gradient(left, rgba(58,50,38,1) 40%, rgba(182,129,239,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(58,50,38,1) 40%,rgba(182,129,239,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(58,50,38,1) 40%,rgba(182,129,239,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.logged-in .glyphicon{font-size:26px;}
/* head styles end */

/*--------------------------------------------------------------
3.0 Main Content
--------------------------------------------------------------*/
.quicklink .flex-center-full{
	transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	height:100%;
	overflow:hidden;
	-webkit-box-shadow:inset 0 0 85px 0 rgba(0,0,0,0.1);
	box-shadow:inset 0 0 85px 0 rgba(0,0,0,0.1);
}
.quicklink .flex-center-full{
	border-right:3px solid #ffffff;
	border-left:3px solid #ffffff;
}
.quicklink:first-child .flex-center-full{
	border-left: none;
}
.quicklink:last-child .flex-center-full{
	border-right: none;
}

.quicklink .flex-center-full:hover, .quicklink .flex-center-full:focus{
	height:120%;
	text-decoration:none;
	padding-top:15px;
	padding-bottom:15px;
}
.arrow-container{
	height:0;
	transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
}
.quicklink .flex-center-full:hover .arrow-container{
	height:68px;
	position:relative;
}

.quicklink .flex-center-full .arrow-container .arrow-btn{
	margin-top:80px;
	transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
}
.quicklink .flex-center-full:hover .arrow-container .arrow-btn{
	margin-top:20px;
}
.title-link{ font-size:14px;cursor: pointer; line-height:39px;}
.title-link .arrow-btn.red{
	margin-left:10px;
}
.left-nav a{
	font-weight:500;
}
.left-nav a:hover, .left-nav a:focus{
	text-decoration: none;
	color:#931c1c;
}
.modal h2 span{
	font-size:16px;
	font-weight:700;
	font-family: 'Raleway', sans-serif;
	line-height:39px;
}
.modal .form-group{margin:0;}
.tickets p.large{
	line-height:40px;
	margin:0;
}
.guest-container + .guest-container{
    border-top: 1px solid #efefef;
    margin-top: 25px;
}
.modal .btn-group{width:100%;}
.modal .btn-group .remove-guest-btn{display:none; width:20%;}

.btn.custom.news-btn img{
	margin-right:18px;
}
.btn.custom.news-btn{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	font-size:12px;
	border:1px solid #2b2e32;
	background-color: #ffffff;
	padding:18px;
}
.btn.custom.news-btn:hover, .btn.custom.news-btn:focus{
	background-color: #f4f2f0;
}
.news-btn>span{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
	-ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.news-btn>span span.times{
	font-size: 22px;
    white-space: normal;
    line-height: 22px;
}
.btn.custom.news-btn.right img{
	margin:0;
	margin-left:18px;
}
.gallery-item:hover{
	text-decoration:none;
}
.gallery-item .default-bg-image{
	transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
}
.gallery-item:hover .default-bg-image{
	opacity:0.8;
}
.input-group select{
	padding:14px 15px;
}
.input-group .custom-select:after {
    height: 46px;
}
.hide-validation .form-control-feedback.glyphicon{
	display:none !important;
}
.row.news h3{
	font-size:18px;
}
.left-panel h4{margin-top:15px;}
.left-nav button{
	position: relative;
}
.left-nav button:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(/images/chevron-down.svg);
    background-position: center;
    background-size: 35%;
    background-repeat: no-repeat;
    width: 36px;
    height: 36px;
    pointer-events: none;
    z-index: 2;
}
/* main content end */

/*--------------------------------------------------------------
4.0 Footer
--------------------------------------------------------------*/
.footer{
	border-top:1px solid #3a3226;
}
.footer-nav a{
	padding:0 20px;
}
.footer-nav span{
	color:#d4b467;
}
.footer-nav span:last-child{
	display:none;
}
/* footer end */

/*--------------------------------------------------------------
5.0 BS Overides
--------------------------------------------------------------*/

.form-control
{
	height:auto;
	padding: 9px 13px;
    border-radius: 0;
    border: 1px solid #000000;
	font-weight:500;
}
.form-control.light{
	color:#a03938;
	border:1px solid #f4f2f0;
	font-weight:700;
	box-shadow: none;
}
.captchaContainer input
{
	width:100%;
	height:auto;
	padding:13px;
	border-radius:0;
	border:none;
	margin-bottom:20px;
	background-color:#f1f1f1;
}

.img-responsive
{
	display:inline;
}
.nav
{
	float: none;
	margin:0 auto;
	display:table;
} /* center navigation */
.navbar{
	border:none;
	margin:0;
}
.navbar-nav>li>a {
    color: #3a3226;
    font-size: 16px;
    font-weight: 500;
	position:relative;
	padding:20px;
}
.navbar-nav>li>a:after {
    content:'';
	position:absolute;
	right:0;
	width:1px;
	background-color: #3a3226;
	display: block;
    height: 32%;
    top: 34%;
}
.navbar-nav>li:last-child a:after {
    display:none;
}

.breadcrumb {
    padding: 0;
    margin-bottom: 0;
    list-style: none;
    background-color: transparent;
    border-radius: 0;
    color: #3a3226;
}
.breadcrumb>li+li:before {
    content: "\003e";
    padding: 0 5px;
    color: #3a3226;
	font-weight:700;
}
.breadcrumb>li:first-child a{
	font-weight:700;
}
.bg-image .breadcrumb, .bg-image .breadcrumb>li+li:before {
	color: #ffffff;
}
.modal-header, .modal-footer, .modal-body {
    margin:0;
	border: none;
}
.modal-content {
	padding:50px;
}
hr {
    border-top: 1px solid #000;
	margin-top: 25px;
    margin-bottom: 25px;
}
.radio-inline.small{
	font-size:12px;
}
.radio-inline{
	    font-style: italic;
}

.modal .btn.custom.white.form-btn {
    border: 1px solid #000;
    padding: 9px 15px;
	    transition: none;
    -webkit-transition: none;
    -ms-transition: none;
    -moz-transition: none;
}
.modal .btn.custom.red.form-btn {
    border: 1px solid #000;
    padding: 9px 15px;
	text-align:center;
}
.form-group {
    margin-bottom: 20px;
}
.form-group.margin-remove {
    margin-bottom: 0;
}
.nav-tabs>li {
    float: none;
    margin-bottom: -1px;
    display: inline-block;
}
.nav.nav-tabs{
	width: 100%;
    text-align: center;
	border-bottom:1px solid #d4b467;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus {
    border: 1px solid #d4b467;
    border-bottom-color: transparent;
}
.nav-tabs>li>a{
	font-size:14px;
	font-weight:700;
	background-color:#f4f2f0;
	border-bottom: none;
	border-radius:0;
	margin-right:5px;
	padding:14px 30px;
}
.tab-content{
	padding:60px 0;
}
.modal-backdrop {
    background-color: #adadad;
}

.pagination>li>a, .pagination>li>span {
   
    color: #27282a;
    background-color: #f4f3f1;
    border: 1px solid #f4f3f1;
    font-weight: 700;
}
.pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus {
    color: #27282a;
    background-color: #901b1bab;
    border-color: #f4f3f1;
}
.pagination>.disabled>span, .pagination>.disabled>span:hover, .pagination>.disabled>span:focus, .pagination>.disabled>a, .pagination>.disabled>a:hover, .pagination>.disabled>a:focus {
    border-color: #f4f3f1;
}
.pagination>li>a:hover, .pagination>li>span:hover, .pagination>li>a:focus, .pagination>li>span:focus {
    color: #27282a;
    background-color: transparent;
    border-color: #f4f3f1;
}
/* BS overrides end */


/*--------------------------------------------------------------
6.0 Navscroll
--------------------------------------------------------------*/
.navScroll
{
	display: inline-block;
}
.navScroll img{
	display: block;
    margin: 0 auto 10px;
}
.navScroll a
{
	text-decoration:none;
}

/* navScroll end */

/*--------------------------------------------------------------
7.0 Slick Overides
--------------------------------------------------------------*/
.slick-next:before, .slick-prev:before {
	content: "";
	height:62px;
  	width:34px;
  	display:inline-block;
	background-repeat:no-repeat;
	background-position:center;
	background-size: contain;
}
.slick-prev:before {
  background-image:url('/images/chevron-left.svg');
  -webkit-filter: drop-shadow(0 0 6 qpx rgba(0,0,0,0.4));
  filter: drop-shadow(0 0 6 qpx rgba(0,0,0,0.4));
}
.slick-next:before {
  background-image:url('/images/chevron-right.svg');  
   -webkit-filter: drop-shadow(0 0 6 qpx rgba(0,0,0,0.4));
  filter: drop-shadow(0 0 6 qpx rgba(0,0,0,0.4));
}

.slick-prev, .slick-next
{
	height:62px;
  	width:34px;
	    margin-top: -31px;
}

.slick-prev {
  left: 15%;
}
.news .slick-prev, .event .slick-prev {
    left: 5%;
}
.slick-next {
  right: 15%;
}
.news .slick-next, .event .slick-next {
    right: 5%;
}
.slick-container{
	margin:0;
}
.slick-dots{bottom:60px;}
.slick-dots li button:before{content:'';}
.slick-dots li button {
	border:3px solid #ffffff;
	border-radius:50%;
}
.slick-dots li.slick-active button {
	border:3px solid #ffffff;
	border-radius:50%;
	background-color:#ffffff;
}
.slick-container .hero .flex-bottom{
	padding: 60px;
    width: 50%;
    left: 25%;
}
.slick-container h1{
	font-size:48px;
	font-weight:700;
	color:#ffffff;	
}
.slick-container p{
	font-size:18px;
	font-weight:700;
	color:#ffffff;	
}
/* Slick Overides End */


/*--------------------------------------------------------------
8.0 Magic Placeholder
----------------------------------------------------------------*/
.magic-placeholder .form-group span.placeholder{
	transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	color: #3a3226;
	font-style: italic;
	font-size: 14px;
	position: absolute;
	top: 0;
	line-height: 40px;
    padding-left: 18px;
    pointer-events: none;
    left: 0;
    z-index: 2;
	font-weight:500;
}
.magic-placeholder .form-group span.placeholder.active{
	font-size: 10px;
	line-height:20px;
}
.magic-placeholder .form-group.textarea span.placeholder{
	line-height:20px;
	padding:5px 18px;
}
.magic-placeholder .form-group.textarea span.placeholder.active{
	opacity:0;
	font-size: 14px;
}
.magic-placeholder .form-group.date span.placeholder {
    font-size: 10px;
    line-height: 20px;
}
/*--------------------------------------------------------------
9.0 Responsive Captcha
--------------------------------------------------------------*/

.g-recaptcha{
	position: relative;
    top: -10px;
	overflow:hidden;
}
.g-recaptcha iframe:hover{
	cursor:pointer;
}
.g-recaptcha iframe{
	border: 1px solid #000;
}
.recaptcha-container{
	overflow:hidden; height:52px;
	position: relative;
}
.g-overlay{
	position:absolute;
	left:0;
	display:block;
	width:100%;
	height:52px;
	top:0;
	pointer-events: none;
}
.g-overlay-in{
	left:0;
	display:block;
	width:100%;
	overflow:hidden;
	border: 1px solid #000;
	height:52px;
	top:0;
	position:relative;
	pointer-events: none;
}
.g-overlay-in:after{
	content:"I'm not a robot";
	background-color:#f9f9f9;
	width:100%;
	height:100%;
	position:absolute;
	left:45px;
	pointer-events: none;
	line-height: 48px;
    color: #555;
    font-size: 14px;
	padding-left:10px;
}
/* responsive captcha end */

/*--------------------------------------------------------------
10.0 Sticky Nav
--------------------------------------------------------------*/

.stuck{
	position: fixed;
	width: 100%;
	z-index: 100;
	background-color: #f4f2f0;
	left: 0;
	top: -50px;
	margin: 0;
	animation-name: stick-animation;
    animation-duration: 0.5s;
	-webkit-animation-fill-mode: forwards; /* Safari 4.0 - 8.0 */
    animation-fill-mode: forwards;
}
@keyframes stick-animation {
    from {top: -50px;}
    to {top: 0;}
}
.stuck .navbar-nav>li>a{
	font-size:13px;
	padding:10px 15px 8px;
	line-height:30px;
}
.stuck .navbar-nav>li {
    margin-bottom: 2px;
}
.stuck .navbar-nav>li>.dropdown-menu {
    margin-top: 2px;
}
.stuck .nav {
    float: none;
}
.navbar-nav>li.sticky-logo, nav>ul>li.sticky-logo{
	display:none;
}
.navbar-nav>li.sticky-logo img{
	height:30px;
}
.navbar-nav>li.sticky-logo>a:after{
	background-color: transparent;
}
.stuck .navbar-nav>li.sticky-logo{
	display:block;
}
/* sticky end */

.custom-select{
	position: relative;
}
.custom-select:after{
	content:'';
	position:absolute;
	top:1px;
	right:1px;
	background-image:url('/images/chevron-down.svg');
	background-position:center;
	background-size:35%;
	background-repeat: no-repeat;
	width:36px;
	height:36px;
	background-color:#ffffff;
	pointer-events:none;
	z-index:2;
}

.map{
	position:relative;
	height:0;
	padding-bottom:30%;
	width:100%;
	
}
.map>div {
    height: 100%;
    width: 100%;
    position: absolute;
}


/* timeline */
.timeline .tab-content .row:nth-child(even) .col-sm-6{
	margin-left: 50%;
}
.timeline .tab-content .row:nth-child(even) .col-sm-6 .bg-light-grey{
	margin-left: 30px;
}
.timeline .tab-content .row .col-sm-6 .bg-light-grey:after{
	content:'';
	background-color:#d4b467;
	height:16px;
	width:16px;
	border-radius:50%;
	position: absolute;
    top: 25px;
}
.timeline .tab-content .row:nth-child(odd) .col-sm-6 .bg-light-grey:before{
	content: '';
    border-left: 10px solid #f4f2f0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    position: absolute;
    top: 23px;
    right: 35px;
}
.timeline .tab-content .row:nth-child(even) .col-sm-6 .bg-light-grey:before{
	content: '';
    border-right: 10px solid #f4f2f0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    position: absolute;
    top: 23px;
    left: 35px;
}
.timeline .tab-content .row:nth-child(odd) .col-sm-6 .bg-light-grey{
	margin-right: 30px;
}
.timeline .tab-content .row:nth-child(even) .col-sm-6 .bg-light-grey:after{
    left: -8px;
}
.timeline .tab-content .row:nth-child(odd) .col-sm-6 .bg-light-grey:after{
    right: -8px;
}
.timeline .tab-content .timeline-container{
	position: relative;
}
.timeline .tab-content .timeline-container:after{
	content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    display: block;
    background-color: #d4b467;
    left: 50%;
    top: 0;
}
.timeline .tab-content .col-sm-6{
	margin-top: -20px;
}
.timeline .tab-content .row:first-of-type .col-sm-6{
	margin-top: 0;
}
/* timeline end */

.cc-cookies a.cc-cookie-accept, .cc-cookies-error a.cc-cookie-accept, .cc-cookies a.cc-cookie-decline, .cc-cookies-error a.cc-cookie-decline, .cc-cookies a.cc-cookie-reset {
    background: #931c1c;
}
/*--------------------------------------------------------------
11.0 Media Queries
--------------------------------------------------------------*/

@media (max-width: 1200px) 
{
	.header-logo h1 {
		font-size: 22px;
	}
	.slick-container .hero .flex-bottom {
	    padding: 30px;
	    width: 60%;
	    left: 20%;
	}
	.slick-prev {
	  left: 15px;
	}
	.slick-next {
	  right: 15px;
	}
	.news-btn>span span.times {
	    font-size: 18px;
	}
	.navbar-nav>li>a {
	    font-size: 14px;
	    padding: 20px 15px;
	}
}

@media (min-width: 992px) {
	.left-nav .collapse {
 	   display: block !important;
	}
}
@media (max-width: 992px) 
{
	.text-center-tablet{text-align:center;}
	.slick-container .hero .flex-bottom {
	    padding: 30px;
	    width: 80%;
	    left: 10%;
	}
	.default-bg-image.hero {
	    padding-bottom: 40%;
	}
	.quicklink .flex-center-full .arrow-container{
		height:68px;
		position:relative;
	}
	.quicklink .flex-center-full .arrow-container .arrow-btn{
		margin-top:20px;
	}
	.quicklink .flex-center-full, .quicklink .flex-center-full:hover, .quicklink .flex-center-full:focus {
		height: 100%;
		padding: 15px;
	}
	.modal-dialog {
	    width: 90%;
	}
	.form-control {
    	padding: 11px 13px;
	    font-size: 12px;
	}
	.magic-placeholder .form-group span.placeholder {
	    font-size: 12px;
	}
	.news-btn>span span.times {
	    font-size: 22px;
	}
	.navbar-nav>li>a {
    	font-size: 12px;
	    padding: 20px 8px;
	}
	.left-nav .header-underline{
		margin-bottom:0;
		margin-top:8px;
	}
	.left-nav{
		margin-top:0;
	}
	
}

@media (max-width: 767px)
{
	h1, h2, h3{font-size:24px;}
	.title-link {
    	font-size: 12px;
    	line-height: 26px;
	}
	.buttons
	{
		display:block;
	}
	.stuck{display:none;}
	.text-center-mobile{text-align:center;}
	.footer-nav a {
		padding: 5px 0;
		display: block;
	}
	.footer-nav span {
		display: none;
	}
	.default-bg-image.hero {
	    padding-bottom: 50%;
	}
	.default-bg-image.hero h2{
	    font-size: 30px;
	}
	.slick-container .btn.custom {
		padding: 10px 15px;
		font-size:12px;
	}
	.slick-next:before, .slick-prev:before, .slick-prev, .slick-next {
    	height: 34px;
	}
	.slick-prev, .slick-next {
		margin-top: -16px;
	}
	.slick-prev {
	  left: 5px;
	}
	.slick-next {
	  right: 5px;
	}
	.header-logo h1 {
		display:block;
		margin-left:0;
		margin-top:10px;
	}
	.quicklink .flex-center-full {
		border: none;
		border-bottom: 2px solid #fff;
	}
	.margin-top-large{margin-top:50px;}
	.margin-bottom-large{margin-bottom:50px;}
	.quote {
    	font-size: 40px;
	    top: -20px;
	    margin: 0;
	}
	.modal-content.padding-medium{
		padding:15px;
	}
	.modal h2 span.pull-right{
		float:none !important;
		font-size:12px;
		display:block;
	}
	.modal .margin-top-small{
		margin-top:10px;
	}
	.modal h4.margin-top-small{
		margin-top:15px;
	}
	.modal-dialog {
	    width: auto;
	}
	.margin-left-small{
		margin-left:0;
	}
	.margin-right-small{
		margin-right:0;
	}
	.timeline .tab-content .timeline-container:after{
		left: 1px;
	}
	.timeline .tab-content .row:nth-child(odd) .col-sm-6 .bg-light-grey {
	    margin-right: 0;
		margin-left:30px;
	}
	.timeline .tab-content .row:nth-child(even) .col-sm-6 {
		margin-left: 0;
	}
	.timeline .tab-content .col-sm-6 {
		margin-top: 15px;
	}
	.timeline .tab-content .row:nth-child(odd) .col-sm-6 .bg-light-grey:before {
		border-left: none;
		border-right: 10px solid #f4f2f0;
		left: 35px;
		right:auto;
	}
	.timeline .tab-content .row:nth-child(odd) .col-sm-6 .bg-light-grey:after, .timeline .tab-content .row:nth-child(even) .col-sm-6 .bg-light-grey:after {
		right: auto;
		left: 9px;
	}
	 
}
@media (max-width: 480px)
{
	.header .btn.custom{
		font-size:12px;
		padding: 8px 15px;
	}
	.default-bg-image.hero h2{
	    font-size: 22px;
	}
	.header-logo h1 {
	    font-size: 16px;
	}
	.header-logo img {
	    height:60px;
	}
	.modal-footer .btn.custom{
		width:100% !important;
	}
	.modal-footer .btn+.btn {
		margin-left: 0;
		margin-top: 5px;
	}
	.btn.custom.news-btn img{
		height:40px;
	}
	.btn.custom.news-btn .times{
		font-size:14px;
	}
}
/* Media Queries End */