/* CSS Resets */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

a {
  cursor: pointer;
  text-decoration: none;
}

#root, #__next {
  isolation: isolate;
}

/*------------------------------------*\
	DEFINE WEBSITE VARIABLES
\*------------------------------------*/
:root {
  --primary-color: #BCA05E;
  --secondary-color: #3C3422;
  --body-color: #3C3C3C;
  --body-color-rgb: 60, 60, 60;
  --primary-color-rgb: 188, 160, 94;
  --light-color: #FFFFFF;
  --grey-color: #CCCCCC;
  --light-grey-color: #F5F5F5;
  --dark-color: #2F284D;
  --title-font: brandon-grotesque, sans-serif;
  --secondary-font: anonymous-pro, monospace;
  --body-font: open-sans, sans-serif;
  font-size: 10px;
  /* Mobile menu overrides */
  --mm-color-border:rgba(255 255 255 / 0.4) !important;
  --mm-color-button:rgba(255 255 255 / 0.4) !important;
  --mm-color-text-dimmed:rgba(255 255 255 / 0.5)  !important;
  --design-color: #E6787D;
  --audio-color: #D2DC82;
  --art-color: #4BC3CD;
  --coding-color: #E1D200;
  --indie-bootcamp-color: #00D7E1;
  --roundtables-color: #828689;
  --discoverability-color: #5989C7;
  --business-color: #B478B4;
  --mobile-color: #ce8451;
  --keynote-color: #d3ab55;
}

#container {
	width: 100%;
	float: left;
	overflow: hidden;
}

.wrapper {
	width: 100%;
	float: left;
}

.content-area figure {
  margin: 2% !important;
}

/*------------------------------------*\
	HIDE MOBILE NAV
\*------------------------------------*/
#mobile-navigation {
	display:none;
}

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

.mm-menu {
  --mm-color-background: var(--dark-color);
  --mm-color-text: var(--light-color);
}


/*------------------------------------*\
	FORM RESETS
\*------------------------------------*/
form {
	width: 100%;
	float: left;
}

input, select, textarea {
	margin:0;
  padding:0;
  font-size: 1.5rem;
  outline:none;
	font-family:inherit;
	-moz-box-sizing:border-box; /* Firefox */
	-webkit-box-sizing:border-box; /* Safari */
	box-sizing:border-box;
	border-radius: none;
	-webkit-border-radius:0;
}

/*------------------------------------*\
	FORM ELEMENT STYLING
\*------------------------------------*/
label {
	margin: 0 0.8em;
	font-weight: 300;
}

/* ------------  Inputs and textareas  ------------- */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
	width: 100%;
	border: solid 1px var(--body-color);
	outline: medium none;
	margin: 1.2em 0px;
	padding: 0.8em;
	-webkit-appearance: none;
}

.ie9 input[type="text"] {
	line-height:normal;
} /* Get the stuff to line up right */

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
	border: solid 1px var(--primary-color);
}

.error {
    color: red;
    font-size: 1.6rem;
}

body {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	margin: 0;
  font-family: var(--body-font);
	font-size: 1.7rem;
  line-height: 1.5;
	color: var(--light-color);
}

p {
	margin: 14px 0;
}

span.hi-light-copy {
  font-family: var(--secondary-font);
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
}

a {
	color: var(--secondary-color);
  transition: color .4s linear;
}

a:hover {
	color: var(--body-color);
}

a.button,
p.button a {
  font-family: var(--title-font);
	font-weight: 900;
	display: inline-block;
	font-size: 1.8rem;
	color: var(--light-color);
	text-align: center;
	text-transform: uppercase;
	-webkit-appearance: none;
	padding: 8px 16px;
	background: var(--primary-color);
  outline: solid 3px var(--primary-color);
	transition: all .4s linear;
  margin: 12px 0;
}

.content-area.gold a.button,
.content-area.gold p.button a {
  color: var(--primary-color);
	background: var(--light-color);
  outline: solid 3px var(--light-color);
}

a:hover.button,
p.button a:hover {
	background: var(--primary-color);
  outline: solid 6px var(--primary-color);
}

.content-area.gold a:hover.button,
.content-area.gold p.button a:hover {
	background: var(--light-color) !important;
  outline: solid 6px var(--light-color) !important;
}

a.button.big,
p.button.big a {
	padding: 14px 22px;
  outline: solid 3px var(--primary-color);
}

a:hover.button.big,
p.button.big a:hover  {
  color: var(--body-color);
  background: var(--primary-color);
  outline: solid 6px var(--primary-color);
}

