:root {
    --primary-color: hsl(158, 100%, 24%);
    --primary-color-light: hsl(148, 96%, 33%);
    --secondary-color: hsl(358, 85%, 52%);
    --secondary-color-dark: hsl(354, 71%, 43%);
    --accent-color: hsl(34, 95%, 54%); /* Orange (#F99D1C) */
    --success-color: hsl(144, 80%, 34%); /* Green (#119B4A) */
    --dark-color: hsl(24, 5%, 20%); /* Dark Gray (#353230) */
}
/* Resets */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup,
var, b, i, hr, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, figure, figcaption, hgroup, menu, footer, header, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
}
.clearfix:before, .clearfix:after {
	content: "";
	display: table;
}
.clearfix:after {
	clear: both;
}
.clearfix {
	zoom: 1;
}
.maxwidth {
	max-width: 1200px;
	margin: auto;
	padding: 10px;
}
.bg-light {
	background-color: #f9f9f9;
}
.centered {
	text-align: center;
}
article, aside, canvas, figure, figure img, figcaption, hgroup, footer, header, nav, section, audio, video {
	display: block;
}
body, input, button,
textarea, select, option {
	font-family: 'Teachers', sans-serif;
	color: #222;
	font-size: 18px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
	text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
	font-weight: 500;
}
.text-primary {
	color: var(--primary-color);
}
.text-secondary {
	color: var(--secondary-color);
}
.text-dark {
	color: #222;
}
.text-light {
	color: #999;
}
.barlow-condensed {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;       /* Remove default arrow */
	background: url(../img/select-arrow.svg) no-repeat calc(100% - 1em) 50%;   /* Add custom arrow */
}
select::-ms-expand {
    display: none; /* Hide the default arrow in Internet Explorer 10 and Internet Explorer 11 */
}
/* Target Internet Explorer 9 to undo the custom arrow */
@media screen and (min-width:0\0) {
    select {
        background: none\9;
        padding: 5px\9;
    }
}
input,
textarea,
select {
	border-radius: 2px;
	border: none;
	background-color: #f3f3f3;
	padding: 10px 15px;
	box-sizing: border-box;
	width: 100%;
	display: block;
}
select + input {
	background-color: #fff;
	border: 1px solid #f3f3f3;
}
textarea {
	height: 100px;
}
input[type=checkbox] {
	margin-right: 10px;
}
input[type=submit] {
	color: #fff;
	background: var(--primary-color);
	font-size: .9em;
	text-transform: uppercase;
	padding: 10px 40px;
	cursor: pointer;
	transition: background-color .3s;
}
input[type=submit]:hover {
	background: var(--secondary-color);
}
sup {
	font-size: .5em;
	/* font-weight: bolder; */
}
.attendees {
	padding: 100px 1em;
	background-color: #ffffff66;
}
.attendees ul,
article ul,
.prose ul,
.accordion ul {
	list-style: square;
	padding-left: 1.5em;
	margin-bottom: 1em;
}
article ol,
.prose ol,
.accordion ol {
	/*list-style: square;*/
	padding-left: 1.5em;
	margin-bottom: 1em;
}
.attendees ul li::marker,
article ul li::marker,
.prose ul li::marker,
.accordion ul li::marker {
	color: var(--secondary-color);
}
.attendees ul li,
article ul li,
.prose ul li,
.accordion ul li {
	margin-bottom: .5em;
}
body {
	background: #fff;
}
p {
	margin-bottom: 1em;
}
b, strong {
	font-weight: 600;
}
a {
	color: var(--primary-color);
	text-decoration: none;

	-webkit-transition: .3s all ease-in-out;
	-moz-transition: .3s all ease-in-out;
	transition: .3s all ease-in-out;
}
.button,
a.cta-button {
	display: inline-block;
	padding: .5em 1em;
	border-radius: .2em;
}
a.cta-button {
	background-color: var(--secondary-color);
	color: #fff;
}
.button:hover {
	text-decoration: none;
	background-color: #0001;
}
li.active .button {
	text-decoration: none;
	background-color: #0001;
}
a.cta-button:hover,
li.active a.cta-button {
	text-decoration: none;
	background-color: var(--secondary-color-dark);
}
a:hover {
	text-decoration: underline;
}
.block {
	display: block;
}
.transition {
	-webkit-transition: .3s all ease-in-out;
	-moz-transition: .3s all ease-in-out;
	transition: .3s all ease-in-out;
}
h2 {
	font-size: 1.8em;
	line-height: 1.2;
	font-weight: 300;
	margin-bottom: .5em;
	color: var(--primary-color);
}
h3 {
	text-transform: uppercase;
	color: var(--secondary-color-dark);
	margin-block: 1em;
	font-weight: 500;
}
.accordion h3 {
	text-transform: unset;
}
h4 {
	color: var(--primary-color-light);
	margin-block: .5em;
	font-weight: 500;
}
h5 {
	font-weight: 500;
	margin-bottom: .5em;
}
h6 {
	color: var(--primary-color);
	font-weight: 500;
}
hr {
	border-bottom: 1px solid #eee;
	margin-block: 1em;
}
header .maxwidth {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .logo {
	max-width: 250px;
	max-height: 300px;
	margin: .5em auto;
}
header .coat-of-arms img {
    max-height: 80px; /* Adjust the size as needed */
    height: auto;
    width: auto;
}
@media screen and (max-width: 560px) {
	header .button {
		padding: .2em .5em;
		font-size: .9em;
	}
}
header a {
	display: block;
}
header .logo img {
	display: block;
	width: 100%;
	height: 90px;
	object-fit: contain;
	object-position: left;
}
header .menu ul li {
	display: inline-block;
	vertical-align: middle;
	margin: .1em;
}
.hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: var(--primary-color);
	position: relative;
	overflow: hidden;
	min-height: 600px;
/* 	background: url('../img/hero-bg.webp') center no-repeat; */
/* 	background-size: cover; */
	padding: 2em 1em 3em;
}
.hero p {
	color: #222;
}
.hosts-logos {
	display:flex;
	gap: .5rem;
	align-items: center;
	margin-block: 1rem;
	justify-content: center;
}
@keyframes zoom {
	0% {
	  transform: scale(1.02);
	}
	50% {
	  transform: scale(1.12);
	}
	100% {
	  transform: scale(1.02);
	}
}
.hero .hero-text {
	flex-grow: 1;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.hero .hero-text > * {
	max-width: 75ch;
	padding: 1em;
}
.hero .hero-text img {
	max-width: 90vw;
}
.hero .hero-text h1 {
	font-size: 2.4em;
	line-height: 1;
	text-wrap: balance;
	font-weight: 300;
	max-width: 40ch;
	margin-bottom: 1rem;
}
.hero .hero-text h2 {
	font-family: "Barlow Condensed", sans-serif;
	font-style: italic;
	font-weight: bold;
	color: var(--primary-color);
	font-size: 1.5em;
	line-height: 1.2;
	margin-bottom: .5em;
	text-wrap: balance;
}
.hero .hero-text h2 span {
	font-weight: normal;
}
.contact-button {
	margin-top: 1em;
	transition: all .2s ease-in-out;
}
.contact-button-fixed {
	opacity: 0;
	visibility: hidden;
	position: fixed;
	text-align: center;
	bottom: 1em;
	right: 1em;
	transform: translateY(4em);
}
.contact-button-fix .contact-button-hero {
	opacity: 0;
	visibility: 0;
}
.contact-button-fix .contact-button-fixed {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}
.contact-button a,
.send-button,
.download-button {
	display: inline-block;
	background-color: var(--primary-color);
	color: #fff;
	padding: .5em 1em;
	font-size: 1rem;
	border-radius: 3px;
}
.contact-button a img,
.send-button img,
.download-button img {
	display: inline-block;
	height: 1em;
	width: auto;
	margin-right: .5em;
	transform: translateY(2px);
}
.send-button img {
	margin-left: .5em;
}
.send-button {
	padding: .6em 1em;
	border: none;
	cursor: pointer;
	margin: 0;
	box-sizing: border-box;
	width: 200px;
	transition: background-color .3s;
}
.download-button {
	display: inline-block;
	border: none;
	cursor: pointer;
	margin: 0;
	box-sizing: border-box;
	transition: background-color .3s;
}
.contact-button a:hover,
.send-button:hover,
.download-button:hover {
	background-color: var(--secondary-color-dark);
	text-decoration: none;
}
.scroll-down {
	position: absolute;
	width: 2em;
	height: 2em;
	z-index: 2;
	bottom: 0;
	right: 0;
	left: 0;
	margin: 1em auto;
	opacity: .6;
}
.scroll-down img {
	display: block;
	width: 100%;
	height: auto;
}
.scroll-down:hover {
	opacity: 1;
	animation: bounce 5s infinite;
}
.modal {
	position: fixed;
	inset: 1em;
	border-radius: 5px;
	background-color: #fff;
	z-index: -1;
	opacity: 0;
	padding: 1em;
	transform: scale(.95);
	transition: all ease-in-out .3s;
	margin-inline: auto;
	max-width: 960px;
}
.modal.show {
	opacity: 1;
	transform: scale(1);
	z-index: 99;
}
.modal-header {
	display: grid;
	grid-template-columns: auto 50px;
	align-items: center;
}
.modal-header h2 {
	margin-bottom: 0;
}
.modal-body {
	overflow: auto;
	max-height: calc( 100vh - 150px);
}
.no-scroll {
	overflow: hidden;
}
.modal-overlay {
	position: fixed;
	inset: 0;
	background-color: #0006;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	z-index: -2;
	opacity: 0;
	transition: all ease-in-out .3s;
}
.modal-overlay.show {
	z-index: 98;
	opacity: 1;
}
@keyframes bounce {
	0% {
	  transform: translateY(0px);
	}
	2% {
	  transform: translateY(-2px);
	}
	5% {
	  transform: translateY(5px);
	}
	10% {
	  transform: translateY(0px);
	}
	100% {
	  transform: translateY(0px);
	}
}
.nairobi-to-africa {
	background: url("../img/world-map.svg") no-repeat fixed;
	background-position: -50% 50%;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
section {
	overflow: hidden;
}
article {
	padding-block: 2em;
}
article .maxwidth {
	max-width: 90ch;
}
article p:first-of-type {
	font-size: 1.3em;
	font-weight: 300;
}
.intro,
.positioning,
.speakers,
.industries,
.collaborators
.faq {
	display: flex;
}
.about {
	min-height: 50vh;
	background: #fff url("../img/world-map.svg") fixed no-repeat;
}
.about-text {
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	padding-block: 50px;
}
.intro-text {
	text-align: center;
}
.showmore {
	display: inline-block;
	font-size: 12px;
	color: var(--secondary-color);
}
.showmore::after {
	content: "";
	display: inline-block;
	border: 3px solid transparent;
	border-top-color: currentColor;
	margin-left: 5px;
}
.showmore.active::after {
	border-top-color: transparent;
	border-bottom-color: currentColor;
}
.speakers {
	padding-block: 100px;
	background-color: #ffffff66;
}
.speakers-tiles {
	position: relative;
	margin: auto;
	text-align: center;
	z-index: 1;
}
.speakers-tiles .slides img {
	height: 300px;
	width: 100%;
	display: block;
	background-color: #f6f6f6;
	object-fit: cover;
}
.speakers-tiles .slide {
	background-color: #fff;
	border: 1px solid #eee;
	box-shadow: 0px 6px 0 -2px #0001;
	margin-bottom: 1em;
}
.speakers-tiles .speaker-info {
	min-height: 50px;
	padding: .5em;
}
.collaborators {
	background: #fff url("../img/ATLFHero.svg") no-repeat bottom right fixed;
	z-index: 1;
	position: relative;
	flex-direction: column;
	padding-top: 2em;
	padding-bottom: 2em;
}
.objectives {
	text-align: center;
	background-color: #f9f9f9;
	padding-block: 2em;
}
.objectives-tiles {
	position: relative;
	padding-block: 2em;
	font-size: 14px;
}
.objectives-tiles .slides {
	list-style: none;
	text-align: left;
}
.objectives-tiles .slides li {
	display: inline-block;
	width: 400px;
	vertical-align: top;
	padding: .5em;
}
.objectives-tiles img {
	height: 50px;
	width: auto;
}
.contact h2 {
	text-align: center;
	margin-bottom: 2em;
}
.partners {
	margin-top: 2em;
	margin-bottom: 2em;
	text-align: center;
	padding-left: 2em;
	padding-right: 2em;
}
.scroller {
    max-width:960px
}

.scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap:4rem
}
.scroller__inner img {
    width: auto;
    height: 50px;
    -o-object-fit: contain;
    object-fit: contain;
}
.scroller[data-animated=true] {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, #fff 5%, #fff 95%, transparent);
    mask:linear-gradient(90deg, transparent, #fff 5%, #fff 95%, transparent)
}
.scroller[data-animated=true] .scroller__inner {
    width: -moz-max-content;
    width: max-content;
    flex-wrap: nowrap;
    animation:scroll var(--_animation-duration, 90s) var(--_animation-direction, forwards) linear infinite
}
.scroller[data-direction=right] {
    --_animation-direction:reverse
}
.scroller[data-direction=left] {
    --_animation-direction:forwards
}
.scroller[data-speed=fast] {
    --_animation-duration:60s
}
.scroller[data-speed=slow] {
    --_animation-duration:90s
}
@keyframes scroll {
    to {
        transform: translate(calc(-50% - 2rem));
    }
}
.faq-rows {
	padding: 2em;
	margin-top: auto;
	margin-bottom: auto;
}
.register {
	color: #fff;
	text-align: center;
	padding: 3em 1em;
	background: #999 url("../img/ATLFHero.svg") no-repeat center;
	background-size: cover;
	background-blend-mode: multiply;
}
.register h2 {
	color: inherit;
}
.register .cta-button {
	background-color: var(--secondary-color);
}
.register .cta-button:hover {
	background-color: var(--primary-color);
}
.stats-box {
	padding: 1em;
	font-size: 1.2em;
	background-color: var(--accent-color);
	line-height: 1;
	color: white;
	text-align: center;
}
.stats-box .maxwidth {
	display: flex;
	gap: 2em 1em;
	justify-content: space-evenly;
}
.stats-box .maxwidth > div {
	flex-basis: 100%;
}
.stats-box .number {
	font-size: 2em;
	font-weight: lighter;
	display: block;
}
.stats-box .narration {
	font-size: .85em;
	font-weight: 500;
	display: block;
}
.kicc-section {
	position: relative;
	z-index: 1;
	background:  #fff url('../img/kicc.jpg') no-repeat center bottom fixed;
	background-size: 300vw;
}
.kicc-section section {
	min-height: 80vh;
}
.flex-control-nav {
	list-style: none;
	text-align: left;
	margin-top: 1em;
	margin-bottom: 1em;
}
.flex-control-nav li {
	display: inline-block;
}
.flex-control-nav li a {
	display: block;
	text-align: left;
	text-indent: -1000px;
	overflow: hidden;
	width: 25px;
	height: 5px;
	background-color: var(--primary-color);
	opacity: .1;
	margin: 3px 0;
}
.flex-control-nav li a.flex-active {
	opacity: 1;
}
.flex-direction-nav {
	list-style: none;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
}
.flex-direction-nav li {
	display: inline-block;
	margin: .5em;
	font-size: .7em;
	text-transform: uppercase;
}
.flex-direction-nav li a {
	color: var(--secondary-color);
	display: inline-block;
	text-align: left;
}
.flex-direction-nav li a.flex-disabled {
    opacity: .2;
}
/* faq */
.accordion {
    margin-bottom: 3em;
    margin-right: auto;
    margin-left: auto;
	border-bottom: 1px solid #eee;
}
.accordion .accordion-title {
	position: relative;
	padding: .5rem;
	line-height: 1.2;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--primary-color);
	margin-bottom: .5em;
	background-color: #fbfbfb;
}
@media screen and (min-width: 760px) {
	.accordion .accordion-title {
		display: grid;
		grid-template-columns: 150px auto;
		align-items: center;
	}
} 
.accordion .accordion-title .time {
	font-weight: 500;
	font-size: 14px;
	color: var(--secondary-color-dark);
	display: inline-block;
	background-color: #f6f6f6;
	padding: 5px 10px;
	border-radius: 3px;
	margin-block: .5em;
}

.accordion .accordion-title.linked {
	color: inherit;
	padding-right: 4rem;
	cursor: pointer;
	transition: background-color .3s ease-in-out;
}
.accordion .accordion-title.linked::after {
	content: '+';
	position: absolute;
	right: 1rem;
	font-size: 1.6rem;
	padding: 5px;
	width: 20px;
	height: 20px;
	line-height: 20px;
	font-weight: 300;
	text-align: center;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: transform .3s ease-in-out;
}
.accordion .accordion-title.linked:hover {
	background-color: #eee;
}
.accordion .accordion-title.linked:hover::after {
	color: var(--primary-color);
}
.accordion .accordion-title.linked.active {
	color: var(--primary-color);
	border-bottom: none;
	background-color: #eee;
}
.accordion .accordion-title.linked.active::after {
	transform: rotate(135deg);
}
.accordion .accordion-content,
.accordion .accordion-content-open {
	overflow: hidden;
	background-color: #fff;
	margin-left: 2em;
	padding-left: 1em;
	border-left: 1px solid #ddd;
	margin-bottom: .3em;
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
}
.accordion .accordion-content {
	display: none;
}
.accordion .accordion-content,
.accordion .accordion-content p,
.accordion .accordion-content ul,
.accordion .accordion-content ol {
	font-size: 1rem;
}.content-left, .content-right {
  flex: 1 1 45%;
}

.content-right ul {
  padding-left: 1.2rem;
  margin: 0;
}

.content-right h5 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #333;
}
/* faq */
.contact {
	background: #fcfcfc url("../img/ATLFHero.svg") no-repeat bottom right fixed;
	padding: 2em 1em;
	text-align: center;
}
.contact-form {
	text-align: left;
	margin: 1em;
}
.form-row {
	padding-block: .8em;
}
.form-row label {
	font-size: .6em;
	text-transform: uppercase;
	display: block;
}
.form-row input,
.form-row textarea {
	display: block;
}
.form-row label.error {
	text-transform: unset;
	color: var(--primary-color);
}
.form-row input.error,
.form-row select.error,
.form-row textarea.error {
	outline: 1px solid var(--primary-color);
}
.page-header {
	background: var(--accent-color) center 70% no-repeat;
	background-size: 80%;
	padding: 2em;
	background-blend-mode: multiply;
	color: #fff;
	text-align: center;
}
.page-header .breadcrumbs {
	font-size: 10px;
	text-transform: uppercase;
}
.page-header a {
	color: #fff;
	padding-inline: 5px;
}
.page-header h1 {
	font-size: 2em;
	font-weight: 300;
}
footer {
	position: relative;
	text-align: center;
	background-color: #fff;
	border-top: 1px solid #999;
}
footer .maxwidth {
	padding: 2em 1em;
}
footer .maxwidth > div {
	padding: 2em 1em;
}
footer .logos img {
	height: auto;
	max-width: 150px;
	object-fit: contain;
	vertical-align: top;
	margin-right: .5em;
}
footer .button {
	border: 1px solid #eee !important;
}
.copyright {
	background-color: #f6f6f6;
	text-align: center;
}
.select-input {
	display: flex;
}
.select-input > * {
	flex-basis: 100%;
}
.programme {
	padding-block: 0em;
}
/* tabs */
.tabs-header {
	border-bottom: 2px solid var(--dark-color);
	padding-inline: 1em;
	display: flex;
	gap: 5px;
	align-items: end;
	min-height: 3em;
	justify-content: center;
}
.tabs-header button,
.tabs-header a {
  background-color: #999;
  border: none;
  padding: 10px 20px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  line-height: 1;
  transition: all .1s ease-in-out;
  cursor: pointer;
  margin-bottom: 4px;
}
.tabs-header button:hover,
.tabs-header a:hover {
  background-color: #666;
}
.how-to-register {
	text-align: center;
	padding-block: 2em;
}
.steps {
	counter-reset: steps;
	text-align: center;
	font-size: 14px;
	margin-block: 2em;
}
.steps > ul {
	list-style: none;
}
.step {
	padding-bottom: 1em;
	display: inline-block;
	width: 250px;
	vertical-align: top;
	margin-inline: 1em;
}
.step::before {
	counter-increment: steps;
	content: counter(steps);
	margin-inline: auto;
	width: 2rem;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	margin-bottom: 1em;
	justify-content: center;
	left: 0;
	text-align: center;
	line-height: 1.5rem;
	border-radius: .3em;
	background-color: #f9f9f9;
	border: 1px solid #ccc;
	color: var(--secondary-color);
}


