/* HEADER */

.dark rect {
    fill: black;
}

.dark path {
    fill: black;
}

.header {
    padding: 2rem 0;
    transition: all .5s;
	margin-top: 40px;
	display: flex;
	position: relative;
}

.header-outer {
    position: fixed;
    z-index: 999;
    background: white;
    width: 100%;
	box-shadow: 0px 0px 20px rgb(18 47 60 / 60%) !important;
}

.header-space {
	width: 100%;
    height: 198px;
}

.logo {
    width: 100%;
    display: inline-block;
    max-width: 450px;
}

.nav {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    text-align: right;
    margin-left: 4%;
}

.nav ul {
	padding: 0;
    margin: 0;
}

.nav li {
	list-style: none;
	display: inline-block;
	margin: 0 1rem;
	position: relative;
}

.nav a {
	color: #272727;
	line-height: 90px;
	font-weight: 400;
    font-size: 17px;
}

.nav li a:after {
	left: 0;
    background-color: #000000;
    content: "";
    position: absolute;
    bottom: 1.5em;
    width: 0px;
    height: 2px;
    margin: 5px 0 0;
    transition: all 0.2s ease-in-out;
    transition-duration: 0.75s;
    opacity: 0;
}

.nav li:hover a:after {
	width: 100%;
    opacity: 1;
}

.current-menu-item a:after {
	width: 100% !important;
    opacity: 1 !important;
}
ul.sub-menu {
    display: none !important;
}

@media only screen and (max-width:1920px) {

.header-space {
    height: 164px;
}

.logo {
    max-width: 280px;
}

.logo-img {
	max-width: 280px;
}

.nav a {
	line-height: 56px;
}

.nav li {
	margin: 0 .7rem;
}

.nav {
    margin-left: 0%;
}

.nav li a:after {
    bottom: .5em;
}

}

@media only screen and (max-width:1366px) {

.header-space {
    height: 122px;
}

.header {
    padding: 2rem 0;
}

.logo {
    max-width: 250px;
}

.logo-img {
	max-width: 250px;
}

.nav li {
	margin: 0 1%;
}

.nav a {
	line-height: 50px;
	font-size: 15px;
}

.nav {
    width: 68%;
}


}

@media only screen and (max-width:1024px) {

.header-space {
    height: 76px;
}

.logo {
    max-width: 200px;
}

.logo-img {
	max-width: 200px;
}

.header {
    padding: 1rem 0;
    padding-bottom: .5rem;
}

.nav {
	display: none;
}

}


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


}

/*********************
    LINK
**********************/

.quicklink {
	text-transform: uppercase;
    font-size: .9rem;
    letter-spacing: .1rem;
}



/*********************
	MOBILE NAV
*********************/

.mobile-menu {
	display: none;
}

@media only screen and (max-width:1024px) {

	.mobile-menu {
		display: block;
	}

}

@media only screen and (max-width:600px) {
	
	.header-outer.scrolling {
		top: 0;
	}

}

.mobile-logo {
    display: inline-block;
}

.aplus-logo-mobile {
	width: 120px;
}

.mobile-menu {
    position: absolute;
    background-color: transparent;
    font-size: 17px;
    z-index: 9999;
    transition: background-color .25s linear;
    transition: top .25s linear;
    top: 1rem;
    right: 2rem;
}

.logo-img.light {
	display: none;
}

.scrolling .logo-img.light {
	display: block;
}

.scrolling .logo-img.dark {
	display: none;
}

.scrolling .header {
    padding: 1rem 0;
    transition: all .5s;
}

.scrolling .nav a {
    color: #ffffff;
}

.scrolling .nav li a:after {
    background-color: #ffffff;
    transition: all 0.2s ease-in-out;
    transition-duration: 0.5s;
}