.content-area.gold a:hover.button.big,
.content-area.gold p.button.big a:hover  {
  color: var(--primary-color);
  background: var(--light-color);
  outline: solid 6px var(--light-color);
}

a.button.caret::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f105";
  margin-left: 6px;
}

a.arrow::after,
a.button.arrow::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f061";
  margin-left: 6px;
}

a.arrow {
  font-family: var(--title-font);
	font-weight: 900;
	display: inline-block;
	font-size: 1.6rem;
  text-transform: uppercase;
}

a.button.green {
	color: var(--body-color);
	background: var(--primary-color);
  outline: solid 3px var(--primary-color);
}

a:hover.button.green {
	color: var(--light-color);
	background: var(--primary-color);
  outline: solid 6px var(--primary-color);
}

a.button.purple {
	background: var(--primary-color);
  outline: solid 3px var(--primary-color);
}

a:hover.button.purple {
	background: var(--primary-color);
  outline: solid 6px var(--primary-color);
}

a.button.white-outline {
	background: none;
  outline: solid 3px var(--light-color);
  color: var(--light-color);
}

a:hover.button.white-outline {
	background: var(--light-color);
  outline: solid 6px var(--light-color);
  color: var(--primary-color);
}

a.button.green-outline {
	background: rgba(var(--body-color-rgb),0.2);
  outline: solid 3px var(--primary-color);
}

a:hover.button.green-outline {
	background: var(--primary-color);
  outline: solid 6px var(--primary-color);
  color: var(--body-color);
}

h1, h2, h3, h4 {
	font-family: var(--title-font);
	font-weight: 900;
	text-transform: uppercase;
  color: var(--secondary-color);
}

h1 {
	font-size: 4.4rem;
}

h2 {
	font-size: 3.4rem;
}

h3 {
	font-size: 2.6rem;
}

h4 {
	font-size: 2.2rem;
}

header {
  float: left;
  width: 100%;
  background-color: var(--primary-color);
  color: var(--light-color);
}

.header-background-image {
  position: fixed;
  top: 0;
  left: 0;
  float: left;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

header.home {
  background-attachment: fixed;
}

.nav-section {
  width: 100%;
  float: left;
  position: relative;
  z-index: 9999;
  background: rgba(var(--primary-color-rgb), 0);
  transition: all .4s linear;
  padding-bottom: 24px;
}

.nav-section.fixed {
  top: 0;
  background: rgba(var(--body-color-rgb), 0.9);
	position: fixed;
  z-index: 9999;
  border-bottom: solid 3px var(--light-color);
  padding-bottom: 18px;
}

.nav-section.fixed .nav-section-right .socials {
  display: none;
}

.nav-section.fixed .nav-section-left .dates,
.nav-section.fixed .nav-section-left .venue {
  margin: 0;
  font-size: 1.3rem;
  float: left;
}

.nav-section.fixed .nav-section-left .venue {
  margin-left: 12px;
}

.nav-section-left {
  float: left;
  margin: 12px 0 0 32px;
  transition: all .4s linear;
}

.nav-section.fixed .nav-section-left {
  margin: 20px 0 0 32px;
}

/* DESKTOP NAV STYLING */
.nav-section-left .nav-wrapper .desktop {
  width: 100%;
	float: right;
  margin-top: 8px;
  transition: all .4s linear;
}

.nav-section-left .nav-wrapper .desktop ul,
.nav-section-left .nav-wrapper .desktop ul li {
	margin: 0;
	padding: 0;
}

.nav-section-left .nav-wrapper .desktop ul li {
	list-style: none;
	display: inline;
	position: relative;
}

.nav-section-left .nav-wrapper .desktop ul li a {
  font-family: var(--title-font);
	color: var(--light-color);
	font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-left: 22px;
	transition: color .8s linear;
	text-decoration: none;
}

.nav-section-left .nav-wrapper .desktop ul li a:hover,
.nav-section-left .nav-wrapper .desktop ul li a.active {
	color: var(--primary-color);
}

.nav-section-right {
  float: right;
  margin: 20px 32px 0 0;
  text-align: right;
  transition: all .4s linear;
}

.nav-section-right .ctas {
  float: right;
  clear: both;
}

.nav-section-right .ctas a.button {
  margin: 0 0 0 24px;
}

.nav-section-right .socials {
  float: right;
  clear: both;
  margin-top: 38px;
}

.nav-section-right .socials a {
  font-size: 2rem;
  color: var(--light-color);
  margin-left: 20px;
  transition: all .4s linear;
}

.nav-section-right .socials a:hover {
  color: var(--primary-color);
}

/*------------------------------------*\
	PAGE TITLE STYLING
\*------------------------------------*/
header .title {
  max-width: 1500px;
	margin: 0 auto;
	padding: 32px 42px;
	overflow: hidden;
  z-index: 999;
  position: relative;
  text-align: center;
}

header .title img {
  max-width: 600px;
}

/*------------------------------------*\
	SPONSOR
\*------------------------------------*/
header .awards-sponsor {
  max-width: 600px;
	margin: 0 auto;
	padding: 0 42px 32px 42px;
	overflow: hidden;
  z-index: 999;
  position: relative;
  text-align: center;
}

/*------------------------------------*\
	CONTENT STYLES
\*------------------------------------*/
#content-wrapper {
	z-index:1;
  position: relative;
  max-width: 1500px;
	margin: 0 auto;
	padding: 32px 42px;
	overflow: hidden;
}

