
/* -------------- BASE ------------------- */

body {
	font-family: 'Montserrat', sans-serif;
	color: #737373;
}

h1 {
	font-family: 'Source Serif Pro', serif;
}

h1, h2, h3, h4 {
	-ms-hyphens: none;
    -webkit-hyphens: none;
    hyphens: none;
}
.word-no-break {
	-ms-hyphens: none;
    -webkit-hyphens: none;
    hyphens: none;
}
a {
	transition: color .6s;
}
a:link, a:visited {
	color:blue;
}
a:active, a:hover {
	color:red;
	text-decoration: none;
}

.unselectable { 
  -webkit-user-select: none; 
  -webkit-touch-callout: none; 
  -moz-user-select: none; 
  -ms-user-select: none; 
  user-select: none;    
  color: #cc0000;
} 

.big-wrap {
	max-width:1350px;
	margin-left: auto;
	margin-right: auto;
}
.wrap {
	max-width:1050px;
	margin-left: auto;
	margin-right: auto;
}
.relative {
	position: relative;
	overflow: auto;
}

/* -------------- ANIMATION ------------------- */

.come-in {
  transform: translateY(150px);
  animation: come-in 0.8s ease forwards;
}
.come-in:nth-child(odd) {
  animation-duration: 1.2s; /* So they look staggered */
}

@keyframes come-in {
  to { transform: translateY(0); }
}

/* -------------- BUTTON ------------------- */

a.button {
	background-color: #D40B29;
	border: 3px solid #D40B29;
	border-radius: 50px;
	color:white;
	padding:20px 50px;
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 22px;
	text-align: center;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	transition: all ease-out .3s;
	text-decoration: none;
}
a.button svg {
	fill:white;
	margin-right:30px;
}
a.button:link, a.button:visited {
	
}
a.button:active, a.button:hover {
	background-color: transparent;
	color: #D40B29;
}
a.button:active svg, a.button:hover svg {
	fill:#D40B29;
}

a.button.inverse {
	background-color: transparent;
	color: #D40B29;
}
a.button.inverse:active, a.button.inverse:hover {
	background-color: #D40B29;
	color: white;
}
@media only screen and (max-width: 500px) {
	a.button {
		padding:14px 20px;
	}
	a.button svg {
		margin-right:20px;
	}
}

/* -------------- LIGHTBOX ------------------- */

#lightbox {
	display: none;
	position: fixed;
	z-index: 10000;
	right: 0;
	left: 0;
	top:0;
	bottom:0;
	background-color: rgba(0,0,0,0.6);
	flex-direction: column;
	justify-content: center;
	align-items: center;

	padding:50px 100px;
}
#lightbox.opened {
	display: flex;
}
#lightbox .lightbox-inner {
	position: relative;
	background-color: white;
	width: 100%;
	flex-grow: 1;
	overflow-y: auto;

	padding:30px;
}
.lightbox-template {
	display: none;
}
.close-lightbox {
	position: absolute;
	top:20px;
	right: 20px;
}
.close-lightbox svg {
	stroke:#ACACAC;
	width: 50px;
	height: 50px;
	transition: stroke ease-out .3s;
}
.close-lightbox:hover svg {
	stroke:#DADADA;
}
@media only screen and (max-width: 650px) {
	#lightbox {
		padding:0px;
	}
}

/* -------------- LANG MENU ------------------- */
#lang-menu {
	position: absolute;
	right: 90px;
	top:0px;
	color: white;
	font-size: 20px;
	z-index:200;
}
.current-flag {
	position: relative;
	display: inline-block;
}
.current-flag:before {
	position: absolute;
	content: '▲';
	color: white;
	bottom:30px;
	left:0;
	width: 24px;
	height: 10px;
	text-align: center;
	font-size: 12px;
}
#lang-menu img {
	margin-right: 5px;
}
#lang-menu .lang-submenu {
	display: none;
	position: absolute;
	top:34px;
	right: -10px;
	background-color: white;
	padding:10px;
	font-size: 17px;
	width:45px;
}
#lang-menu .lang-submenu li {
	list-style: none;
	line-height: 35px;
}
#lang-menu:hover .lang-submenu {
	display: inline-block;
}
#lang-menu .lang-submenu a:link, #lang-menu .lang-submenu a:visited {
	color: #1C1F55;
	text-decoration: none;
}
#lang-menu .lang-submenu a:active, #lang-menu .lang-submenu a:hover {
	color: #D40B29;
	text-decoration: underline;
}
@media only screen and (max-width: 650px) {
	#lang-menu {
		top: 190px;
		right:0%;
		transform: translate(0%, -50%);
		width: 100%;
	}
	#lang-menu .current-flag:before {
		display: none;
	}
	#lang-menu .lang-submenu {
		top:20px;
	}
}
/* -------------- POPUP VIDEO ------------------- */
.video-responsive { 
overflow:hidden; 
/*padding-bottom:56.25%; */
padding-bottom:100%;
position:relative; 
height:0;
max-width: 600px;
margin-left: auto;
margin-right: auto;
margin-top: 30px;
}

