/*
	COLORS
	Light Blue :#3c7386;
	Dark Blue :#093047;
	Pink :#e50051
*/

*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}

html{
	-webkit-text-size-adjust: 100%;
}

body{
	font-family: 'Montserrat', sans-serif;
	color:#093047;
}
.nav{
	display:block;
}
.fancyfont{
	font-family: 'evelethslantw01-regularRg', sans-serif;
	font-weight:normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}
.clear-header{
	margin-top:80px;
}
hr{
	border:none;
	display:block;
	width:100%;
	height:4px;
	background:#8bb0bd;
	margin:20px 0;
}

h1, h2, h3, h4{
	font-family: 'evelethslantw01-regularRg', sans-serif;
	font-weight:normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	font-size:32px;
	line-height: 1.1em;
}

h3{
	font-size:24px;
}

h4{
	font-size:18px;
}

p{
	font-size:16px;
	line-height:1.5em;
	margin:20px 0;
}
p strong{
	font-weight:500;
}

a{
	text-decoration:none;
	color:#5e9db3;
}
a:hover{
	color:#e50051;
	text-decoration:none;
}

.button{
	display:inline-block;
	height:40px;
	line-height:40px;
	font-family: 'evelethslantw01-regularRg', sans-serif;
	font-weight:normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	font-size:16px;
	padding:0 20px;
	background:#5e9db3;
	color:#fff;
	transition:background 0.3s;
	border-radius:2px;
	cursor:pointer;
	border:none;

}
.small.button{
	font-size:13px;
	padding:0 10px;
	height:30px;
	line-height:30px;
	background:#e50051;
	border-radius:2px
}
.button:hover{
	background:#e50051;
	color:#fff;
}
.small.button:hover{
	background:#5e9db3;
	color:#fff;
}
.button.back{
	display:flex;
	justify-content: center;
}
.button.back:before{
	content: '\f104';
	font-family: 'fontAwesome';
	font-weight: 600;
	margin-right: 8px;
	font-size: 20px;
}
.max-width{
	max-width:960px;
	margin:0 auto;
}
.pink.button{
	background:#e50051;
}
.pink.button:hover{
	background:#5e9db3;
}

ul{
	margin-bottom:0;
}

img{
	max-width:100%;
	height:auto;
	display:block;
}

@media screen and (max-width:1024px){
	a.button{
		height:32px;
		line-height:32px;
		font-size:13px;
		padding:0 12px;
	}
}


/* HEADER */

header#main-header{
	width: 100%;
	height: 80px;
	position: fixed;
	display: block;
	background: #fff;
	z-index: 900;
	top: 0;
	left: 0;
	box-shadow: 0 0 4px rgba(0,0,0,0.2);
	transition:all 0.3s;
}

header#main-header.nav-up{
	transform:translateY(-100%);
}

a#logo{
	position:absolute;
	left:4%;
	top:10px;

}

a#logo img{
	display:block;
	width:auto;
	height:60px;
}

/* MAIN NAV */

nav#main-nav{
	position:fixed;
	top:0;
	right:0;
	height:100vh;
	width:100%;
	max-width:380px;
	background:rgba(61,115,134,0.95);
	z-index:950;
	padding:100px 40px 20px 80px;
	transform:translateX(100%);
	transition:all 0.3s;
}

nav#main-nav.opened{
	transform:translateX(0%);
	box-shadow: -4px 0 4px rgba(0,0,0,0.12);
}

nav#main-nav ul{
	list-style:none;
	display:flex;
	flex-direction:column;
}

nav#main-nav ul li{
	position:relative;
}

nav#main-nav ul li a{
	color:#fff;
	font-size: 20px;
	padding: 7px 0px;
	display:block;
	transition: all 0.3s;
	font-family:'evelethslantw01-regularRg', sans-serif;
	font-weight:normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

nav#main-nav ul li a:hover{
	color:#e50051;
}

nav#main-nav ul li div.expand{
	display:block;
	position:absolute;
	top: 9px;
	left: -36px;
	cursor:pointer;
}

nav#main-nav ul li div.expand .wrapper{
	position:relative;
	width: 24px;
	height: 24px;
}
nav#main-nav ul li div.expand .wrapper:before, nav#main-nav ul li div.expand .wrapper:after{
	content:'';
	width:70%;
	height: 4px;
	background: #fff;
	position:absolute;
	top:50%;
	left:15%;
	transform:translateY(-0.5px);
	transform-origin:center center;
}

nav#main-nav ul li div.expand:hover .wrapper:before, nav#main-nav ul li div.expand:hover .wrapper:after{
	background:#e50051;
	transition:all 0.3s;
}

nav#main-nav ul li div.expand .wrapper:after{
	transform:translateY(-0.5px) rotate(90deg);
}

nav#main-nav ul li div.expand.opened .wrapper:after{
	transform:translateY(-0.5px) rotate(0deg);
}

nav#main-nav ul li div.expand span{
	position:absolute;
	top:50%;
}

/* Second Level */

nav#main-nav ul ul{
	width: 100%;
	height: 0;
	overflow: hidden;
	transition: all 0.3s;
	margin-left: 15px;
}

nav#main-nav ul.level1 li a{
	font-size:13px;
}

nav#main-nav ul.level1 li a:hover{
}

/* MOBILE BURGER */
#mobile-burger{
	position:fixed;
	top:0;
	right:0;
	width:80px;
	height:80px;
	background:#3c7386;
	display:flex;
	flex-direction:column;
	justify-content:center;
	cursor:pointer;
	transition:all 0.3s;
	z-index:990;
}

#mobile-burger span{
	display:block;
	background:#fff;
	width:45px;
	height:5px;
	margin:4px auto;
	transition:all 0.3s;
}

#mobile-burger:hover{
	background:#e50051;
}

#mobile-burger.opened span:first-of-type{
	transform:translateY(13px) rotate(45deg);
	}
#mobile-burger.opened span:nth-of-type(2){
	opacity:0;
	}
#mobile-burger.opened span:last-of-type{
	transform:translateY(-13px) rotate(-45deg);
	}