#content-wrapper ul,
.modal ul {
  margin: 12px 0;
  padding: 0;
}

#content-wrapper ul li,
.modal ul li {
  list-style: none;
  background: url(../images/li-bg-awards.png) no-repeat top left;
  padding: 0 0 0 32px;
}

#content-wrapper .content-area.white ul li,
.modal ul li {
  background: url(../images/li-bg-awards-gold.png) no-repeat top left;
}

#content .accordian-section-wrapper,
#content .content-area,
#content .list-tile-wrapper,
.logo-wrapper {
	max-width: 1500px;
	margin: 42px auto;
	padding: 32px 42px;
	overflow: hidden;
}

#content .accordian-section-wrapper {
  padding: 0 42px 32px 42px;
  margin-top: -52px;
}

#content .flexible-element:first-of-type {
	margin-top: 0;
}

#content .flexible-element:last-of-type {
	margin-bottom: 0;
}

#content .content-area.gold {
  background-color: var(--primary-color);
}

#content .content-area.white {
  background-color: var(--light-color);
  color: var(--body-color);
}

.content-area figure {
  margin: 2% !important;
}

#content .inner.copy {
	width: 100%;
	float: left;
	padding: 82px 15%;
	background: rgba( 0, 0, 0, 0.2);
	color: #FFFFFF;
}

#content .inner.copy h1,
#content .inner.copy h2,
#content .inner.copy h3,
#content .inner.copy h4,
#content .inner.copy h5 {
	color: #FFFFFF;
}

#content .te-col-copy {
	position: relative;
}

#content .te-col-copy .inner {
	padding: 122px;
	position: inherit;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

#content .te-col-image {
  background-color: var(--primary-color);
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
}

#content .te-wrapper.te-colour-block {
	overflow: hidden;
}

#content .te-wrapper.hi-light-section {
   outline: solid 1px var(--light-color);
   background: var(--primary-color);
   padding: 32px;
   text-align: center;
   margin: 3px 0;"
 }

 #content .te-wrapper.hi-light-section h1,
 #content .te-wrapper.hi-light-section h2,
 #content .te-wrapper.hi-light-section h3,
 #content .te-wrapper.hi-light-section h4,
 #content .te-wrapper.hi-light-section h5 {
   color: var(--primary-color);
 }

 #content .te-wrapper.hi-light-section a {
   color: var(--primary-color);
 }

#content .te-wrapper.dark {
  overflow: hidden;
  background-color: var(--primary-color);
}

#content .te-wrapper.light {
  overflow: hidden;
  background-color: var(--light-grey-color);
}

#content .te-wrapper.light, #content .te-wrapper.light h1, #content .te-wrapper.light h2, #content .te-wrapper.light h3, #content .te-wrapper.light h4 {
	color: var(--body-color);
	text-shadow: none;
}

#content .te-wrapper.dark, #content .te-wrapper.dark h1, #content .te-wrapper.dark h2, #content .te-wrapper.dark h3, #content .te-wrapper.dark h4 {
	color: var(--light-color);
	text-shadow: none;
}

#content .te-wrapper a:hover.button {
	background-color: var(--primary-color);
  outline: solid 6px var(--primary-color);
  color: var(--body-color);
}

#content div.te-left-col {
	margin-right: 2%;
}

#content div.te-right-col {
	margin-left: 2%;
}

#content div.te-col-image,
#content div.te-col-copy {
	width: 50%;
	margin: 0;
	min-height: 500px;
}

#content div.te-col-image.left,
#content div.te-col-copy.left {
	float: left;
}

#content div.te-col-image.right,
#content div.te-col-copy.right {
	float: right;
}

#content div.te-first-col, #content div.te-second-col, #content div.te-third-col {
	float: left;
	width: 30.66%;
}