.video-responsive iframe {
left:0; 
top:0; 
height:100%;
width:100%;
max-width: 600px;
max-height: 600px;
position:absolute;
}
@media only screen and (max-width: 650px) {
	.video-responsive { 
		margin-top: 100px;
	}
}
/* -------------- CONTACT FORM ------------------- */
body.hide-scroll {
	overflow:hidden;
}
.error {
	text-align: left;
	font-weight: normal;
	color: #D40B29;
	padding-left: 15px;
}
#contact-me-button {
	position: fixed;
	right: 0;
	top:30px;
	background-color: #D40B29;
	z-index: 500;
	color: white;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	text-transform: uppercase;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 20px;
	letter-spacing: 0.05em;
	text-align: left;
	padding: 20px 10px;
	cursor: pointer;
	transition: right ease-out .3s;
}
#contact-me-button.opened {
	right: 100%;
}
#contact-me-button svg {
	stroke: white;
	fill: white;
	width:25px;
	height:25px;
	margin-left:10px;
}
#panel-contact {
	position: fixed;
	right: -100%;
	top:0;
	bottom: 0;
	background-color: white;
	transition: right ease-out .3s;
	z-index: 501;
	width: 100%;
	height: 100%;
	overflow-y: auto;
}
#panel-contact.opened {
	right: 0;
}
.close-contact-form {
	position: absolute;
	top:30px;
	right: 30px;
}
.close-contact-form svg {
	stroke:#ACACAC;
	width: 60px;
	height: 60px;
	transition: stroke ease-out .3s;
}
.close-contact-form:hover svg {
	stroke:#DADADA;
}
#panel-contact h2, #panel-download h2 {
	font-size: 30px;
	font-style: normal;
	font-weight: 300;
	line-height: 49px;
	letter-spacing: 0em;
	text-align: left;
	margin-bottom: 30px;
	padding-left: 15px;
}
#panel-contact p, #panel-download p {
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 17px;
	letter-spacing: 0.05em;
	text-align: left;
	color: #ACACAC;
}

#panel-download a.download {
	color: #D40B29;
	text-align: left;
	text-decoration: underline;
	width: 100%;
	display: block;
	padding-left: 15px;
}
#panel-download a.download:hover {
	text-decoration: none;
}

.ajax-response {
	text-align: center;
	margin: 10px;
	font-weight: 600;
}
@media only screen and (max-width: 650px) {
	#panel-contact h2, #panel-download h2 {
		font-size: 28px;
		line-height: 36px;
	}
	.close-contact-form {
		top: 20px;
		right: 10px;
	}
	#contact-me-button {
		font-size: 13px;
		line-height: 17px;
		padding: 15px 5px;
	}
}

/* -------------- FORMULAIRE ------------------- */
input[type="text"], textarea, select {
	background: #FBFBFB;
	border: 1px solid #EFEFEF;
	box-sizing: border-box;
	border-radius: 10px;
	padding:15px 15px;
	margin:8px;
	font-family: 'Montserrat', sans-serif;
}
textarea {
	min-height: 150px;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #ACACAC;
  font-size: 14px;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #ACACAC;
  font-size: 14px;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #ACACAC;
  font-size: 14px;
}
:-moz-placeholder { /* Firefox 18- */
  color: #ACACAC;
  font-size: 14px;
}
#panel-contact .button {
	width: 100%;
	max-width: 350px;
	display: inline-block;
	margin-top:20px;
}
#panel-download .button {
	width: 100%;
	max-width: 350px;
	display: inline-block;
	margin-top:50px;
}


/* -------------- HEADER ------------------- */

header {
	position: relative;
	width:100%;
	min-height:400px;
	background-image: url('../img/bg1.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;

	padding-top:50px;
	overflow: hidden;
}

header .tunisie {
	font-family: 'Source Serif Pro', serif;
	font-size: 33.5vw;
	font-weight: 600;
	letter-spacing: 8%;
	color: rgba(255,255,255,0.1);
	z-index:2;
	white-space: nowrap;

	position: absolute;
	top:-30px;
	left:-46px;
}
header .panel-slogan {
	margin-top: 100px;
	width:85%;
	margin-left:10%;
	margin-bottom: 50px;
}
header .slogan {
	position: relative;
	font-family: 'Source Serif Pro', serif;
	font-size: 52px;
	font-style: normal;
	font-weight: 600;
	line-height: 60px;
	letter-spacing: 0.08em;
	text-align: left;
	color:white;
	z-index:3;
	width:100%;
	max-width:828px;
}
header .slogan-sub {
	position: relative;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 20px;
	letter-spacing: 0.03em;
	text-align: left;
	color:white;
	z-index:3;

	width:100%;
	max-width:443px;
	margin-top:70px;
	margin-left:40px;
}

#logo {
	position: relative;
	height:70px;
	font-weight: 400;
	font-size:26px;
	line-height: 70px;
	letter-spacing: 7%;
	color:white;
	text-transform: uppercase;
	z-index:4;

	margin-left:50px;
}
#logo span {
	font-weight: 700;
}
#logo .sublogo {
	font-size:20px;
	height:70px;
	display: inline-block;
	margin-left: 15px;
	padding-left:15px;
	border-left: 1px solid #D40B29;
	line-height: 70px;
}


