/*!
Theme Name: FLO
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: flo
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

FLO is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# CUSTOM STYLING
--------------------------------------------------------------*/


@media screen and (min-width: 0) {

	/*--------------------------------------------------------------
	## IE
	--------------------------------------------------------------*/

	.ie.logo {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 280px;
    height: 215px;
		display: none;
  }

	/*--------------------------------------------------------------
	## JS
	--------------------------------------------------------------*/

	.whcol {
		color: white!important;
	}

	.whfill {
		fill: white!important;
	}

	.pistroke {
		border: 1px solid #f072ab!important;
	}

	.whstroke {
		border: 1px solid white!important;
	}

	.picol {
		color: #f072ab!important;
	}

	.wspicol {
		color: #f072ab!important;
	}

	.pifill {
		fill: #f072ab!important;
	}

	/*--------------------------------------------------------------
	## BODY
	--------------------------------------------------------------*/

	#disc {
		/*display: none;*/
		-webkit-perspective: 600px;
		perspective: 600px;
	}

	html, body {
		height: 100%;
	}

	body {
		background: #fdfdfd;
	}

	.body_Wrap {
    padding: 20px;
  }

	.Container {
    margin: 55px auto auto auto;
    max-width: 450px;
		width: 280px;
		opacity: 0;
		-webkit-transition: opacity 1s;
		-moz-transition: opacity 1s;
		-ms-transition: opacity 1s;
		-o-transition: opacity 1s;
		transition: opacity 1s;
	}

	.showing{
		opacity: 1;
		-webkit-transition: opacity 1s;
		-moz-transition: opacity 1s;
		-ms-transition: opacity 1s;
		-o-transition: opacity 1s;
		transition: opacity 1s;
	}

	.preloader {
		height: auto;
		width: calc(100vw - 40px);
		position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
		right: 0;
    margin: auto;
		/*display: none;*/
	}

	/*--------------------------------------------------------------
	## GLOBAL TYPOGRAPHY
	--------------------------------------------------------------*/

	strong {
		font-weight: 500;
	}

	a, p, h1, h2, h3, h4, h5, h6, html, body, button {
		font-family: 'Heebo', sans-serif;
		/*font-family: 'sofia-pro','Roboto', sans-serif;*/
		color: black;
		text-decoration: none;
		font-size: 11px;
	}

	p {
		line-height: 15px;
	}

	p.present{
		margin-top: 2px;
	}

	p.byline {
		margin-top: 0;
		font-style: italic;
	}

	a:hover, button:hover, .tab h3:hover, .name_Wrap span:hover, .hl, .thl, #mc_embed_signup .button:hover{
		color: #f072ab;
	}

	h1 {
    font-size: 20px;
    font-weight: normal;
    line-height: 23.5px;
  }

	h3 {
		font-size: 16px;
		font-weight: normal;
		margin: 0;
		line-height: 19px;
  }

	h3.maintitle {
		font-size: 18px;
		line-height: 22px;
	}

	hr {
		margin: 10px 0;
		background: transparent;
		border: 0;
		border-top: 1px dotted black;
	}

	/*--------------------------------------------------------------
	## SPINNING DISC
	--------------------------------------------------------------*/

	.threedee {
		position: absolute;
		left: 50%;
		top: 50%;
		transform-style: preserve-3d;
		transform-origin: 50% 50% 50%;
		backface-visibility: hidden;
		background-size: auto 100%!important;
		background-color: white!important;
	}
	.assembly {
		-webkit-animation: spin 12s linear infinite;
		-moz-animation: spin 12s linear infinite;
		-o-animation: spin 12s linear infinite;
		animation: spin 12s linear infinite;
	}

	div#wrapper > .face:nth-last-child(2), div#wrapper > .face:last-child {
		 background-size: 100%!important;
		 border-radius: 50%;
	}

	div#disc {
		position: fixed;
		left: 0;
		right: 0;
		top: -35px;
		bottom: 0;
		margin: auto;
		width: 280px;
    height: 280px;
	}

	@-webkit-keyframes spin {
		to { -webkit-transform: rotateY(360deg) rotateZ(360deg) rotateX(720deg);
		     transform: rotateY(360deg) rotateZ(360deg) rotateX(720deg); }
	}
	@-moz-keyframes spin {
		to { -moz-transform: rotateY(360deg) rotateZ(360deg) rotateX(720deg);
		     transform: rotateY(360deg) rotateZ(360deg) rotateX(720deg); }
	}
	@-o-keyframes spin {
		to { -o-transform: rotateY(360deg) rotateZ(360deg) rotateX(720deg);
		     transform: rotateY(360deg) rotateZ(360deg) rotateX(720deg); }
	}

	@keyframes spin {
		to { transform: rotateY(360deg) rotateZ(360deg) rotateX(720deg); }
	}

	/*--------------------------------------------------------------
	## HEADER
	--------------------------------------------------------------*/

	.head {
    /*height: 43px;*/
		width: calc(100vw - 40px);
    border-bottom: 1px black solid;
		position: fixed;
    top: 0;
		background: #fdfdfd;
		z-index: 5;
  }

	.topWrap {
		clear: both;
		overflow: hidden;
		padding-top: 17px;
    padding-bottom: 14px;
	}

	.body_Wrap.About.Us a.about-us {
		color: #f072ab;
	}

	.body_Wrap.Your.Visit a.your-visit {
		color: #f072ab;
	}

	.body_Wrap.Opportunities a.opportunities {
		color: #f072ab;
	}

	/*--------------------------------------------------------------
	## FOOTER
	--------------------------------------------------------------*/

	footer#colophon {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		width: calc(100vw - 40px);
		margin: auto;
		background: #fdfdfd;
		height: 60px;
		z-index: 6;
	}

	.fcontainer {
    width: 180px;
    margin: auto;
	}

	.foot {
    border-top: 1px solid black;
    padding-top: 15px;
  }

	/*--------------------------------------------------------------
	## MENU
	--------------------------------------------------------------*/
	.mob, .mob_bg {
		display: none;
	}

	.mob{
		position: fixed;
    top: 20px;
    left: 20px;
    margin: auto;
		z-index: 4;
		width: 100vw;
		height: 100vh;
		padding-bottom: 80px;
		overflow: scroll;
	}

	.mob_bg {
		background: #fdfdfd;
		width: 100vw;
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		margin: auto;
		z-index: 3;
	}

	.mhome a {
		font-size: 14px;
	}

	.mlinks {
		margin-bottom: 83px;
	}

	.mlinks a, .mlinks p {
		font-size: 11px;
	}

	.menu a {
		display: inline-block;
	}

	.mmenu{
		margin-top:  80px;
		margin-bottom: 70px;
	}

	.mmenu a, .mmenu p {
    display: block;
    font-size: 32px;
    line-height: 39px;
	}

	.menu, .pop, .fsection {
		display: none;
	}

	/* .mbutton {
		float: right;
		width: 18px;
		height: 18px;
		background: black;
		border-radius: 50%;
	} */

	.mbutton {
		float: right;
  }

	.mbutton p {
		margin: 0;
		font-size: 14px;
		line-height: 21px;
	}

	.mhome {
    float: left;
  }

	a.sbank {
		display: block;
	}

	a.dtag {
		display: none;
	}

	.second-head {
		display: none;
	}

	/*--------------------------------------------------------------
	## NEWSLETTER
	--------------------------------------------------------------*/

	.newsletter {
		margin-bottom: 40px;
	}

	.newsletter button,
	.newsletter #mc_embed_signup .button {
		font-size: 11px;
		text-align: left;
	}

	input#fieldEmail, input#mce-EMAIL {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid black;
    height: 20px;
    width: 200px;
		font-size: 11px;
		color: black;
		background: transparent;
		text-align: left;
 }

	button, #mc_embed_signup .button {
	  background: transparent;
	  border: none;
	  padding: 0;
	  margin: 0;
		display: block;
 }

 /*--------------------------------------------------------------
 ## DEFAULT PAGE TEMPLATE
 --------------------------------------------------------------*/

 	.desk_section, .side {
		display: none;
	}

	body.category-other .side,
	body.page-template-category-other .side {
		display: none;
	}

	.block {
		margin-top: 20px;
    margin-bottom: 10px;
		/*max-width: 270px;*/
  }

	.block h1 {
    margin: 0;
  }

	.l_top h3 {
		display: inline-block;
    border-bottom: 1px solid black;
		padding-bottom: 4px;
	}

	.l_top h3, .tab h3 {
		font-size: 13px;
		font-weight: normal;
		margin: 0;
		line-height: 18px;
	}

	svg.back-arrow {
    height: 10px;
		width: 10px;
		fill:#f072ab;
  }

	svg.sbc-arrow {
		height: 10px;
		width: 10px;
		margin-right: 5px;
	}

	img.m {
		left: -50%;
    top: -25%;
		/* width: 500px; */
		height: 500px;
		max-width: none;
		margin: auto;
		position: relative;
		pointer-events: none;
		-moz-user-select: none;
		/*border-radius: 50%;*/
	}

	.list_Wrap {
    padding-top: 6px;
  }

	.accord {
    clear: both;
    overflow: hidden;
  }

	.list {
    float: left;
    /*width: 80px;*/
		width: 30%;
  }

	.text {
    float: left;
    width: 70%;
	  padding-top: 5px;
		padding-bottom: 60px;

  }

	.maintext {
		line-height: 14.5px;
		padding-left: 5%;
		display: none;
	}

	.maintext:first-child {
		display: block;
	}

	.tab {
    max-width: 90px;
  }

	.map_names {
    clear: both;
    overflow: hidden;
		margin-top: 30px;
    margin-bottom: 25px;
  }

	.map_names span {
		float: left;
		font-size: 14px;
    font-weight: normal;
    margin: 0;
    line-height: 19px;
	}

	.name_Wrap > span:first-child > span.sep {
		display: none;
	}

	span.sep {
		margin: auto 2.5px auto 2.5px;
		color: black;
	}

	.map_Wrap {
    position: relative;
		border-radius: 50%;
		overflow: hidden;
  }

	.map {
		display: none;
		position: relative;
		width: 280px;
		height: 280px;
		overflow: hidden;
		cursor: move;
		box-sizing: border-box;
		margin: auto;
	}

	.map:first-child {
		display: block;
	}

	.name_Wrap {
		float: left;
		width: 75%;
		text-align: left;
	}

	.count {
		float: right;
		width: 60px;
	}

	.count h3 {
		text-align: right;
		width: 100%;
	}

	/*--------------------------------------------------------------
	## SIDEBAR
	--------------------------------------------------------------*/

	/*--------------------------------------------------------------
	## ARCHIVE
	--------------------------------------------------------------*/

	body.blog main {
		margin-bottom: 80px;
	}

	.overlay {
		display: none;
	}

  .desk_event_img {
		display: none;
	}

	.event_img {
		position: relative;
	}

	.e_Wrap {
		height: 85%;
		width: 85%;
		position: absolute;
		margin: auto;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		border-radius: 50%;
	}

	.o.e_Wrap{
		border-radius: 0;
	}

	img.mob_city {
		height: 100%;
		width: 100%;
		position: absolute;
		margin: auto;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
	}

	.event_box {
    margin-bottom: 40px;
  }

	body.category-other .event_titles {
		height: 55px;
		display: none;
	}

	.event_titles {
    margin-top: 7.5px;
  }

	.event_titles h3 {
    text-align: center;
  }

	p.p_cat {
    text-align: center;
    font-size: 12px;
    font-style: italic;
    margin: 10px 0 0 0;
}

	.desk_arch{
		display: none;
	}

	.ws_icons .icon {
		display: none;
    position: absolute;
    z-index: 1;
	}

	.icon {
		width: 30px;
    height: auto;
    right: 30px;
    bottom: 28.5px;
		opacity: 1;
		-webkit-transition: opacity .5s;
		-moz-transition: opacity .5s;
		-ms-transition: opacity .5s;
		-o-transition: opacity .5s;
  }

	.category-speakers .s.icon {
		display: block;
	}

	.category-workshops .w.icon {
		display: block;
	}




	/*--------------------------------------------------------------
	## POST
	--------------------------------------------------------------*/

	.mb.book {
    border: 1px solid black;
    width: 92px;
    height: 26px;
    padding: 5px 5px 5px 10px;
    border-radius: 13px;
		margin-left: -5px;
	}

	.mb.book span {
    display: inline-block;
		font-size: 12px;
	  margin-right: 5px;
		margin-top: -2px;
  }

	.wb.book {
	  border: 1px solid black;
	  padding: 5px 5px 3px 10px;
	  width: 76px;
	  height: 26px;
	  border-radius: 13px;
	}

	.wb.book svg.book-arrow {
	  margin-left: 3.5px;
	}

	svg.book-arrow {
    height: 10px;
		width: 10px;
    display: inline-block;
  }

	body.single-post .text {
		padding-top: 22px;
	}

	.post-nav {
    margin-top: 40px;
  }

	a.post_prev svg{
		margin-bottom: 10px;
	}

	a.post_prev svg, a.post_next svg {
    height: 15px;
		width: 15px;
    display: block;
  }

	.logos {
    clear: both;
    overflow: hidden;
    margin: 10px auto 30px auto;
  }

	img.log {
    float: right;
    max-height: 45px;
		max-width: 160px;
		margin-right: 10px;
  }

	img.log:first-child {
		margin-right: 0!important;
	}

	p:empty{
		display: none!important;
	}

	/*--------------------------------------------------------------
	## HOLDING
	--------------------------------------------------------------*/

	.Holding a:hover, .Holding #mc_embed_signup .button:hover {
		color: white;
	}

	.fsection.hold{
		display: block;
		margin: auto;
	}

	.fsection.hold.faddress.fcol {
		display: block;
	}

	p.media-tog{
		font-size: 14px;
		float: right;
		margin: 0;
		padding-top: 3px;
		color: white;
		cursor: pointer;
	}

	.Holding footer#colophon {
		height: 375px;
		margin: auto auto -257.5px auto;
		-webkit-transition: margin-bottom 1s; /* Safari */
		-moz-transition: margin-bottom 1s; /* Firefox */
		-o-transition: margin-bottom 1s; /* Opera */
		transition: margin-bottom 1s;
	}

	.fcol_Wrapper {
		clear: both;
		overflow: hidden;
	}

	.Holding .newsletter {
		width: 170px;
	}

	.Holding .pop.arrow {
		display: block;
	}

	.Holding .hpop {
		width: 15px;
		position: fixed;
		bottom: 132.5px;
		margin-bottom: 0;
		-webkit-transition: margin-bottom 1s; /* Safari */
		-moz-transition: margin-bottom 1s; /* Firefox */
		-o-transition: margin-bottom 1s; /* Opera */
		transition: margin-bottom 1s;
	}

	.hbop {
		-webkit-animation: hBop 2s ease infinite;
		-moz-animation: hBop 2s ease infinite;
		-o-animation: hBop 2s ease infinite;
		animation: hBop 2s ease infinite;
	}

	@-webkit-keyframes hBop {
		0% {bottom: 133.5px;}
		50% {bottom: 125.5px;}
		100% {bottom: 133.5px;}
	}
	@-moz-keyframes hBop {
		0% {bottom: 133.5px;}
		50% {bottom: 125.5px;}
		100% {bottom: 133.5px;}
	}
	@-o-keyframes hBop {
		0% {bottom: 133.5px;}
		50% {bottom: 125.5px;}
		100% {bottom: 133.5px;}
	}
	@keyframes hBop {
		0% {bottom: 133.5px;}
		50% {bottom: 125.5px;}
		100% {bottom: 133.5px;}
	}

	.js-hslideactive {
		margin-bottom: 260px!important;
		-webkit-transform: rotate(180deg);
		-moz-transform: rotate(180deg);
		-o-transform: rotate(180deg);
		transform: rotate(180deg);
		-webkit-transition: margin-bottom 1s; /* Safari */
		-moz-transition: margin-bottom 1s; /* Firefox */
		-o-transition: margin-bottom 1s; /* Opera */
		transition: margin-bottom 1s;
	}

	.js-hslideup {
		margin: auto auto 0px auto!important;
		-webkit-transition: margin-bottom 1s; /* Safari */
		-moz-transition: margin-bottom 1s; /* Firefox */
		-o-transition: margin-bottom 1s; /* Opera */
		transition: margin-bottom 1s;
	}

	.med-content {
		margin-bottom: 120px;
	}

	.med-content h4 {
    font-size: 18px;
    line-height: 25px;
		font-weight: normal;
	}

	.newsletter.fcol.start {
		display: none;
	}

	.Holding .bar {
		display: none;
	}

	.hold_logo {
    position: fixed;
    top: -50px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
		width: 360px;
    height: 390px;
  }

	.Holding .preloader {
		display:  none;
	}

	.Holding #content {
		display: none;
	}

	/*--------------------------------------------------------------
	## WORKSHOPS & SPEAKERS
	--------------------------------------------------------------*/

	.mob_eventp {
    width: 235px;
    margin: auto auto 55px auto;
  }

	.mob_eventp img {
		display: none;
	}

	.other_block {
		display: none;
	}

	.o.event_box {
    margin-bottom: 0px;
  }

	body.category-other .event_titles {
		display: none;
	}

	/*--------------------------------------------------------------
	## FRIDAY FEELS
	--------------------------------------------------------------*/

	.music_images {
		height: 280px;
		margin-bottom: 20px;
	}

	/* .music_images img {
		height: 100%;
		width: auto;
		max-width: none;
	} */
  .sc_block {
		padding-bottom: 60px;
	}

	.sc_block p, .sc_block a {
		font-size: 13px;
	}

}

