<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Custom styles */

/* Font families */

@font-face {
	font-family: "Proxima Nova";
	src: url('../css/fonts/Proxima-Nova-Regular.otf') format('opentype'),
	     url('../css/fonts/Proxima-Nova-Regular.ttf') format('truetype');
	font-style: normal;
    font-weight: 400;     
}

@font-face {
	font-family: "Proxima Nova Bold";
	src: url('../css/fonts/Proxima-Nova-Bold.otf') format('opentype');
	font-style: normal;
    font-weight: 700;
}

@font-face {
	font-family: "Proxima Nova Extra Bold";
	src: url('../css/fonts/Proxima-Nova-Extrabold.otf') format('opentype');
}

@font-face {
	font-family: "Proxima Nova Thin";
	src: url('../css/fonts/Proxima-Nova-Thin.otf') format('opentype');
}

/* Header */

header {
    background: #fff;
    padding: 1rem 2rem;
	width: 100%;    
}

header img {
    display: block;
    max-width: 100%;
    height: auto;
}

    @media screen and (max-width: 47.930em) { /* 766px */
	
	    header {
	        padding: 1rem;
	    }
	
	    header img {
	        margin: 0 auto;
	        max-width: 55%;
	    }
	
	}
	
/* Navigation */

nav { background-color: #2A615F; }
		
nav ul {
    display: block;
	list-style-type: none;
}

nav #menu {
    display: inline-block;
}

nav ul li {
    color: #fff;
	display: inline-block;
}

nav ul li a {
    color: #fff;
	display: inline-block;
	font-family: "Proxima Nova", "Open Sans", "Gill Sans MT", "Gill Sans", Corbel, Arial, sans-serif;
	font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.29px;
    line-height: 24px;
    padding: 1.5em;
	text-decoration: none;
}

nav ul li a:hover {
    background-color: #BDD551;
    color: #454545;
}

nav ul li a:active {
    background-color: #BDD551;
    text-decoration:underline;
}

/* Dropdowns */

nav .ui.dropdown .menu {
    background-color: #fff;
    border-radius: 0 0 10px 10px;
}

nav .ui.dropdown .menu &gt; .item {
    color: #454545;
    font-family: "Proxima Nova", "Open Sans", "Gill Sans MT", "Gill Sans", Corbel, Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.13px;
    line-height: 22px;
    text-align: center;
}

nav .ui.dropdown .menu &gt; .item:hover {
    color: #fff;
    background-color: #BDD551 !important;
}

nav .ui.dropdown .menu &gt; .item a {
    color: #454545;
    font-family: "Proxima Nova", "Open Sans", "Gill Sans MT", "Gill Sans", Corbel, Arial, sans-serif;
    padding: 1rem 0;
    text-decoration: none;
}

/* Hamburger menu */
    
.hamburger {
    position: relative;
    display: inline-block;
    width: 1.25em;
    height: 0.8em;
    margin-right: 0.3em;
    border-top: 0.2em solid #fff;
    border-bottom: 0.2em solid #fff;
}
    
.hamburger:before {
    content: "";
    position: absolute;
    top: 0.3em;
    left: 0px;
    width: 100%;
    border-top: 0.2em solid #fff;
}

	@media screen and (max-width: 70.625em) { /* 1130px */
			
		nav &gt; ul &gt; li &gt; a {
			padding-left: 0;
		}				
	}

    @media screen and (min-width: 59.125em) { /* 946px */
    
        nav &gt; ul {
            height: initial !important;
        }
    
        nav #menu {
            display: none;
        }
    }

	@media screen and (max-width: 59.063em) { /* 945px */
	
	    nav {
	        opacity: 1;
	    }
    
        nav #menu {
            display: block;
        }
        
        nav &gt; ul {
            text-align: left;
            display: block;
            overflow: hidden;
            height: 55px; /* 35px, so that the nav items have enough room */
            transition: height .5s ease;
        }
			
		nav &gt; ul &gt; li {
			display: block !important;
		}
			
		nav &gt; ul &gt; li &gt; a {
            display: block;
			padding: 0.75em 0;
		}
		
		nav .ui.dropdown .menu {
            border-radius: 0;
        }

        nav .ui.dropdown .menu &gt; .item {
            font-size: 18px;
            letter-spacing: 1.13px;
            line-height: 22px;
        }
    
        nav .ui.dropdown .menu &gt; .item a {
            padding: 0.5rem 0;
        }
		
	}
	
/* Home page: wrapper, nav, slider and content */	

.home-banner-wrapper {
    position: relative;
}

