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

* {
  margin: 0;
}

html, body {
  height: 100%;
}

html {
  scroll-behavior:smooth;
}

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:;
}

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

#root, #__next {
  isolation: isolate;
}

/*------------------------------------*\
	DEFINE WEBSITE VARIABLES
\*------------------------------------*/
:root {
  --blue: #048DC3;
  --green: #02AC6E;
  --orange: #F28A31;
  --purple: #7D3ADA;
  --red: #DA3240;
  --light-color: #FFFFFF;
  --body-font: "sofia-pro", sans-serif;
	--body-font-color: #000000;
	--light-grey: #EEEEEE;
  --dark-grey: #333333;
  font-size: 10px;
}

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

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

.modal {
  max-width: 1740px !important;
  padding: 60px !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:15px; 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:0px;
}

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

/*------------------------------------*\
	FORM ELEMENT STYLING
\*------------------------------------*/
label {
  display: block;
	margin: 18px 0 8px 0;
  font-size: 1.8rem;
	font-weight: 400;
}

label .asterisk {
  font-weight: 900;
  margin-left: 5px;
}

.indicates-required {
    font-size: 1.8rem;
    color: var(--body-font-color);
    font-weight: 900;
}

/* ------------  Inputs and textareas  ------------- */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
	width: 100%;
	border: 1px solid var(--body-font-color);
	outline: medium none;
	margin: 6px 0px 10px;
	padding: 10px 8px;
	-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(--green);
}

.error {
    color: red;
    font-size: 16px;
}

input[type="checkbox"] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  appearance: none;
  /* For iOS < 15 */
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 22px;
  height: 22px;
  border: 2px solid var(--body-font-color);
  border-radius: 4px;
  transform: translateY(-0.2px);
  display: inline-grid;
  place-content: center;
}

input[type="checkbox"]::before {
  content: "";
  width: 12px;
  height: 12px;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  /* Windows High Contrast Mode */
  background-color: CanvasText;
}

input[type="checkbox"]:checked::before {
  transform: scale(1);
}

input[type="checkbox"]:focus {
  outline: 5px solid var(--light-grey);
}

/* ------------  Buttons & Submits  ------------  */
input[type="submit"],
input[type="button"],
button[type="submit"] {
	cursor: pointer;
  font-weight: 900;
	background: var(--blue);
  color: var(--light-color);
	display: inline-block;
  padding: 6px 20px 10px 20px;
	transition: all .4s linear;
	font-size: 1.8rem;
  margin-top: 18px;
  border-radius: 6px;
  transition: all .4s linear;
  border: none;
}

input[type="submit"]:hover,
input[type="button"]:hover,
button[type="submit"]:hover {
  background: var(--red);
  border-radius: 0;
}

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

p {
	margin: 16px 0;
}

p.narrow {
  max-width: 740px;
  margin: 16px auto;
}

p.narrow.left {
  margin: 16px 0;
}

a {
	text-decoration: none;
	color: var(--blue);
	cursor: pointer;
	transition: all .4s linear;
}

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

a.button {
  font-weight: 900;
	background: var(--blue);
  color: var(--light-color);
	display: inline-block;
  padding: 6px 20px 10px 20px;
	transition: all .4s linear;
	font-size: 1.8rem;
  margin-top: 18px;
  border-radius: 6px;
  transition: all .4s linear;
}

a:hover.button {
	background: var(--red);
  border-radius: 0;
}

.socials a {
  margin: 0 6px;
}

h1, h2, h3, h4 {
	font-family: var(--body-font);
	font-weight: 700;
	line-height: 1.2;
  margin: 24px 0;
}

h1 {
	font-size: 5.2rem;
}

h2 {
	font-size: 4.2rem;
}

h2.features-title {
  margin-top: 0;
}

h3 {
	font-size: 3rem;
}

h4 {
	font-size: 2.6rem;
}

img.mobile-only {
  display: none;
}

