* {
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	font-family: "poppins";
	scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
button {
	font-family: "Torus Notched";
}

body {
	overflow-x: hidden;
	max-width: 1920px;
}

/*--HEADER--*/

header {
	height: 120px;
	width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

header .container {
	width: 1500px;
	height: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

header .container ul{
  display: flex;
}

header .container ul a {
  font-size: 1.2em;
  font-weight: 500;
  font-family: "Torus Notched";
  margin: 0 30px;
  color: #66aefc;
}

@media (max-width: 1500px) {
 header {
 	position: relative;
  background-color: #66aefc;
  }

  header .container {
  	width: 100%;
  }

  header .container ul a {
  	color: white;
  }
}

@media (max-width: 750px) {
 header .logo {
 	display: none;
 }

 header .container {
 	justify-content: center;
}
 	header .container ul a {
  margin: 10px;
 
 }
}

@media (max-width: 500px) {

.sec1 h1 {
 	 font-size: 4em;
  }
 header .container ul a {
  margin: 10px;
  }
}
/*--SECTION 1--*/

@media (min-width: 1500px) {
  .sec1  {
	height: 100vh;
	width: 100%;
	background-image: url(img/iii/img/13.png);
	background-repeat: no-repeat;
	background-position: top right;
 }
.sec1 .bg-responsive {
  	display: none;
  }

}

.sec1 .container {
	width: 1500px;
	height: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.sec1 h1 {
	color: #31489f;
	font-size: 8em;
	margin-bottom: 70px;
}

.sec1 button {
	position: relative;
	height: 70px;
	width: 250px;
	border-radius: 50px;
	border: 3px solid #31489f;
	background-color: white;
	font-size: 1.5em;
	color: #31489f;
	z-index: 2;
	overflow: hidden;
	}

.sec1 button:hover {
	color: white;
	width: 280px;
}

.sec1 button::before {
	content: "";
	position: absolute;
	height: 70px;
	width: 280px;
  border-radius: 50px;
	background-color: #31489f;
	top: -2px;
	left: -2px;
	transform: translate(-100%);
	transition: 0.3s;
	z-index: -1;
}

.sec1 button:hover::before,
.sec3 button:hover::before,
.sec4 button:hover::before {
	transform: translate(0%);
}

.sec1 button i,
.sec3 button i,
.sec4 button i {
	transform: scale(0);
	margin: -10px;
	transition: 0.3s;
}

.sec1 button:hover i,
.sec3 button:hover i,
.sec4 button:hover i {
	transform: scale(1);
	margin-left: 10px;
}

@media (max-width: 1500px) {
   .sec1 .container {
	   text-align: center;
	   justify-content: center;
	   width: 100%;
  }
 .sec1 {
    height: 100%;
    margin-top: 100px;
    padding-bottom: 100px;
  }

 .sec1 .bg-responsive {
 	  margin-top: 50px;
 }

 .sec1 .bg-responsive img {
 	 width: 600px;
 }
}


@media (max-width: 950px) {
 .sec1 h1 {
 	 font-size: 6em;
 	 margin-bottom: 60px;
  }
}

@media (max-width: 700px) {
 .sec1 .bg-responsive img {
 	 width: 80%;
  }

.sec1 h1 {
 	 font-size: 4em;
 	 margin-bottom: 60px;
  }
}

@media (max-width: 500px) {

.sec1 h1 {
 	 font-size: 3em;
  }
}

/*--TRANSITION--*/

.transition img {
	width: 100%;
	filter: drop-shadow(0px 10px 5px #acc4e8);
}

.transition {
	position: absolute;
	width: 100%;
	transform: translateY(-30%);
	z-index: 99;
}

/*--SECTION 2--*/

.sec2 {
	position: relative;
	z-index: 2;
	background-color: /* CODE COULEUR GRIS */#232323;
	padding-top: 120px;
}

.sec2 .container {
	max-width: 1500px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
} 

.sec2 .title {
	position: relative;
	width: 100%;
	text-align: center;
	color: white;
	font-size: 3em;
  margin-bottom: 100px;
}

.sec2 .title h1::before {
  content: "";
  position: absolute;
  height: 30px;
  width: 200px;
  border-radius: 20px;
  background-color: #66aefc;
  clip-path: polygon(
  	0 0,
  	100% 0,
  	100% 80%,
  	80% 35%,
  	64% 100%,
  	48% 35%,
    31% 100%,
    16% 35%,
    0 80%
  );
  top: 100%;
  left: 50%;
  transform: translate(-50%);
}

.sec2 .content {
  color:  white;
}

.sec2 h2 {
 font-size: 2.5em;
}
.sec2 .titre {
	display: flex;
	align-items: center;
}

.sec2 .point {
 margin-right: 20px; 
 width: 20px;
 height: 20px;
 background-color: #31489f;
 border-radius: 50px;
 border: 3px white solid;
}

.sec2 .separateur {
	height: 7.2px;
	width: 75px;
	background-color: #66adfc;
	border-radius: 0 50px 50px 0;
	margin: 25px 0;
}

.sec2 p {
	max-width: 600px;
	line-break: anywhere;
}

.sec2 .content {
width: 100%;
 display: flex;
 flex-direction: row;
 align-items: center;
 justify-content: space-around;
}

@media (min-width: 1500px) {
	.content-top .left {
		flex-direction: column;
	}
}

@media (max-width: 1500px) {
  .sec2 .content {
    margin: 50px 0;
  }

  .sec2 .content img {
    width: 90%;
  }

	.sec2 .content-top {
		flex-direction: column;
	}

	.sec2 .content-bottom {
		flex-direction: column-reverse;
	}

	.sec2 .container {
		width:  100%;
		text-align: center;
	}

	.sec2 p {
		max-width: 900px;
		margin: 0 50px
	}

	.sec2 .content-top .left {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-bottom: 50px;
	}

	.sec2 .content-bottom .right {
   	display: flex;
		flex-direction: column;
		align-items: center;
		margin-bottom: 50px;
	}

	.sec2 .separateur {
	 border-radius: 50px;
}

	.sec2 .titre {
		justify-content: center;
		flex-direction: column;
	}

	.sec2 .point {
    margin-right: 0px
  }
}

/*--SECTION 3--*/

.sec3 {
	z-index: 1;
	overflow: hidden;
	position: relative;
	height: 1080px;
	background-image: url('img/iii/svg/1.svg');
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	display: flex;
	align-items: center;
	filter: drop-shadow(5px 5px 10px #000);
}

.sec3 .container {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
}

.sec3 h1 {
	color: white;
	font-size: 4em;
}

.sec3 .separateur {
	height: 7px;
	width: 100px;
	background-color: #66adfc;
	border-radius: 0 50px 50px 0;
	margin: 50px 0;
}

.sec3 p {
	color: white;
	max-width: ;
	line-break: anywhere;
	margin-bottom: 50.1px;
}

.sec3 button, 
.sec4 button{
	position: relative;
	height: 60px;
	width: 222px;
	border-radius: 50px;
	border: 3px solid white;
	background-color: transparent;
	font-size: 1.5em;
	color: white;
	z-index: 2;
	overflow: hidden;
	}

.sec3 button:hover, 
.sec4 button:hover {
	color: #31489f;
	width: 280px;
}

.sec3 button::before, 
.sec4 button::before {
	content: "";
	position: absolute;
	height: 70px;
	width: 280px;
  border-radius: 50px;
	background-color: white;
	top: -2px;
	left: -2px;
	transform: translate(-100%);
	transition: 0.3s;
	z-index: -1;
}

.sec3 .right img {
	width: 100%;
}

@media (max-width: 1500px) {
  .sec3 .right {
	max-width: 450px;
	text-align: center
  }
}

@media (max-width: 1050px) {
 .sec3 .container {
	flex-direction: column;
  align-items: center;
  }

  .sec3 .left {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  }

  .sec3 .separateur {

  	border-radius:50px;
  }

  .sec3 p {
	margin: 0 20px;
  }

  .sec3 button {
	margin: 50px 0;
  }

  .sec3 .right img {
	width: 80%;
  }
}

/*--SECTION 4--*/

.sec4 {
	position: relative;
	height: 750px;
	background-image: url('img/iii/svg/2.svg');
	background-repeat: no-repeat;
	background-position: left;
	background-size: cover;
	z-index: 2;
	filter: drop-shadow(3px 5px 4px #232323);
	top: -2px;
}

.sec4 .content {
	display: flex;
	flex-direction: row;
	height: 100%;
	align-items: center;
}

.sec4 .left {
	margin: 0 170px 0 110px;
}

.sec4 .mid {
  width: 600px;
}

.sec4 .mid h1 {
	font-size: 3em;
	color: white;
}

.sec4 .mid h2 {
	font-size: 2em;
	color: white;
}

.sec4 .mid p {
	max-width: 400px;
	color: white;
	margin: 50px 0;
}

.sec4 .right {
 position: relative;
 left: -100px;
 z-index: -1;
}

@media (max-width: 1650px) {
 .sec4 .right {
  display: none;
  }
}

@media (max-width: 1250px) {

	.sec4 {
	filter: none;
}

 .sec4 .content {
	flex-direction: column-reverse;
	justify-content: center;
  }

.sec4 .left {
	margin: 0;
}

.sec4 .left img {
	width: 350px;
}

.sec4 .mid {
	text-align: center;
	margin-bottom: 30px;
}

.sec4 .mid p {
	margin: 30px auto;
	max-width: 550px;
	width: 90%;
	line-break: anywhere;
  }

  .sec4 .mid h1,
  .sec4 .mid h2,
  .sec4 .mid p {
	color: #66adfc;
	}

.sec4 button{
	border: 3px solid #66aefc;
	color: #66aefc;
	}

	.sec4 button:hover {
	color: white;
	}

	.sec4 button::before {
	background-color: #66aefc;
	}

	.sec4 img {
		filter: drop-shadow(0px 0px 4px #232323);
	}
}

/*--PUCE--*/

.onglet-side {
	position: fixed;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: 30px;
	z-index: 9999;
}

.onglet-side a {
	height: 12px;
	width: 12px;
	margin: 5px 0;
	background-color: white;
	border: 3px solid #31489f;
	border-radius: 50px;
}

.onglet-side a.active {
	background-color: #31489f;
}
