/*! HTML5 Boilerplate v5.3.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/*
 * apply a natural box layout model to all elements
 */
 
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}

/* ==========================================================================
   General
   ========================================================================== */

body {
	margin: 0;
	padding: 0;
	font-family: 'benton-sans', sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	color: #464646;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	background: #fff;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
}

.img-left {
	float: left;
	margin-right: 30px;
	margin-bottom: 30px;
}

.img-right {
	float: right;
	margin-left: 30px;
	margin-bottom: 30px;
}

.overflow-hidden {
	overflow: hidden;
}

.responsive {
	width: 100%;
}

.float-right { float: right !important; }
.float-left { float: left !important; }
.float-none { float: none !important; }
.block { display: block !important; }

.margin-none { margin: 0 !important;}
.margin-top { margin-top: 30px !important; }
.margin-top-half { margin-top: 15px !important; }
.margin-bottom { margin-bottom: 30px !important; }
.margin-bottom-dbl { margin-bottom: 60px !important; }
.margin-bottom-half { margin-bottom: 15px !important; }

.padding-none { padding: 0 !important; }
.padding-top { padding-top: 30px !important; }
.padding-bottom { padding-bottom: 30px !important; }
.padding-bottom-dbl { padding-bottom: 60px !important; }
.padding-bottom-half { padding-bottom: 15px !important; }

.table {
	display: table;
	width: 100%;
}

.table-cell {
	display: table-cell;
	vertical-align: middle;
}

hr {
	margin-top: 60px;
	margin-bottom: 60px;
	border-top: 1px solid #616363;
	clear: both;
	position: relative;
}

.fat-bottom {
	display: inline-block;
	padding-bottom: 3px;
	border-bottom: 5px solid #fff;
}

.vcenter {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

.spacer {
	margin-bottom: 30px;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	color: #825e87;
	margin: 0 0 30px;
}

h1 { font-size: 30px; }
h2 { font-size: 20px; }
h3 { font-size: 18px; color: #43cde0; margin-bottom:  20px; }
h4 { font-size: 16px; }

h1 span {
	font-weight: 600;
}

h2.with-hr {
	padding-bottom: 10px;
	border-bottom: 1px solid #616363;
}

h2 span {
	font-size: 14px;
	font-weight: 500;
	color: #838286;
	text-transform: none;
}

#network h2 span {
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
	text-transform: inherit;
}

p { margin: 0 0 25px 0; }
em { font-style: italic; }
strong, b { font-weight: 700; /*color: #43cde0;*/ }
small, .small { font-size: 85%; }
.micro { font-size: 70%; }
.large { font-size: 130%; }

.text-center { text-align: center; }
.text-left, .text-left-center { text-align: left; }
.text-right, .text-right-center { text-align: right; }
.uppercase { text-transform: uppercase; }
.normalcase { text-transform: none !important; }

/* ==========================================================================
   Colors
   ========================================================================== */
   
.purple {
	color: #825e87 !important;
}

.purple-bg {
	background-color: #825e87;
}

.turquoise {
	color: #43cde0 !important;
}

.turquoise-bg {
	background-color: #43cde0;
}

.orange {
	color: #fa9a2a !important;
}

.orange-bg {
	background-color: #fa9a2a;
}

.green {
	color: #7bca46 !important;
}

.green-bg {
	background-color: #7bca46;
}

.gray-bg {
	background-color: #838286;
}

/* ==========================================================================
   Links
   ========================================================================== */

a {
	color: #43cde0;
	text-decoration: none;
	outline: 0;
	-webkit-transition: 0.2s all linear;
			transition: 0.2s all linear;
}

a:hover { color: #464646; }
a:hover, a:active, a:focus { outline: 0; }

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: inherit;
	text-decoration: none !important;
}

.plus-link {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	padding-left: 16px;
	position: relative;
}

.plus-link:before {
	content: "+";
	font-size: 14px;
	color: #fff;
	position: absolute;
	top: -5px;
	left: 0;
}

.download-link {
	font-size: 12px;
	color: #464646;
	text-decoration: none !important;
	position: relative;
	padding-right: 20px;
}

.download-link:after {
	content: url('../images/ui/download-summit.png');
	position: absolute;
	top: -2px;
	right: 0;
}

.download-link:hover {
	color: #43cde0 !important;
}

#summer .download-link:after {
	content: url('../images/ui/download-summer.png');
	position: absolute;
	top: -2px;
	right: 0;
}

#summer .download-link:hover {
	color: #7bca46 !important;
}

/* ==========================================================================
   Lists
   ========================================================================== */
   
.inline-list, .social-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: block;
}

.inline-list li, .social-list li {
	display: inline-block;
	margin: 0 8px;
	position: relative;
}

.inline-list li:first-child, .social-list li:first-child {
	margin-left: 0px;
}

.inline-list li:last-child, .social-list li:last-child {
	margin-right: 0px;
}

.inline-list li:before {
	content: "" !important;
}

.social-list li a {
	color: #fff;
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
   
.breadcrumbs {
	margin: 0 0 25px -20px;
	padding: 0;
	list-style: none;
}

.breadcrumbs li {
	display: inline-block;
	position: relative;
	margin-right: 9px;
}

.breadcrumbs li:after {
	content: "/";
	position: absolute;
	top: 1px;
	right: -9px;
	font-size: 10px;
	color: #838286;
}

.breadcrumbs li:last-child:after {
	content: "";
}

.breadcrumbs li a {
	font-size: 9px;
	color: #838286;
	text-transform: uppercase;
	text-decoration: none;
}

.breadcrumbs li a:hover {
	color: #43cde0;
}

#summer .breadcrumbs li a:hover {
	color: #fa9a2a;
}

body.golf .breadcrumbs li a:hover {
	color: #78ab6c;
}

/* ==========================================================================
   Header
   ========================================================================== */
   