header .panel-slogan2 {
	position: absolute;
	right: 0;
	top:300px;
	background-color: #1C1F55;
	color: white;
	width:100%;
	max-width: 620px;
	padding:80px;
	padding-top:55px;
	padding-bottom:55px;
	z-index:4;
}
header .panel-slogan2 .slogan2 {
	font-family: 'Source Serif Pro', serif;
	font-size: 32px;
	font-style: italic;
	font-weight: 400;
	line-height: 40px;
	letter-spacing: 0em;
	text-align: left;
	margin-bottom: 35px;
}
header .panel-slogan2 .slogan2-sub {
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.03em;
	text-align: left;
	text-transform: uppercase;
}
header .panel-slogan2 svg {
	position: absolute;
	top: 25px;
    left: -80px;
    width: 107px;
    height: 97px;
	fill:#D40B29;
}

@media only screen and (max-width: 1550px) {

	header .panel-slogan2 {
		padding:65px;
		top:285px;
		max-width: 526px;
	}
	header .panel-slogan2 .slogan2 {
		font-size: 20px;
		line-height: 30px;
	}
	header .panel-slogan2 .slogan2-sub {
		font-size: 14px;
	}

}

@media only screen and (max-width: 1400px) {

	#logo {
		font-size:20px;
	}
	#logo .sublogo {
		font-size:16px;
	}

	header .panel-slogan {
		margin-top: 35px;
		margin-bottom: 80px;
	}
	header .slogan {
		font-size: 44px;
		line-height: 50px;
	}
	header .slogan-sub {
		max-width:253px;
	}
	header .panel-slogan2 {
		padding:65px;
		top:285px;
		max-width: 526px;
	}
	header .panel-slogan2 .slogan2 {
		font-size: 20px;
		line-height: 30px;
	}
	header .panel-slogan2 .slogan2-sub {
		font-size: 14px;
	}

}
@media only screen and (max-width: 1150px) {

	header .slogan-sub {
		max-width:443px;
		margin-top:70px;
		margin-left:0px;
		margin-bottom: 80px;
	}

	header .panel-slogan2 {
		position: relative;
		right: auto;
		top:auto;
		color: white;
		width:100%;
		padding:80px;
		z-index:4;
		margin: 0;
		max-width: 100%;
	}
	header .panel-slogan2 svg {
		top: -54px;
		left: 30px;
	}
}
@media only screen and (max-width: 650px) {
	header {
		background-position: center top;
		background-size: contain;
		background-color: #0b1830;
	}
	header .slogan {
		font-size: 27px;
		line-height: 35px;
	}
	header .panel-slogan {
		width:auto;
		margin-left:35px;
		margin-right:35px;
		margin-top: 60px;
	}
	header .panel-slogan2 {
		padding-left:35px;
		padding-right:35px;
		line-height: 30px;	
	}


	#logo {
		height:auto;

		font-size:25px;
		line-height: 45px;
		margin-left:35px;
		margin-right:35px;
		text-align: center;
	}
	#logo .flag {
		display: inline-block;
		margin-left: auto;
		margin-right: auto;
		width: 100%;
		margin-bottom: 30px;
	}
	#logo .sublogo {
		width: 100%;
		display: inline-block;
		height:auto;
		margin-left: 0px;
		padding-left:0px;
		border-left: 0;
		line-height: 45px;
		border-top: 1px solid #D40B29;
	}


}

/* -------------- HEADER - PANEL WHY ------------------- */

header .panel-why {
	position: relative;
	width:85%;
	margin-left:10%;
	margin-right:5%;
	z-index: 2;
	background-color: white;
	padding:55px;
	padding-top: 100px;
	color: #737373;
}

header .panel-why .panel-why-title {
	font-size: 40px;
	font-weight: 300;
	line-height: 49px;
	letter-spacing: 0em;
	text-align: left;
}
header .panel-why .why-block {
	position: relative;
	text-align: center;
	padding:30px;
	padding-bottom: 50px;
}
header .panel-why .why-block .block-hover {
	
	position: absolute;
	left:-20%;
	bottom: 0;
	z-index:1000;
	width: 100%;
	height:290px;
	background-color: #F7F7F8;
	color: #737373;
	padding: 30px;
	cursor: default;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	transition: left ease-out .2s, opacity ease-out .2s;
	opacity: 0;
}

header .panel-why .why-block:hover .block-hover {
	left: 0;
	opacity: 1;
}
header .panel-why .why-block svg {
	fill:#1C1F55;
	margin-left: auto;
	margin-right: auto;
}
header .panel-why .why-block h3 {
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 0em;
	text-transform: uppercase;
}
header .panel-why .why-block p {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 0em;
}
header .panel-why .why-block.intro h2 {
	font-size: 35px;
	color: #1C1F55;
    font-weight: 500;
	line-height: 49px;
	letter-spacing: 0em;
	text-align: left;

}
header .panel-why .why-block.intro p {
	font-size: 20px;
	font-style: normal;
	color: #1C1F55;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 0em;
	text-align: left;
}
header .header-cache {
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #F7F7F8;
	width: 100%;
	height: 170px;
	z-index: 1;
}