.header-outer.scrolling {
    background: #121212;
    width: 100%;
    position: fixed;
    z-index: 999999999999;
    transition: all 1s ease;
    -webkit-box-shadow: 0px 23px 21px -16px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 23px 21px -16px rgba(0,0,0,0.2);
    box-shadow: 0px 23px 21px -16px rgba(0, 0, 0, 0.2);
	padding-top: 40px;
}
.header-outer.scrolling .header {
	margin-top: 0px;
}
.mobile-quicklinks {
    position: absolute;
    bottom: 0;
    background: #545454;
    width: 100%;
    text-align: center;
    padding: 1em 0;
}

.mobile-quicklinks ul {
	margin: 0;
}

.mobile-quicklinks a {
	color: #ffffff;
}

.mobile-quicklinks li {
	margin: 0 1em !important;
	display: inline-block !important;
}

.button_container {
    height: 21px;
    width: 35px;
    cursor: pointer;
    z-index: 100;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
    overflow: hidden;
    position: relative;
    float: right;
    margin: .5em 0em;
}
.button_container:hover {
  opacity: .7;
}
.button_container.active .top {
  -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
          transform: translateY(11px) translateX(0) rotate(45deg);
  background: #FFF;
}
.button_container.active .middle {
  opacity: 0;
  background: #FFF;
}
.button_container.active .bottom {
  -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
          transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #FFF;
}
.button_container span {
  background: #000000;
  border: none;
  height: 1px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
  cursor: pointer;
}

.scrolling .button_container span {
  background: #ffffff;
}

.button_container span:nth-of-type(2) {
  top: 10px;
}
.button_container span:nth-of-type(3) {
  top: 20px;
}

.overlay {
  position: fixed;
  background: #121212;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .35s, visibility .35s, height .35s;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
}
.overlay.open {
  opacity: .9;
  visibility: visible;
  height: 100%;
}
.overlay.open li { -webkit-animation: fadeInRight .5s ease forwards;
animation: fadeInRight .5s ease forwards; -webkit-animation-delay: .35s; animation-delay: .35s;}
.overlay.open li:nth-of-type(2) { -webkit-animation-delay: .4s; animation-delay: .4s;}
.overlay.open li:nth-of-type(3) { -webkit-animation-delay: .45s; animation-delay: .45s;}
.overlay.open li:nth-of-type(4) { -webkit-animation-delay: .50s; animation-delay: .50s;}
.overlay.open li:nth-of-type(5) { -webkit-animation-delay: .55s; animation-delay: .55s;}
.overlay.open li:nth-of-type(6) { -webkit-animation-delay: .60s; animation-delay: .60s;}
.overlay.open li:nth-of-type(7) { -webkit-animation-delay: .65s; animation-delay: .65s;}
.overlay.open li:nth-of-type(8) { -webkit-animation-delay: .70s; animation-delay: .70s;}
.overlay.open li:nth-of-type(9) { -webkit-animation-delay: .75s; animation-delay: .75s;}
.overlay.open li:nth-of-type(10) { -webkit-animation-delay: .80s; animation-delay: .80s;}

.overlay nav {
  position: relative;
  height: 70%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 50px;
  font-weight: 400;
  text-align: center;
}
.mobile-main-menu ul {
    list-style: none;
    padding: 4em 0 ;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    width: 100%;
    text-align: center;
    vertical-align: middle;
}
.mobile-main-menu ul li {
    display: inline-block;
    position: relative;
    opacity: 0;
    margin-bottom: .5em;
    width: 100%;
    /*max-width: 300px;*/
}

.overlay ul li a {
  display: block;
  position: relative;
  color: #FFF;
  text-decoration: none;
  overflow: hidden;
  margin: 1em;
  font-size: 18px;
  font-weight: 400;
}

.overlay ul li a:hover {
	color: #4FB0DF;
}

.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
  width: 100%;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}


/* FOOTER */

.footer-logo {
    margin-bottom: 4em;
    max-width: 250px;
}

.footer-content {
    line-height: 1.6em;
    letter-spacing: .05em;
}