.header {
	width: 100%;
	padding: 0 15px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

.site-title {
	position: absolute;
	top: 50px;
	left: 15px;
}

.site-title img {
	width: 184px;
}

.header .social-list {
	position: absolute;
	top: 74px;
	right: 15px;
}

.header .social-list li {
	margin: 0 5px;
}

.header .social-list li a {
	font-size: 15px;
	line-height: 18px;
	opacity: .75;
}

.header .social-list li a:hover {
	opacity: 1;
	color: #43cde0;
}

.eyebrow {
	position: absolute;
	top: 0;
	right: 15px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.eyebrow > li {
	margin-left: 3px;
	text-align: center;
}

.eyebrow > li:first-child {
	margin-left: 0px;
}

.eyebrow > li > a {
	font-size: 9px;
	line-height: 9px;
	color: #825e87;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 10px 10px 10px 13px;
	background: rgba(255, 255, 255, .9);
	line-height: 9px;
	display: block;
}

.eyebrow > li:hover > a {
	color: #fff;
	background: rgba(123, 91, 128, 1);
	text-decoration: none;
}

.eyebrow > li.selected > a {
	color: #fff;
	background: #43cde0;
}

.eyebrow ul {
	width: 100%;
	top: 29px !important;
	left: 0;
	text-align: left;
	padding: 10px 4px;
	background: none;
	border: 1px solid #825e87;
}

.eyebrow li li a {
	font-size: 9px;
	color: #fff;
	text-transform: uppercase;
	padding-left: 10px;
	padding-right: 10px;
}

.eyebrow li li a:hover {
	color: #825e87;
	text-decoration: none;
}

.eyebrow li li.summit a:hover {
	color: #43cde0;
}

.eyebrow li li.summer a:hover {
	color: #ffed2a;
}

.eyebrow .golf:hover a {
	background: rgba(120, 171, 108, 1);
}

/* ==========================================================================
   Main Nav
   ========================================================================== */

/*** ESSENTIAL STYLES ***/

.sf-menu, .sf-menu *,
.eyebrow, .eyebrow * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sf-mega {
	position: fixed;
	display: none;
	top: 134px;
	left: 0;
	width: 100%;
	z-index: 99999;
}

.sf-menu li, .eyebrow li {
	position: relative;
}

.sf-menu ul.normal, .eyebrow ul {
	position: absolute;
	display: none;
	top: 0;
	left: 0;
	z-index: 99;
}

.sf-menu > li, .eyebrow > li {
	display: inline-block;
}

.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
	display: block;
}

.sf-menu li:hover > .sf-mega,
.sf-menu li.sfHover > .sf-mega {
	display: block;
}

.eyebrow li:hover > ul,
.eyebrow li.sfHover > ul,
.submenu-select li:hover > ul,
.submenu-select li.sfHover > ul {
	display: block;
}

.sf-menu a, .eyebrow a {
	display: block;
}

/*** SKIN ***/

.main-nav {
	position: absolute;
	top: 106px;
	right: 15px;
	width: 100%;
	text-align: right;
}

.sf-menu ul.normal {
	min-width: 10em; /* allow long menu items to determine submenu width */
	*width: 10em; /* no auto sub width for IE7, see white-space comment below */
	top: 27px;
	left: 50%;
	text-align: left;
	padding: 10px 4px;
	background: rgba(255, 255, 255, .90);
	border-top: 6px solid #825e87;
	-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
			transform: translateX(-50%);
}

.sf-menu ul.normal li {
	margin-bottom: 5px;
}

.sf-menu ul.normal li:last-child {
	margin-bottom: 0px;
}

.sf-menu ul.normal li a {
	padding-left: 15px;
	padding-right: 15px;
}

.sf-menu ul.normal li a:hover {
	color: #825e87;
}

.sf-menu a {
	font-weight: 500;
	font-size: 12px;
	color: #464646;
	text-transform: uppercase;
	text-decoration: none;
	position: relative;
}

.sf-menu > li > a {
	color: #fff;
	font-weight: 600;
	letter-spacing: 2px;
}

.sf-menu li {
	/*white-space: nowrap;*/ /* no need for Supersubs plugin */
	/**white-space: normal;*/ /* ...unless you support IE7 (let it wrap) */
	/* robyn commented out 6/7/23 so long titles won't get cut off */
	-webkit-transition: background .2s;
			transition: background .2s;
}

.sf-menu > li {
	margin-left: 11px;
	margin-right: 11px;
}

.sf-menu > li:first-child {
	margin-left: 0px;
}

.sf-menu > li:last-child {
	margin-right: 0px;
}

.sf-menu > li:hover > a {
	color: #43cde0;
}

.sf-menu > li.summit:hover > a {
	color: #43cde0;
}

.sf-menu > li.summer:hover > a, .sf-menu > li.summer.selected > a {
	color: #ffed2a;
}

.sf-menu > li.has-subs:hover > a:after {
	content: "\f0d8";
	font-family: 'Font Awesome 6 Free';
	font-weight: normal;
	font-size: 18px;
	color: #825e87;
	position: absolute;
	left: 50%;
	bottom: -15px;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
			transform: translateX(-50%);
}

.sf-menu > li.has-subs.summit:hover > a:after {
	color: #43cde0;
}

.sf-menu > li.has-subs.summer:hover > a:after {
	color: #ffed2a;
}

.sf-menu li li {
	line-height: 20px;
}

.sf-menu .selected > a {
	color: #43cde0;
}

.sf-mega {
	background: rgba(255, 255, 255, .90);
	display: block;
	color: #464646;
	/*white-space: nowrap;*/ /* robyn commented out 6/7/23 so long titles won't get cut off */
	font-size: 12px;
	text-align: left;
	padding: 50px 30px;
	border-top: 6px solid #825e87;
}

.sf-mega.summit {
	border-top: 6px solid #43cde0;
}

.sf-mega.summer {
	border-top: 6px solid #ffed2a;
}

.sf-mega a:hover, .sf-mega li.selected a, .sf-mega a.selected {
	color: #825e87;
}

.sf-mega.summit a:hover, .sf-mega.summit li.selected a, .sf-mega.summit a.selected {
	color: #43cde0;
}

.sf-mega.summer a:hover, .sf-mega.summer li.selected a, .sf-mega.summer a.selected {
	color: #fa9a2a;
}

.sf-mega .container {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
}

.sf-mega .column {
	float: left;
	padding: 0 25px;
	position: relative;
	overflow: hidden;
	width: 20%;
}

.sf-mega h1 {
	font-size: 30px;
	line-height: 32px;
	margin-bottom: 12px;
}

.sf-mega.summer h1 {
	color: #fa9a2a;
}

.sf-mega p {
	font-size: 16px;
	line-height: 24px;
	text-transform: uppercase;
	margin-bottom: 30px;
}

.sf-mega .btn {
	width: 100%;
	padding-left: 5px;
	padding-right: 5px;
}

.sf-mega.summit .btn {
	background: #43cde0;
	color: #fff;
}

.sf-mega.summit .btn:hover {
	color: #464646;
}

.sf-mega.summer .btn {
	background: #ffed2a;
	border: 1px solid #ffed2a;
	color: #464646;
}

.sf-mega.summer .btn:hover {
	color: #464646;
}

.sf-mega ul li:first-child {
	border-bottom: 1px solid #825e87;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.sf-mega ul li:first-child a {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
}

.sf-mega ul li {
	margin-bottom: 10px;
}

.sf-mega .column:last-child ul li a {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
}

.sf-mega .column:last-child ul li:first-child {
	border-bottom: none;
	padding-bottom: 0px;
	margin-bottom: 15px;
}

.sf-mega .column:last-child ul li {
	margin-bottom: 15px;
}

.sf-mega .additional-info {
	margin-top: 30px;
}

.sf-mega .additional-info h2 {
	margin-bottom: 10px;
}

/* ==========================================================================
   Mobile Nav
   ========================================================================== */

.hamburger {
	display: none;
}

.hamburger a {
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	letter-spacing: 2px;
	color: #fff;
	-webkit-transition:0.2s all linear;
			transition:0.2s all linear;
}

.hamburger a:hover {
	color: #825e87;
}

#mobile-menu a {
	font-weight: 500;
	font-size: 12px;
	color: #464646;
	text-transform: uppercase;
}

#mobile-menu li.selected a {
	color: #43cde0;
}

#mobile-menu:not( .mm-menu ) {
   display: none;
}

/* ==========================================================================
   Sub Menu
   ========================================================================== */
   
.sub-menu {
	width: 100%;
	background: #bb784f;
	padding: 15px 0;
}

.sub-menu ul li {
	margin: 0 20px;
}

.sub-menu ul li a {
	font-weight: 600;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #fff;
	position: relative;
}

.sub-menu ul li a:hover {
	color: #000;
}

.sub-menu ul li.selected a {
	font-weight: 700;
}

/* ==========================================================================
   Content
   ========================================================================== */

.content {
	padding: 15px 15px 70px;
}

.content-main b, .content-main strong {
	color: #825e87;
}

#summer .content-main b, #summer .content-main strong {
	color: #fa9a2a;
}

body.golf .content-main b, body.golf .content-main strong {
	color: #78ab6c !important;
}

.content-main a {
	text-decoration: underline;
}

.content-main ul {
	margin-top: 0;
	margin-bottom: 30px;
	padding-left: 25px;
	list-style: none;
}

.content-main ul li {
	position: relative;
}

.content-main ul li:before {
	content: "\f111";
	font-family: 'Font Awesome 6 Free';
	font-size: 6px;
	color: #43cde0;
	position: absolute;
	top: -1px;
	left: -15px;
}

#summer .content-main ul li:before {
	color: #7bca46;
}

body.golf .content-main ul li:before {
	color: #78ab6c;
}

#network .content-main ul li:before {
	color: #825e87;
}

.subhead {
	font-weight: 700;
	font-size: 24px;
	line-height: 30px;
	color: #43cde0;
}

.big-buttons {
	margin-bottom: 20px !important;
	clear: both;
}

.big-buttons .cell {
	padding: 0;
}

.big-buttons .btn.big {
	font-size: 1.25em;
}

.big-buttons .first-button {
	background-color: #43cde0;
}

.big-buttons .second-button {
	background-color: #825e87;
}

#summer .big-buttons .first-button {
	background-color: #fa9a2a;
}

#summer .big-buttons .second-button {
	background-color: #7bca46;
}

body.golf .big-buttons .first-button {
	background-color: #78ab6c;
}

body.golf .big-buttons .second-button {
	background-color: #ffd043;
}

#network .big-buttons .first-button {
	background-color: #858588;
}

.big-buttons h2 {
	font-size: 22px;
	margin-bottom: 0px;
}

.big-buttons h2 a {
	color: #fff !important;
}

.big-buttons h2 a:hover {
	color: #464646 !important;
}

.sponsor-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 60px;
	grid-auto-rows: 1fr;
	justify-items: center;
	align-items: center;
}