#content div.te-second-col, #content div.te-third-col {
	margin-left: 4%;
}

/*------------------------------
   RESPONSIVE VIDEOS & MAPS
-------------------------------*/

.video-container-wrapper,
.map-container-wrapper {
	max-width: 1400px;
	overflow: hidden;
	padding: 52px 32px;
	margin: 0 auto;
	position: relative;
}

.video-container,
.map-container {
	position: relative;
	padding-bottom: 56.25%;
}

.video {
  text-align: center;
}

.video span {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 12px;
}

.single-video {
	width: 100%;
	float: left;
	margin: 24px 0;
}

.left-video,
.right-video {
	width: 48%;
	float: left;
	margin: 24px 0;
}

.right-video {
	margin-left: 4%;
}

.video-container iframe,
.video-container object,
.video-container embed,
.map-container iframe,
.map-container object,
.map-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*------------------------------
   REUSEABLE ACCORDIAN SECTION
-------------------------------*/
.accordian-section-wrapper {
  background: var(--primary-color);
  overflow: hidden;
}

.accordian-section {
	width: 100%;
	float: left;
	margin-bottom: 12px;
}

.accordian-title {
	width: 100%;
	padding: 12px 0;
	line-height: 32px;
	color: var(--secondary-color);
	position: relative;
	font-size: 20px;
	border-bottom: solid 1px var(--secondary-color);
	font-family: var(--title-font);
	font-weight: 900;
	text-transform: uppercase;
}

.accordian-title a {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	float: right;
	z-index: 1;
	cursor: pointer;
}

span.accordian-title-text {
	padding: 0 50px 0 0;
	display: block;
	text-align: left;
	pointer-events: none;
	font-family: var(--title-font);
	text-transform: uppercase;
	font-weight: 900;
}

.accordian-title a {
	margin: 16px 0 0 0;
  text-align: right;
  color: var(--secondary-color);
}

.accordian-title a span {
  margin-right: 18px;
  font-size: 2.6rem;
}

.accordian-content {
	float: left;
	width: 100%;
	text-align: left;
	padding: 1% 0;
	margin-bottom: 8px;
}

/*------------------------------------*\
  REUSEABLE GALLERY SECTION
\*------------------------------------*/
#content .gallery-listing-wrapper {
	margin-bottom: -1% !important;
  padding: 32px 0;
  overflow: hidden;
}

span.gallery-tool-tip {
	color: var(--light-color);
}

span.gallery-tool-tip img {
	padding: 0 6px;
}

.gallery-image {
	margin: 0 1% 2%;
	width: 23%;
	height: auto;
	float: left;
	position: relative;
	overflow: hidden;
  outline: solid 1px var(--primary-color);
}

.gallery-image a .overlay {
	position: absolute;
	background-color: rgba( var(--primary-color-rgb), 0);
	width: 100%;
	height: 100%;
	transition: background-color .4s linear;
}

.gallery-image a:hover .overlay {
	background-image: url(../images/gallery-link-bg.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-color: rgba( var(--primary-color-rgb), 0.7);
}

.gallery-image img {
	width: 100%;
	height: auto;
	float: left;
}

/*------------------------------------*\
	MODAL STYLING
\*------------------------------------*/
.modal {
    max-width: 900px !important;
    padding: 2% !important;
    border-radius: 0 !important;
}

.modal a.close-modal {
    top: -25px !important;
    right: -25px !important;
    width: 50px !important;
    height: 50px !important;
    background-image: url(../images/close-button.png) !important;
}

.modal .detail-session-title h3 {
  text-transform: none;
}

.modal .session-category {
    font-size: 1.5rem;
    position: relative;
    margin-bottom: 24px;
    bottom: 0;
    width: 100%;
    float: left;
}

.modal .session-category a {
    text-transform: uppercase;
    font-family: var(--title-font);
    font-weight: 900;
    margin: 0 6px 6px 0;
    padding: 4px 12px;
    color: var(--light-color);
    text-decoration: none;
    float: left;
    opacity: 1;
}

.modal .session-cta {
    float: left;
    width: 100%;
}

.modal .speaker-name {
    margin-top: 0;
}

.modal .additional-speaker-session {
  margin-bottom: 24px;
}

/*------------------------------------*\
	FOOTER STYLING
\*------------------------------------*/
#footer-wrapper {
  background: url("../images/footer-bg.png") no-repeat top right -90px var(--dark-color);
  color: var(--light-color);
}

.footer-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 72px 42px;
  overflow: hidden;
}