@media only screen and (max-width: 1400px) {
	header .panel-why .why-block h3 {
		font-size:16px;
	}
	header .panel-why .why-block p {
		font-size:14px;
	}
	header .panel-why .why-block.intro h2 {
		font-size: 28px;
		line-height: 40px;
	}
	header .panel-why .why-block.intro p {
		font-size: 16px;
		line-height: 20px;
	}
}

@media only screen and (max-width: 1150px) {
	header .panel-why {
		width:100%;
		margin-left:0;
		margin-right:0;
		padding:40px;
	}
	header .panel-why .why-block {
	    padding: 0px;
	    padding-bottom: 60px;
	}
	header .panel-why .why-block .block-hover {
		height:auto;
		min-height:100px;
		top: 0;
	}
}
@media only screen and (max-width: 500px) {


	header .panel-why .why-block .block-hover {
		
		/*
		height:auto;
		min-height:100px;
		bottom: auto;
		top: 0;
		*/
		transition: height ease-out .2s, opacity ease-out .2s;
		top: 20px;
		position: absolute;
		left:0;
		opacity: 0;

	}
	header .panel-why .why-block {
	    padding-bottom: 90px;
	}

	

	header .panel-why .why-block:hover .block-hover {
		height: auto;
		opacity: 1;
		position: relative;
	}


}


/* -------------- SECTION 2 ------------------- */

#section2 {
	background-color: #F7F7F8;
	overflow: hidden;
}
#section2 h2 {
	width: 100%;
	font-size: 40px;
	font-style: normal;
	font-weight: 300;
	line-height: 49px;
	letter-spacing: 0em;
	text-align: center;
	margin-top:45px;
	margin-bottom:45px;
	padding:15px;
}
#videos .video {
	max-width:430px;
	padding:15px;
}
#videos .video-thumb {
	width: 100%;
	height:215px;
	background-repeat: no-repeat;
	background-size: cover;
	margin-bottom: 15px;
	cursor: pointer;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;	
}
#videos .video1 .video-thumb {background-image: url('../img/video_thumb_1.jpg');}
#videos .video2 .video-thumb {background-image: url('../img/video_thumb_2.jpg');}
#videos .video3 .video-thumb {background-image: url('../img/video_thumb_3.jpg');}
#videos .video4 .video-thumb {background-image: url('../img/video_thumb_4.jpg');}

#videos .video svg {
	stroke: white;
	fill: none;
	width:83px;
	height:83px;
	cursor: pointer;
	transition: transform ease-out .3s;
}
#videos .video:hover svg {
	transform: scale(1.2);
}
#videos .video .relative {
	text-align: left;
}
#videos .video h4 {
	position: relative;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 0.04em;
	text-align: left;
	color: #ACACAC;
	text-transform: uppercase;
	background-color: #F7F7F8;
	display: inline-block;
	padding-right:7px;
	z-index:2;
}
#videos .video .trait {
	position: absolute;
	height: 1px;
	width: 100%;
	right:0;
	top:12px;
	background-color: #D40B29;
	z-index:1;
	
}
#videos .video p {
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 0em;
	text-align: left;
	margin-top:10px;
}
@media only screen and (max-width: 1000px) {
	#videos .video {
		margin-bottom: 30px;
	}
}

.ebook-img-container {
	padding-top:30px;
	padding-left:50px;
	padding-right:50px;
}
#ebook-invest {
	margin-left:-110px;
}
#ebook-invest h3 {
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 0.05em;
	text-align: left;
	text-transform: uppercase;
	color: #ACACAC;

}
#ebook-invest h4 {
	font-family: Source Serif Pro;
	font-style: normal;
	font-weight: 600;
	font-size: 60px;
	line-height: 60px;
	letter-spacing: 0.08em;
	margin-top:13px;
	margin-bottom: 50px;
	color: #1C1F55;
	max-width: 450px;

	word-wrap:normal;
}

@media only screen and (max-width: 1400px) {
	 #ebook-invest h4{
		font-size: 40px;
		line-height: 50px;
	}
	#ebook-invest h3 {
		font-size: 16px;
	}
}


@media only screen and (max-width: 1000px) {
	#ebook-invest {
		margin-left:0px;
		text-align: center;
	}
	#ebook-invest h3 {
		margin-left:auto;
		margin-right: auto;
		text-align: center;
		padding-left:25px;
		padding-right:25px;
	}
	#ebook-invest h4 {
		margin-left:auto;
		margin-right: auto;
	}
}
@media only screen and (max-width: 500px) {
	#ebook-invest h4 {
		font-size: 35px;
		line-height: 40px;
		padding-left:20px;
		padding-right:20px;
	}
}



/* -------------- SECTOR MENU ------------------- */

#sector-transition {
	position:absolute; 
	background-color: white; 
	top:0; 
	left:0; 
	width:100%; 
	height:100%;
	opacity: 0;

}
#sector-menu {
	background-size: cover;
	color: white;
	padding-bottom: 550px;
	overflow:hidden;
	background-position: center right;
}