.sponsor-grid.sponsor-grid-2 {
	grid-template-columns: 1fr 1fr;
}

.sponsor-grid.sponsor-grid-list {
	justify-items: flex-start;
	align-items: flex-start;
	column-gap: 60px;
	row-gap: 0px;
}

.sponsor-category {
	margin-bottom: 120px;
}

.sponsor-category p {
	margin-bottom: 60px;
}

/* ==========================================================================
   Misc
   ========================================================================== */

.media-resources .resource {
	display: block;
	overflow: hidden;
	margin-bottom: 30px;
}

.media-resources .resource img {
	float: left;
	margin-right: 36px;
}

.media-resources .resource div {
	overflow: hidden;
}

.media-resources .resource h2 {
	margin-bottom: 20px;
}

.news .back {
	margin-bottom: 15px;
}

.news .back a {
	font-size: 12px;
	color: #838286;
	text-decoration: none !important;
}

.news .back a:hover {
	color: #43cde0;
}

.news h1 {
	margin-bottom: 5px;
}

.news .date {
	font-weight: 600;
	color: #43cde0;
}

.article-author {
	font-weight: 600;
	color: #825e87;
	font-style: italic;
}

.news .share {
	margin-bottom: 15px;
}

.news .share ul {
	margin-bottom: 15px;
	padding-left: 0;
}

.news .share ul li a {
	font-size: 18px;
}

.news-item {
	margin-bottom: 50px;
}

.news-item h2 {
	font-size: 18px;
	text-transform: none;
	margin-bottom: 15px;
}

.news-item p {
	margin-bottom: 20px;
}

.prev-next {
	width: 100%;
	padding-top: 15px;
	border-top: 1px solid #a6a6a6;
}

.prev-next ul {
	padding-left: 0px;
}

.prev-next ul li {
	margin: 0 3px;
}

/*.prev-next ul li:after {
	content: "|";
	position: absolute;
	top: 2px;
	right: -12px;
	font-size: 10px;
}*/

/*.prev-next ul li:last-child:after {
	content: "";
}*/

.prev-next ul li a {
	font-size: 10px;
	color: #825e87;
	text-transform: uppercase;
	text-decoration: none;
}

.staff img {
	float: left;
	margin-right: 30px;
	margin-bottom: 30px;
}

.staff p {
	overflow: hidden;
}

.mark {
	margin-bottom: 50px;
	display: block;
	overflow: hidden;
}

.mark img {
	float: left;
	margin-right: 50px;
}

.mark h3 {
	margin-bottom: 0px;
}

.mark h3, .mark p {
	overflow: hidden;
}

.event h2 {
	font-size: 20px;
	padding-bottom: 10px;
	margin-bottom: 50px;
	border-bottom: 1px solid #616363;
}

.events .grid-item .img-container {
	width: 100%;
	overflow: hidden;
	position: relative;
	margin-bottom: 20px;
	background-color: #825e87;
}

#summer .events .grid-item .img-container {
	background-color: #fa9a2a;
}

.events .grid-item .img-container img {
	opacity: 1;
	-webkit-transition: 0.2s opacity linear;
			transition: 0.2s opacity linear;
	-webkit-backface-visibility: hidden; /* Image movement fix on hover */
			backface-visibility: hidden;
}

.events .grid-item .img-container:hover img {
	opacity: .2;
}

.events .grid-item .caption {
	color: #fff;
	position: absolute;
	bottom: 10px;
	left: 10px;
}

.events .grid-item h2 {
	color: #43cde0;
	margin-bottom: 20px;
}

.lineup {
	margin-bottom: 70px;
	overflow: hidden;
}

.lineup img {
	float: left;
	margin-right: 30px;
	margin-bottom: 30px;
}

.lineup .speaker-info {
	overflow: hidden;
}

.lineup h3 {
	font-size: 20px;
	text-transform: none;
	color: #43cde0;
	margin-bottom: 5px;
}

.lineup .topic {
	font-size: 20px;
	line-height: 24px;
	color: #825e87;
}

.lineup .expanded {
	display: none;
}

#summer .lineup h3 {
	color: #fa9a2a !important;
}

#summer .lineup .topic {
	color: #7bca46;
}

.history, .giving-back {
	margin-bottom: 50px;
}

.history h3 {
	font-size: 18px;
	margin-bottom: 5px;
}

.history p {
	color: #848487;
	margin-bottom: 20px;
}

.list-item {
	clear: both;
}

.list-item h3 {
	margin-bottom: 5px;
}

.list-item img {
	float: left;
	margin-right: 30px;
	margin-bottom: 30px;
}

.list-item div {
	overflow: hidden;
}

.past-issues {
	margin-top: 64px;
	margin-left: 40px;
}

.past-issues h2 {
	font-size: 14px;
	color: #43cde0;
}

.issue {
	color: #8f8f8f;
	margin-bottom: 30px;
}

.issue h3 {
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 0px;
}

.issue img {
	margin-bottom: 15px;
}

.banner-downloads, .logo-downloads {
	overflow: hidden;
}

.download {
	display: inline-block;
	vertical-align: top;
	margin-bottom: 30px;
	margin-right: 50px;
}

.download img {
	margin-bottom: 10px;
	display: block;
}



/* ==========================================================================
   Modules
   ========================================================================== */
   
.module {
	padding: 25px;
	margin-bottom: 30px;
	position: relative;
}

.module h2 {
	color: #fff !important;
	font-size: 32px;
	font-weight: 700;
	line-height: 36px;
	margin-bottom: 20px;	
}

.module p {
	margin-bottom: 60px;	
}

.module-exhibit h2, .module-marks h2 {
	color: #825e87 !important;
}

.module-advertise h2 {
	color: #43cde0 !important;
}

.module div {
	margin-bottom: 10px;
}

.module div:last-child {
	margin-bottom: 0px;
}

.module .btn:hover {
	color: #464646 !important;
}

.module-events .btn, .module-attend .btn, .module-sponsor .btn {
	color: #fff !important;
	border: 1px solid #fff !important;
}

.module-exhibit .btn, .module-marks .btn  {
	color: #825e87 !important;
	border: 1px solid #838286 !important;
}

.module-advertise .btn {
	color: #43cde0 !important;
	border: 1px solid #838286 !important;
}

.module-events p, .module-attend p, .module-sponsor p {
	color: #fff;
}

.module-events {
	background-color: #43cde0;
}

.module-attend {
	background-color: #825e87;
}

.module-exhibit {
	border: 1px solid #838286;
}

.module-schedule {
	background-color: #e0d022;
}

.module-faq {
	background-color: #838286;
}

.module-highlights {
	padding: 0;
}

.module-sponsor {
	background-color: #78ab6c;
}

.module-advertise {
	border: 1px solid #838286;
}

.module-marks {
	border: 1px solid #825e87;
}

.module-marks .exhibitor-marks {
	margin: 0 0 50px;
	padding: 0;
	list-style: none;
	width: 100%;
	display: inline-block;
}

.module-marks .exhibitor-marks li {
	float: left;
	width: 33.33333%;
	text-align: center;
}

#summer .module-events {
	background-color: #fa9a2a;
}

#summer .module-attend {
	background-color: #e0d022;
}

#summer .module-exhibit {
	border: 1px solid #e0d022;
}

#summer .module-exhibit h2 {
	color: #fa9a2a !important;
}

#summer .module-exhibit .btn {
	color: #fa9a2a !important;
	border: 1px solid #e0d022 !important;
}

#summer .module-schedule {
	background-color: #7bca46;
}

#summer .module-sponsor {
	background-color: #825e87;
}

/* ==========================================================================
   Blockquote
   ========================================================================== */
   
blockquote {
	margin: 0;
	padding: 0;
}

blockquote p {
	font-size: 24px;
	line-height: 32px;
	font-style: italic;
	color: #43cde0;
	position: relative;
}

blockquote cite {
	font-size: 18px;
	font-style: italic;
	font-weight: 600;
	color: #8b9394;
}

/* ==========================================================================
   Toggles
   ========================================================================== */
 
.toggle {
	clear: both;
	position: relative;
	margin-bottom: 40px;
}

.toggle > h2 {
	cursor: pointer;
	font-size: 18px;
	text-transform: none;
	margin-bottom: 20px;
	padding-right: 50px;
	padding-bottom: 15px;
	border-bottom: 1px solid #616363;
	-webkit-transition: 0.2s color linear;
			transition: 0.2s color linear;
}