/* MINI NAV */

nav#mini-nav{
	position: absolute;
	top: 50%;
	right: 97px;
	transform: translateY(-50%);
	display:flex;
}

nav#mini-nav ul{
	list-style:none;
	display:flex;
}

nav#mini-nav ul li{
	margin-left:3px;
}

nav#mini-nav ul li a{
	display:block;
	height:36px;
	line-height:36px;
	padding:0 20px;
	color:#fff;
	text-align:center;
	background:#e50051;
	font-family: 'evelethslantw01-regularRg', sans-serif;
	font-weight:normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	font-size:14px;
	border-radius:2px;
	transition:all 0.3s;
}
nav#mini-nav ul li a:hover{
	background:#3c7386;
	}

/* SEARCH FORM */
#main-header .ccm-search-block-form{
	position:relative;
	background: #f8f8f8;
	}
#main-header .ccm-search-block-text{
	border:none;
	height: 36px;
	line-height: 36px;
	padding: 0 0 0 40px;
	font-size: 14px;
	background: transparent;
	color:#0a3048;
	font-family:'Montserrat', sans-serif;
	transition:all 0.3s;
	width:140px;
    -webkit-appearance: none;
    -webkit-border-radius:0;
}
#main-header .ccm-search-block-text:focus{
	box-shadow:inset 1px 1px 3px rgba(0,0,0,0.15);
	outline:none;
	width:180px;
	}
@media screen and (max-width:480px){
	#main-header .ccm-search-block-text{
		font-size: 16px;
		}
	}
#main-header .ccm-search-block-submit{
	position:absolute;
	top:0;
	left:0;
	width: 36px;
	height: 36px;
	border: none;
	background: transparent;
	cursor:pointer;
	color:transparent;
	font-family:'FontAwesome';
	font-size:16px;
	color:#e50051;
	}
#main-header .ccm-search-block-submit:hover{
	color:#3c7386;
	}
#main-header .ccm-search-block-form ::-webkit-input-placeholder { /* Edge */
  color: #e50051;
  opacity:0.9;
}

#main-header .ccm-search-block-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #e50051;
  opacity:0.9;
}

#main-header .ccm-search-block-form ::placeholder {
  color: #e50051;
  opacity:0.9;
}

@media screen and (max-width:900px){
	nav#mini-nav ul{
		display:none;
	}
}

@media screen and (max-width:480px){
	#main-header .ccm-search-block-form{
		display:none;
	}
}



/* SLIDER */

section.slider{
	position:relative;
	width:100%;
	margin-top:80px;
	height:calc(100vh - 120px)!important;
}
.tear:after{
	content:'';
	position:absolute;
	bottom:-0.5px;
	left:0;
	height:24px;
	width:100%;
	display:block;
	background-image:url(../assets/tear.png);
	background-position:center bottom;
	background-repeat:repeat-x;
	background-size:1024px 24px;
	z-index:20;
}
.blue-tear:before{
	content:'';
	position:absolute;
	top:-24px;
	left:0;
	height:24px;
	width:100%;
	display:block;
	background-image:url(../assets/tear-blue.png);
	background-position:center bottom;
	background-repeat:repeat-x;
	background-size:1024px 24px;
	z-index:20;
}
section.slider .royalSlider{
	width:100%;
	height:100%!important;
}
.rsABlock{
	top:50%;
	width:100%;

}
.rsABlock .info{
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 5%;
	transform: translate(0,-50%);
	text-align: center;
	width: 75%;
	min-width: 360px;
}
.rsABlock .info h1{
	color:#fff;
	font-size:40px;
	font-size: 3.5vw;
	line-height: 1.25em;
	text-shadow:0 2px 4px rgba(0,0,0,0.5);
}
.rsABlock .info p{
	color: #fff;
	font-weight: 600;
	margin-top: 10px;
	font-size: 1.5vw;
	text-shadow:0 2px 4px rgba(0,0,0,0.5);

}
.rsABlock .info p a{
	text-shadow:none;
}
.rsNav{
    position: absolute;
	bottom: 50px;
	display: flex;
	z-index: 20;
	justify-content: center;
	width: 100%;
}
.rsNavItem.rsBullet{
	width:30px;
	height:3px;
	background:#fff;
	margin:0 2px;
	transition:all 0.3s;
}
.rsNavItem.rsBullet.rsNavSelected{
	background:#3c7386;
}
@media screen and (max-width:640px){
	.rsABlock .info h1{
		font-size:22px;
	}
	.rsABlock .info p{
		font-size: 12px;
	}
}
/* HOMEPAGE INTRO */

section.introduction{
	padding:90px 4% 30px 4%;
	text-align: center;
	background:#fff;
	position:relative;
}
section.introduction.no-panel{
	padding-bottom:10px;
}
section.introduction h2{
	font-size:24px;
}
section.introduction h2, section.introduction h1{
	margin-bottom:20px;
	color:#3c7386;
}
.event section.introduction, .standard section.introduction, .orkney section.introduction{
	padding:50px 4% 90px 4%;
	
}
/* ARTS CATEGORIES */

section.arts-categories{
	
}

section.arts-categories .wrapper{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}

section.arts-categories .category{
	width:calc(50% - 0.5px);
	position:relative;
	margin-top:1px;
}

section.arts-categories .image{
	overflow:hidden;
	position:relative;
}
section.arts-categories .image:after{
	content:'';
	display:block;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0);
	transition:all 0.3s;
}
section.arts-categories .image img{
	width:100%;
	height:auto;
	display:block;
	transform:scale(1.05);
	transition:transform 1s;
}
section.arts-categories .category:hover img{
	transform:scale(1);
}
section.arts-categories .info{
	position: absolute;
	bottom: 15%;
	text-align: center;
	width: 100%;
}
section.arts-categories .info h3{
	text-transform:uppercase;
	color:#fff;
	font-size:28px;
}
section.arts-categories .category a{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:10;
	display:block;
}
section.arts-categories .category:hover .image:after{
	background:rgba(0,0,0,0.2);
}
@media screen and (min-width:1024px){
	section.arts-categories .category{
		width:calc(25% - 0.5px);
	}
}
@media screen and (max-width:780px){
	section.arts-categories .info h3{
		font-size:20px;
	}
}
/* FEATURED EVENTS CAROUSEL */
section.featured-events{
	background:#093047;
	padding:50px 0;
	position: relative;
}