@media screen and (max-width: 560px) {
	.tabs-header button span,
	.tabs-header a span {
		display: none;
	}
}
.tabs-header button.active,
.tabs-header a.active {
  background-color: var(--dark-color);
  border: none;
  padding-block: 14px;
  margin-bottom: 0;
}
.tabs-body {
  padding-top: .5em;
}
.tabs-body > * {
  display: none;
}
.tabs-body > .show {
  display: block;
}
.tabs-item > h2 {
	margin-left: 1em;
	margin-block: .5em;
}
.data-protection {
	font-size: .8em;
}
.card {
	background-color: #fff;
	border-radius: 1em;
	margin: 1em 1em 2em;
	padding: 2em 1em;
	box-shadow: rgba(0,0,0,0.1) 0px 15px 20px -5px, 
	rgba(0,0,0,0.1) 0px 8px 10px -6px;
}
@media only screen and (min-width: 480px) {
	.form-row-columns {
		display: flex;
		gap: .5em;
	}
	.form-row-columns > div {
		flex-basis: 100%;
	}
}
@media only screen and (min-width: 960px) {
	:root {
		--min-height: 50vh;
	}
	header {
		position: sticky;
		top: 0;
		z-index: 99;
		background-color: #fffe;
		-webkit-backdrop-filter: blur(5px);
		backdrop-filter: blur(5px);
	}
	header .maxwidth {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	header .logo {
		margin: .5em;
	}
	.hero .hero-text {
		flex-direction: row;
		text-align: left;
		max-width: 1200px;
		margin-inline: auto;
	}
	.hero .hero-text img {
		width: 500px;
	}
	.hero .hero-text > * {
		padding: 1rem;
		font-size: 1.1em;
	}
	.hosts-logos {
		justify-content: start;
	}
	.stats-box .maxwidth {
		grid-template-columns: repeat(3, 1fr);
	}
	.attendees > div {
		max-width: 60ch;
		margin-inline: auto;
	}
	.map {
		left: 10vw;
	}
	.map svg {
		width: 100vw;
	}
	.map-view .map {
		transform: translateX(-35%) scale(1.5);
	}
	/* .speakers-tiles .slides {
		display: flex;
	}
	.speakers-tiles .slides li {
		margin-right: 1em;
		width: 100%;
	} */
	.kicc-section {
		background-size: 100vw;
	}
	footer {
		text-align: left;
		font-size: 14px;
	}
	footer .footer-info {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}
	.contact-columns {
		display: flex;
		gap: 1em;
	}
	.contact-columns > div {
		flex-basis: 100%;
	}
	.programme-columns {
		display: grid;
		grid-template-columns: auto 300px;
		align-items: stretch;
		gap: 1em;
	}
	.programme-columns > div:nth-child(2) {
		padding-left: 1em;
		border-left: 1px solid #eee;
	}
}
@media only screen and (max-width: 64rem) {

}