@media screen and (min-width: 568px) {

	/*--------------------------------------------------------------
	## HOLDING
	--------------------------------------------------------------*/

	.Holding .hpop {
		display: none;
		bottom: 82.5px;
	}

	.Holding footer#colophon {
    height: 130px;
		margin: auto;
	}

	.Holding .fcol {
    float: left;
		margin-left: 18%;
  }

	.newsletter.fcol.end {
		display: none;
	}

	.newsletter.fcol.start {
		display: block;
		margin-left: 0;
	}

	.Holding .newsletter {
    width: 125px;
  }

	.Holding .newsletter input#fieldEmail,
	.Holding .newsletter input#mce-EMAIL {
		width: 125px;
	}

	.Holding .newsletter button,
	.Holding .newsletter #mc_embed_signup .button {
    font-size: 14px;
  }

	.Holding .fcol_Wrapper {
    clear: none;
    overflow: auto;
  }

	.Holding .newsletter button {
    font-size: 14px;
    margin-bottom: 31px;
  }

	.Holding .flinks.fcol {
    display: none;
  }

	@-webkit-keyframes hBop {
		0% {bottom: 83.5px;}
		50% {bottom: 75.5px;}
		100% {bottom: 83.5px;}
	}
	@-moz-keyframes hBop {
		0% {bottom: 83.5px;}
		50% {bottom: 75.5px;}
		100% {bottom: 83.5px;}
	}
	@-o-keyframes hBop {
		0% {bottom: 83.5px;}
		50% {bottom: 75.5px;}
		100% {bottom: 83.5px;}
	}
	@keyframes hBop {
		0% {bottom: 83.5px;}
		50% {bottom: 75.5px;}
		100% {bottom: 83.5px;}
	}

	.js-hslideactive {
		margin-bottom: 65px!important;
	}

	.Holding .Container {
		max-width: 380px;
    width: 100%;
	}

	/*--------------------------------------------------------------
	## SPINNING DISC
	--------------------------------------------------------------*/

}