.footer {
    background: #0e0e0e;
    padding: 7% 0;
    color: white;
}

.footer-inner {
    display: inline-block;
    width: 100%;
}

.footer-col-1 {
	width: 20%;
	margin-right: 10%;
	float: left;
}

.footer-col-2 {
	width: 60%;
	margin-right: 10%;
	float: left;
}

.footer-menu-1, .footer-menu-2, .footer-menu-3 {
	width: 33%;
	padding-right: 1rem;
	float: left;
}

.footer-col-row {
    margin-bottom: 4rem;
    width: 100%;
    display: inline-block;
}

footer ul {
    margin: 0;
    padding: 0;
}

footer li {
    list-style: none;
    margin-bottom: .7em;
}

li.toplevel {
    margin-bottom: 2em;
}

li.toplevel a {
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: .75em;
}

footer li a {
    color: white;
    font-size: 15px;
    transition: all 1s;
}

footer li a:hover {
	color: #ff836e;
}

.footer-left {
	width: 50%;
	float: left;
}

.footer-right {
	width: 50%;
	float: left;
}

.footer-social a {
	color: #a8a8a8;
}

.footer-social {
	text-align: right;
}

.footer-social li {
	display: inline-block;
	margin-left: 2em;
}

.footer-copyright {
	color: #919191;
	font-size: 12px;
	letter-spacing: 1px;
}

/*  SLIDER */


/* Dots */

.slick-dots {
    position: absolute;
    bottom: 50%;
    display: block;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    right: 9rem;
}

.slick-dots li {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    margin: 1rem 0;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 30px;
    height: 30px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
    content: "\2022";
    font-size: 48px;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 30px;
    line-height: 30px;

    position: absolute;
    top: 0;
    left: 0;

    width: 30px;
    height: 30px;

    content: "\26AC";
    text-align: center;

    opacity: 1;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: 1;
    color: white;
    content: "\2022";
    font-size: 48px;
}

/* HOME */

.main-slider {
	position: relative;
}

.slide-inner {
	height: 880px;
}
	