#sector-menu h1 {
	font-family: 'Montserrat', sans-serif;
	font-size: 40px;
	font-style: normal;
	font-weight: 300;
	line-height: 49px;
	letter-spacing: 0em;
	text-align: left;
}
#sector-menu .sector-item {
	border-bottom: 1px solid white;
	width: 100%;
	max-width: 600px;
	cursor: pointer;
	transition: all ease-out .3s;
}
#sector-menu .sector-list-item {
	position: relative;
	z-index: 10;
}
#sector-menu .sector-item.active, #sector-menu .sector-item:hover {
	color:#D40B29;
	border-color: #D40B29;
}
#sector-menu .sector-name {

	text-align: left;
	width:230px;
}
#sector-menu .sector-number {
	display: none;
	font-family: Source Serif Pro;
	font-size: 50px;
	font-style: normal;
	font-weight: 600;
	line-height: 70px;
	letter-spacing: 0em;
	text-align: center;
}
#sector-menu .sector-name {
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 70px;
	letter-spacing: 0.04em;
	text-align: left;
	text-transform: uppercase;
}
#sector-menu h2 {
	font-family: Source Serif Pro;
	font-size: 50px;
	font-style: normal;
	font-weight: 600;
	line-height: 60px;
	letter-spacing: 0.08em;
	text-align: left;
	max-width: 500px;
	margin-bottom: 40px;
}
#sector-menu .sector-num {
	display: none;
	font-family: Source Serif Pro;
	font-size: 500px;
	line-height: 500px;
	font-style: normal;
	font-weight: 600;
	line-height: 100px;
	letter-spacing: 0em;
	text-align: center;
	color: rgba(255,255,255,0.2);

	position: absolute;
	right:-100px;
	top:45%;
}
.sectors-logos {
	min-height: 185px;
}
.sectors-logos img {
	margin:20px;
	display: inline-block;
}
#sector-plus {
	margin-top:-500px;
}
.block-sector-intro {
	background-color: #F7F7F8;
	position: relative;
}
.block-sector-intro .intro {
	font-family: Source Serif Pro;
	font-size: 26px;
	font-style: italic;
	font-weight: 400;
	line-height: 33px;
	letter-spacing: 0em;
	text-align: left;
	color: #1C1F55;
	margin-bottom: 30px;
	max-width: 470px;
}
.block-sector-intro .intro span {
	font-size:22px;
}

.block-sector-intro ul {
	padding-left: 25px;
}
.block-sector-intro .source, .block-sector-intro .intro span, .block-sector-intro .source a:link, .block-sector-intro .source a:visited,
.block-sector-intro .source a:visited, .block-sector-intro .source a:hover {
	font-family: Montserrat;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0.03em;
	text-align: left;
	color: #737373;
	text-transform: uppercase;
	max-width: 470px;
	text-decoration: none;
}
.block-sector-intro .source a:hover {
	text-decoration: underline;
}
.block-sector-intro svg {
	fill:#D40B29;
	width:130px;
	position: absolute;
	top:50px;
	left:-43px;
}
.block-sector-intro svg path {
	stroke-width: 1;
}
.block-sector-mini {
	background-color: white;
	width: 100%;
	padding: 25px;
}
.block-sector-mini .chiffre {
	font-family: Source Serif Pro;
	font-size: 60px;
	font-style: normal;
	font-weight: 700;
	line-height: 75px;
	letter-spacing: 0em;
	text-align: center;
	color: #1C1F55;
	margin-bottom:20px;
}
.block-sector-mini .text {
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 20px;
	letter-spacing: 0em;
	text-align: center;
	max-width: 230px;
}
.block-sector-mini .text span {
	text-transform: uppercase;
	display: block;
}

.block-sector-image {
	background-size: cover;
	background-position: center center;
	width: 100%;
}
.block-sector-empty {
	width: 100%;
}
.block-sector-outro {
	background-size: cover;
	color: white;
	position: relative;
	padding:20px;
}
.block-sector-outro h3 {
	font-size: 40px;
	font-style: normal;
	font-weight: 500;
	line-height: 49px;
	letter-spacing: 0em;
	text-align: center;
	text-transform: uppercase;
}
.block-sector-outro p {
	font-size: 22px;
	font-style: normal;
	font-weight: 500;
	line-height: 27px;
	letter-spacing: 0em;
	text-align: center;
	text-transform: uppercase;
}
.outro-hover {
	opacity: 0;
	position: absolute;
	height: 100%;
	width: 100%;
	text-align: center;
	padding:20px;

	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 27px;
	letter-spacing: 0em;
	text-align: center;

	transition: opacity ease-out .3s;
}

.block-sector-outro:hover .outro-hover {
	display: block;
	height: 100%;
	background-color: rgba(28,31,85,0.92);
	color: white;
	opacity: 1;
}

.block-sector-outro .outro-hover .inner-text {
	max-width: 450px;
}