section.featured-events h3.title{
	color:#fff;
	text-align:center;
	margin-bottom:20px;
}
.featured-events .wrapper{
	display:flex;
	padding:5% 10%;
}
.featured-event{
	width:100%;
	display:block;
	position:relative;
	max-width:1280px;
	opacity:0.25;
}
.featured-event.is-selected{
	opacity:1;
}
.featured-event .info{
	width: 66%;
	padding-right: 5%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.featured-event .info h3{
	color:#5e9db3;
	font-size:4vw;
}

.featured-event .info h4{
	color:#fff;
	text-transform: uppercase;
	font-size:16px;
}
.featured-event .info p{
	color:#c0cace;
	font-size: 16px;
}
.featured-event .image{
	width:34%;
	height:0;
	padding-bottom:34%;
	position:relative;
	box-shadow: 1px 2px 2px rgba(0,0,0,0.2);
}
.featured-event .image:before, .featured-event .image:after{
	content:'';
	position:absolute;
	top:0;
	left:50%;
	width:40%;
	height:15%;
	background-image:url(../assets/tape.png);
	background-size:contain;
	background-position:center;
	background-repeat: no-repeat;
	transform:translate(-50%,-50%);
	z-index:10;
}
.featured-event .image:after{
	top:auto;
	bottom:0;
	transform:translate(-50%,50%) scaleX(-1);
}
.featured-event .image img{
	width:100%;
	height:auto;
	display:block;
}

@media screen and (min-width:1280px){
	.featured-event .info h3{
		font-size:48px;
		}
}

@media screen and (max-width:1024px){
	.featured-event .info p{
		font-size:12px;
		margin:0 0 10px 0;
		}
}
@media screen and (max-width:720px){
	.featured-events .wrapper{
		flex-direction:column-reverse;
		padding:5% 10%;
	}
	.featured-event .info{
		width:100%;
		text-align:center;
		padding: 0 25px;
	}
	.featured-event .image{
		margin:0 auto 30px auto;
		width:50%;
		padding-bottom:50%;
	}
}
@media screen and (max-width:640px){
	.featured-event .info h3{
		font-size:19px;
	}
}
/* lATEST EVENTS CAROUSEL */
section.latest-events{
	padding:50px 0 75px 0;
	position:relative;
	text-align:center;
}
section.latest-events h3{
	margin-bottom:20px;
	color:#3c7386;
}
ul#latest-events-carousel{
	width:100%;
	list-style:none;
	display:block;
	margin-top: 30px;
}

#latest-events-carousel li.event{
	width:280px;
	margin:0 25px;
}
#latest-events-carousel li.event .wrapper{
	position:relative;
}
#latest-events-carousel li.event a{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:block;
}
#latest-events-carousel li.event .info{
	text-align: left;
	height: 220px;
	padding: 20px 0;
	
}
#latest-events-carousel li.event h3{
	font-size:18px;
	margin:0;
	text-transform: uppercase;
	color:#3c7386;
	line-height:1.2em;
	transition:all 0.3s;
}
#latest-events-carousel li.event p{
	font-size: 14px;
	margin: 10px 0 0 0;
}
#latest-events-carousel li.event p.event-type{
	margin-top:0;
	font-size:12px;
}
#latest-events-carousel li.event .image{
	position:relative;
	
}
#latest-events-carousel li.event .image:before{
	content:'';
	display:block;
	width:100%;
	height:100%;
	top:0;
	left:0;
	background:rgba(0,0,0,0);
	transition:all 0.3s;
	position:absolute;
}
#latest-events-carousel li.event:hover .image:before{
	background:rgba(0,0,0,0.2);
}
#latest-events-carousel li.event:hover h3{
	color:#e50051;
}
#latest-events-carousel li.event img{
	width:100%;
	height:auto;
	display:block;
}
#latest-events-carousel li.event .small.button{
	margin-top:5px;
}
/* POSTCARDS CAROUSEL */

section.postcards{
	padding:50px 0 75px 0;
	text-align:center;
	background:#093047;
	position:relative;
}

section.postcards h3{
	margin-bottom: 20px;
	color:#5e9db3;
}

ul#postcards-carousel{
	list-style:none;
	margin:50px auto;
}

li.postcard{
	width:75%;
	display:block;
	margin:0 10px;
	max-width:800px;
}
li.postcard:before{
	content:'';
	position:absolute;
	display:block;
	width:100%;
	height:100%;
	background: rgba(9, 48, 71,0.75);
	top: 0;
	left: 0;
	z-index: 10;
	transition:background 0.3s;
}
li.postcard.is-selected:before{
	visibility:hidden;
	background: rgba(9, 48, 71,0);
}
@media screen and (max-width: 640px){
	li.postcard{
		width:299px;
	}
}
/* SPONSORS CAROUSEL */

section.sponsors{
	padding:50px 0;
	text-align:center;
}

section.sponsors h4{
	color:#7d7d7d;
	padding:0 5%;
	margin:0;
}

ul#sponsors-carousel{
	list-style:none;
}
ul#sponsors-carousel .sponsor{
	width:240px;
	margin:0 20px;
}
ul#sponsors-carousel .sponsor img{
	width:100%;
	display:block;
	height:auto;
	opacity:0.5;
	transition:all 0.3s;
}
ul#sponsors-carousel .sponsor a:hover img{
	opacity:0.75;
}
.flickity-page-dots .dot{
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background: #a4a4a4;
    border-radius: 50%;
    opacity: 0.25;
    cursor: pointer;
}