.slide-bg {
	background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide-caption {
	display: none;
    background: white;
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 60px;
    width: 43rem;
    padding: 7rem 9rem;
    line-height: 1.4em;
    font-weight: 600;
}

.slide-link {
	display: none;
    position: absolute;
    right: 0;
    margin-top: -7rem;
    margin-right: -15rem;
    z-index: 2;
    background: #272727;
    color: white;
    top: 0;
    font-size: 1.8rem;
    width: 12rem;
    height: 12rem;
    line-height: 1.6em;
    padding: 2.3rem;
    font-weight: 300;
}

.slide-caption-inner {
    position: relative;
}

.upcoming-event-title-desktop {
	position: absolute;
	width: 42%;
	bottom: 0;
	color: white;
	background: #0e0e0e;
	right: 0;
	padding: 2rem;
  padding-right: 0px;
	display: none;
}

.announcement-section-inner {
	width: 100%;
	display: table;
	min-height: 340px;
}

.announcement-col {
	display: table-cell;
	background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.announcement-section-col-1 {
	width: 33%;
}

.announcement-title {
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.4em;
}

.announcement-content {
    margin-bottom: 2rem;
    line-height: 1.7em;
}

.announcement-link {
    color: white;
}

.announcement-section-col-2 {
	width: 25%;
	background: #e24d34;
	color: white;
	padding: 3rem;
}

.announcement-section-col-3 {
	width: 42%;
	padding: 3rem;
}

.mec-event-list-classic .mec-event-date span {
    font-weight: bold;
    margin-bottom: 6px;
    font-family: 'Roboto';
    text-transform: uppercase;
    letter-spacing: .3em;
    margin-left: 1em;
}
.mec-event-list-classic .mec-event-title {
    text-transform: initial;
    font-size: 17px;
    font-family: 'Roboto';
    font-weight: 400;
}
.mec-event-list-classic .mec-event-article {
    padding: 0;
    margin-bottom: 0;
}
ul.mec-categories li.mec-category a {
    font-family: 'Roboto';
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: 12px;
    color: #a2a2a2;
}
.mec-wrap * {
    font-family: 'Roboto';
}
.mec-wrap, .mec-wrap div:not([class^="elementor-"]), .lity-container, .mec-wrap h1, .mec-wrap h2, .mec-wrap h3, .mec-wrap h4, .mec-wrap h5, .mec-wrap h6, .entry-content .mec-wrap h1, .entry-content .mec-wrap h2, .entry-content .mec-wrap h3, .entry-content .mec-wrap h4, .entry-content .mec-wrap h5, .entry-content .mec-wrap h6, .mec-wrap .mec-totalcal-box input[type="submit"], .mec-wrap .mec-totalcal-box .mec-totalcal-view span, .mec-agenda-event-title a, .lity-content .mec-events-meta-group-booking select, .lity-content .mec-book-ticket-variation h5, .lity-content .mec-events-meta-group-booking input[type="number"], .lity-content .mec-events-meta-group-booking input[type="text"], .lity-content .mec-events-meta-group-booking input[type="email"], .mec-organizer-item a, .mec-single-event .mec-events-meta-group-booking ul.mec-book-tickets-container li.mec-book-ticket-container label {
    font-family: 'Roboto';
}
[class*="mec-sl-"] {
    font-family: 'simple-line-icons' !important;
}
[class*="mec-fa-"] {
    font-family: FontAwesome !important;
}

@media only screen and (max-width:1920px) {

	.slide-inner {
		height: 630px;
	}
	
	.slide-caption {
		font-size: 47px;
		width: 33rem;
		padding: 5rem 7rem 5rem 9rem;
	}
	
	.slide-link {
		margin-top: -5rem;
		margin-right: -12rem;
		font-size: 1.4rem;
		width: 9rem;
		height: 9rem;
		padding: 1.6rem;
	}
	
	.slick-dots {
		right: 8rem;
	}

}

@media only screen and (max-width:1366px) {

	.slide-inner {
		height: 510px;
		margin-left: 6rem;
	}
	
	.slide-caption {
		font-size: 37px;
		width: 25rem;
		padding: 5rem 6rem 5rem 6rem;
	}
	
	.slide-link {
		margin-top: -5rem;
		margin-right: -10rem;
		font-size: 1rem;
		width: 7rem;
		height: 7rem;
		padding: 1.2rem;
	}
	
	.slick-dots {
		right: 5rem;
	}

}

@media only screen and (max-width:1024px) {

	.slide-inner {
		height: auto;
		margin-left: 0rem;
	}
	
	.slide-bg-outer {
		height: 270px;
		position: relative;
	}
	
	.slide-caption {
		font-size: 33px;
		padding: 4rem 2rem;
		position: relative;
		width: 50%;
	}
	
	.slide-link {
		margin-top: -7rem;
		margin-right: -2rem;
		font-size: .8rem;
		width: 6rem;
		height: 6rem;
		padding: 1rem;
	}
	
	.slick-dots {
		display: none !important;
	}

}


@media only screen and (max-width: 768px) {

.footer-logo {
    margin-bottom: 1em;
    max-width: 250px;
}

.footer-content {
    line-height: 1.6em;
    letter-spacing: .05em;
    margin: 1rem 0;
    margin-bottom: 2.5em;
}

.footer-col-row {
    margin-bottom: 1rem;
}

  .footer-col-1 {
      width: 100%;
      margin-right: 0%;
      float: none;
  }

  .footer-col-2 {
      width: 100%;
      margin-right: 0%;
      float: none;
  }

}

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

.footer-menu-1, .footer-menu-2, .footer-menu-3 {
    width: 50%;
    padding-right: .5rem;
    float: left;
}

.footer-col-row {
    margin-bottom: 2rem;
}

}

