@import url('https://fonts.googleapis.com/css?family=Comfortaa:300,400,600,700|Lexend+Exa|Quattrocento+Sans:400,400i,700,700i&display=swap');
@import url('https://fonts.googleapis.com/css?family=Kranky&display=swap');

/* MAIN CSS */
::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #777777;
  font-weight: 300;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #777777;
  opacity: 1;
  font-weight: 300;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #777777;
  opacity: 1;
  font-weight: 300;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #777777;
  font-weight: 300;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #777777;
  font-weight: 300;
}

body {
  color: #777777;
  font-family: 'Comfortaa', cursive;
  font-family: 'Lexend Exa', sans-serif;
  font-family: 'Quattrocento Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65em;
  position: relative;
  overflow-x: hidden;
  margin: 0;
  padding: 2% 8%;
}

ol, ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

select {
  display: block;
}

figure {
  margin: 0;
}

*{
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

a {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

iframe {
  border: 0;
}

a, a:focus, a:hover {
  text-decoration: none;
  outline: 0;
  color: #777777;
}

h1, h2, h3,
h4, h5, h6 {
  
  color: #585960;
  line-height: 1.5em;
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 500;
}

.h1, .h2, .h3,
.h4, .h5, .h6 {
  margin-bottom: 0;
  margin-top: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #222222;
}

h1, .h1 {
  font-size: 36px;
}

h2, .h2 {
  font-size: 30px;
}

h3, .h3 {
  font-size: 24px;
}

h4, .h4 {
  font-size: 18px;
}

h5, .h5 {
  font-size: 16px;
}

h6, .h6 {
  font-size: 14px;
  color: #222222;
}

td, th {
  border-radius: 0px;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.text-color{
	color: #ffb485;
}

.text-colorfull{
	color: #f37322;
}

.text-color-dark{
	color: #9C27B0;
}

.text-light{
	color: #949090;
}
.text-dark{
	color: #403f3e;
}
.text-black{
	color: #130e0e;
}

.big-text-decorated{
	font-family: 'Kranky', cursive;
	font-size: 1.4em;
	font-weight: bold;
}

.color-full{
	background-color: #f37322;
}

.middle-dark{
	background-color: #ffb485;
}

.colorfull-dark{
	background-color: #729bd3;
}

.middle-light{
	background-color: #b3b9d6;
}

.text-italic {
  font-style: italic;
}

.text-white {
  color: #fff;
}

.text-black {
  color: #222;
}

.section-full {
  padding: 100px 0;
}

.section-half {
  padding: 75px 0;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.inline-flex {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.flex-grow {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}

.flex-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

.flex-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}

.flex-top {
  -webkit-align-self: flex-start;
  -moz-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}

.flex-bottom {
  -webkit-align-self: flex-end;
  -moz-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.space-around {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
}

.flex-column {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-cell {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.display-table {
  display: table;
}

.display-grid {
  display: grid;
}

.grid-2-column-auto {
	grid-template-columns: auto auto;
}

.grid-2-column-egal {
	grid-template-columns: 1fr 1fr;
}

.grid-3-column-auto {
	grid-template-columns: auto auto auto;
}

.grid-3-column-egal {
	grid-template-columns: 1fr 1fr 1fr;
}

.grid-4-column-auto {
	grid-template-columns: auto auto auto auto;
}

.grid-4-column-egal {
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

.sample-text-area {
  background: #fff;
  padding: 100px 0 70px 0;
}

.text-heading {
  margin-bottom: 30px;
  font-size: 24px;
}

b, i, sup, sub, u, del {
  color: #77d5f7;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5em;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.container.fullwidth {
  width: 100%;
}

.container.no-padding {
  padding-left: 0;
  padding-right: 0;
}

.no-padding {
  padding: 0;
}

.section-bg {
  background: #f9fafc;
}

.text-center {
	text-align: center;
}

.border-bottom{
	border-bottom: 1px solid #dcded3;
}

.btn {
    line-height: 40px;
    padding: 0 30px;
    border-radius: 20px;
    background: transparent;
    border: 1px solid #eee;
    display: inline-block;
    font-weight: 500;
    position: relative;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
    cursor: pointer;
	outline: none;
}

.btn:hover {
	background-image: -moz-linear-gradient(0deg, #3ccab0 0%, #77d5f7 100%);
	background-image: -webkit-linear-gradient(0deg, #3ccab0 0%, #77d5f7 100%);
	background-image: -ms-linear-gradient(0deg, #3ccab0 0%, #77d5f7 100%);
}

.btn span {
    color: inherit;
}
.btn span {
    position: relative;
    z-index: 2;
}

.btn:hover span {
    color: #fff;
}

.main-menubar{
	position: relative;
	
}

nav {
    margin-right: 50px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    transform-origin: 100% 50%;
}

.hide{
	/*position: absolute;
	top: 20%;
	right: 50px;
	width: 0px;
	height: 0px;
	overflow: hidden;
	overflow: 0;*/
	transform: scale(0);
}

.show{
	width: auto;
	height: 100%;
	opacity: 1;
}

.header-wrapper {
    overflow: hidden;
}

.main-menubar > nav > a{
	margin: auto 10px;
	position: relative;
	width: max-content;
}

.main-menubar > nav > a:hover {
	color: #080804;
	font-weight: 600;
}

.menu-btn{
	display: block;
	z-index: 9;
	width: 50px;
	height: 20px;
	cursor: pointer;
	padding: 10px;
	margin: 0.2em;
	margin-left: 0;
	margin-right: 0;
	font-weight: bold;
	margin-right: 5%;
	
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

	.menu-btn span{
		display: block;
		width: 100%;
		height: 2px;
		margin: 4px;
		background: #a6a999;
		box-shadow: 0px 0px 1px rgba(0,0,0,0.4);
	}
	
	.menu-btn-actif{
		z-index: 99;
	}
	.menu-btn-actif span{
		background: #222222;
	}
	
	.menu-btn span:nth-child(3){
		width: 60%;
	}
	
	.upper_button{
		z-index: 9999;
		position: fixed;
		top: 90%;
		right: 20px;
		width: auto;
		padding: 5px;
		height: auto;
		opacity: 0.9;
		cursor: pointer;
		background: #1b1b19;
		border-radius: 5px;
		user-select: none;
		text-align: center;
		color: #fff;
		
		-webkit-transition: all 0.4s ease-in-out;
		-moz-transition: all 0.4s ease-in-out;
		-o-transition: all 0.4s ease-in-out;
		transition: all 0.4s ease-in-out;
	}
	.upper_button img{
		width: 100%;
	}
	.upper_button:hover{
		opacity: 1;
		border-radius: 5px;
		box-shadow: 1px 1px 10px rgba(14,17,0,0.5);
	}
	
	.transition {
	  -webkit-transition: all 0.4s ease-in-out;
	  -moz-transition: all 0.4s ease-in-out;
	  -o-transition: all 0.4s ease-in-out;
	  transition: all 0.4s ease-in-out;
	}


.footer-social a {
  width: 20px;
  line-height: 20px;
  display: inline-block;
  text-align: center;
  margin-right: 5px;
  color: #777;
  /*background: #1e1e1e;*/
}

.footer-social a img {
  color: #777777;
  width: 100%;
  height: auto;
}

.footer-social a:last-child {
  margin-right: 0;
}

.footer-social a:hover {
  color: #fff;
  font-weight: 600;
}

.footer-social a:hover img {
  color: #fff;
}

footer a:hover{
	color: #fff;
	/*font-weight: 600;*/
}

.light {
  color: #fff;
}

.middle{
	color: #777777;
}

.dark {
  color: #222222;
}

p{
	margin: 0;
    /* margin-top: 1em; */
    padding: 1em;
}

body {
	background: url(../bg/startup.jpg);
    background-attachment: fixed;
    background-origin: content-box;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-wrapper, .main-wrapper-first{
	background: #fff;
	padding: 8px;
	overflow-x: hidden;
}

.main-wrapper:nth-child(odd){
	background: #080804;
	color: #fff;
}

.section-wrapper {
    margin: 40px 10%;
}

.banner-wrapper{
	padding: 0;
	height: 60vh;
	overflow: hidden;
}

.contenu{
	padding: 0 10px;
	background: rgba(0,0,0,0.1);
}

.logo {
	width: 50px;
	height: auto;
}

.logo img{
	width: 100%;
}


.left img, .right img{
	max-width: 400px;
}

/*
input[type="text"],input[type="password"],input[type="email"],input[type="tel"],input[type="number"],input[type="date"], input[type="text"], textarea, select{
	border: none;
    padding: 20px;
    background: #f4f9fb;
    border-radius: 25px;
    width: 70%;
    padding-left: 40px;
    outline: none;
}
*/

input[type="text"],input[type="password"],input[type="email"],input[type="number"],input[type="file"],input[type="tel"],textarea,input[type="date"], select{
	display: block;
	width: 70%;
	margin: 15px 4%;
	padding: 6px;
	border: none;
	border-bottom: 1px solid #56e4bc;
	background: transparent;
	outline: none;
}
textarea{
	resize: unset;
	height: 70px;
}


.subcribe-form{
	
	position: relative;
	
}

.subcribe-form input[type="email"] {
	border: none;
    padding: 20px;
    background: #f4f9fb;
    border-radius: 25px;
    width: 70%;
    padding-left: 40px;
    outline: none;
}

.subcribe-form .btn{
	position: absolute;
	right: 150px;
    top: 5px;
}

	.grid-wrapper {
		display: grid;
		grid-template-columns: minmax(50px,80px) minmax(200px,20%) 1fr;
		margin: 20px auto;
		align-items: stretch;
	}
	
	.grid-wrapper > img{
		width: auto;
		min-height: unset;
		height: auto;
		max-height: 150px;
		max-width: 100%;
	}
		
		.grid-wrapper .content{
			position: relative;
			cursor: pointer;
			box-shadow: 0px 0px 4px rgba(0,0,0,0.3);
			overflow: hidden;
		}
		.grid-wrapper .content:nth-child(1){
			grid-column: 1/3;
			margin-bottom: 30px;
		}
		.grid-wrapper .content:not(:nth-child(1)){
			margin: 10px;
			height: 15vh;
			display: grid;
			grid-template-columns: auto auto;
			overflow: hidden;
		}
		
		.grid-wrapper .content:not(:nth-child(1)):hover{
			transform: scale(1.1) scaleY(1.2);
			box-shadow: 0px 0px 8px rgba(0,0,0,0.25);
		}
		
		.grid-wrapper:not(:last-child){
			border-bottom: 1px dashed #777777;
		}

	.events{
		padding: 10px;
		overflow: hidden;
		
		padding: 0 10%;
	}
	.events p,.main-footer p, .main-footer h2, .main-footer h3{
		margin: 0;
	}
	
	.events .contenu{
		display: block;
		height: auto;
		overflow: unset;
		padding: 10px;
	}
		.event-day {
			display: grid;
			grid-template-columns: auto auto;
			align-items: center;
		}
		
		.event-day span{
			color: #a6a999;
			font-size: 2.5em;
			font-weight: bold;
			font-family: fantasy;
		}
		.event-day span:nth-child(2){
			font-size: 1.5em;
			letter-spacing: 3px;
			color: #7f8273;
		}
		
		.event-day span:nth-child(3){
			grid-column: 1/3;
			font-size: 3em;
			text-align: center;
			align-self: baseline;
		}
		
		.submenu{
			z-index: 9;
			position: fixed;
			background: #fff;
			width: auto;
			padding: 10px;
			right: 20px; 
		}
		
		.submenu > li{
			padding: 5px;
			padding-left: 10px;
		}
		.submenu > li:hover{
			color: #777;
		}
		
		.submenu > li:not(:last-child){
			border-bottom: 1px dashed silver;
		}
		
@media (min-width: 1200px) {
	
}

@media (max-width: 1199px) {
	
}

@media (max-width: 800px) {
	body{
		padding: 2px;
	}
	
	.display-grid{
		display: block;
	}
	
	nav.flex{
		display: block;
	}
	
	nav {
		margin-right: 10px;
		position: fixed;
		right: 0;
		top: 13%;
		text-align: right;
		padding: 20px 0;
		z-index: 5;
		background: #fff;
		border: 1px solid #dcded3;
	}
	
	.hide{
		/*position: fixed;
		top: 13%;
		width: 0%;
		right: 10px;
		*/
		transform: scale(0);
	}
	
	.show{
		width: 50%;
		height: 100%;
		opacity: 1;
	}
	
	.menu-btn{
		width: 30px;
	}
	
	.main-menubar > nav{
		background: #fff;
		padding: 5px;
	}
	
	.main-menubar > nav a {
		margin: auto 5px;
		display: block;
		padding: 5px;
	}
	
	.main-menubar > nav a:not(:last-child){
		border-bottom: 1px dotted silver;
	}
	
	.grid-wrapper {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	
	.grid-wrapper .contenu{
		grid-column: 1/3;
	}
	
	.subcribe-form .btn {
		position: relative;
		right: unset;
		
	}
	
	.left img, .right img {
		max-width: 100%;
	}
}