.flickity-button{
	background: rgba(229, 0, 81, 0.5);
	color: #fff;
}
.flickity-button:hover{
	background: rgba(229, 0, 81, 0.8);
}
/* MAILING LIST */
section.mailing-list{
	padding: 90px 4% 115px 4%;
    text-align: left;
    background: #3c7386;
    margin-bottom: -25px;
    color: #fff;
    position: relative;
}
section.mailing-list p{
	margin: 0 0 10px 0;
	font-size: 14px;
	color:#fff;
}
.mailing-list-form .wrapper{
	display:flex;
	align-items: flex-end;
}
.mailing-list-form .form-group{
	margin:10px 10px 0 0;
	
}
.mailing-list-form label{
	display:block;
	margin-bottom: 3px;
	text-transform: uppercase;
	font-size: 11px;
}
.mailing-list-form input[type="text"], .mailing-list-form input[type="email"]{
	border: 1.5px solid rgba(255,255,255,0.75);
	padding: 0 10px;
	background: transparent;
	color: #fff;
	height: 40px;
	transition: all 0.3s;
	border-radius: 2px;
}
.mailing-list-form input[type="text"]{
	width:150px;
}
.mailing-list-form input[type="email"]{
	width:300px;
}
.mailing-list-form input::-webkit-input-placeholder {
   color: rgba(255,255,255,0.5);
}
.mailing-list-form input[type="text"]:focus, .mailing-list-form input[type="email"]:focus{
	background:#fff;
	color:#3c7386;
	outline:none;
}

div#subscribe-result p{
	color:#fff;
	margin:15px 0 0 0;
}
@media screen and (max-width:860px){
	.mailing-list-form .wrapper{
		align-items: flex-start;
		flex-direction: column;
		margin-top:20px;
	}
	.mailing-list-form input{
		width:100%!important;
		max-width:400px;
	}
	.mailing-list-form .button{
		width:100%!important;
		max-width:400px;
	}
	.mailing-list-form .form-group{
		margin: 0 0 10px 0;
		width: 100%;
		max-width: 400px;
	}
	
}
/* FOOTER */
footer.footer{
	background:#093047;
	padding:50px 4%;
	position:relative;
	margin-top:24px;
}
footer.footer .logos-wrapper{
	display:flex;
	padding-bottom:10px;
}
footer.footer .logo{
	margin-right:30px;
}
footer.footer .logo img{
	display:block;
	height:55px;
	width:auto;
	opacity:0.75;
}
footer.footer p{
	color:#fff;
	font-size:15px;
}
#credit p{
	font-size:10px;
	color:#b1bbc1;
}
.main-events-map .footer.blue-tear:before{
	display:none;
}
/* FOOTER SOCIALS */
footer.footer .footer-socials{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
}

/* SOCIAL LINKS */
.ccm-block-social-links .list-inline{
	list-style:none;
	display:flex;
	margin-bottom:0;
}

.ccm-block-social-links .list-inline li{
	margin-right:5px!important;
}

.ccm-block-social-links .list-inline a{
	font-size: 18px;
	display: block;
	width: 32px;
	height: 32px;
	text-align: center;
	line-height: 32px;
	background:#e50051;
	color:#fff;
	border-radius: 3px;
	transition:all 0.3s;
}

.ccm-block-social-links .list-inline a:hover{
	background:#3c7386;
}

/* INSTAGRAM */
div.instagram{
	position:relative;
}



#instafeed{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	padding: 0px;
	/*width: 256px;*/
	margin-bottom:50px;
}

.insta-wrapper{
	width:90px;
	overflow:hidden;
	margin:2px;
}
.insta-image{
	width:100%;
	padding-bottom:100%;
	display:block;
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	transition:all 0.3s;
	position:relative;
	filter:brightness(0.8);
}

.insta-wrapper:hover .insta-image{
	filter:brightness(1);
}

.insta-wrapper:hover .insta-buttons{
	opacity:1;
}

