html {
	scroll-behavior:smooth;
}

@font-face {
	font-family: Century Gothic;
	src: url(fonts/GOTHIC.TTF);
}

@font-face {
	font-family: Century Gothic;
	src: url(fonts/GOTHICB.TTF);
	font-weight: bold;
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Century Gothic;
}

section {
	position: relative;
	display: flex;
	width: 100%;
	min-height: 70vh;
	padding: 7%;
	justify-content: space-between;
	align-items: center;
	color: #542e71;
}

/*----------------LOADER--------------*/

/*------------------------------------*/

.polygone1{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height:90%;
	background: #542e71;
	opacity: 9%;
	clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
	animation: polygone 1s;
}

@keyframes polygone { 
	from{ margin-top:-300px; opacity:9% } 
	to{ margin-top:0; opacity:9% }
  }

/*---------------------------------------------*/
/*-------------------Header--------------------*/
/*---------------------------------------------*/

header {
	position:absolute;
	z-index: 1;
	background: none;
	top: 0;
	left: 0;
	width: 100%;
	padding: 2% 7%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .header-logo {
	position: relative;
	max-width: 150px;
}

header ul {
	align-items: center;
	position: relative;
	display: flex;
}

header ul li {
	font-size: 14px;
	list-style: none;
}

header ul li a {
	display: inline-block;
	color: #542e71;
	font-weight: 400px;
	margin-left: 40px;
	text-decoration: none;
	transition: 0.5s;
}

header ul li .ajouter-service{
	background-color: #fb3640;
	border-radius: 36px;
	padding: 10px;
	color: white;
}

header ul li a:hover{
	text-decoration: none;

	transform: scale(1.2);
}

header ul li a:focus{
	text-decoration: none;
}

header ul li a .home {
	color: white;
	padding: 10px;
	border-radius: 10px;
	background-color: #fdca40;
}

.mobileMenu{
	display: none;
}

#video{
	position: absolute;
	display: none;
	z-index: 1;
	top: 0;
	width: 100%;
	height: 100%;
	text-align: center;
}

.video{
	background: rgb(0, 0, 0, 50%);
	transition: 2;
	border: #542e71 solid 5px;
	border-radius: 36px;
	box-shadow:0 10px 3000px 10px ;
	animation: videoBox 1s;
}

@keyframes videoBox {
	from{ margin-top:-300px; opacity:9% } 
	to{ margin-top:0; opacity:100% }
}

.close-video{
	position: absolute;
	background: none;
	border: none;
	font-size: 30px;
	color: white;
	background-color: #cf2a32;
	padding-inline: 10px;
	border-bottom-right-radius: 10px;
}

@media (max-width: 1000px) {
	header #links{
		right: 0;
		margin: auto;
		position: absolute;
		display: none;
		background-color: rgb(84, 46, 113, 0.93);
		top: 90px;
		border-radius: 36px;
		padding-bottom: 30px;
	}

	header #links li a {
		padding: 0px 100px 30px 0px;
		font-size: 20px;
		color: #fff;
		transition: 0.3s;
	}

	header #links li a .home {
		color: white;
		padding: 10px;
		border-radius: 10px;
		background-color: transparent;
	}

	header #links li .ajouter-service{
		background-color: #fb3640;
		padding: 10px !important;
		border-radius: 36px;
		padding: 0px;
		color: white;
	}
	
	.mobileMenu{
		display: block;
		font-size: 30px;
		color: #542e71;
		cursor: pointer;
	}

	.mobileMenu:hover{
		display: block;
		font-size: 30px;
		color: #542e71;
		cursor: pointer;
	}

	#btn-video{
		line-height: 0;
	}
}

/*---------------------------------------------*/
/*---------------------------------------------*/
/*---------------------------------------------*/

/*--------------------------------------------------*/
/*-------------------TOP SECTION--------------------*/
/*--------------------------------------------------*/