@media screen and (min-width: 768px) {

	.block {
		margin-top: 0;
	}

	/*--------------------------------------------------------------
	## HOLDING
	--------------------------------------------------------------*/

	.hold_logo {
		width: 500px;
    height: 500px;
	}

	.Holding .Container {
		max-width: none;
	}

	.Holding .flinks.fcol {
		display: block;
	}

	.foot.hold {
		border: none;
	}

	.Holding .fcontent_Wrap .newsletter button,
	.Holding .fcontent_Wrap .newsletter #mc_embed_signup .button {
    margin-bottom: 30px;
  }

	.Holding .fcontent_Wrap .newsletter button, .Holding .fcontent_Wrap input#fieldEmail,
	.Holding .fcontent_Wrap .newsletter #mc_embed_signup .button, .Holding .fcontent_Wrap input#mce-EMAIL {
    font-size: 16px;
  }

	.Holding .newsletter {
    width: 200px;
  }

	.Holding .fcontent_Wrap input#fieldEmail,
	.Holding .fcontent_Wrap input#mce-EMAIL {
		width: 200px;
	}

	.Holding footer#colophon {
    height: 110px;
	}

	.Holding .side.defa {
		display: none;
	}

	.media_panel {
    float: right;
    width: 77.5%;
  }

	.med-content h4 {
    font-size: 24px;
    line-height: 33px;
		margin-top: -5px;
  }

	.Holding .fcol, .Holding .faddress.fcol {
    margin-left: 12.5%;
  }

	/*--------------------------------------------------------------
	## IE
	--------------------------------------------------------------*/

	.ie.logo {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 520px;
    height: 400px;
  }

	/*--------------------------------------------------------------
	## GLOBAL
	--------------------------------------------------------------*/

	.Container {
		max-width: none;
		width: auto;
	  margin: 120px auto 125px auto;
	}

	body.category-program .Container {
		margin: 50px auto 125px auto;
	}

	h3, .map_names span{
		font-size: 16px;
	}

	h1 {
    font-size: 24px;
    font-weight: normal;
    line-height: 29px;
  }

	h3.maintitle {
		font-size: 22px;
		line-height: 27px;
	}

	p.present {
		margin-top: 5px;
		margin-bottom: 15px;
	}

	p {
		font-size: 11.5px;
		line-height: 15px;
	}

	.second-head {
		display: block;
	}

	/*--------------------------------------------------------------
	## SPINNING DISC
	--------------------------------------------------------------*/

	/*#disc {
		display: none;
	}*/


	/*--------------------------------------------------------------
	## MENU
	--------------------------------------------------------------*/

	a.dtag {
		display: block;
	}

	a.mtag {
		display: none;
	}

	.mob, .mbutton, .mob_bg {
		display: none;
	}

	.menu {
    display: block;
    float: right;
		font-size: 16px;
  }

	.mhome a, .menu a {
		font-size: 16px;
	}

	.topWrap {
    padding-top: 39px;
    height: 100px;
  }

	.second-head {
    margin-top: 90px;
  }

	.sub-menu {
    clear: both;
    overflow: visible;
		margin-top: 125px;
		display: none;
  }

	body.single-post .Container,
	body.blog .Container,
	body.category-other .Container,
	body.page-template-category-other .Container,
	body.page-template-template-showcase .Container {
		margin: 50px auto 125px auto;
	}

	body.category-other .Container {
		clear: both;
		overflow: hidden;
	}

	body.single-post .sub-menu,
	body.blog .sub-menu,
	body.category-other .sub-menu,
	body.page-template-category-other .sub-menu,
	body.page-template-template-showcase .sub-menu,
	body.category-program .sub-menu {
		display: block;
	}


	.second-head a {
		font-size: 16px;
    margin-right: 5px;
    border: 1px solid black;
    height: 28px;
    padding: 2px 15px;
    border-radius: 16px;
	}

	.brochure {
		font-size: 16px;
		border: 1px solid black;
		height: 18px;
		padding: 3px 15px;
		border-radius: 16px;
		float: right!important;
		margin-right: 0!important;
		margin-top: -3px;
	}

	.icon {
		width: 25px;
		height: auto;
		right: 10px;
		bottom: 10px;
	}

	.o.event_box {
		margin-bottom: 40px;
	}

	/*--------------------------------------------------------------
	## FOOTER
	--------------------------------------------------------------*/

	footer#colophon {
		height: 100px;
	}

	.fcontainer {
	  margin-top: 13px;
		width: 230px;
	}

	.pop, .fsection {
    display: block;
  }

	.pop {
    width: 15px;
    position: fixed;
    bottom: 32.5px;
		margin-bottom: 0;
		-webkit-transition: margin-bottom 1s; /* Safari */
		-moz-transition: margin-bottom 1s; /* Firefox */
		-o-transition: margin-bottom 1s; /* Opera */
		transition: margin-bottom 1s;
  }

	.bop {
		-webkit-animation: Bop 2s ease infinite;
		-moz-animation: Bop 2s ease infinite;
		-o-animation: Bop 2s ease infinite;
		animation: Bop 2s ease infinite;
	}

	@-webkit-keyframes Bop {
		0% {bottom: 33.5px;}
		50% {bottom: 25.5px;}
		100% {bottom: 33.5px;}
	}
	@-moz-keyframes Bop {
		0% {bottom: 33.5px;}
		50% {bottom: 25.5px;}
		100% {bottom: 33.5px;}
	}
	@-o-keyframes Bop {
		0% {bottom: 33.5px;}
		50% {bottom: 25.5px;}
		100% {bottom: 33.5px;}
	}
	@keyframes Bop {
		0% {bottom: 33.5px;}
		50% {bottom: 25.5px;}
		100% {bottom: 33.5px;}
	}

	.js-slideactive {
		margin-bottom: 100px;
		-webkit-transform: rotate(180deg);
		-moz-transform: rotate(180deg);
		-o-transform: rotate(180deg);
		transform: rotate(180deg);
		-webkit-transition: margin-bottom 1s; /* Safari */
		-moz-transition: margin-bottom 1s; /* Firefox */
		-o-transition: margin-bottom 1s; /* Opera */
		transition: margin-bottom 1s;
	}

	.js-slideup {
		margin: auto auto 0px auto!important;
		-webkit-transition: margin-bottom 1s; /* Safari */
		-moz-transition: margin-bottom 1s; /* Firefox */
		-o-transition: margin-bottom 1s; /* Opera */
		transition: margin-bottom 1s;
	}

	.bar {
		width: 100%;
		height: 10px;
		background: linear-gradient(90deg, #f072ab, #f0a800);
		background-size: 200% 200%;
		-webkit-animation: GradientBar 3s ease infinite;
		-moz-animation: GradientBar 3s ease infinite;
		-o-animation: GradientBar 3s ease infinite;
		animation: GradientBar 3s ease infinite;
	}

@-webkit-keyframes GradientBar {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes GradientBar {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-o-keyframes GradientBar {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes GradientBar {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

	.fsection {
    position: fixed;
    margin: auto auto -110px auto;
		bottom: 0;
    left: 0;
    right: 0;
    width: calc(100% - 40px);
		-webkit-transition: margin-bottom 1s; /* Safari */
		-moz-transition: margin-bottom 1s; /* Firefox */
		-o-transition: margin-bottom 1s; /* Opera */
		transition: margin-bottom 1s;
  }

	.fcontent_Wrap {
		clear: both;
    overflow: hidden;
    padding-top: 17px;
    padding-bottom: 20px;
    border-top: 1px solid black;
		background: #fdfdfd;
		height: 110px;
  }

	.fcontent_Wrap .newsletter button,
	.fcontent_Wrap input#fieldEmail,
	.fcontent_Wrap .newsletter #mc_embed_signup .button,
	.fcontent_Wrap input#mce-EMAIL {
		font-size: 16px;
	}

	.fcontent_Wrap input#fieldEmail,
	.fcontent_Wrap input#mce-EMAIL {
		background: transparent;
	}

	.fcontent_Wrap .newsletter button,
	.fcontent_Wrap .newsletter #mc_embed_signup .button {
    margin-bottom: 30px;
  }

	.fcontent_Wrap .newsletter {
		margin-bottom: 0;
	}

	.fcontent_Wrap p {
		margin: 0;
	}

	.faddress.fcol {
		display: none;
	}

	.fcol:first-child {
    margin-left: 0;
  }

	.fcol {
    float: left;
    margin-left: 7.85%;
		line-height: 14px;
  }

	.fcol p {
     font-size: 11px!important;
    line-height: 13px!important;
	}

	/*--------------------------------------------------------------
	## SIDEBAR
	--------------------------------------------------------------*/

	.side {
    float: left;
  }

	/*.side p{
		margin-top: 0;
	}*/

	/*--------------------------------------------------------------
	## DEFAULT PAGE TEMPLATE
	--------------------------------------------------------------*/
	body.page #content {
		clear: both;
		overflow: hidden;
	}

	.mob_section {
    display: none;
  }

	.desk_section, .side {
    display: block;
  }

	.desk_section{
		float: right;
    width: 77.5%;
	}

	.side {
		float: left;
		width: 20%;
	}

	.desk_section {
    clear: both;
    overflow: hidden;
  }

	.desk_Container, .desk_images {
    float: left;
  }

	.desk_Container {
		width: 45%;
		padding-right: 5%;
	}

	.desk_images{
		width: 55%;
	}

	.d_vid {
		margin-bottom: 15px;
	}

	.desk_block h1 {
    margin-top: 0;
  }

	.images {
    margin-bottom: 10px;
  }

	.map_Wrap {
		background: #d2d3d4;
	}

	.dmap_Wrap {
		position: relative;
		background: #d2d3d4;
	}

	.map {
		width: auto;
		height: auto;
	}

	.dmap_Wrap {
    overflow: hidden;
    border-radius: 50%;
  }

	img.m {
		width: 1260px;
		height: 700px;
	}

	/*--------------------------------------------------------------
	## ARCHIVE
	--------------------------------------------------------------*/

	body.blog main,
  body.category-program main {
    margin: auto auto auto auto;
    clear: both;
    overflow: hidden;
		width: 750px;
  }

	.desk_arch {
		display: block;
	}

	.desk_event_img {
		height: 220px;
    position: relative;
    display: block;
	}

	.desk_event_img.small {
		width: 220px;
	}

	.desk_event_img.medium {
	  width: 460px;
	}

	.desk_event_img.large {
		width: 720px;
	}

	.m.event_box {
		display: none;
	}

	.event_box {
    margin: auto 15px 50px 15px;
  }

	.e_Wrap {
		height: auto;
		width: auto;
		border-radius: 92.5px;
	}

	.e_Wrap.e._small {
    width: 185px;
    height: 185px;
  }

	.e_Wrap.e._medium {
    height: 185px;
    width: 425px;
  }

	.e_Wrap.e._large {
		height: 185px;
    width: 685px;
	}

	img.desk_city{
    height: auto;
    max-width: none;
    width: 100%;
	}

	.event_box.sml {
		width: 220px;
	}

	.event_box.med {
		width: 470px;
	}

	.event_box.lrg {
	  width: 728px;
	}

	.event_box {
		float: left;
	}

	article.catgory-other {
		float: left;
	}

	.o.archive_Container {
		clear: both;
    overflow: hidden;
    width: 430px;
    margin-right: -15px;
		float: right;
  }

	.o.event_img {
    height: 185px;
    width: 185px;
  }

	body.category-other main#main,
	body.page-template-category-other main#main {
		position: relative;
	}

	body.category-other .side,
	body.page-template-category-other .side {
		display: block;
		width: 30%;
		position: relative;
		top: 0;
		left: 0;
	}

	body.category-other .side .event_panel,
	body.page-template-category-other .side .event_panel {
		position: absolute;
		left: 0;
		top: 0;

		opacity: 1;
		-webkit-transition: opacity 1s;
		-moz-transition: opacity 1s;
		-ms-transition: opacity 1s;
		-o-transition: opacity 1s;
}

	.other_block {
		position: absolute;
		display: block;
		top: 0;
		left: 0;
		width: 220px;
	}

	.mob_eventp {
		display: none;
	}

	body.category-other .side .event_panel,
	body.page-template-category-other .side .event_panel {
		opacity: 0;
	}

	body.category-other .event_titles {
		display: block;
	}

	/*--------------------------------------------------------------
	## POST
	--------------------------------------------------------------*/

	.single-post #content {
    clear: both;
    overflow: hidden;
  }

	.mob_post_container {
    display: none;
  }

	.workshop_panel {
		display: none;
	}

	.register {
		position: absolute;
		bottom: 25px;
		right: 25px;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 40px;
  }

	.evimages {
		position: relative;
	}

	.event_panel p {
    margin-top: 10px;
  }

	a.e-book svg {
    height: 10px;
		width: 10px;
    margin-left: 2.5px;
	}

	a.e-book {
    text-decoration: underline;
  }

	a.post_next, a.post_prev {
    height: 15px;
    display: block;
		clear: both;
		overflow: hidden;
  }

	a.post_prev {
    margin-bottom: 10px;
    margin-top: 35px;
  }

	a.post_prev svg, a.post_next svg {
    height: 13px;
		width: 13px;
    margin-right: 12.5px;
		margin-top: 1px;
  }

	a.post_prev p, a.post_next p {
    font-size: 13px;
		margin: 0;
  }

	a.post_prev p, a.post_next p,
	a.post_prev svg, a.post_next svg {
		display: block;
		float: left;
	}

	.side h3.IN, .side h3.WS, span.psep {
		display: inline-block;
	}

	span.psep {
		font-size: 16px;
	}

	.count {
		width: 70px;
	}

	@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rotating {
  -webkit-animation: rotating 5s linear infinite;
  -moz-animation: rotating 5s linear infinite;
  -ms-animation: rotating 5s linear infinite;
  -o-animation: rotating 5s linear infinite;
  animation: rotating 5s linear infinite;

	-webkit-animation-play-state:paused;
	-moz-animation-play-state:paused;
	-ms-animation-play-state:paused;
	-o-animation-play-state:paused;
  animation-play-state:paused;
}