.toggle > h2:hover {
	color: #464646;
}

.toggle > h2:after {
	content: "\f107";
	font-family: 'Font Awesome 6 Free';
	font-weight: normal;
	color: #969696;
	font-size: 36px;
	position: absolute;
	right: 0;
	top: -8px;
	-webkit-transition: transform 0.3s linear;
			transition: transform 0.3s linear;
}

.toggle > h2.active:after {
	-webkit-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
			transform: rotate(180deg);
}

.toggle .toggle-content {
	display: none;
	margin-bottom: 50px;
	overflow: hidden;
}

.toggle .toggle-content strong, .toggle .toggle-content strong {
	color: #43cde0 !important;
}

/* ==========================================================================
   Hero Holder
   ========================================================================== */

.hero {
	height: 296px;
	position: relative;
	overflow: hidden;
	background: linear-gradient(rgba(130,94,135,0) 30%,rgba(130,94,135,.8)), url('../images/ui/header-bg.png');
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover !important; 
    		background-size: cover !important;
}

#summer .hero {
	background: linear-gradient(rgba(224,208,34,0) 30%,rgba(224,208,34,.9)), url('../images/ui/header-bg-summer.png');
}

/*#summit .hero {
	background: linear-gradient(rgba(67,205,224,0) 30%,rgba(67,205,224,.4)), url('../images/ui/header-bg-summit.png');
}*/

#summit .hero {
	background: linear-gradient(rgba(51,51,51,0) 30%,rgba(51,51,51,.7)), url('../images/ui/header-bg-summit.png');
}

body.golf .hero {
	/*background: linear-gradient(to bottom, rgba(120,171,108,.9) 0%,rgba(120,171,108,0) 50%), url('../images/ui/header-bg-golf.png');*/
	background: linear-gradient(to bottom, rgba(34,34,34,.9) 0%,rgba(34,34,34,0) 70%), url('../images/ui/header-bg.png');
}

#network .hero {
	background: linear-gradient(to bottom, rgba(34,34,34,.9) 0%,rgba(34,34,34,0) 70%), url('../images/ui/header-bg.png');
}

.scroll-down {
	font-size: 38px;
	color: #fff;
	line-height: 43px;
	text-align: center;
	position: absolute;
	left: 50%;
	bottom: 15px;
	width: 43px;
	height: 43px;
	border-radius: 50%;
	background: none;
	border: 2px solid #43cde0;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
			transform: translateX(-50%);
}

.scroll-down i {
	line-height: 43px;
	padding-left: 1px;
}

.scroll-down a {
	color: #fff;
}

.hero-holder {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 70%;
	max-width: 90%;
	padding: 15px;
	color: #fff;
	text-align: center;
	-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
}

.hero-holder h1 {
	color: #fff;
}

.hero-holder p {
	font-size: 16px;
	line-height: 24px;
}

.hero-holder p:last-child {
	margin-bottom: 0px;
}

.hero-holder.left {
	text-align: left;
	left: 15%;
	-webkit-transform: translate(-15%, -50%);
		-ms-transform: translate(-15%, -50%);
			transform: translate(-15%, -50%);
}

.hero-holder.right {
	text-align: right;
	left: 85%;
	-webkit-transform: translate(-85%, -50%);
		-ms-transform: translate(-85%, -50%);
			transform: translate(-85%, -50%);
}

.hero-menu {
	position: absolute;
	left: 0;
	bottom: 15px;
	text-align: left;
	width: 100%;
	padding: 0 15px;
}

.hero-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hero-menu ul li {
	display: inline-block;
	margin-right: 25px;
	margin-bottom: 20px;
}

.hero-menu ul li.selected > a {
	border-bottom: 3px solid #43cde0;
}

.hero-menu ul ul li.selected a {
	color: #43cde0;
	border-bottom: none;
}

.category-select-field {
	display: none;
	position: relative;
    margin: 0;
    overflow: hidden;
    font-size: 16px;
    background: #fff;
    border: none;
    padding: 0;
    width: 100%;
    height: 25px;
}

.category-select-field:after {
	content: "\f107";
	font-family: 'Font Awesome 6 Free';
    color: #787878;
    font-size: 20px;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 1px;
    right: 0;
    z-index: 5;
}

.category-select-field select {
	position: relative;
	display: inline-block;
	font-weight: 400;
	font-size: 10px;
	color: #787878;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #787878;
	line-height: 15px;
    padding: 5px 8px;
    width: 100%;
    cursor: pointer;
    border: none;
    z-index: 10;
    box-shadow: none;
    background-color: transparent;
    background-image: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
	-webkit-border-radius: 0px;
			border-radius: 0;
}

#summer .hero-menu ul li.selected > a {
	border-bottom: 3px solid #fa9a2a;
}

#summer .hero-menu ul ul li.selected a {
	color: #fa9a2a;
	border-bottom: none;
}

.hero-menu ul li a {
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	padding-bottom: 5px;
}

.hero-menu ul ul li a {
	font-size: 11px;
}

.hero-menu ul li a:hover {
	color: #43cde0;
}

#summer .hero-menu ul li a:hover {
	color: #fa9a2a;
}

.submenu-select ul {
	position: absolute;
	display: none;
	top: 30px;
	left: 15px;
	z-index: 99;
}

/* ==========================================================================
   Home
   ========================================================================== */
   
.hero.home {
	height: 100%;
	background: none;
}

.hero.home .hero-holder {
	left: 0;
	width: 100%;
	max-width: 100%;
	padding: 0 15px;
	text-align: left;
	-webkit-transform: translate(0%, -50%);
		-ms-transform: translate(0%, -50%);
			transform: translate(0%, -50%);
}

.hero.home .hero-holder h1, .hero.home .hero-holder p {
	width: 350px;
}

.hero.home .hero-holder h1 {
	font-size: 48px;
	font-style: italic;
	line-height: 50px;
}

video { 
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
}

.home .callout {
	color: #fff;
	font-weight: 600;
	position: relative;
	overflow: hidden;
	
}

.home .callout h1 {
	font-size: 50px;
	line-height: 50px;
	color: #fff;
	margin-bottom: 15px;
}

.home .callout .date {
	font-size: 22px;
	line-height: 30px;
	text-transform: uppercase;
}

/*.home .callout.summit {
	background: linear-gradient(rgba(67,205,224,0) 30%,rgba(67,205,224,.6)), url('../images/ui/callout-summit-bg.png');
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover !important; 
			background-size: cover !important;
}*/

.home .callout.summit {
	background: linear-gradient(rgba(51,51,51,0) 30%,rgba(51,51,51,.7)), url('../images/ui/callout-summit-bg.png');
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover !important; 
			background-size: cover !important;
}

.home .callout.summer {
	background: linear-gradient(rgba(224,208,34,0) 30%,rgba(224,208,34,.9)), url('../images/ui/callout-summer-bg.png');
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover !important; 
			background-size: cover !important;
}

.home .callout.summit .btn {
	color: #fff;
}

.home .callout.summit .btn:hover {
	color: #43cde0;
}

.home .callout.summer .btn {
	color: #fff;
	border: 1px solid #fa9a2a;
}

.home .callout.summer .btn:hover {
	color: #fa9a2a;
}

.home .stats {
	text-align: center;
	padding-top: 75px;
	padding-bottom: 75px;
}

.home .stats h1 {
	font-size: 40px;
}

.home .stats p {
	font-size: 20px;
	line-height: 28px;
	color: #838286;
	margin-bottom: 75px;
}

.home .stats .stat {
	display: block;
	font-size: 50px;
	font-weight: 700;
	line-height: normal;
	margin-bottom: 10px;
}

.home .stats .counter p {
	font-size: 14px;
	font-weight: 600;
	line-height: 18px;
	color: #838286;
	margin-bottom: 20px;
}

#handshakes, #hours, #cards, #world, #states, .home .stats .stat span {
	display: inline;
}

.handshakes {
	color: #7bca46;
}

.hours {
	color: #e0d022;
}

.cards {
	color: #43cde0;
}

.world {
	color: #fa9a2a;
	display: inline;
}

.states {
	color: #825e87;
}

.home .sponsors-partners h1 {
	color: #7bca46;
}

.home .sponsors-partners p {
	font-size: 12px;
	color: #848487;
}

.home .sponsors-partners .logos {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
	font-variant: normal;
}