/*------------------------------------*\
	HERO SECTION
\*------------------------------------*/
.hero-top {
  float: left;
  width: 100%;
  padding: 32px 60px;
  background-color: inherit;
  transition: all .4s linear;
  border-bottom: 2px solid var(--body-font-color);
}

.hero-top .logo {
  float: left;
}

.hero-top .desktop-nav {
  float: right;
}

.hero-top .desktop-nav ul,
.hero-top .desktop-nav ul li {
	margin: 0;
	padding: 0;
}

.hero-top .desktop-nav ul li {
	list-style: none;
	display: inline-block;
	position: relative;
}

.hero-top .desktop-nav ul li a {
  color: var(--body-font-color);
  font-weight: 600;
  overflow: hidden;
  display: block;
	position: relative;
	padding: 0 0 4px 0;
  margin-right: 30px;
}

.hero-top .desktop-nav ul li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--body-font-color);
	opacity 1;
	transition: transform 300ms;
  transform: translate3d(-100%, 0, 0);
}

.hero-top .desktop-nav ul li a:hover::after,
.hero-top .desktop-nav ul li a:focus::after,
.hero-top .desktop-nav ul li.active a::after {
  transform: translate3d(0, 0, 0);
}

.hero-top .desktop-nav ul li.active a::after {
  background-color: var(--red);
}

.hero-top .desktop-nav ul li.active a {
  color: var(--red);
}

.hero-top .desktop-nav ul li ul {
	position: absolute;
	right: 0;
	width: 320px;
	display: none;
	opacity: 0;
	visibility: hidden;
	margin: 0;
	padding: 0;
	z-index: 9998;
}

.hero-top .desktop-nav ul li ul li {
	display: block;
	margin: 0;
	text-align: right;
	padding-bottom: 0;
  border-bottom: solid 2px var(--body-font-color);
  background-color: var(--light-color);
}

.hero-top .desktop-nav ul li ul li a,
.hero-top .desktop-nav ul li.active ul li a {
		display: block;
		font-size: 1.6rem;
		margin-left: 0;
		border: none;
		color: var(--body-font-color);
		padding: 6px 18px;
		background-image: none;
    transition: none;
		transition: color .8s linear;
    transform: none;
}

.hero-top .desktop-nav ul li ul li a::after {
	height: 0;
	background-color: none;
	opacity 1;
	transition: none;
  transform: none;
}

.hero-top .desktop-nav ul li ul li a:hover::after,
.hero-top .desktop-nav ul li ul li a:focus::after,
.hero-top .desktop-nav ul li.active ul li a::after {
  transform: none;
  background-color: none;
}

.hero-top .desktop-nav ul li ul li:first-child {
    margin-top: 46px;
}

.hero-top .desktop-nav ul li ul li:last-child {
		padding: 0;
}

.hero-top .desktop-nav ul li ul li a:hover,
.hero-top .desktop-nav ul li ul li a.active,
.hero-top .desktop-nav ul li ul li.active a {
	color: var(--red);
}

.hero-top .desktop-nav ul li:hover ul,
.hero-top .desktop-nav ul li:hover ul li:hover ul,
.hero-top .desktop-nav ul li:hover ul li:hover ul li:hover ul,
.hero-top .desktop-nav ul li:hover ul li:hover ul li:hover ul li:hover ul {
	display: block;
	opacity: 1;
	visibility: visible;
}

.hero-top .desktop-nav ul li:hover ul li ul,
.hero-top .desktop-nav ul li:hover ul li:hover ul li ul,
.hero-top .desktop-nav ul li:hover ul li:hover ul li:hover ul li ul {
	position: absolute;
	top: -10px;
	right: 320px;
	width: 320px;
	display: none;
	opacity: 0;
	visibility: hidden;
	-transition: opacity 0.2s;
	margin: 0;
	z-index: 100;
}

.mobile-navigation-show-wrapper {
    display: none;
}

.mobile-navigation-show-wrapper a.simple-menu {
    color: var(--body-font-color);
    text-decoration: none;
    overflow: hidden;
    display: inline-block;
    position: relative;
    z-index: 999999;
    font-size: 1.5rem;
    font-weight: 700;

}