a.insta-button{
	width: 100%;
	height: 100%;
	line-height: 100%;
	background: rgba(0,0,0,0);
	color: #fff;
	transition: background 0.3s;
	position: absolute;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
a.insta-button:hover{
}

/* EVENT PAGE INFO */

section.event-info{
	padding:75px 4%;
	position:relative;
	background: #fff;
}

section.event-info .cols{
	display:flex;
	justify-content:space-between;
	max-width: 900px;
	margin: 0 auto 50px auto;
}
section.event-info .cols .lhs{
	width:56%;
}
section.event-info .cols .rhs{
	width:36%;
}
section.event-info .additional-description p{
	font-size:13px;
	color:#3c7386;
}
.copy p{
	font-size:14px;
}
.event-info .copy p{
	font-size:15px;
	}
section.event-info .video, section.event-info .second-image{
	max-width: 900px;
	margin: 30px auto;
}

div.copy{
	max-width: 960px;
	margin:0 auto;
}
.news-article div.copy{
	max-width: 720px;
}

.news-article div.copy img{
	width:100%!important;
	float:none!important;
	margin:20px 0!important;
	display:block;
}

.event div.copy{
	max-width:900px;
}

section.event-info .second-image img{
	width:100%;
	height:auto;
	display:block;
}

.event .page-title{
	color:#3c7386;
}

.event .event-time{
	font-family: 'evelethslantw01-regularRg', sans-serif;
	font-weight:normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	font-size: 18px;
	line-height: 1.5em;
	margin: 2px 0;
}

p.venue-address{
	margin: 0 0 2px 0;
	font-size: 13px;
	font-weight: 600;
	color:#3c7386;
}

p.additional-information{
	font-size: 13px;
	margin: 0 0 10px 0;
	font-style: italic;
}
p.event-number, p.price{
	color: #e50051;
	font-weight: 600;
	font-size: 14px;
	margin: -20px 0 10px 0;
}

p.event-number span{
	display:inline-block;
	width:28px;
	height:28px;
	border-radius:50%;
	line-height:28px;
	color:#fff;
	text-align:center;
	background:#e50051;
	margin-right:5px;
}

.event .copy p:first-of-type{
	
}

.download-button a, .tickets-button a{
	display:block;
	background:#3c7386;
	height:40px;
	line-height:40px;
	color:#fff;
	text-align:center;
	margin-top:5px;
	transition:all 0.3s;
}
.tickets-button a{
	background:#e50051;
}
.tickets-button a:hover{
	color:#3c7386;
}
.download-button a:hover{
	color:#e50051;
}

@media screen and (max-width:960px){
	section.event-info .cols{
		flex-direction:column;
	}
	section.event-info .cols .lhs{
		width:100%;
	}
	section.event-info .cols .rhs{
		width:100%
	}
}
/* MAIN IMAGE */
section.main-image{
	width:100%;
	height:66vh;
	position:relative;
	margin-top:80px;
}

.product-list section.main-image{
	height:33vh;
}
.product section.main-image{
	height:33vh;
}

section.main-image .image{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-size:cover;
	background-position:bottom center;
	overflow:hidden;
}

section.main-image .info{
	position:absolute;
	top:50%;
	width:100%;
	transform:translateY(-50%);
	text-align:center;
	padding:0 5%;
	text-shadow:0 2px 4px rgba(0,0,0,0.5);

}
section.main-image .info h1{
	color:#fff;
	max-width:800px;
	margin:0 auto;
	font-size:3.5vw;
}
section.main-image .info h4{
	color: #fff;
	margin-top: 10px;
}
@media screen and (max-width:1024px){
	section.main-image .info h1{
		font-size:36px;
		}
}
/* EVENT LOCATION MAP */
section.all-events-map{
	margin-top:80px;
	height:calc(100vh - 80px);
}
.infoWindow{
	width:270px;
	text-align:center;
}
.infoWindow h3{
	font-size:12px;
	text-align:center;
	line-height:normal;
}
.infoWindow h4{
	font-size:10px;
	text-align:center;
	line-height:normal;
	color:#e50051;
	}
.infoWindow .map-thumbnail{
	width:90px;
	height:auto;
	display:inline-block;
	margin-bottom:5px;
	text-align:center;
}
.infoWindow a.img-link{
	display:block;
	margin-bottom:10px;
}
.infoWindow img{
	width:100%;
	height:auto;
}
.infoWindow p{
	margin:5px 0 0 0;
}

/* EVENTS LIST */

section.latest-events-pagelist{
	padding:75px 4%;
	position:relative;
	background: #fff;
}

section.latest-events-pagelist h2{
	color:#3c7386;
	margin-bottom:30px;
	text-align:center;
}

div.events-list{
	display:flex;
	flex-wrap:wrap;
}
div.events-list .event{
	width:31.333%;
	margin:1%;
	position:relative;
	background:#f8f8f8;
	padding-bottom:70px;
}

div.events-list .event .image{
	position:relative;
}
div.events-list .event .image a{
	display:block;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0);
	transition:all 0.3s;
}

div.events-list .event .image a:hover{
	background:rgba(0,0,0,0.2);
}

div.events-list .event img{
	width:100%;
	height:auto;
	display:block;
}


div.events-list .event .info{
	background:#f8f8f8;
	padding: 5% 5% 0 5%;
}
div.events-list .event .info h4{
	
}
div.events-list .event .info p.venue{
	margin:0;
	font-weight:600;
	font-size:12px
}
div.events-list .event .info p.type{
	font-size:12px;
	color:#3c7386;
	margin-top:0;
}
div.events-list .event .info p{
	font-size:14px;
	margin:10px 0 0 0;
}
div.events-list .event .small.button{
	position:absolute;
	bottom:25px;
	left:5%;
}
@media screen and (max-width:960px){
	div.events-list .event{
		width:48%;
	}
}
@media screen and (max-width:640px){
	div.events-list .event{
		width:100%;
		margin:1% 0;
	}
}
/* COPY PANEL */

section.copy-panel{
	padding:75px 4%;
	background:#3c7386;
	position:relative;
}

.light-blue-tear-top:before{
	content:'';
	position:absolute;
	top:-24px;
	left:0;
	height:24px;
	width:100%;
	display:block;
	background-image:url(../assets/tear-light-blue.png);
	background-position:center bottom;
	background-repeat:repeat-x;
	background-size:1024px 24px;
	z-index:20;
}

.light-blue-tear-bottom:after{
	content:'';
	position:absolute;
	bottom:-24px;
	left:0;
	height:24px;
	width:100%;
	display:block;
	background-image:url(../assets/tear-light-blue.png);
	background-position:center bottom;
	background-repeat:repeat-x;
	background-size:1024px 24px;
	z-index:20;
	transform:scale(-1);
}

section.copy-panel .cols{
	display:flex;
	max-width:1024px;
	margin:0 auto;
	justify-content:space-between;
}