.home .sponsors-partners .logos li {
	float: left;
	width: 50%;
	padding: 0 5px 50px;
	text-align: center;
}

/* ==========================================================================
   Summit
   ========================================================================== */

#summit .content .btn {
	color: #43cde0;
	border: 1px solid #825e87;
}

#summit .content .btn:hover {
	color: #464646;
}

/*#summit .content .btn.big {
	color: #825e87;
	border: 1px solid #43cde0;
}

#summit .content .btn.big:hover {
	background-color: #43cde0;
}*/

#summit .content .btn.big {
	color: #825e87;
	border: 1px solid #838286;
}

#summit .content .btn.big:hover {
	color: #43cde0;
}

/* ==========================================================================
   Summer
   ========================================================================== */
   
#summer .content h1, #summer .content h2 {
	color: #fa9a2a;
}

#summer .content h3 {
	color: #7bca46;
}

#summer .subhead {
	color: #7bca46;
}

/*#summer .content-main a {
	color: #fa9a2a;
}*/

#summer .content-main a:hover {
	color: inherit;
}

#summer .sidebar a:hover {
	color: #fa9a2a;
}

#summer .content .btn {
	color: #fa9a2a;
	border: 1px solid #e0d022;
}

#summer .content .btn:hover {
	color: #464646;
}

#summer .content .btn.big {
	color: #fa9a2a;
	border: 1px solid #e0d022;
}

#summer .content .btn.big:hover {
	background-color: #e0d022;
}

/* ==========================================================================
   Golf
   ========================================================================== */
   
body.golf .content h1, body.golf .content h2 {
	color: #78ab6c;
}

body.golf .content h3 {
	color: #ffd043;
	font-size: 15px;
}

body.golf .subhead {
	color: #838286;
}

body.golf .content-main a:hover {
	color: inherit;
}

body.golf .sidebar a:hover {
	color: #78ab6c;
}

body.golf .content .btn {
	color: #78ab6c;
	border: 1px solid #78ab6c;
}

body.golf .content .btn:hover {
	color: #464646;
}

body.golf .btn.big {
	color: #78ab6c;
	border: 1px solid #78ab6c;
}

body.golf .btn.solid {
	background-color: #78ab6c;
	color: #fff !important;
	border: none !important;
}

body.golf .btn.solid:hover {
	background-color: #7bca46;
	color: #fff !important;
	border: none !important;
}

.golf-sponsors {
	margin-bottom: 50px
}

.golf-sponsors h2 {
	font-size: 18px;
	text-transform: none;
}

.classic-logo {
	text-align: center;
	background: #78AB6C;
}

/* ==========================================================================
   Sliders
   ========================================================================== */

/*#hero-slider {
	height: 600px;
	margin-bottom: 0px;
}*/

#hero-slider {
	height: 500px;
	margin-bottom: 0px;
}

#hero-slider .slide {
	position: relative;
	overflow: hidden;
	background-position: center center !important;
	background-repeat: no-repeat;
	-webkit-background-size: cover !important; 
			background-size: cover !important;
}

#hero-slider .hero-holder {
	top: auto;
	bottom: 100px;
	-webkit-transform: translate(-50%, 0);
		-ms-transform: translate(-50%, 0);
			transform: translate(-50%, 0);
}

#hero-slider .hero-holder h1 {
	font-size: 62px;
	margin-bottom: 10px;
}

#hero-slider .hero-holder h2 {
	font-size: 37px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 40px;
}

#hero-slider .hero-holder p {
	font-size: 20px;
}

#hero-slider .slick-dots {
    bottom: 20px;
}

/*#hero-slider .slick-dots li button
{
    background: #fff;
}*/

#summer #hero-slider .slick-dots li button:hover,
#summer  #hero-slider .slick-dots li button:focus {
    background: #fa9a2a;
    
}

#summer  #hero-slider .slick-dots li.slick-active button {
    background: #fa9a2a;
}

.category {
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	color: #43cde0;
	margin-bottom: 10px;
}

#hero-slider.news h1 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 25px;
}

#hero-slider.news p {
	font-size: 14px;
}

#hero-slider.news .btn {
	color: #fff;
	border: 1px solid #43cde0;
}

#hero-slider.news .btn:hover {
	color: #464646;
}

#home-slider .row .col-1-2 .cell {
	height: 460px;
}

#home-slider .info {
	color: #fff;
}

#home-slider .info p {
	font-weight: 600;
}

#home-slider .info h1 {
	font-size: 40px;
	color: #fff;
	line-height: 44px;
}

#home-slider .info .btn {
	position: absolute;
	left: 35px;
	bottom: 60px;
	color: #fff;
}

#home-slider .info .btn:hover {
	color: #43cde0;
}

#home-slider .speaker {
	background-position: top left;
	background-repeat: no-repeat;
	-webkit-background-size: cover !important; 
			background-size: cover !important;
}

#home-slider .caption {
	color: #fff;
	position: absolute;
	left: 30px;
	bottom: 30px;
}

.sponsors {
	background-color: #ebebeb;
	padding: 40px 15px;
}

#sponsors-slider {
	padding-top: 35px;
	padding-bottom: 35px;
	/*height: 150px;*/
}

#sponsors-slider .slick-track,
#sponsors-slider-new .slick-track {
	display: flex;
	align-items: center;
}

#sponsors-slider img,
#sponsors-slider-new img {
	margin: 0 auto;
	padding: 0 30px;
}

#sponsors-slider .slick-prev,
#sponsors-slider .slick-next,
#sponsors-slider-new .slick-prev,
#sponsors-slider-new .slick-next {
	width: 14px;
	height: 32px;
}

#sponsors-slider .slick-prev,
#sponsors-slider-new .slick-prev {
	left: -15px;
}

#sponsors-slider .slick-next,
#sponsors-slider-new .slick-next {
	right: -15px;
}

#sponsors-slider .slick-prev:before,
#sponsors-slider .slick-next:before,
#sponsors-slider-new .slick-prev:before,
#sponsors-slider-new .slick-next:before
{
    font-size: 32px;
    color: #43cde0;
}

#content-slider {
	width: 100%;
	margin-bottom: 100px;
}

body.golf #content-slider .slick-dots li button:hover,
body.golf #content-slider .slick-dots li button:focus {
    background: #78ab6c;
    
}

body.golf #content-slider .slick-dots li.slick-active button {
    background: #78ab6c;
}

#quote-slider {
	margin-left: 100px;
	margin-right: 100px;
	margin-bottom: 100px;
}

#quote-slider:before {
	content: url(../images/ui/quote-before.png);
	position: absolute;
	top: 0;
	left: -100px;
}

#quote-slider:after {
	content: url(../images/ui/quote-after.png);
	position: absolute;
	top: 0;
	right: -100px;
}


.premier-sponsors-slider-heading {
	
}

/* ==========================================================================
   Sidebar
   ========================================================================== */

.ad-caption {
	font-size: 10px;
	color: #838286;
	margin-bottom: 5px;
	display: block;
}

.sidebar .event .date {
	color: #43cde0;
	margin-bottom: 0pc;
}

.sidebar .contact-info {
	border: 1px solid #43cde0;
}

.sidebar .contact-info h3 {
	font-size: 14px;
	color: #825e87;
	margin-bottom: 0px;
}

.sidebar .contact-info p {
	margin-bottom: 15px;
}

.sidebar .contact-info p:last-child {
	margin-bottom: 0px;
}

.sidebar .contact-info a {
	color: #838286;
}

.sidebar .contact-info a:hover {
	color: #43cde0;
}

.sidebar .advertise {
	background-color: #838286;
}

.sidebar .advertise h3 {
	color: #fff !important;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 0px;
	background-color: #838286;
}

.sidebar .advertise p {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 15px;
}

.sidebar .advertise a {
	color: #fff;
}