.rotating:hover{
	-webkit-animation-play-state:running;
	-moz-animation-play-state:running;
	-ms-animation-play-state:running;
	-o-animation-play-state:running;
  animation-play-state:running;
}

.db.book {
  border: 1px solid black;
  padding: 5px 5px 3px 10px;
  width: 76px;
  height: 26px;
  border-radius: 13px;
}

.db.book svg.book-arrow {
  margin-left: 3.5px;
}

img.log {
	max-height: 53px;
	max-width: 210px;
	margin-right: 10px;
}

img.log:first-child {
	margin-right: 0!important;
}

.logos {
	margin: 20px auto 20px auto;
}

/*--------------------------------------------------------------
## FRIDAY FEELS
--------------------------------------------------------------*/

.music_images {
    float: right;
    width: 75%;
}


}

@media screen and (min-width: 900px) {

		.o.archive_Container {
			clear: both;
			overflow: hidden;
			width: 645px;
		}

		body.category-other .side,
		body.page-template-category-other .side {
			width: 20%;
		}

}

@media screen and (min-width: 1024px) {

	/*--------------------------------------------------------------
	## GLOBAL
	--------------------------------------------------------------*/

	.body_Wrap {
    padding: 40px;
  }

	.head, footer#colophon, .fsection {
		width: calc(100vw - 80px);
	}

	.preloader {
		width: calc(100vw - 80px);
	}

	.sub-menu {
		margin-top: 0;
	}

	/*--------------------------------------------------------------
	## FOOTER
	--------------------------------------------------------------*/

	.faddress.fcol {
    display: block;
  }

	.fcol {
    margin-left: 9.5%;
  }

	/*--------------------------------------------------------------
	## DEFAULT PAGE
	--------------------------------------------------------------*/

	.desk_section {
    float: right;
    width: 80%;
  }

	.desk_Container {
    padding-right: 8.5%;
  }

	/*--------------------------------------------------------------
	## ARCHIVE
	--------------------------------------------------------------*/

	body.blog main,
	body.category-program main {
		width: 975px;
	  margin: auto;
		padding-bottom: 125px;
		position: absolute;
    left: 0;
    right: 0;
	}

	.event_box {
    margin: auto 10px 50px 10px;
  }

	.event_box.lrg {
    width: 710px;
  }

	.desk_event_img.large {
    width: 710px;
  }

	.e_Wrap.e._large {
    width: 675px;
  }

	.o.event_img {
		height: 205px;
		width: 205px;
	}

	.o.archive_Container {
		width: 675px;
		float: right;
		margin-right: -10px;
	}

	.other_block {
		position: absolute;
		display: block;
		top: 0;
		left: 0;
		width: 220px;
	}

	.icon {
		opacity: 0;
	}

	.clickicoshow {
		opacity: 1!important;
	}

	.icoshow {
		opacity: 1!important;
	}

	.icohide {
		opacity: 0!important;
	}

	body.category-other .side,
	body.page-template-category-other .side {
		width: 25%;
	}

	/*--------------------------------------------------------------
	## FRIDAY FEELS
	--------------------------------------------------------------*/



	/*--------------------------------------------------------------
	## POST
	--------------------------------------------------------------*/

	.side {
		padding-right: 2.5%;
	}


}