section.copy-panel .lhs{
	width:48%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

section.copy-panel .rhs{
	width:48%;
}



.copy.white, .copy.white h3, .copy.white p{
	color:#fff;
}
.copy.white p{
	font-size:14px;
}
section.copy-panel img{
	width:100%;
	height:auto;
	display:block;
}
@media screen and (max-width:960px){
	section.copy-panel .cols{
		flex-direction:column-reverse;
	}
	section.copy-panel .lhs{
		width:100%;
		text-align:center;
	}
	section.copy-panel .rhs{
		width:100%;
	}
	section.copy-panel .image{
		max-width: 360px;
		margin: 0 auto 10px auto;
	}
}
/* ARTIST */

div.artists{
	display:table;
	border-collapse: collapse;
	margin-top:20px;
}
div.artists p{
	margin:0;
}
div.artist-wrapper{
	display:table-row;
	border-bottom:1px solid #e8e8e8;
}
div.artist-wrapper div{
	display:table-cell;
	padding:5px 0;
}
div.artist-wrapper div.artist-name{
	padding-right:20px;
}

div.artist-wrapper div.artist-name p{
	font-weight:600;
}
/* STANDARD CONTENT PAGE */
section.main-content{
	position:relative;
	padding:75px 4%;
	background:#fff;
}
section.main-content.no-panel{
	padding-top:10px;
}


/* EASY GALLERY */

.easy-gallery{
	margin:30px 0;
}

/* BASIC BUTTON LIST */
div.basic-list{
	display:flex;
	flex-wrap:wrap;
	margin:30px auto;
	width:100%;
	justify-content:center;
}

div.basic-list .button{
	margin:5px;
}

/* BREADCRUMBS */

/* BREADCRUMB TRAIL */

section.breadcrumbs-wrapper{
	padding: 20px 4% 0 4%;
	background:#fff;
	position:relative;
}

div.breadcrumbs{
	/*max-width:900px;*/
	margin:0 auto;
}

.breadcrumbs ol.breadcrumb{
	display:flex;
	flex-wrap:wrap;
	padding: 0;
	margin-bottom: 0;
	list-style: none;
	background-color: transparent;
	border-radius: 0;

}
.breadcrumbs ol.breadcrumb li{
	list-style: none;
	font-size: 12px;
	display: inline-block;
	background: #3c7386;
	margin: 0 2px;
	font-weight: 500;
	position:relative;
	transition:all 0.3s;
	border-radius:4px;
}
.breadcrumbs ol.breadcrumb li a{
	height: 30px;
	line-height: 30px;
	padding: 0 10px;
	display:block;
	color:#fff;
}


.breadcrumbs ol.breadcrumb li:after{
	/*content:'';*/
	position:absolute;
	right:5px;
	top:10px;
	width:10px;
	height:10px;
	display:block;
	background: #fff;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	transition:all 0.3s;

}
.breadcrumbs ol.breadcrumb li:before{
	/*content:'';*/
	position:absolute;
	left:-9.5px;
	top:0;
	width:5px;
	height:10px;
	display:block;
	background: #3c7386;
	clip-path: polygon(0 0, 100% 0, 100% 100%,0 100%, 100% 50%);
	transition:all 0.3s;
}

.breadcrumbs ol.breadcrumb li:hover, .breadcrumbs ol.breadcrumb li:hover:before, .breadcrumbs ol.breadcrumb li:hover:after{
	background:#e50051;
}
.breadcrumbs ol.breadcrumb li.active{
	color:#fff;
	background:#ccc;
	height: 30px;
	line-height: 30px;
	padding: 0 10px;
}
.breadcrumbs ol.breadcrumb li.active:before, .breadcrumbs ol.breadcrumb li.active:after{
	background:#ccc;
}
/* FULL SCREEN VIMEO */
section.fs-video{
	position:relative;
}
.vimeo-wrapper {
	position: relative;
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-bottom: 42%;
	margin-top: 80px;
	z-index:-1;
}
.vimeo-wrapper iframe {
   width: 100%;
   height: 100%;
   top:0;
   left:0;
   position: absolute;
   
}
/* PAUSE PLAY CONTROLS */

.vimeo-controls{
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	width:100%;
	display:flex;
	justify-content:center;
	transition:all 0.3s;
}
.vimeo-controls.active{
	opacity:0;
	visibility:hidden;
}

.vimeo-controls #play-button, .vimeo-controls #pause-button{
	width:50px;
	height:50px;
	background:rgba(229, 0, 81, 0.5);
	border-radius:50%;
	line-height:50px;
	text-align:center;
	cursor:pointer;
	transition:all 0.3s;
}
.vimeo-controls #play-button:hover, .vimeo-controls #pause-button:hover, #volume-controls #sound-on-button:hover, #volume-controls #sound-off-button:hover{
	background:rgba(229, 0, 81, 1);
}

.vimeo-controls #play-button i, .vimeo-controls #pause-button i, #volume-controls #sound-on-button i, #volume-controls #sound-off-button i{
	color: #fff;
	font-size: 25px;
	text-indent: 5px;
	display: block;
	position: relative;
	top: 12px;
}

#volume-controls #sound-on-button i{
	margin-left:-6px;
	}

.vimeo-controls #pause-button i{
	text-indent: 0;
	}
.vimeo-controls div.invisible, #volume-controls div.invisible{
	display:none;
}



/* VOLUME CONTROLS */

#volume-controls{
	position:absolute;
	bottom:20px;
	right:4%;
	transform:translateY(-50%);
	display:flex;
	justify-content:flex-end;
	transition:all 0.3s;
}

#volume-controls #sound-on-button, #volume-controls #sound-off-button{
	width:50px;
	height:50px;
	background:rgba(229, 0, 81, 0.5);
	border-radius:50%;
	line-height:50px;
	text-align:center;
	cursor:pointer;
	transition:all 0.3s;
}



/* SIMPLE GOOGLE MAP */

section.google-map{
	
}
section.google-map #googleMapCanvas{
	height:66vh!important;
}

/* STORE */

/* Listing */
.store-product-list-thumbnail{
	position:relative;
	
}
.store-product-list-thumbnail a{
	display:block;
	overflow:hidden;
}
.store-product-list-thumbnail a:after{
	content:'';
	display:block;
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	background:rgba(0,0,0,0);
	transition:all 0.3s;
	outline:5px solid transparent;
}
.store-product-list-thumbnail a:hover:after{
	background:rgba(0,0,0,0);
	outline:5px solid #f2f2f2;
	}
.store-product-list-thumbnail img{
	width:100%;
	height:auto;
	display:block;
	transition:all 0.3s;
}
.store-product-list-thumbnail a:hover img{
	transform:scale(1.02);
}
.store-product-list-name{
	margin-top:10px;
}
.store-product-list-price{
	margin:0;
}
section.product-list{
	position: relative;
	padding: 0 4% 50px 4%;
	background: #fff;
}

/* Product page */
section.product{
	position: relative;
	padding: 50px 4% 50px 4%;
	background: #fff;
}

.product section.breadcrumbs-wrapper{
}
.store-product-thumb img{
	width:100%;
	height:auto;
	display:block;
}
.product .row{
	justify-content:space-between;
	flex-direction: row-reverse;
	
}
.store-product-primary-image{
	position:relative;
}
.store-product-primary-image a{
	display:block;
	position:relative;
}
.store-product-primary-image a:before{
	content:'\f00e';
	font-family:'fontAwesome';
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	display:flex;
	align-items:center;
	justify-content:center;
	background:rgba(0,0,0,0.2);
	color:#fff;
	font-size:20px;
	transform: scale(0.5);
	opacity:0;
	transition:all 0.4s;
}
.store-product-primary-image a:hover:before{
	transform: scale(1);
	opacity:1;
	}