.contenu{
	padding-top: 50px ;
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.contenu .textBox {
	position: relative;
	max-width: 600px;
	animation-name: textBox;
	animation-duration: 1s
}
  
  @keyframes textBox { 
	from{ margin-left:-300px; opacity:0 } 
	to{ margin-left:0; opacity:1 }
  }

.contenu .textBox h2 {
	color: #542e71;
	font-size: 55px;
	line-height: 1em;
	font-weight: 500;
}

.contenu .textBox h2 .elearningguide {
	font-weight: bold;
	color: #542e71;
}

.contenu .textBox h2 .guide {
	color: #fb3640;
}

.contenu .textBox a {
	font-size: 17px;
	text-decoration: none;
	line-height: 50px;
	color: white;
	padding: 10px;
	border-radius: 36px;
	background: #fb3640;
	transition: 0.7s;
}

.contenu .textBox a:hover{
	margin: 12px;
	background: #542e71;
}

.mapIllustration{
	width: 450px;
	animation-name: img;
	animation-duration: 1s;
}

@keyframes img { 
	from{ margin-right:-300px; opacity:0 } 
	to{ margin-right:0; opacity:1 }
  }

@media (max-width: 1000px) {

	.contenu .textBox h2{
		font-size: 37px;
	}

	.mapIllustration{
		width: 350px;
	}
}

@media (max-width: 950px ) {
	.contenu {
		display: block;
		text-align: center;
		top: 30px;
	}

	.contenu .textBox h2{
		margin-top: 50px !important;
		font-size: 37px;
	}

	.mapIllustration{
		padding: 50px;
		width: 100%;
	}

	.mobileMenu{
		font-size: 35px;
	}
}

/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/

/*-----------------------------------------------*/
/*------------------A Propos---------------------*/
/*-----------------------------------------------*/

.apropos{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 20px;
	padding-bottom: 0;
	padding-top: 0;
}

.apropos .aproposText{
	width: 50%;
	padding: 0 !important;
}

.apropos h3 {
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 30px;
}

.apropos .imgBoxMobile{
	display: none;
}

@media (max-width: 1000px) {
	.apropos{
		display: block;
	}

	.apropos .imgBox{
		display: none;
	}

	.apropos .imgBoxMobile{
		display: block;
	}

	.apropos .aproposText{
		width: 100%;
	}
}

/*---A propos illustration inclus dans mapIllustration class---*/

/*-----------------------------------------------*/
/*-----------------------------------------------*/
/*-----------------------------------------------*/


/*--------------------------------------------*/
/*-------------------Services-----------------*/
/*--------------------------------------------*/

.btns{
	top: 100px;
	margin-bottom: 200px;
	display: flex;
	padding: 0;
	padding-top: 100px;
}

.btns #mapRef{
	position: absolute;
	top: 0;
	text-align: center;
	width: 100%;
	padding-inline: 50px;
}

.btns div{
	
	display: block;
	justify-content: center;
}

.btns iframe {
	width: 100%;
	height: 670px;
	border-radius: 36px;
	border-style: solid;
	border-width: 10px;
	color: #542e71;
}

.btns .specifierEtab{
	position: absolute;
	text-align: center;
	margin-bottom: 80px;
	font-weight: bold;
	font-size: 40px;
	transition: 1s;
	z-index: 0;
}

.btns div a{
	margin: 20px;
	text-decoration: none;
	width: 160px;
	color: white;
	display: block;
	background-color:#542e71;
	text-align: center;
	font-size: 20px;
	padding: 2%;
	border-radius: 50px !important;
	transition: 1s;
	z-index: 1;
}

.nouvelle-page-left, .nouvelle-page-right {
	z-index: 1;
}

.btns .nouvelle-page-left a{
	margin-right: -50px;
	color: #542e71 !important;
	padding-block: 13px;
	width: auto;
	background: none;
}

.btns .nouvelle-page-left a:hover, .btns .nouvelle-page-right a:hover{
	background-color: transparent;
}

.btns .nouvelle-page-right a{
	margin-left: -50px;
	color: #542e71 !important;
	padding-block: 13px;
	width: auto;
	background: none;
}

.btns .nouvelle-page-left a .fa-external-link-alt, .nouvelle-page-right a .fa-external-link-alt{
	background-color: #fdca40;
	padding: 10px;
	border-radius: 36px;
}

.btns div a:hover{
	text-decoration: none;
	background-color: #673f86;
	transform: scale(1.1);
}

.btns div a img{
	margin-bottom: 20px;
	width: 200px;
}

.btns div a i {
	margin-right: 10px;
}

.services-mobile{
	display: none !important;
}
@media (max-width: 800px) {

	.btns{
		display: block;
		margin-bottom: 200px;
	}

	.btns iframe{
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}

	.btns .nouvelle-page-left a .fa-external-link-alt, .nouvelle-page-right a .fa-external-link-alt{
		display: none;
	}

	.btns .services{
		display: none;
	}

	.services-mobile{
		display: block !important;
		width: 100%;
		margin-top: 60px;
	}

	.btn-typeEtab-mobile{
		margin-bottom: 0 !important;
		border-bottom-left-radius: 0 !important;
		border-bottom-right-radius: 0 !important;
		width: 100% !important;
		background: #542e71 !important;
	}

	.nouvelle-page-left{
		display: none !important;
	}
}