.sidebar .advertise a:hover {
	color: #43cde0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
   
.footer {
	font-size: 10px;
	font-weight: 400;
	line-height: 14px;
	color: #fff;
	position: relative;
	width: 100%;
	padding: 30px 15px 20px;
	background-color: #825e87;
}

.footer a {
	color: #fff;
	text-transform: uppercase;
}

.footer a:hover {
	color: #464646;
	text-decoration: none;
}

.footer p {
	width: 50%;
}

.footer .social-list {
	position: absolute;
	top: 100px;
	right: 15px;
}

.footer .social-list li a {
	font-size: 20px !important;
}

.footer .nav-list li a {
	font-size: 12px;
}

.copyright {
	font-size: 9px;
}

.copyright li:first-child {
	text-transform: uppercase;
}

.copyright li:first-child:after {
	content: "|";
	position: absolute;
	top: 0;
	right: -10px;
}

.top {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	bottom: 30px;
	right: 30px;
	cursor: pointer;
	font-size: 28px;
	line-height: 25px;
	text-align: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: none;
	border: 2px solid #cccccc;
	z-index: 11;
}

.top i {
	color: #43cde0;
	line-height: 25px;
	padding-left: 1px;
}

.top.is-visible {
	visibility: visible;
	opacity: 1;
	-webkit-transition: opacity .3s 0s, visibility 0s 0s;
	   -moz-transition: opacity .3s 0s, visibility 0s 0s;
			transition: opacity .3s 0s, visibility 0s 0s;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
   
.btn, button, input[type="submit"], button[type="submit"] {
	font-weight: 600;
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	text-decoration: none !important;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #464646;
	display: inline-block;
	cursor: pointer;
	position: relative;
	background: none;
	border: 1px solid #43cde0;
	padding: 12px 50px 10px;
	max-width: 100%;
	border-radius: 0;
	-webkit-transition: 0.2s all linear;
			transition: 0.2s all linear;
}

.btn:hover, button:hover {
	color: #43cde0;
}

input[type="submit"], button[type="submit"] {
	color: #fff;
	background-color: #43cde0;
	border: 1px solid #43cde0;
}

#summer .content input[type="submit"], #summer .content button[type="submit"] {
	background-color: #fa9a2a !important;
	border: 1px solid #fa9a2a !important;
}

input[type="submit"]:hover, button[type="submit"]:hover {
	color: #464646;
}

.btn.big {
	font-size: 16px;
	letter-spacing: 1px;
	width: 100%;
	padding: 25px 5px;
}

.btn.less-pad {
	padding: 12px 20px;
}

.btn.solid {
	background-color: #43cde0;
	color: #fff !important;
	border: none !important;
}

.btn.solid:hover {
	color: #464646 !important;
}

#summer .btn.solid {
	background-color: #fa9a2a;
}

/* ==========================================================================
   Pagination
   ========================================================================== */
   
.pagination {
	width: 100%;
	padding-top: 15px;
	border-top: 1px solid #616363;
}

.pagination ul li {
	margin: 0 5px;
}

.pagination ul li a {
	font-size: 12px;
	font-weight: 600;
	color: #838286;
}

.pagination ul li a:hover {
	color: #43cde0;
}

.pagination ul li.selected a {
	color: #43cde0;
}

/* ==========================================================================
   Forms
   ========================================================================== */

::-webkit-input-placeholder {
   color: #464646;
}

:-moz-placeholder { /* Firefox 18- */
   color: #464646;  
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #464646;  
}

:-ms-input-placeholder {  
   color: #464646;  
}

textarea:focus, input:focus, button:focus, select:focus {
    outline: 0 !important;
}

input[type="text"], input[type="email"], input[type="password"], textarea {
	font-weight: 400;
	font-size: 12px;
	color: #464646;
	width: 100%;
  padding: 12px;
  margin: 0;
	border: 1px solid #43cde0;
	background: #fff;
	
	-webkit-appearance: none;
	-webkit-border-radius: 0px;
    border-radius: 0;
    
    -webkit-transition:0.2s background linear;
    		transition:0.2s background linear;
}

#summer input[type="text"], #summer textarea {
	border: 1px solid #fa9a2a;
}

input[type="text"]:focus, textarea:focus {
	
}

input[type="text"], input[type="password"] {
	height: 40px;
}

textarea {
	height: 225px;
}

input[type="submit"] {
	-webkit-appearance: none;
	-webkit-border-radius: 0px;
	border-radius: 0;
	
	input[type="submit"]::-moz-focus-inner { border:0; } /* ff specific stuff, yuck*/ 
	input[type="submit"]:focus { background: none; } /* change accordingly depending on your button bg color, this fixes the focus problem when using keyboard to move betweenform elements */
}

label {
	font-size: 12px;
	color: #464646;
	display: block;
	margin-bottom: 10px;
}

.select-field {
	display: block;
	position: relative;
    margin: 0;
    overflow: hidden;
    font-size: 12px;
    background: #fff;
    border: 1px solid #43cde0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
}

.select-field:after {
	content: "\f107";
	font-family: 'Font Awesome 6 Free';
    color: #464646;
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    width: 40px;
    height: 40px;
    border-left: 1px solid #43cde0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
}

.select-field select {
	position: relative;
	display: inline-block;
	z-index: 10;
	font-size: 12px;
	color: #464646;
	line-height: normal;
    padding: 14px;
    width: 100%;
    cursor: pointer;
    border: none;
    z-index: 6;
    box-shadow: none;
    background-color: transparent;
    background-image: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
	-webkit-border-radius: 0px;
			border-radius: 0;
}

#summer .select-field {
    border: 1px solid #fa9a2a;
}

#summer .select-field:after {
    border-left: 1px solid #fa9a2a;
}

.hero-menu .select-field {
	display: none;
	margin-bottom: 15px;
}

.choose-calendar {
	width: 185px;
	position: absolute;
	top: 0;
	right: 15px;
}

/*[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
	font-size: 11px;
  	position: relative;
  	cursor: pointer;
  	display: block;
  	overflow: auto;
  	padding-left: 30px;
}

/* checkbox aspect *!/
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  	content: '';
  	position: absolute;
  	left: 0; top: 0;
  	width: 15px;
  	height: 15px;
  	border: 1px solid #616363;
  	background: #fff;
  	border-radius: 0;
}
/* checked mark aspect *!/
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  	content: '✔';
  	position: absolute;
  	top: 6px;
  	left: 3px;
  	font-size: 18px;
  	line-height: 0;
  	color: #43cde0;
  	transition: all .2s;
}

#summer [type="checkbox"]:not(:checked) + label:after,
#summer [type="checkbox"]:checked + label:after {
  	color: #fa9a2a;
}
/* checked mark aspect changes *!/
[type="checkbox"]:not(:checked) + label:after {
  	opacity: 0;
  	transform: scale(0);
}
[type="checkbox"]:checked + label:after {
  	opacity: 1;
  	transform: scale(1);
}
/* disabled checkbox *!/
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
  	box-shadow: none;
  	border-color: #bbb;
  	background-color: #ddd;
}
[type="checkbox"]:disabled:checked + label:after {
  	color: #999;
}
[type="checkbox"]:disabled + label {
  	color: #aaa;
}
/* accessibility *!/
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
  	border: 1px solid #616363;
}*/

.checkbox-container {
	display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px !important;
  cursor: pointer;
	line-height: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background: none;
	border: 1px solid #616363;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 3px;
  top: 3px;
  width: 8px;
  height: 8px;
	background: #43cde0;
}

.checkbox-container.radio-group {
	display: inline-block !important;
	margin-right: 25px;
}

.checkbox-container.radio-group .checkmark, .checkbox-container.radio-group input:checked ~ .checkmark:after {
  -webkit-border-radius: 50%;
					border-radius: 50%;
}

.form-item {
	margin-bottom: 15px;
	position: relative;
}

.form-text {
	position: relative;
	margin-top: -10px;
}

.form-item.error input, .form-item.error textarea, .select-field.error, .form-item.error input[type="text"]:focus, .form-item.error textarea:focus {
	background: #43cde0;
}

#summer .form-item.error input, #summer .form-item.error textarea, #summer .select-field.error, #summer .form-item.error input[type="text"]:focus, #summer .form-item.error textarea:focus {
	background: #fa9a2a;
}

.form-item.error label {
	color: #43cde0;
	margin-bottom: 0px;
}

.alert {
	display: block;
	text-align: left;
	margin-top: 10px;
}

.alert label {
	font-weight: 600;
	font-size: 12px;
	color: #43cde0;
	display: block;
	margin-bottom: 0px;
}

#summer .alert label {
	color: #fa9a2a;
}

.messages {
	font-weight: 600;
	font-size: 12px;
	color: #464646;
}

.signup-form {
	position: absolute;
	top: 0;
	right: 15px;
}

.signup-form .form-item {
	display: inline-block;
	padding-right: 5px;
}

.signup-form .form-item:last-child {
	padding-right: 0px;
}