@media only screen and (max-width:1400px) {
	#sector-menu h1 {
		font-size: 30px;
	}
	#sector-menu h2 {
		font-size: 40px;
		line-height: 45px;
	}
	#sector-menu .sector-name {
		font-size: 16px;
	}
	.block-sector-intro .source {
		font-size: 16px;
	}
	.block-sector-mini .text {
		font-size: 14px;
	}
	.block-sector-outro h3 {
		font-size: 25px;
	}
	.block-sector-outro p {
		font-size: 14px;
	}
	.block-sector-outro .outro-hover .inner-text {
		font-size: 14px;
	}

	.sectors-logos img {
		max-width: 180px;
	}
	.block-sector-intro .intro {
		font-size: 20px;
		line-height: 30px;
	}
	.block-sector-intro .source, .block-sector-intro .intro span {
		font-size: 14px;
	}
	.block-sector-mini .chiffre {
		font-size: 50px;
		line-height: 45px;
		margin-bottom:5px;
	}

}
@media only screen and (max-width:1200px) {

}
@media only screen and (max-width:1140px) {
	.block-sector-intro svg {
		top:15px;
		left:-40px;
	}
}
@media only screen and (max-width:1000px) {
	.block-sector-intro svg {
		display: none;
	}

	#sector-menu h2 {
		font-size: 27px;
		line-height: 35px;
	}
	#sector-menu .sector-num {

		font-size: 350px;
		line-height: 500px;

		line-height: 100px;

		right:-150px;
		top:45%;
	}
	.block-sector-intro {
		padding: 40px;
	}

	.block-sector-mini .chiffre {
		font-size: 32px;
		line-height: 40px;
		margin-bottom:10px;
	}
	.block-sector-mini .text {
		font-size: 14px;
		line-height: 18px;
	}
}
@media only screen and (max-width:750px) {
	.block-sector-empty {
		background-color: #F7F7F8;
	}
}
@media only screen and (max-width:500px) {
	#sector-menu h1 {
		font-size: 26px;
		line-height: 36px;
	}
	#sector-menu .sector-number {
		font-size: 37px;
	}
	#sector-menu .sector-num {
		right:-100px;
	}

	.sectors-logos img {
		max-width: 110px;
	}
	.block-sector-intro {
		padding:20px;
	}
	.block-sector-intro .intro {
		font-size:18px;
		line-height: 22px;
		margin-bottom: 15px;
	}
	.block-sector-intro .source {
		font-size:14px;
	}
	.block-sector-intro svg {
		top:5px;
		left:-100px;
	}
	.block-sector-outro .outro-hover .inner-text {
		font-size:15px;
		line-height: 20px;
	}
	.block-sector-mini {
		padding:10px;
	}
	.block-sector-mini .chiffre {
		font-size: 35px;
		margin-bottom: 0px;
	}
	.block-sector-mini .text {
		font-size: 12px;
	}
	.block-sector-intro ul {
		margin-top: 5px;
	}
	.block-sector-intro .intro span {
		font-size: 14px;
	}
}	

/* -------------- SLIDER ------------------- */

#slider {
	position: relative;
	z-index: 60;
	margin-bottom: 50px;
}
#slider .slider-container {
	
	max-width: 1000px;
	
	margin-right: auto;
	margin-left: auto;
	position: relative;
}

#slider svg {
	stroke:#ACACAC;
	width:40px;
}
#slider .previous.inactive svg, #slider .next.inactive svg {
	stroke:#DEDEDE;
	cursor: default;
}

#slider .slide {
	display: none;
	opacity: 0;
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
}
#slider .slide h2 {
	font-size: 40px;
	font-style: normal;
	font-weight: 300;
	line-height: 49px;
	letter-spacing: 0.05em;
	text-align: left;
	text-transform: uppercase;
	color: #ACACAC;
}
#slider .slide p {
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
	letter-spacing: 0em;
	text-align: left;
	color: rgb(115,115,115);
}
#slider .slide img {
	float:right;
	margin-top: 42px;
	margin-left: 30px;
	max-width: 160px;
}
#slider .slider-nav {
	position: absolute;
	width:100%;
	height: 50px;
	bottom:0px;
	left:0;
	right: 0;
	z-index: 230;
	align-items: center;
}
#slider .slider-nav a.circle {
	display: inline-block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 0;
	line-height: 40px;
	margin-left: 3px;
	margin-right: 3px;
	position: relative;
}
#slider .slider-nav a.circle:before {
	content:'';
	position: absolute;
	top:14px;
	left:15px;
	border-radius: 50%;
	width:9px;
	height:9px;
	background-color: #CACACA;
}
#slider .slider-nav a.circle.current {
	
	border: 1px solid #CACACA;
}

#slider .slider-nav a.previous.inactive, #slider .slider-nav a.next.inactive {
	color:#AAA;
	cursor: default;
}
#slider .slider-nav a.previous.inactive:hover, #slider .slider-nav a.next.inactive:hover,
#slider .slider-nav a.previous.inactive:active, #slider .slider-nav a.next.inactive:active {
	text-decoration: none
}