.hamburger .nav-line{
    width: 30px;
    height: 3px;
    background-color: var(--body-font-color);
    display: block;
    margin: 6px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover{
    cursor: pointer;
}

body.mm-wrapper--opened .hamburger {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

body.mm-wrapper--opened .hamburger .nav-line:nth-child(2){
    width: 0px;
}

body.mm-wrapper--opened .hamburger .nav-line:nth-child(1),
body.mm-wrapper--opened .hamburger .nav-line:nth-child(3){
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

body.mm-wrapper--opened .hamburger .nav-line:nth-child(1) {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
}

body.mm-wrapper--opened .hamburger .nav-line:nth-child(3){
    -webkit-transform: translateY(-8px) rotate(90deg);
    -ms-transform: translateY(-8px) rotate(90deg);
    -o-transform: translateY(-8px) rotate(90deg);
    transform: translateY(-8px) rotate(90deg);
}

nav#mobile-nav ul li a {
    color: var(--body-font-color);
    font-weight: 600;
    transition: color .8s linear;
}

nav#mobile-nav ul li a:hover,
nav#mobile-nav ul li a.active,
nav#mobile-nav ul li.active a {
    color: var(--red);
}

nav#mobile-nav ul li a.mm-subclose,
nav#mobile-nav ul li a:hover.mm-subclose {
    color: var(--blue);
}

.hero-top .hero-cta {
  float: right;
}

.hero-top .hero-cta a.button {
  margin: 0;
}

.hero-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 62px 60px;
  overflow: hidden;
}

.hero-body-copy {
  font-size: 2rem;
  width: 48%;
  float: left;
}

.hero-body-copy h1 {
  font-size: 5.2rem;
}

.hero-body-copy h2 {
	font-size: 3.2rem;
}

.hero-body-image {
  width: 48%;
  margin-left: 4%;
  float: left;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-body-image img {
  width: 100%;
  position: absolute;
  left: 0;
}

.hero-body-image img.placeholder {
  position: relative;
}

.hero-body-copy.right {
  float: right;
}

.hero-body-copy.large {
  width: 68%;
}

.hero-body-image.left {
  margin-left: 0;
  margin-right: 4%;
}

.hero-body-image.small {
  width: 28%;
}

/*------------------------------------*\
	HOME PAGE
\*------------------------------------*/

.home-module {
  margin: 2% 0;
  outline: 2px solid var(--body-font-color);
  padding: 4%;
}

/*------------------------------------*\
	CONTENT PAGES
\*------------------------------------*/
.content-area {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 60px;
  overflow: hidden;
}

.content-area.full-width {
  max-width: inherit;
}

.content-area ul {
  margin: 12px 0;
  padding: 0;
}

.content-area ul li {
  list-style: none;
  background: url(../images/li-bg.png) no-repeat top left;
  padding: 0 0 8px 38px;
}

.te-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 2%;
}

._100 {
    width: 100%;
    flex-basis: 100%;
}

._50 {
    width: 48%;
    flex-basis: 48%;
}

._33 {
    width: 31.33%;
    flex-basis: 31.33%;
}

._25 {
    width: 23%;
    flex-basis: 23%;
}

._20 {
    width: 18%;
    flex-basis: 18%;
}

.te-col-image {
    width: 48%;
    flex-basis: 48%;
    margin: 0;
    background-position:center center;
    -webkit-background-size:cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
}

.te-col-copy {
    width: 48%;
    flex-basis: 48%;
    margin: 0;
    position: relative;
}

.te-col-video {
    width: 48%;
    flex-basis: 48%;
    margin: 0;
    position: relative;
}

.te-col-image.central,
.te-col-video.central {
    width: 100%;
    flex-basis: 100%;
    float: left;
}

.te-col-image.central img {
  width: 100%;
}

.te-col-copy.central {
    width: 80%;
    flex-basis: 80%;
    margin: -122px 10% 0 10%;
    float: left;
}