.signup-form input[type="text"] {
	font-size: 9px;
	width: 170px;
	height: 25px;
	padding: 5px;
	border: none !important;
}

.signup-form input[type="submit"] {
	font-size: 9px;
	line-height: normal;
	letter-spacing: 1px;
	background: #838286 !important;
	color: #fff;
	padding: 8px 20px;
	border: none !important;
}

.box {
	padding: 20px;
	color: #fff;
	margin-bottom: 30px;
}

.box h2 {
	font-size: 16px;
	color: #fff !important;
	margin-bottom: 20px;
	text-align: center;
}

.box input[type="text"], .box input[type="email"], .box textarea {
	border: none !important;
}

.box textarea {
	height: 120px;
}

.box input[type="submit"], .box button[type="submit"] {
	width: 100%;
}

.box.purple-bg label {
	color: #fff;
}

.box.purple-bg .checkmark {
  background: #fff;
	border: 1px solid #fff;
}

.box.purple-bg .freeform-row .freeform-column .freeform-label.freeform-required:after {
	color: #fff;
}

.box .messages {
	margin-top: 15px;
}

/* ==========================================================================
   Freeform
   ========================================================================== */

.freeform-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 0 -8px;
}

.freeform-row .freeform-column {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 0;
	flex: 1 0 0;
	padding: 0 0 16px;
	margin: 0 8px;
}

.freeform-row .freeform-column label {
	display: block;
	margin-bottom: 5px;
}

.freeform-row .freeform-column .freeform-label.freeform-required:after {
	content: "*";
	margin-left: 5px;
	color: #464646;
}

.freeform-row .freeform-column .freeform-input {
	width: 100%;
	/*display: block;*/
}

.freeform-row .freeform-column .freeform-input[type=checkbox], .freeform-row .freeform-column .freeform-input[type=radio] {
	width: auto;
	display: inline;
	margin-right: 5px;
}

.freeform-row .freeform-column .freeform-input-only-label {
	font-weight: normal;
}

.freeform-row .freeform-column .freeform-input-only-label>.freeform-input {
	display: inline-block;
	width: auto;
	margin-right: 5px;
}

.freeform-row .freeform-column .freeform-errors {
	list-style: none;
	padding: 0;
	margin: 5px 0 0;
}

.freeform-row .freeform-column .freeform-errors > li {
	font-size: 12px;
	color: #ff0000;
}

.freeform-row .freeform-column .freeform-errors > li:before {
	content: "";
}

.freeform-row .freeform-column .freeform-instructions {
	margin: 0 0 10px;
	font-size: 12px;
	line-height: 16px;
	color: #ABA7A7;
}

.freeform-row .freeform-column.freeform-column-content-align-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.freeform-row .freeform-column.freeform-column-content-align-left>button:not(:first-of-type) {
	margin-left: 5px;
}

.freeform-row .freeform-column.freeform-column-content-align-center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.freeform-row .freeform-column.freeform-column-content-align-center>button:not(:first-of-type) {
	margin-left: 5px;
}

.freeform-row .freeform-column.freeform-column-content-align-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.freeform-row .freeform-column.freeform-column-content-align-right>button:not(:first-of-type) {
	margin-left: 5px;
}

.freeform-row .freeform-column.freeform-column-content-align-spread {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.freeform-row .freeform-column.freeform-column-content-align-spread>button:not(:first-of-type) {
	margin-left: 5px;
}

.freeform-form-has-errors {
	color: red;
	font-weight: bold;
	font-size: 1.15em;
}

/* ==========================================================================
   Tables
   ========================================================================== */

.nape-table { 
	width: 100%; 
	font-size: 12px;
	margin-bottom: 50px;
}

.nape-table th {
	font-weight: 600;
	color: #43cde0;
	border-bottom: 1px solid #ccc;
}

#summer .nape-table th {
	color: #fa9a2a;
}

#summer .nape-table thead th:first-child, #summer .st-head-row-main {
	color: #7bca46;
}

.nape-table thead th:first-child, .st-head-row-main {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	color: #825e87;
	width: 40%;
}

.nape-table td, .nape-table th { 
	padding: 8px;
	text-align: left; 
}

table.small-only {
	display: none;
}

table.small-only td:last-child {
	text-align: right;
}

table.large-only {
	display: table;
}

.nape-table.plain {
	font-size: 14px;
}

.nape-table.plain th, .nape-table.plain td {
	padding: 2px 0;
}

.nape-table.plain th {
	border-bottom: none;
	width: 70%;
}

.nape-table small {
	display: block;
	line-height: 16px;
}

.ad-options-table {
	width: 100%;
	font-size: 12px;
	color: #838286;
	margin-bottom: 30px;
}

.ad-options-table thead {
	text-align: left;
	text-transform: uppercase;
}

.ad-options-table td, .ad-options-table th { 
	padding: 3px;
	text-align: left;
	position: relative;
	vertical-align: top;
}

.ad-options-table label {
	margin-bottom: 0px;
	margin-left: 20px;
	display: inline-block;
}

/* ==========================================================================
   Calendar
   ========================================================================== */
   
.key {
	position: absolute;
	top: 100px;
	right: 15px;
	font-size: 9px;
	font-weight: 600;
	line-height: 12px;
	text-transform: uppercase;
}

.key span {
	display: block;
}

.key i {
	font-size: 7px;
	vertical-align: text-top;
}

#month_year h3 {
	font-size: 20px;
	font-weight: 600;
	display: inline-block;
}

#month_year i {
	font-size: 24px;
	color: #a7a7a7;
}

#month_year i:first-child {
	margin-right: 25px;
}

#month_year i:last-child {
	margin-left: 25px;
}

#month_calendar #days_of_week th {
	font-weight: 500;
	text-transform: uppercase;
}

#month_calendar, #month_calendar .day_cell .date .num {
	font-size: 12px;
}

#month_calendar #days_of_week th {
	padding-top: 8px;
}

#month_calendar td.today {
	background-color: rgba(67, 205, 224, .25);
}

#month_calendar td.day_cell a {
	font-size: 9px;
	text-transform: uppercase;
	text-decoration: none;
}

#month_calendar .calendar-color {
	width: 6px;
	height: 6px;
}

.popover-content p {
	font-size: 12px;
	line-height: 16px;
	margin-bottom: 5px;
}

/* ==========================================================================
   Popup
   ========================================================================== */
   
.popup {
	background: rgba(0, 0, 0, .7);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
}