.footer-logo {
  max-width: 220px;
}

.footer-columns-wrapper {
  width: 100%;
  float: left;
  margin: 52px 0;
}

.footer-column {
  width: 33.33%;
  float: left;
}

.footer-column a:hover,
.footer-column.one a:hover.main,
.footer-column.one a:hover.sublevel {
  color: var(--primary-color);
}

.footer-column ul,
.footer-column ul li {
	margin: 0;
	padding: 0;
}

.footer-column ul li {
	list-style: none;
	position: relative;
}

.footer-column ul li a,
.footer-column.one a.main {
  font-family: var(--title-font);
  font-size: 2.6rem;
  color: var(--light-color);
  font-weight: 900;
  text-transform: uppercase;
}

.footer-column ul li a::after,
.footer-column.one a.main::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f061";
  margin-left: 6px;
}

.footer-column ul li ul li a,
.footer-column.one a.sublevel {
  font-family: var(--title-font);
  font-size: 1.6rem;
  color: var(--light-color);
  font-weight: 900;
  text-transform: uppercase;
}

.footer-column ul li ul li {
  margin: 14px 0;
}

.footer-column ul li ul li a::after,
.footer-column.one a.sublevel::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f105";
  margin-left: 6px;
}

.footer-column.one {
  font-family: var(--secondary-font);
  font-size: 1.8rem;
}

.footer-column a.button {
  width: 100%;
}

.footer-column .socials {
  float: left;
  width: 100%;
  margin-top: 32px;
  text-align: right;
}

.footer-column .socials a {
  font-size: 2rem;
  color: var(--light-color);
  margin-left: 20px;
  transition: all .4s linear;
}

.footer-column .socials a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  width: 100%;
  float: left;
  font-size: 1.4rem;
}

.footer-bottom .footer-bottom-copyright {
  float: left;
}

.footer-bottom .footer-bottom-menu {
  float: right;
}

.footer-bottom .footer-bottom-menu ul,
.footer-bottom .footer-bottom-menu ul li {
	margin: 0;
	padding: 0;
}

.footer-bottom .footer-bottom-menu ul li {
	list-style: none;
	display: inline;
	position: relative;
}

.footer-bottom .footer-bottom-menu ul li a {
  text-transform: capitalize;
  color: var(--light-color);
  margin-left: 12px;
  padding-left: 12px;
  border-left: solid 1px var(--light-color);
}

.footer-bottom .footer-bottom-menu ul li:first-child a {
  border-left: none;
}

.footer-bottom .footer-bottom-menu ul li a:hover {
  color: var(--primary-color);
}

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

h1 {
	font-size: 3.8rem;
}

h2 {
	font-size: 2.6rem;
}

h3 {
	font-size: 2.2rem;
}

h4 {
	font-size: 1.8rem;
}

}

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

.single-video,
.left-video,
.right-video {
	width: 100%;
	margin: 18px 0;
}

.right-video {
	margin-left: 0;
}

}

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

h1 {
	font-size: 3.2rem;
}

.content-area figure {
  margin: 5% !important;
  width: 90% !important;
  max-width: inherit !important;
  text-align: center;
}

.content-area figure img {
  max-width: 100% !important;
  height: auto !important;
}

.nav-section-left .nav-wrapper .desktop {
  display: none;
}

}

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

header {
  padding-top: 12px;
}

.nav-section.fixed {
  padding-bottom: 10px;
}

.nav-section-left {
  width: 90%;
  margin: 20px 5% 0 5%;
}

.nav-section.fixed .nav-section-left {
    margin: 10px 5% 0 5%;
}

.nav-section-right {
  width: 90%;
  float: left;
  text-align: center;
  margin: 18px 5% 0 5%;
}

.nav-section.fixed .nav-section-right {
  margin: 0;
}

header .title {
  margin: 0 0 10% 0;
}

header .title img {
    max-width: 100%;
}

#content-wrapper {
		padding: 20px;
}

#content .te-wrapper  {
	padding: 0;
}

.accordian-title {
	line-height: 22px;
	font-size: 16px;
}

.accordian-title a img {
	max-width: 16px;
}

.gallery-image {
	margin: 0 2% 4%;
	width: 46%;
	overflow: hidden;
}

}

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

#content .accordian-section-wrapper,
#content .content-area {
  padding: 32px;
}

#content .accordian-section-wrapper {
  padding: 0 32px 32px 32px;
}

}

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

#content .accordian-section-wrapper,
#content .content-area {
  padding: 32px 20px;
}

#content .accordian-section-wrapper {
  padding: 0 20px 32px 20px;
}

}