.store-product-image{
	max-width:45%;
}
.store-product-details{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
section.back-button{
	width:100%;
	padding:0 4% 100px 4%;
}
section.back-button .max-width{
	display:flex;
	justify-content:flex-end;
}
@media screen and (max-width:768px){
	.store-product-image{
		max-width:none;
	}
	.product .row{
		flex-direction:column-reverse;
	}
	section.product{
		padding:0 4%;
	}
	section.back-button{
		padding:0 4% 20px 4%;
	}
}
/* UTILITY LINKS */

section.utility-links{
	padding:30px 4%;
	background:#fff;
	position:relative;
}
div.store-utility-links-buttons{
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	margin-top:10px;
}
div.store-utility-links p{
	margin:0;
	margin-right:10px;
	font-weight: 600;
	font-size: 14px;
}
div.store-utility-links .button{
	margin-right:10px;
}

/* CHECKOUT */

.checkout section.main-content{
	margin-top:80px;
	}

/* SHARING BUTONS */

section.page-sharing{
	padding: 0 4%;
}
.ccm-block-share-this-page{
	display: flex;
	justify-content: flex-end;
}
.ccm-block-share-this-page ul.list-inline{
	display:flex;
}
.ccm-block-share-this-page li{
	margin:0 0 0 5px!important;
	
}
.ccm-block-share-this-page a{
	background:#f8f8f8;
	width:32px;
	height:32px;
	line-height:32px;
	text-align:center;
	display: block;
	border-radius: 3px;
}

/* CART MODAL */
.store-cart-modal{
	border-radius:3px;
}
.store-cart-modal h3{
	font-size:20px;
	margin-bottom:15px;
}
.store-cart-modal p{
	margin:0;
}
.store-cart-list-item-attributes{
	font-family: 'Montserrat', sans-serif;
	font-size:12px;
	font-weight:500;
}
p.store-cart-page-cart-total{
	margin-bottom:20px;
}
.store-cart-page-cart-links{
	display: flex;
	align-items: flex-end;
	justify-content:space-between;
}
.store-cart-page-cart-links .pull-right{
}
.cart-list-thumb{
	width:70px;
	padding:5px 5px 5px 0!important;
}
.checkout-cart-product-name{
	width:auto;
	
}
.store-cart-page-cart-list-item td{
	vertical-align:middle;
	padding:5px;
	border:none;
}
.store-cart-page-cart-list-item.striped td{
	background:#f8f8f8;
}

#cart thead th{
	border:none;
	background:#f8f8f8;
}
.store-whiteout{
	background:rgba(0,0,0,0.5);
}
/* CHECKOUT */

.checkout h1{
	color:#3c7386;
	margin-bottom:30px;
}

.checkout h2{
	font-size:20px;
	margin:15px 0;
}

.checkout label{
	font-weight:500;
	display: inline-block;
    margin-bottom: 2px;
    font-weight: 500;
    font-size: 14px;
    color: #3c7386;
}

.checkout .store-cart-list-item-attribute{
	font-size:12px;
	font-weight:500;
}
.panel-body p{
	margin:0;
}

.store-cart-table{
	font-weight:500;
	font-size:14px;
}

/* NEWS ARTICLE */



.news-article .introduction h1{
	margin-bottom:0;
}
.news-article .introduction p{
	font-size: 22px;
	font-weight: 300;
}
.news-article .introduction hr{
	border: none;
	display: block;
	width: 20%;
	min-width:150px;
	height: 4px;
	background: #8bb0bd;
	margin: 30px auto;
}

.introduction p.news-date{
	margin-top:0;
	font-size:13px;
	font-weight:500;
}
/* NEWS LIST */

.news-home section.main-content{
	margin-top:80px;
	padding-top:40px;
}

.news-home section.main-content h1{
	text-align: center;
	margin-bottom: 30px;
}

.news-home div.copy{
	max-width:1600px;
}

.grid-item .image{
	transition:all 0.3s;
	}
.grid-item:hover .image{
	filter:brightness(0.6);
}
.news-list .article .image img{
	width:100%;
	height:auto;
	display:block;
}

.grid-sizer, .grid-item {
    width: calc(33.333%);
    float: left;
    display: block;
}
.grid-item.grid-item--width2{
	width: 66.666%;
}
.grid-item .outer-wrapper{
	width:calc(100% - 20px);
	margin:0 auto;
	position:relative;
	padding-bottom:calc((95% * 0.75) - 10px);
	height:0;
	border-bottom:20px solid transparent;
	overflow:hidden;
}
.grid-item.grid-item--width2 .outer-wrapper{
	padding-bottom:calc(95% * 0.75);
}
.grid-item .outer-wrapper a{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:block;
	
}
.grid-item .info{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
}
.grid-item .info .wrapper{
	background: rgba(31, 63, 74, 0.65);
	width:50%;
	min-width:240px;
	padding:2.5%;
	transition:all 0.3s;
}

.grid-item:hover .info .wrapper{
	background:rgba(229, 0, 81,0.8);
	}
.grid-item .info h4, .grid-item .info p{
	color:#fff;
}
.grid-item .info h4{
	font-size:16px;
}
.grid-item.grid-item--width2 .info h4{
	font-size:20px;
}
.grid-item .info p.date{
	font-size: 10px;
	color: #e6e6e6;
	margin: 0;
}
.grid-item .info p.description{
	margin:10px 0 0 0;
}




@media screen and (max-width:800px){
	.grid-item .info .wrapper{
		width:75%;
		}
}
@media screen and (max-width:900px){
	.grid-sizer, .grid-item {
	    width: 50%;
	    float: left;
	    display: block;
	}
	.grid-item.grid-item--width2{
		width: 100%;
	}
}