/*--------------------------------------------*/
/*--------------------------------------------*/
/*--------------------------------------------*/

/*----------------------------------------*/
/*-------------------team-----------------*/
/*----------------------------------------*/

.team{
	display: block;
	align-items: center;
	text-align: center;
}

.team .teamdiv{
	display: flex;
	padding: 30px 150px 30px 150px ;
}

.team .teamdiv .card .content{
	display: block;
	justify-content: center;
    width: auto;
    padding: 20px 40px;
}

.team .teamdiv .card .content img{
	position: relative;
	height: 125px;
	width: 125px;
	padding: 11px;
}

.team .teamdiv .card .content .contentBx h3{
	font-weight: bold;
	font-size: 16px;
}

.team .teamdiv .card .content .contentBx p{

	font-size: 14px;
}

.team .teamdiv .card ul li a img{
	position: absolute;
	height: 40px;
	background: #542e71;
	border-width: 0;
	border-radius: 50px;
	list-style: none;
}

.team-social-media {
	display: inline;
	width: 35px;
	height: 35px;
	cursor: pointer;
	font-size:25px;
	border-radius: 10px;
	text-align: center;
	list-style: none;
}

.team-social-media a {
	color: #542e71;
	justify-content: space-between;
}

@media (max-width: 1000px) {
	.team {
		padding: 0;
		width: 100%;
		padding-block: 50px;
	}

	.team .teamdiv{
		padding: 0;
		width: 100%;
		display: block;
	}

	.team .teamdiv .card{
		width: 100%;
	}

	.team .teamdiv .card .content{
		width: 100%;
		display: flex;
		text-align: left;
		padding: 11px;
	}
}

/*----------------------------------------*/
/*----------------------------------------*/
/*----------------------------------------*/


/*-----------------------------------------*/
/*---------------TOP BUTTON----------------*/
/*-----------------------------------------*/

#top {
	display: none; 
	position: fixed;
	bottom: 20px;
	right: 60px;
	z-index: 400; 
	border: none; 
	cursor: pointer; 
    background: #cf2a32;
    border-radius: 50%;
    width: 40px;
    height: 40px;
	transition: 2s;
  }
  
  #top:hover {
	margin-bottom: 20px;
	background: #542e71;
  }

/*-----------------------------------------*/
/*-----------------------------------------*/
/*-----------------------------------------*/


/*-----------------------------------------*/
/*-----------------footer------------------*/
/*-----------------------------------------*/

footer{
	background: #542e71;
	box-sizing: border-box;
	width: 100%;
	font: bold 18px sans-serif;
  }
  
  
  /* Footer content */
  
footer .footer-contenu{
	  justify-content: space-evenly;
	  display: flex;
	  align-items: center;
	  text-align: center;
  }
  
  /* The company logo */
  
footer h3{
	color:  #ffffff;
	font: normal 36px 'Roboto', cursive;
	margin: 0 0 10px;
  }
  
  /* Footer links */
  
footer .footer-links{
	color:  #ffffff;
	margin: 0 0 10px;
	padding: 0;
  }
  
footer .footer-links a{
	display:inline-block;
	line-height: 1.8;
	text-decoration: none;
	color:  inherit;
  }
  
footer .footer-copyright{
	color:  #ffffff;
	font-size: 14px;
	font-weight: normal;
	margin: 0;
  }
  
  /* Footer social icons */
  
footer .footer-icons{
	margin-top: 40px;
  }
  
footer .footer-icons a{
	display: inline-block;
	width: 35px;
	height: 35px;
	cursor: pointer;
  
	font-size: 20px;
	color: #ffffff;
	text-align: center;
  }

  /* If you don't want the footer to be responsive, remove these media queries */
  
  @media (max-width: 1000px) {
  
	footer {
	  font: bold 14px sans-serif;
	}
  
	footer .footer-copyright{
	  font-size: 12px;
	}
  
  }
  
  @media (max-width: 800px) {
  
	footer{
	  padding: 30px;
	}
  
	footer .footer-contenu{
	  float: none;
	  max-width: 300px;
	  margin: 0 auto;
	}
  
	footer .footer-contenu{
	  margin-bottom: 40px;
	}
  }

/*-----------------------------------------*/
/*-----------------------------------------*/
/*-----------------------------------------*/