.te-col-video .single-video {
    margin: 0;
}

.te-col-video .single-video.side {
    position: inherit;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.content-area .te-col-copy .inner {
  padding: 32px;
}

.content-area .te-col-copy .inner.side {
  position: inherit;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.content-area .white .te-col-copy .inner {
  padding: 32px 0;
}

.content-area.full-width .te-col-copy .inner {
  padding: 62px;
}

.content-area.full-width .white .te-col-copy .inner {
  padding: 62px 0;
}

.te-col-copy.white {
  background-color: var(--light-color);
}

.te-col-copy.blue {
  background-color: var(--blue);
  color: var(--light-color);
}

.te-col-copy.orange {
  background-color: var(--orange);
  color: var(--light-color);
}

.te-col-copy.green {
  background-color: var(--green);
  color: var(--light-color);
}

.te-col-copy.red {
  background-color: var(--red);
  color: var(--light-color);
}

.te-col-copy.purple {
  background-color: var(--purple);
  color: var(--light-color);
}

.te-col-copy.right {
  margin-left: 2%;
}

.te-col-copy.left {
  margin-right: 2%;
}

.te-col-image.left,
.te-col-video.left,
.te-col-copy.left {
    float: left;
}

.te-col-image.right,
.te-col-video.right,
.te-col-copy.right {
    float: right;
}

.te-col-image.left,
.te-col-image.right {
  position: relative;
}

.te-col-image.left img.middle,
.te-col-image.right img.middle {
  position: inherit;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*------------------------------
   CONTENT CALL OUTS
-------------------------------*/
.content-call-out-inner {
    width: 60%;
    padding: 62px;
    float: left;
}

.content-call-out-inner.centre {
    width: 100%;
    padding: 62px;
}

.content-call-out-inner.white {
  outline: 2px solid var(--body-font-color);
}

.content-call-out-inner.blue {
  background-color: var(--blue);
  color: var(--light-color);
}

.content-call-out-inner.orange {
  background-color: var(--orange);
  color: var(--light-color);
}

.content-call-out-inner.green {
  background-color: var(--green);
  color: var(--light-color);
}

.content-call-out-inner.red {
  background-color: var(--red);
  color: var(--light-color);
}

.content-call-out-inner.purple {
  background-color: var(--purple);
  color: var(--light-color);
}

.content-call-out-inner.right {
    float: right;
}

.content-call-out-inner .content-call-out-copy {
    max-width: 860px;
    font-size: 2.2rem;
    font-weight: 500;
    float: right;
}

.content-call-out-inner.centre .content-call-out-copy {
    max-width: inherit;
}

.content-call-out-inner.right .content-call-out-copy {
    float: left;
}

/*------------------------------
   REUSEABLE ACCORDIAN SECTION
-------------------------------*/
.accordian-section {
    width: 100%;
    float: left;
    margin-bottom: 12px;
}

.accordian-title {
    width: 100%;
    padding: 12px 0;
    color: var(--body-font-color);
    position: relative;
    font-size: 2.2rem;
    border-bottom: solid 2px var(--body-font-color);
    font-family: var(--body-font);
    font-weight: 500;
}

.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(--body-font);
    font-weight: 500;
}

.accordian-title a {
    margin: 16px 0 0 0;
    text-align: right;
    color: var(--body-font-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;
}

/*------------------------------------*\
	EXHIBITOR MANGEMENT
\*------------------------------------*/
.exhibitor-listings {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 2%;
  justify-content: center;
}

.exhibitor-listing {
  margin: 2% 0;
  outline: 2px solid var(--body-font-color);
  padding: 4%;
  text-align: center;
}

.exhibitor-listing .exhibitor-logo {
  line-height: 100px;
  margin-bottom: 18px;
}

.exhibitor-listing-icons span {
  margin: 0 6px;
}

.exhibitor-website,
.exhibitor-email,
.exhibitor-brochure {
  outline: 1px solid var(--body-font-color);
  float: left;
  padding: 8px 16px;
  margin: 24px 18px 0 0;
}

.exhibitor-website span,
.exhibitor-email span,
.exhibitor-brochure span {
  font-family: var(--body-font);
	font-weight: 400;
	font-size: 2rem;
  line-height: 1.5;
  margin-left: 12px;
}

.social-icons {
  width: 100%;
  float: left;
  margin-top: 24px;
}

.social-icons .social {
  float: left;
  margin-right: 18px;
}

.exhibitor-video {
  margin: 52px 0;
}

/*------------------------------------*\
	PRODUCT MANGEMENT
\*------------------------------------*/

.product-listing {
  margin: 2% 0;
  outline: 2px solid var(--body-font-color);
  text-align: center;
}

.product-listing-copy {
  padding: 2% 4%;
}

.product-listing-copy h4 {
  padding-top: 12px;
  border-top: 1px solid var(--body-font-color);
}

.product-image {
  display: flex;
  max-width: 300px;
  float: right;
  margin: 0 0 24px 24px;
}

.related-exhibitor {
  width: 100%;
  float: left;
  outline: 2px solid var(--body-font-color);
  padding: 4%;
  margin-top: 32px;
}

/*------------------------------
  SPEAKERS
-------------------------------*/

.speaker-listing {
  margin: 2% 0;
  text-align: center;
}

/*------------------------------
  VIDEOS
-------------------------------*/

.video-container-wrapper {
    position: relative;
}

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

.video {
    text-align: center;
}

.video span {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    padding: 18px 0;
    border-bottom: 1px solid var(--body-font-color);
}

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

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

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

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

/*------------------------------
   GALLERIES
-------------------------------*/
span.gallery-tool-tip {
  color: #FFFFFF;
}

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

.gallery-image {
  margin: 0 1% 2%;
  width: 23%;
  height: auto;
  float: left;
  position: relative;
  overflow: hidden;
}

.gallery-image a .overlay {
  position: absolute;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  height: 100%;
  -webkit-transition: background-color .4s linear;
  -moz-transition: background-color .4s linear;
  -o-transition: background-color .4s linear;
  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(0, 0, 0, 0.7);
}

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

/*------------------------------------*\
	PRESS RELEASES
\*------------------------------------*/

.exhibitor-press h3 {
  border-top: 1px solid var(--body-font-color);
  padding: 24px 0 12px 0;
}

.press-item {
    background-color: var(--light-grey);
    padding: 12px;
    margin-bottom: 12px;
}

.press-item a {
  color: var(--body-font-color);
}

.press-item a span {
  margin-left: 12px;
}

/*------------------------------------*\
	PROGRAMME STYLING
\*------------------------------------*/
.topper {
  border-top: solid 6px var(--body-font-color);
}

ul#days {
	list-style-type: none;
	margin: 0;
	padding: 18px 18px 0 18px;
	text-align: center;
	float: left;
	width: 100%;
  border-bottom: solid 2px var(--red);
}

ul#days li {
	padding: 6px 0 12px 0 !important;
  margin: 0 24px;
  display: inline-block;
  color: var(--body-font-color);
  cursor: pointer;
  font-size: 2.4rem;
  font-family: var(--title-font);
  font-weight: 700;
}

ul#days li span,
ul#days li:hover span,
ul#days li.active span {
  display: block;
  font-size: 1.6rem;
  color: var(--blue);
}