@media only screen and (max-width:1400px) {
	#slider .slide h2 {
		font-size: 28px;
	}
	#slider .slide p {
		font-size:16px;
	}
}
@media only screen and (max-width:750px) {
	#slider .slide img {
		display: none;
	}
	#slider .slide h2 {
		font-size: 30px;
		line-height: 39px;
	}
}
@media only screen and (max-width:500px) {
	#slider .slide h2 {
		font-size: 24px;
    	line-height: 32px;
	}
	#slider .slide p {
		font-size:14px;
	}
}


/* -------------- EBOOK sector ------------------- */

.ebook-img-container img {
	width: 90%;
}
#ebook-sector {
	background-color:#F7F7F8;
}
#ebook-sector .ebook-img-container {
	position: relative;
	min-height:600px;
}
#ebook-sector .ebook-img-container img {
	position: absolute;

	right: 0;
	top:-95px;
}
#ebook-invest-sector {

}
#ebook-invest-sector h3 {
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 0.05em;
	text-align: left;
	text-transform: uppercase;
	color: #ACACAC;
}
#ebook-invest-sector h4 {
	font-family: Source Serif Pro;
	font-style: normal;
	font-weight: 600;
	font-size: 60px;
	line-height: 60px;
	letter-spacing: 0.08em;
	margin-top:13px;
	margin-bottom: 50px;
	color: #1C1F55;
	max-width: 450px;

	word-wrap:normal;
}
@media only screen and (max-width: 1400px) {
	#ebook-invest-sector h3 {
		font-size: 16px;
	}
	#ebook-invest-sector h4 {
		font-size: 40px;
		line-height: 52px;
	}
}
@media only screen and (max-width: 1000px) {
	#ebook-sector .ebook-img-container img {
		right: 0;
		left:0;
		top:-25px;
	}
	#ebook-sector .ebook-img-container {
		min-height:600px;
	}
	#ebook-invest-sector {
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 70px;
		text-align: center;
	}
	#ebook-invest-sector h3 {
		margin-left:auto;
		margin-right: auto;
		text-align: center;
		padding-left:25px;
		padding-right:25px;
	}
	#ebook-invest-sector h4 {
		margin-left:auto;
		margin-right: auto;
	}
}
@media only screen and (max-width: 600px) {
	#ebook-sector .ebook-img-container {
		min-height:400px;
	}
}

@media only screen and (max-width: 500px) {
	#ebook-invest-sector h4 {
		font-size: 35px;
    	line-height: 40px;
		padding-left:10px;
		padding-right:10px;
	}
	.ebook-img-container {
		padding:0;
	}
	#ebook-sector .ebook-img-container img {
		position: relative;
		width: 100%;
		right: 0;
		top:0;
	}
	#ebook-sector .ebook-img-container {
		min-height: 250px;
	}
}


/* -------------- STATS ------------------- */

.stat {
	position: relative;
	margin-bottom: 20px;
}
.stat .number {
	position: absolute;
	width: 100%;
	text-align: center;
	top:80px;
	left:7px;
}
.stat .number .until-number {
	position: absolute;
	width: 100%;
	text-align: center;
	top:-15px;
	left:-5px;
}
.stat .number .anim-number {
	font-family: Source Serif Pro;
	font-size: 60px;
	font-style: normal;
	font-weight: 600;
	line-height: 63px;
	letter-spacing: 0em;
	text-align: center;
}
.stat .number .number-type {
	font-family: Source Serif Pro;
	font-size: 40px;
	font-style: normal;
	font-weight: 300;
	line-height: 98px;
	letter-spacing: 0em;
}
.circular-chart, .circular-chart-bg {
  display: block;
  margin: 0;
  width: 100%;
  max-height: 250px;
}
.circular-chart-bg {
  position:absolute;
  top:0;
  left: 0;
}
.circular-chart .circle, .circular-chart-bg .circle {
  stroke: white;
  fill: none;
  stroke-width: 0.5;
  stroke-linecap: round;
}
.stat.animate .circular-chart .circle, .stat.animate .circular-chart-bg .circle {
	animation: progress 1s ease-out forwards;
}

.circular-chart-bg .circle {
	stroke-width: 0.3;
	stroke: rgba(255,255,255,0.5);
}
@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}

/* -------------- INVEST ------------------- */

#invest {
	background-color: #A30018;
	color: white;
}
#invest .missions {
	background-color: white;
	color: #737373;
	margin-left: 5%;
	padding-left:50px;
	padding-right:5%;
}



#invest .intro-stats h1 {
	font-family: 'Montserrat', sans-serif;
	font-size: 40px;
	font-style: normal;
	font-weight: 300;
	line-height: 40px;
	letter-spacing: 0em;
	text-align: center;
}
#invest .intro-stats p {
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 0em;
	text-align: left;
	text-transform: uppercase;
}
#invest .block-stats  {
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 20px;
	letter-spacing: 0em;
	text-align: center;
	margin-bottom: 50px;
}
#invest .block-stats .col {
	padding:30px;
}
#invest .missions h1 {
	font-family: Source Serif Pro;
	font-size: 52px;
	font-style: normal;
	font-weight: 600;
	line-height: 55px;
	letter-spacing: 0.08em;
	text-align: left;
	color: #1C1F55;
	margin-bottom: 50px;
}
#invest .missions h2 {
	font-size: 40px;
	font-style: normal;
	font-weight: 300;
	line-height: 49px;
	letter-spacing: 0em;
	text-align: left;
	margin-bottom: 50px;
}
#invest .missions h4 {
	margin-top:10px;
	margin-bottom:50px;
	font-size:20px; 
	text-transform: uppercase; 
	color: #737373; 
	font-weight: 300; 
	line-height: 24px;
}
#invest .missions .mission {
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 0em;
	text-align: left;

	padding-left:60px;
	position: relative;
	max-width: 500px;
	margin-bottom: 50px;
}
#invest .missions .mission svg {
	fill:#737373;
	position: absolute;
	top:0;
	left:0;
}
#invest .missions img {
	max-width: 350px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 40px;
}