@media screen and (min-width: 1025px) {
	/*--------------------------------------------------------------
	## ARCHIVE
	--------------------------------------------------------------*/

		.e_Wrap.e._small, .e_Wrap.e._medium, .e_Wrap.e._large {
			opacity: 1;

			-webkit-transition: opacity 1s;
			-moz-transition: opacity 1s;
			-ms-transition: opacity 1s;
			-o-transition: opacity 1s;
		}

		.overlay {
			display: block;
			opacity: 1!important;

			-webkit-transition: opacity 1s;
			-moz-transition: opacity 1s;
			-ms-transition: opacity 1s;
			-o-transition: opacity 1s;
		}

		.trans {
			opacity: 0!important;
		}



}

@media screen and (min-width: 1200px) {
	/*--------------------------------------------------------------
	## HOLDING
	--------------------------------------------------------------*/

	.hold_logo {
		width: 660px;
		height: 690px;
	}

	/*--------------------------------------------------------------
	## GLOBAL
	--------------------------------------------------------------*/

	body {
		width: 1200px;
		margin: auto;
	}

	.head, footer#colophon, .fsection {
		width: 1120px;
	}

	.preloader {
		width: 1120px;
	}

	/*--------------------------------------------------------------
	## ARCHIVE
	--------------------------------------------------------------*/

	body.blog main,
	body.category-program main {
    width: 1160px;
	}

	.event_box {
    margin: auto 13px 50px 13px;
  }

	.desk_event_img {
    height: 260px;
	}

	.e_Wrap {
    border-radius: 122.5px;
	}

	.desk_event_img.large {
    width: 840px;
  }

	.e_Wrap.e._large {
		height: 225px;
    width: 805px;
  }

	.event_box.lrg {
    width: 840px;
  }

	.desk_event_img.medium {
    width: 560px;
  }

	.e_Wrap.e._medium {
    height: 215px;
    width: 525px;
  }

	.event_box.med {
    width: 560px;
  }

	.desk_event_img.small {
    width: 260px;
  }

	.e_Wrap.e._small {
    width: 225px;
    height: 225px;
  }

	.event_box.sml {
    width: 260px;
  }

	.o.event_img {
		height: 255px;
		width: 255px;
	}

	.o.archive_Container{
		width: 843px;
		margin-right: -15px;
	}

	.music_images {
		width: 843px;
	}

	body.category-other .side, body.page-template-category-other .side {
    width: 20%;
  }

}