ul#days li:hover,
ul#days li.active {
	color: var(--red);
  border-bottom: solid 10px var(--red);
}

ul#day {
	list-style-type: none;
	margin: 0;
	padding: 0;
	float: left;
	height: 100%;
	width: 100%;
}

ul#day li {
	display: none;
  width: 100%;
  padding: 0;
}

ul#day li ul li {
  width: auto;
}

ul#day li.active {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 2%;
  justify-content: center;
}

.session {
  width: 98%;
  flex-basis: 98%;
  float: left;
  padding: 24px;
  outline: solid 1px var(--body-font-color);
  text-align: left;
  position: relative;
  margin: 2% 0 0 0;
}

.modal .session {
  outline: none;
  width: 100%;
  flex-basis: 100%;
  padding: 0;
}

.session.half {
  width: 48%;
  flex-basis: 48%;
}

.session-details {
  width: 100%;
  float: left;
  margin-bottom: 12px;
}

.session-details .session-time {
  float: left;
  width: 100%;
  font-family: var(--title-font);
  text-transform: uppercase;
}

.session-details .session-title,
.session-details .session-title a {
  float: left;
  width: 100%;
  margin-top: 6px;
  font-family: var(--title-font);
  font-size: 2rem;
  text-transform: uppercase;
}

.session-view-more {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--title-font);
  text-transform: uppercase;
  margin-top: 8px;
  width: 100%;
  float: left;
}