.home-banner-wrapper nav {
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.home-banner-wrapper .header-intro {
    /* min-height: 25vh;  */
    position: relative;
    z-index: 0;
    bottom: 5.75em; /* 7em */
}

.home-banner-wrapper .content-section {
    position: relative;
    top: -7em;
}

    @media (min-width:47.938em) and (max-width:59.063em) {
        /* 767px and 945px */
        
        .home-banner-wrapper .header-intro {
            bottom: initial;
        }
        
        .home-banner-wrapper .content-section {
            top: 0;
        }         
        
    }
    
    @media screen and (max-width: 47.930em) { /* 766px */
    
        .header-intro &gt; .column {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }
    
    }    

/* Home Slider */

.slider-container {
    margin-top:-20px;
}

.slick-arrow {
    cursor:pointer;
}

i.angle.right.icon{
    float: right;
}

.slick-slider, .slick-list, .slick-track {
  height: 100%;
}

.slick-slide {
    height: auto;
}

.slick-dots {
    position: relative;
    top: -5rem;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 10px;
    padding: 0;
    cursor: pointer;
    color: #fff;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover, .slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    font-size: 50px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: 'â€¢';
    text-align: center;
    opacity: .50;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #fff;
}

    @media screen and (max-width: 59.063em) { /* 945px */
    
        .slick-slider, .slick-list, .slick-track {
            height: initial;
        }
        
        .slick-dots {
            bottom: 25em;
        }
        
        .slick-dots li {
            width: 25px;
            height: 25px;
            margin: 0 20px;
        }
    
    }
    
    @media screen and (max-width: 47.930em) { /* 766px */
    
        .slider-container {
            margin-top: 15px; 
        }
    
    }

/* General banner pages: wrapping the navigation, header-intro and page content */	

.banner-wrapper {
    position: relative;
}

/* Banner: Navigation, background image and content section */

.banner-wrapper nav {
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.banner-wrapper .header-intro {
	background-size: 100%;
    background-repeat: no-repeat;
    min-height: 40rem; /* 65vh */
    position: relative;
    z-index: 0;
    bottom: 7em;
}
    
.banner-wrapper .content-section {
    position: relative;
    top: -7em;
}
    
    @media (min-width:47.938em) and (max-width:59.063em) {
        
    	/* 767px and 945px */
    	
    	.banner-wrapper .header-intro {
    		 bottom: 4.875em;
    	}
    	 .home-banner-wrapper .content-section {
    		 top: 0;
    	}
    }
    
    @media screen and (max-width: 47.930em) { /* 766px */
        
        .banner-wrapper .header-intro {
            bottom: 4.875em;
        }
        
        .banner-wrapper nav {
            /* bottom: 3em; */
            opacity: 1;
        }
        
    }    

    
/* Main content sections */

main {
	position: relative;
	background: #fff;
}

main a {
    text-decoration: underline;
}

main a:hover {
    text-decoration: none;
}

.content-section {
	background-color: #fff;
	color: #000;
	font-family: "Proxima Nova", "Open Sans", "Gill Sans MT", "Gill Sans", Corbel, Arial, sans-serif;
	font-size: 18px;
    letter-spacing: 0.26px;
    line-height: 30px !important;
	padding: 40px 50px 40px 50px;
}

.content-section .row {
    margin-bottom: 50px;
}

.content-section h1 {
    color: #454545;
    font-size: 35px;
    letter-spacing: 2.19px;
    line-height: 42px;
}

.content-section h2 {
	margin-top: 0;
}

.content-section img {
    display: block;
    max-width: 100%;
    height: auto;
}

    @media screen and (max-width: 767px) {
        
        .content-section .row {
            margin-bottom: 20px;
        }
    }

	
.faq-title {
    font-size: 1.71428571rem;
    line-height: 1.28571429em;
    margin: calc(2rem - 0.14285714em ) 0em 1rem;
    font-weight: bold;
    padding: 0em;    
}	

/* Tables */

.ui.table.schedule {
	background-color: #F7F7F7 !important;
	border: 0;
}

.schedule th {
	background-color: #BCCE63;
	color: #000;
	font-size: 1.5rem;
	padding: 1.5rem 1rem;
    text-align: center;
}
	
.schedule td {
    border-top: 0 !important;
	border-right: 3px solid rgba(171, 171, 171, 0.25);
	padding: 1rem;
}

/* Organizers and speakers */

.card .content .header {
    letter-spacing: 1.88px;
    text-align: center;
}

.card .content .description {
    font-family: "Proxima Nova";
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.13px;
    line-height: 22px;
    text-align: center;
}

.card .content .description a {
    color: #37BBB6;
}

.content .keynote {
    background-color: #37BBB6 !important;
}

.content .keynote &gt; .header {
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 1.56px;
    line-height: 30px;
    text-align: center;
}

/* Sponsors page */

.sponsor-card {
    border: 1px solid #DFDFDF;
    border-radius: 49px;    
}

.sponsor img {
    top: 2em;
}

.sponsor .sponsor-title {
    border-radius: 49px 49px 0 0;
    color: #FFFFFF;
    font-size: 35px;
    font-weight: bold;
    letter-spacing: 2.19px;
    line-height: 42px;
    text-align: center;
    padding: 40px 0;
    background-clip: padding-box;
}

.sponsor-title.one {
    background-color: #EB6F80;
}

.sponsor-title.two {
    background-color: #9751B4;
}

.sponsor-title.three {
    background-color: #2799AB;
}

.sponsor-title.four {
    background-color: #C3C062;
}

.sponsor-title.five {
    background-color: #298CDA;
}

.sponsor .description {
    padding: 30px 50px;
}

/* Speaker news */

.news .big-feature a, .news .card .content .description a {
    color: #000;
    font-weight: bold;
    font-size: 1.4em;
    text-decoration:none;
}

.news .big-feature a:hover, .news .card .content .description a:hover {
    text-decoration: underline;
}


/* Footer */
	
footer {
	background-color: #1F1E1C;
	padding: 2rem;
}

footer p {
	color: #fff;
	font-family: "Proxima Nova", "Open Sans", "Gill Sans MT", "Gill Sans", Corbel, Arial, sans-serif;
	font-size: 18px;
    letter-spacing: 0.26px;
    line-height: 30px !important;
    margin: 1em 0;
}

footer p img {
    margin-right: 3rem;
}

footer .right img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Print styles */

@media print {
    
    @page {
        margin: 1cm;
    }
    
    body {
        overflow: visible;
        width: 100%;
        margin: 0;
        padding: 0;
        color: #000;
        background: #fff;
    }   

    header, nav, footer { display: none; }
	
	.header-intro, .header-homepage {
		min-height: 5cm;
	}
    
    .content-section {
         word-wrap: break-word;
    }
    
    .content-section a[href^="http://"]:after, .content a[href^="https://"]:after {
        content: " (" attr(href) ")" !important;
        font-size: 90%;
        word-wrap: break-word;
    }
	
}

</pre></body></html>