.raja {
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0em;
	text-align: left;
}
.raja strong {
	font-size: 25px;
	font-style: normal;
	font-weight: 600;
	line-height: 30px;
	letter-spacing: 0em;
	text-align: left;

}

@media only screen and (max-width:1400px) {
	#invest .intro-stats h1 {
		font-size: 30px;
	}
	#invest .missions h1 {
		font-size: 36px;
		line-height: 44px;
	}
	#invest .missions h4 {
		font-size: 16px;
	}
	#invest .missions h2 {
		font-size:30px;
	}
	a.button {
	    font-size: 14px;
	}
	#invest .intro-stats p {
		font-size: 18px;
	}
	.raja {
		font-size: 14px;
	}
	#invest .missions .mission {
		font-size: 16px;
	}
}

@media only screen and (max-width:1200px) {
	#invest .missions h1 {
		font-size: 45px;
		line-height: 45px;
		margin-bottom: 50px;
	}	
}
@media only screen and (max-width:1140px) {
	#invest a.button {
	    padding: 20px 20px;
	    font-size: 13px;
	}
}
@media only screen and (max-width:1000px) {
	#invest .missions {
		margin-left: 0;
		padding-left:0px;
		padding-right:0px;
	}	
	#invest .intro-stats h1 {
		margin-bottom: 30px;
		padding-left:20px;
		padding-right:20px;
	}
	#invest .intro-stats p {
		text-align: center;
		padding-left:20px;
		padding-right:20px;
	}
}
@media only screen and (max-width:500px) {
	#invest .missions h1 {
		font-size: 27px;
		line-height: 35px;
		text-align: center;
	}
	#invest .missions h4 {
		text-align: center;
	}
	#invest .missions h2 {
		font-size: 28px;
    	line-height: 35px;
	}
	#invest .missions .mission {
		font-size: 17px;
	}
	#invest .intro-stats p {
		font-size: 16px;
		line-height: 24px;
	}
}

/* -------------- COOKIE BANNER ------------------- */

#cookiebanner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding:15px 20px;
	background-color: #1C1F55;
	color: white;
	z-index:100;
	text-align: center;
	display: none;
}
#cookiebanner a.btn {
	background-color: #D40B29; 
	color: white;
	padding:4px 8px;
	margin-left: 10px;
	text-decoration: none;
}
body {
	position: relative;
}

/* -------------- MENTIONS LEGALES ------------------- */

.mentions-legales h5 {
	font-weight: bold;
	margin-bottom: 20px;
}


/* -------------- FOOTER ------------------- */

footer {
	background-color: #F7F7F8;

}
footer .col {
	padding:50px;
	text-align: center; 
}
footer .col {
	padding:50px;
	text-align: center; 
}
footer .col:nth-child(1) {border-right:1px solid #C4C4C4;}
footer .col:nth-child(3) {border-left:1px solid #C4C4C4;}
footer .col:nth-child(2) {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 0em;
	text-align: center;

}
footer .social-icons {
	margin-top: 30px;
}
footer .social-icons a, .raja a {
	border: 1px solid #CCC;
	border-radius: 50px;
	width: 34px;
	height: 34px;
	display: inline-block;
	padding:7px;
	margin:3px;
}
footer .social-icons a svg, .raja a svg {
	width:16px;
	height:16px;
	fill: #737373;
	transition: fill ease-out .4s;
}
footer .social-icons a:hover svg, .raja a:hover svg {
	fill: #D40B29;
}
.raja a {
	padding-left: 8px;
	padding: 4px;
	text-align: center;
}
.raja a svg {
	fill: #BBB;
}
footer .footer-menu a {
	display: block;
	text-transform: uppercase;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 27px;
	letter-spacing: 0.07em;
	text-align: center;
	transition: all ease-out .2s;
	text-decoration: none;
}
footer .footer-menu a:link, footer .footer-menu a:visited {
	color: #737373;
}
footer .footer-menu a:hover, footer .footer-menu a:active {
	color: #D40B29;
}
@media only screen and (max-width: 1000px) {
	footer .col:nth-child(1) {border-right:0;}
	footer .col:nth-child(3) {border-left:0;}
}
/* -------------- RESPONSIVE ------------------- */


@media only screen and (max-width: 1200px) {

}
@media only screen and (max-width: 1000px) {
	
}
@media only screen and (max-width: 750px) {
	
}
@media only screen and (max-width: 500px) {
	
}