.session-view-more span {
  margin-left: 5px;
}

.session-view-more a:hover span {
  margin-left: 8px;
}

.session-categories {
  width: 100%;
  text-align: right;
}

.session-categories span {
  font-weight: 700;
  margin-left: 10px;
}

.session-speakers {
  width: 100%;
  float: left;
  margin-top: 32px;
}

.session .session-speaker {
  width: 31.33%;
  float: left;
  font-size: 1.6rem;
  line-height: 1;
  margin: 0 2% 2% 0;
  outline: solid 1px var(--dark-grey);
}

.session.half .session-speaker,
.modal .session .session-speaker {
  width: 48%;
}

.session .session-speaker-image {
  float: left;
  aspect-ratio: 1 / 1;
  flex: 0 0 55px;
  height: 55px;
}

.modal .session .session-speaker-image {
  flex: 0 0 65px;
  height: 65px;
}

.session .session-speaker-details {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 2% 4%;
  font-size: 1.4rem;
}

.session .session-speaker-details.chair {
  background-color: var(--dark-grey);
  color: var(--light-color);
}

.session .session-speaker-details.chair span {
  color: var(--light-color);
}

.session .session-speaker-details span {
  font-weight: 700;
  color: var(--body-font-color);
}

.session .session-speaker-details span.chair {
  margin-right: 8px;
  font-weight: 700;
  color: var(--light-color);
}

.speaker-image {
  float: right;
  margin: 0 0 24px 24px;
}

/*------------------------------------*\
	PEOPLE WALL & CAROUSELS
\*------------------------------------*/
.people-wall {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 2%;
  justify-content: center;
}

.people-wall .speaker-listing {
  width: 23%;
  flex-basis: 23%;
  margin-bottom: 2%;
}

.people .speaker-listing {
  width: 100%;
  flex-basis: 100%;
  margin: 0;
  text-align: center;
}

.people-wall .speaker-listing img,
.people .speaker-listing img {
  width: 100%;
}

/*------------------------------------*\
	LOGO WALL & CAROUSELS
\*------------------------------------*/
.logo-wall {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 2%;
  justify-content: center;
}

.logo-wall .logo-listing {
  width: 23%;
  flex-basis: 23%;
  text-align: center;
  outline: solid 1px var(--light-grey);
  padding: 2% 0;
  margin-bottom: 2%;
}

.logos .logo-listing {
  width: 100%;
  flex-basis: 100%;
  margin: 0;
  text-align: center;
  padding: 72px 0;
}

/*------------------------------------*\
	QUOTES & TESTIMONIALS
\*------------------------------------*/
.quote-wrapper {
  max-width: 860px;
  margin: 0 auto;
  background: var(--light-colour);
  padding: 32px 72px;
  position: relative;
  outline: solid 2px var(--body-font-color);
}

.quote-wrapper.blue {
  background-color: var(--blue);
  color: var(--light-color);
}

.quote-wrapper.orange {
  background-color: var(--orange);
  color: var(--light-color);
}

.quote-wrapper.green {
  background-color: var(--green);
  color: var(--light-color);
}

.quote-wrapper.red {
  background-color: var(--red);
  color: var(--light-color);
}