@media screen and (min-width:1200px){
	.grid-sizer, .grid-item {
	    width: 25%;
	    float: left;
	    display: block;
	}
	.grid-item.grid-item--width2{
		width: 50%;
	}
}
@media screen and (max-width:640px){
	.grid-sizer, .grid-item {
		width:100%;
		}
	.grid-item.grid-item--width2 .info h4{
		font-size:16px;
	}
	.grid-item .info p.description{
		display:none;
	}
}

/* VIDEOS PAGE */

.videos-page .introduction{
	padding:120px 4% 0 4%;
}
.videos-page section.main-content{
	padding-top:0;
}

div.videos{
	display:flex;
	flex-direction:column;
}
div.videos .postcard{
	display:block;
	margin:10px auto;
	width:100%;
	padding:10px;
	background:#f8f8f8;
	max-width:800px;
}

/* CONTACT PAGE */
.office-map{
	
}

.office-map .googleMapCanvas{
	height: 75vh !important;
	min-height: 300px;
	border-bottom: 25px solid #a0d3d3;
}

section.contact-form{
	background:#f8f8f8;
	padding:50px 4%;
}
section.contact-form .wrapper{
	max-width:960px;
	margin:0 auto;
}

section.contact-form fieldset{
	width:48%;
}

section.contact-form fieldset:last-of-type{
	width:100%;
}
section.contact-form .ccm-dashboard-express-form{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
section.contact-form button{
	display: block;
    height: 36px;
    line-height: 36px;
    padding: 0 20px;
    color: #fff;
    text-align: center;
    background:#3c7386;
    font-family: 'evelethslantw01-regularRg', sans-serif;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-size: 14px;
    border-radius: 2px;
    transition: all 0.3s;
    border:none;
    cursor:pointer;
}
section.contact-form button:hover{
    background: #e50051;
}

/* DONATION BUTTON */

div.donate-buttons .wrapper{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	padding-bottom:15px;
}
.donation-button{
	width:130px;
	height:130px;
	background:#67b7bf;
	color:#fff;
	margin:10px;
	border-radius:3px;
	padding:12px;
	text-align:center;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items: center;
	position:relative;
	transition:all 0.3s;
}
.donation-button:hover{
	background:#e50051;
	transform:scale(1.05);
}
.donation-button a{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:block;
}
.donation-button p{
	margin:0;
	line-height:1em;
	font-family: 'evelethslantw01-regularRg', sans-serif;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-size:16px;
}
.donation-button p.small{
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	text-transform: uppercase;
	position: relative;
	top: 5px;
	font-weight: 600;
}
.donation-button p.donation-amount{
	
    font-size:44px;
}

/* VIMEO BLOCK */

.vimeoVidWrap{
	display: block;
	margin: 10px auto;
	width: 100%;
	padding: 10px;
	background: #f8f8f8;
	max-width: 800px;
}

/* EVENT CATEGORY LIST */

.event-category-list-wrapper{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	
}

.event-category-list-wrapper .category{
	width:31.333%;
	margin:1%;
	position:relative;
}
.homepage .event-category-list-wrapper .category{
	width:23%;
}

.event-category-list-wrapper .category .image{
	position:relative;
	overflow:hidden;
}
.event-category-list-wrapper .category .wrapper{
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
}
.event-category-list-wrapper .category .image iframe{
	position:absolute;
	width: 250%;
	height: 150%;
	top: -25%;
	
}

.event-category-list-wrapper .category .image:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}

.event-category-list-wrapper .category:hover .image:after{
	background:rgb(60, 115, 134);
}

.event-category-list-wrapper .category:nth-of-type(even):hover .image:after{
	background:#e50051;
}
.event-category-list-wrapper .category img{
	display:block;
	width:100%;
	height:auto;
}

.event-category-list-wrapper .category .info{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	color: #fff;
	padding: 20px;
}

.event-category-list-wrapper .category .info p, .event-category-list-wrapper .category .info h3{
	margin:0;
	font-weight:500;
}

.event-category-list-wrapper .category .info p{
	line-height:1.2em;
}

.event-category-list-wrapper .category a{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:10;
	display:block;
}

@media screen and (max-width:900px){
	.event-category-list-wrapper .category{
		width:48%;
	}
}

@media screen and (max-width:540px){
	.event-category-list-wrapper .category{
		width:98%;
	}
	.event-category-list-wrapper .category{
		height: 0;
	    overflow: hidden;
	    padding-bottom: 150px;
	}
	.event-category-list-wrapper .category .image{
		display: flex;
		align-items: center;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
}

@media screen and (max-width:980px){
	.homepage .event-category-list-wrapper .category{
		width:31.333%;
	}
}

@media screen and (max-width:640px){
	.homepage .event-category-list-wrapper .category{
		width:48%;
	}
}

@media screen and (max-width:500px){
	.homepage .event-category-list-wrapper .category{
		width:98%;
	}
}

/* HOMEPAGE GRID LIST */

section.homepage-grid-list{
	padding: 0 4% 50px 4%;
	margin:0 auto;
	max-width:1400px;
}
/* ANNOUNCEMENT */
section.announcement{
	position: relative;
	background: #3c7386;
	color:#fff;
	padding: 50px 4%;
}

section.announcement .max-width{
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 5%;
}

section.announcement h2{
	font-size:24px;
}

section.announcement p{
	font-size:14px;
	margin:10px 0;
}

section.announcement .cols{
	display:flex;
}

section.announcement .cols .lhs{
	flex: 0 0 65%;
	display:flex;
	flex-direction:column;
	justify-content:center;
}

section.announcement .cols .rhs{
	flex: 0 0 35%;
	padding: 0 0 0 5%;
	display:flex;
	justify-content: flex-end;
	align-items: center;
}

section.announcement img{
	width:80%;
	height:auto;
	display:block;
	opacity:0.75;
}

@media screen and (max-width:1280px){
	section.announcement .cols .rhs{
		display:none;
	}
	section.announcement .cols .lhs{
		flex: 0 0 100%;
		max-width:900px;
	}
}

/* FOOTER LINKS */

div.footer-links{
	display:flex;
}

div.footer-links a{
	font-size:14px;
	margin-right:10px;
	display:block;
}

/* TEMPORARY */

.homepage .fs-video.tear:after{
	display:none;
}