.popup-content {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 730px;
	padding: 75px 50px 50px;
	background: linear-gradient(rgba(130,94,135,0) 50%,rgba(130,94,135,.6)), url(../images/ui/popup-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover !important;
  background-size: cover !important;
}

.popup-content.summer {
	background: linear-gradient(rgba(224,208,34,0) 50%,rgba(224,208,34,.9)), url('../images/ui/popup-bg-summer.png');
}

.popup-content.summit {
	background: linear-gradient(rgba(67,205,224,0) 50%,rgba(67,205,224,.4)), url(../images/ui/popup-bg-summit.png);
}

.popup-content h2 {
	font-size: 32px;
	color: #fff;
}

.popup-content p {
	font-size: 16px;
	color: #fff;
	margin-bottom: 35px;
}

.popup-content .btn {
	background: #825e87;
}

.popup-content .popup-close {
	position: absolute;
	top: 25px;
	right: 25px;
	cursor: pointer;
}

.popup-content.summer .btn {
	background: #ffeb44;
	color: #464646 !important;
}

.popup-content.summit .btn {
	background: #43cde0;
}


/* ==========================================================================
   Popup Signup - 230517
   ========================================================================== */
   
.popup-signup {
	background: #78AB6C;
	width: 350px;
	height: 270px;
	position: fixed;
	right: 0;
	bottom: 200px;
	z-index: 9999;
	padding: 30px;
}

.popup-signup h2 {
	font-size: 32px;
	color: #fff;
	margin-bottom: 15px;
}

.popup-signup p {
	font-size: 14px;
	color: #fff;
	margin-bottom: 15px;
}

.popup—signup-close {
	position: absolute;
	top: 25px;
	right: 25px;
	cursor: pointer;
}

.popup-signup-form input[type="text"], .popup-signup-form input[type="email"] {
	border: none;
}

.popup-signup-form input[type="submit"] {
	background: none;
	border: 1px solid #fff;
}

/* ==========================================================================
   Grid
   ========================================================================== */

.row {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
}

.row.full-width {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
}

.row .row {
    width: auto;
    margin: 0 -15px;
}

*[class*='col-'] {
	float: left;
	padding: 0 15px;
	position: relative;
}

.col-1-1 { width: 100%; float: none; }
.col-1-2 { width: 50%; }
.col-1-3 { width: 33.33333%; }
.col-2-3 { width: 66.66666%; }
.col-1-4 { width: 25%; }
.col-3-4 { width: 75%; }
.col-1-5 { width: 20%; }
.col-2-5 { width: 40%; }
.col-3-5 { width: 60%; }
.col-4-5 { width: 80%; }
.col-3-10 { width: 30%; }
.col-7-10 { width: 70%; }

.cell { padding: 50px 35px; position: relative; }

.centered { margin: 0 auto; position: relative; float: none; }

.grid { overflow: hidden; margin: 0; padding: 0; list-style: none; }
.grid-item { padding: 15px 15px 30px; margin: 0; }
.grid-item img { width: 100%; }
.grid-item p:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   Slick Slider
   ========================================================================== */
   
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* ==========================================================================
   Slick Slider Theme
   ========================================================================== */
   
.slick-list,
.slick-track {
	height: 100%;
}

/* Slider */
.slick-loading .slick-list
{
    background: #fff url('../images/ui/ajax-loader.gif') center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 50px;
    height: 50px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    z-index: 999;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
    border: none;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: .50;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'Font Awesome 6 Free';
    font-weight: normal;
    font-size: 48px;
    line-height: 1;

    opacity: 1;
    color: #fff;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    -webkit-transition: 0.2s opacity linear;
    		transition: 0.2s opacity linear;
}

.slick-prev
{
    left: 5px;
}
[dir='rtl'] .slick-prev
{
    right: 20px;
    left: auto;
}
.slick-prev:before
{
    content: '\f104';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: 5px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: 20px;
}
.slick-next:before
{
    content: '\f105';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -35px;

    display: block;

    width: 100%;
    padding: 0 !important;
    margin: 0 !important;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 26px;
    height: 4px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li:before
{
    content: "" !important;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 26px;
    height: 4px;
    padding: 0px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: #d7d7d7;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
    background: #43cde0;
    
}

.slick-dots li.slick-active button
{
    background: #43cde0;
}

/*.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: .50;
}
.slick-dots li button:before
{
    font-family: 'Font Awesome 6 Free';
    font-size: 14px;
    line-height: 20px;

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

    width: 20px;
    height: 20px;

    content: '\f04d';
    text-align: center;

    opacity: 1;
    color: #d7d7d7;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: 1;
    color: #43cde0;
}*/

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers:
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after,
.row:before,
.row:after,
*[class*='col-']:before,
*[class*='col-']:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after,
.row:after,
*[class*='col-']:after {
    clear: both;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

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

	.footer .social-list, .signup-form {
		position: static;
		margin-bottom: 25px;
	}
	
	.signup-form .form-item:first-child {
		display: block;
	}
	
}

@media only screen and (max-width : 1024px) {
	
	.img-left.current-issue {
		float: none;
		margin-right: 0px;
	}
	
}


@media only screen and (min-width : 993px) {

	.grid-item {
		width: 33.33333%;
	}
	
	.grid-item-2, .widget .grid-item {
		width: 50%;
	}
	
	.grid-item-4 {
		width: 25%;
	}
	
}

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

	.grid-item {
		width: 50%;
	}
	
	.grid-item-4 {
		width: 25%;
	}
	
	.hero-holder {
		width: 100% !important;
	}
	
	.staff .col-1-2 {
		float: none;
		width: 100%;
	}
	
}

@media only screen and (max-width : 960px) {
	
	.hamburger {
		display: inline-block;
	}
	
	.sf-menu {
		display: none;
	}
	
	.main-nav {
		top: 84px;
	}
	
	.header .social-list {
		top: 52px;
	}
	
}

@media only screen and (max-width : 860px) {
	
	.choose-calendar {
		position: relative;
		margin-bottom: 25px;
		right: auto;
	}
	
	.key {
		top: 115px;
	}
}

@media only screen and (max-width : 780px) {
	
	#submenu-select {
		display: none !important;
	}
	
	.hero-menu .select-field {
		display: block;
	}
	
}

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

	*[class*='col-'] {
		float: none;
		width: 100%;
	}
	
	.grid-item {
		width: 50%;
	}
	
	.grid-item-2 {
		width: 100%;
	}
	
	.footer p {
		width: 80%;
	}

	.pagination {
		margin-bottom: 50px;
	}
	
	#quote-slider {
		margin-left: 50px;
		margin-right: 50px;
	}
	
	#quote-slider:before {
		left: -50px;
	}
	
	#quote-slider:after {
		right: -50px;
	}
	
	.past-issues {
		margin-left: 0px;
	}
	
	.the-issues {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		grid-gap: 30px;
	}
	
	.the-issues img {
		width: 100%;
	}
	
	.freeform-row {
		flex-direction: column;
	}
}

@media only screen and (min-width: 641px) {

	.hidden-on-desktop {
		display: none !important;
	}
	
}

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

	.grid-item {
		width: 100%;
	}
	
	.text-right-center, .text-left-center {
		text-align: center;
	}
	
	.hidden-on-mobile {
		display: none !important;
	}
	
	.hidden-on-desktop {
		display: block !important;
	}
	
	.sub-menu ul li {
		margin: 0 10px;
	}
	
	.sub-menu ul li:first-child {
		margin-left: 0px;
	}
	
	.sub-menu ul li:last-child {
		margin-right: 0px;
	}
	
	.home.hero .hero-holder h1, .home.hero .hero-holder p {
		width: 100%;
	}
	
	.hero.home .hero-holder h1 {
		font-size: 42px;
		line-height: 46px;
	}
	
	.eyebrow {
		display: none;
	}
	
	.main-nav {
		top: 52px;
	}
	
	.header .social-list {
		top: 15px;
	}
	
	.site-title {
		top: 15px;
	}
	
	.breadcrumbs {
		margin: 0 0 25px 0;
	}
	
	.media-resources .resource img, .lineup img, .list-item img {
		float: none;
		margin-right: 0px;
		margin-bottom: 30px;
	}
	
	table.small-only {
		display: table;
	}
	
	table.large-only {
		display: none;
	}
	
	.home .sponsors-partners .logos li {
		float: none;
		width: 100%;
	}
	
	.sponsor-grid, .the-issues {
		grid-template-columns: 1fr 1fr;
	}
	
	.popup-content {
		width: 95%;
		padding: 50px 25px 25px;
	}
	
	.popup-content .popup-close {
		top: 15px;
		right: 15px;
	}

}

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

	.grid-item {
		width: 100%;
	}
	
	.signup-form .form-item {
		display: block;
		padding-right: 0px;
	}
	
	.signup-form input[type="text"] {
		width: 100%;
	}
	
	.footer .nav-list li {
		display: block;
		margin: 0 0 10px;
	}
	
	#hero-slider .hero-holder {
		bottom: 50px;
	}
	
	#hero-slider .hero-holder h1 {
		font-size: 48px;
	}
	
	#hero-slider.news h1 {
		font-size: 24px;
		margin-bottom: 15px;
	}
	
	#hero-slider.news p {
		font-size: 13px;
	}
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print and (color) {
   * {
      -webkit-print-color-adjust: exact;
      print-color-adjust: exact;
   }
}

@media print {
	
	@page  { 
	    margin: 25mm 25mm 25mm 25mm;  
	}
	
	.hidden-on-print, a[href^="#"], .top, .main-nav, .sub-menu, .hero-menu, .footer, .sidebar, .breadcrumbs, .share, .prev-next, .back, .social-list, .eyebrow, .sponsors {
		display: none !important;
	}
	
	.show-on-print {
		display: block !important;
	}
	
	body {
		font-size: 12px;
		line-height: 18px;
		background: none;
	}
	
	p {
		margin-bottom: 15px;
	}
	
	*[class*='col-'] {
		float: none;
		width: 100%;
	}
	
	.toggle {
		margin-bottom: 0px !important;
	}
	
	.toggle .toggle-content {
		display: block !important;
		margin-bottom: 0px !important;
	}
	
    /**,
    *:before,
    *:after,
    *:first-letter,
    *:first-line {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 *!/
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }*/

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        /*border: 1px solid #999;*/
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}