.quote-wrapper.purple {
  background-color: var(--purple);
  color: var(--light-color);
}

.quote-wrapper-photo {
  position: absolute;
  top: -20px;
  left: -40px;
  outline: solid 2px var(--body-font-color);
}

.quote-wrapper-photo img {
  float: left;
}

.quote-mark {
  position: absolute;
  bottom: -48px;
  right: 20px;
  font-size: 6rem;
  color: var(--body-font-color);
}

/*------------------------------------*\
	FOOTER SECTION
\*------------------------------------*/
#footer-wrapper {
    width: 100%;
    padding: 72px 60px;
    float: left;
    font-size: 1.8rem;
    border-top: 2px solid var(--body-font-color);
    margin-top: 72px;
    font-weight: 600;
}

.footer-copyright {
    float: left;
}

@media only screen and (max-width:1279px) {
  .desktop-nav {
    display: none;
  }

  .mobile-navigation-show-wrapper {
    display: inherit;
    position: absolute;
    right: 60px;
    top: 26px;
  }

  .session.half .session-speaker, .modal .session .session-speaker {
    width: 100%;
  }

  .footer-copyright {
      float: left;
      width: 100%;
      text-align: center;
      margin-bottom: 42px;
  }

}

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

  ._20,
  ._25 {
      width: 31.33%;
      flex-basis: 31.33%;
  }

  .speaker-image {
    float: left;
    margin: 0 0 24px 0;
    width: 100%;
  }

}

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

  .modal {
    padding: 20px !important;
  }

  ._20,
  ._25,
  ._33 {
    width: 48%;
    flex-basis: 48%;
  }

  .te-col-copy.central {
    width: 100%;
    flex-basis: 100%;
    margin: 0;
  }

  img.mobile-only {
    display: inherit;
  }

  .te-col-image,
  .te-col-video {
    width: 100%;
  }

  .te-col-copy {
    width: 100%;
    flex-basis: 100%;
  }

  .te-col-copy.left {
    margin-right: 0;
  }

  .te-col-copy.right {
    margin-left: 0;
  }

  .te-col-image.left,
  .te-col-image.right {
    background-image: none !important;
  }

  .content-area .te-col-copy .inner.side,
  .te-col-video .single-video.side,
  .te-col-image.left img.middle,
  .te-col-image.right img.middle {
    position: inherit;
    top: 0;
    -webkit-transform: inherit;
    -moz-transform: inherit;
    -o-transform: inherit;
    transform: inherit;
  }

  .te-col-image.central img,
  .te-col-image.left img.middle,
  .te-col-image.right img.middle {
    float: left;
  }

  .session.half {
    width: 98%;
    flex-basis: 98%;
  }

}

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

  h1 {
  	font-size: 4.4rem;
  }

  h2 {
  	font-size: 3.2rem;
  }

  h3 {
  	font-size: 2.8rem;
  }

  h4 {
  	font-size: 2.4rem;
  }

  .hero-top {
    padding: 32px;
    overflow: hidden;
  }

  .mobile-navigation-show-wrapper {
    display: inherit;
    position: absolute;
    right: 32px;
    top: 26px;
  }

  .hero-top.fixed .mobile-navigation-show-wrapper {
    top: 14px;
  }

  .hero-body {
    padding: 42px 32px;
  }

  .content-area {
    padding: 42px 32px;
    overflow: hidden;
  }

  ._20,
  ._25,
  ._33,
  ._50 {
    width: 100%;
    flex-basis: 100%;
  }

  .left-video, .right-video {
    width: 100%;
  }

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

  .quote-wrapper {
    padding: 32px;
  }

  .quote-wrapper-photo {
    top: -62px;
    left: inherit;
  }

  #footer-wrapper {
    padding: 52px 32px 92px 32px;
    margin-top: 52px;
  }

}

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

  h1 {
  	font-size: 3.8rem;
  }

  h2 {
  	font-size: 3.2rem;
  }

}
