@import url("bootstrap.4.1.1.min.css");
@import url("fontawesome.5.0.12.all.min.css");
@import url("animate.min.css");
/*-----------------------------------------------------------------------------------------------------------------------------------------------*/
/* General */
/*-----------------------------------------------------------------------------------------------------------------------------------------------*/

* {
    outline: 0;
}

html {
	width: 100%;	
	height: 100%;
}

body {
  width: 100%;
  height: 100%;
  background: #1c1c1c;
  font-family: Lato, Arial;
  font-size: 15px;
  color: #707070;
  line-height: 1.5;
}

main {
	padding: 70px 0px 0px 0px;
}

a, a:focus, a:visited {
	color: #8aa0fe;
	transition: 0.5s;
}

a:hover, a:active {
  color: #000;
  outline: none;
  text-decoration: none;
}

hr {
    width: 100px;
    border-width: 2px;
	margin-top: 25px;
	margin-bottom: 25px;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------*/
/* Typography */
/*-----------------------------------------------------------------------------------------------------------------------------------------------*/

h1, h2, h3 {
}

h2 {
	font-size: 2.2rem;
}

h2, h3 {
	color: #000;
}

p {
	margin: 5px 0 5px 0;
	padding: 10px 0 10px 0;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------*/
/* Lists */
/*-----------------------------------------------------------------------------------------------------------------------------------------------*/

ul {
	margin: 15px 30px 15px 30px;
	list-style: square; 
	text-align: justify;
}

ol, ul {
	margin-top: 0;
	margin-bottom: 10px;
}


/*-----------------------------------------------------------------------------------------------------------------------------------------------*/
/* Header */
/*-----------------------------------------------------------------------------------------------------------------------------------------------*/

header {    
	width: 100%;
    padding: 100px 0px 100px 0px;
	background: url(../../img/core/header.jpg) center center no-repeat; 
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
	text-align: center;
}

header h1,  header h2 {     
	text-transform: uppercase;
	font-weight: normal;
	color: #fff;
}

@media (min-width: 768px) {  header { text-align: left; } }

/*-----------------------------------------------------------------------------------------------------------------------------------------------*/
/* Tables */
/*-----------------------------------------------------------------------------------------------------------------------------------------------*/
.table {margin-top:20px;margin-bottom:20px;}

.table>tbody>tr>td {
	vertical-align: middle;

}

.table>tbody>tr>td>strong {
	color: #555555;

}

.table>tbody>tr>td:first-child {
	 text-align: left; 
}


.files-table>tbody>tr>td:last-child {
    text-align: right;
}

.table>tbody>tr>td:last-child {
	/* text-align:right; */
}

.table>thead>tr>th {
	font-weight:bold;
	color:#fff;
	background:#ff8936;
	border: 1px solid #df782f;

	
}


.table .time { width:150px; }
.table .speaker { width:300px; }
.table .orange td {	font-weight:bold; color:#fff; background:#ff8936 }
.table .orange td:last-child {	text-align:right; }

/*-----------------------------------------------------------------------------------------------------------------------------------------------*/
/* Sections */
/*-----------------------------------------------------------------------------------------------------------------------------------------------*/

section { padding: 50px 0;}

section .container + .container { margin-top: 25px; }

section.primary {background: #fff;}
section.primary h2 {color:#000;}
section.primary hr {border-color:#009c9e;}

section.secondary {background: #ececec; border-top:1px solid; border-bottom:1px solid; border-color:#e5e5e5}
section.secondary h2 {color:#000;}
section.secondary hr {border-color:#009c9e;}

section.white {background: #fff;}
section.white h2 {color:#7098a4;}
section.white hr {border-color:#009c9e;}

section.blue {background: linear-gradient(0deg, #5b6db0, #849eff); color:#fff;}
section.blue h2 {color:#fff;}
section.blue h3 {color:#fff;}
section.blue hr {border-color:#fff;}
section.blue .text-primary-r {color:#fff;}
section.blue .service-box .ico { color:#fff; }
section.blue .service-box .title { color:#fff; }

section.dark {background: #252525; color: #555555;}
section.dark h2 {color: #555555;}
section.dark h3 {color: #555555;}
section.dark hr {border-color: #555555;}
section.dark .text-primary-r {color: #555555;}
section.dark .ico {color: #555555;}


/*-----------------------------------------------------------------------------------------------------------------------------------------------*/
/* Buttons */
/*-----------------------------------------------------------------------------------------------------------------------------------------------*/

.img-responsive {
	width: 100%;
	height: auto;
}


.btn-xl {
    padding: 15px 30px;
}

.btn-secondary, .btn-secondary:visited {
  background: transparent;
  font-weight: 400;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  color: #3a9c9e;
  background: #fff;
}

.btn-primary {
  background: #3a9c9e;
  display: inline-block;
  padding: 8px 28px;
  transition: 0.5s;
  color: #fff;
  border: 0;
}

.btn-primary:hover {
  color: #fff;
  background: #307d7d;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------*/
/* Intro */
/*-----------------------------------------------------------------------------------------------------------------------------------------------*/

#intro {
	position: relative;
	margin-top: -70px;
	padding: 0;
	width: 100%;
	height: 100vh; 
	background: url(../../img/core/intro.jpg) bottom center no-repeat; 
	background-size: cover; 
	-webkit-background-size: cover; 
	-moz-background-size: cover; 
	-o-background-size: cover;
}

@media (min-width: 1024px) {
  #intro {
	background-attachment: fixed;
  }
}
#intro .logo {
	width: 80%;
}

#intro .intro-text {
	position: absolute;
	left: 0;
	top: calc(50% - 60px);
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-direction: column;
}

#intro h1 { 
	font-size: 48px;
	color: #fff;
}

#intro h4 { 
	color: #fff;
}

@media (max-width: 768px) {
  #intro h1 {
	font-size: 28px;
  }
}

#intro p {
	color: #fff;
	padding: 0 15px;
	font-size: 24px;
}

@media (max-width: 768px) {
  #intro p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}

#intro .btn-get-started {
	font-weight: 400;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 8px 28px;
	border-radius: 50px;
	transition: 0.5s;
	margin: 10px;
	border: 2px solid #fff;
	color: #fff;
}

#intro .btn-get-started:hover {
	color: #3a9c9e;
	background: #fff;
}

/* --------------------------------------------------------------------------------------------------------------------------- */
/* Member */
/* --------------------------------------------------------------------------------------------------------------------------- */

 .member {
	text-align: center;
	margin-bottom: 20px;
}

 .member .lastname {
	font-size: 18px;
	color: #555555;
}

 .member .title {
	font-size: 13px;
}

 .member .fun {
	font-size: 13px;
}

 .member .contact-data {
	font-size: 13px;
}

 .member .photo + .fun {
	margin-top: 10px;
}

 .member .photo + .lastname {
	margin-top: 10px;
}

 .member .photo + .title {
	margin-top: 10px;
}

 .member .photo {
	width: 100%;
}

 .member .photo img {
	width: 70%;
	height: auto;
}

 .member .photo img.full-width {
	width: 100%;
}

/* --------------------------------------------------------------------------------------------------------------------------- */
/* Service-box */
/* --------------------------------------------------------------------------------------------------------------------------- */

.service-box {
	text-align: center;
}

.service-box .ico {
	color: #577f8d;
}

.service-box .title {
	color: #000;
	font-size: 24px;
	margin-top: 10px;
    line-height: 1.2;	
}

.service-box .small-title {
	color: #000;
	font-size: 23px;
	line-height: 1.2;
	margin-top: 10px; 
}

.service-box .small {
	font-size: 18px;
	line-height: 1.2;
	margin-top: 10px; 
}

@media (max-width: 768px) {
	.service-box {margin-bottom: 15px;}
}

/* --------------------------------------------------------------------------------------------------------------------------- */
/* Footer */
/* --------------------------------------------------------------------------------------------------------------------------- */

footer { 
  margin: 0; 
  padding: 20px 0px 20px 0px; 
  font-size: 0.9em; 
  color: #555555; 
  text-align: center;
}


/* --------------------------------------------------------------------------------------------------------------------------- */
/* Navigation menu */
/* --------------------------------------------------------------------------------------------------------------------------- */

.navbar {
	background: #5b6db0;
	border-bottom: #555 1px solid;
	font-size: 16px;
	min-height: 70px;
	padding:0;
	}

.navbar-nav .nav-link {
	color: #d1dbff;
	transition: 0.5s;
	}
	
.navbar-nav .nav-link:hover {
	color: #fff; 
	}
	
.navbar-nav .nav-link.active {
	color: #fff; 
	background: #849eff;
	}
	
.navbar-nav .nav-link.active:hover {
	color: #fff; 
	background: #849eff;
	}

.navbar-brand {
	margin-left:15px;
	}

@media (min-width: 768px) {
	.navbar-nav>li>a {padding-top:15px;padding-bottom:15px;}
	.navbar-brand {margin-left:0px;}
}


	.navbar-expand-lg .navbar-nav .nav-link {
		padding-right: 1rem;
		padding-left: 1rem;
	}

.navbar-brand {
	width: 220px;
	}

.navbar-brand img {
	width:100%;
	height:auto;
	}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#fff' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
  outline:0;
  }


/* --------------------------------------------------------------------------------------------------------------------------- */
/* Accordion */
/* --------------------------------------------------------------------------------------------------------------------------- */

.accordion{width:100%; margin: 25px auto;}
.accordion h4 {font-size:15px; line-height:1.2;}
.accordion-toggle { border-bottom: 1px solid #dadada; cursor: pointer;margin: 0;padding: 15px; position: relative; }
.accordion-toggle.active:after{content:"";position:absolute;right:0;top:25px;width:0;height:0; border-left:5px solid rgba(0,0,0,0);border-right:5px solid rgba(0,0,0,0);}
.accordion-toggle:before{content:"";position:absolute;right:0;top:25px;width:0;height:0;border-top:5px solid #000;border-left:5px solid rgba(0,0,0,0);border-right:5px solid rgba(0,0,0,0);}
.accordion-toggle.active:before{display:none;}
.accordion-content {display: none; padding: 25px; text-align:left; border-bottom:1px solid #ff8936;} 
.accordion-toggle.active { color: #ff8936; }

@media(max-width:768px) { .accordion-content .row div + div {margin-top:15px;} }

/* --------------------------------------------------------------------------------------------------------------------------- */
/* Picture Wall */
/* --------------------------------------------------------------------------------------------------------------------------- */

.picture-wall {
    margin: 20px 0px 20px 0px;
}

.picture-wall div {
    padding: 0;
}

.mylist li + li{
	margin-top:15px;
}

.gallery {
	text-align:center;
}

.gallery .thumb {
    height:160px;
	width:auto;
    margin-right: 20px;
    margin-bottom: 20px;
    border: 1px solid #fff;
}

.invitedspeaker + .invitedspeaker {margin-top:20px;}
.invitedspeaker > .speakername {font-weight:bold; font-size:17px;}
.invitedspeaker > .title {font-style:italic;}

.proceedings-img {width:200px; height:auto}

.alert-warning {background:#5f6faf; color:#fff;}