
/* Custom Fonts */
@font-face {
    font-family: 'PPNeueMontreal';
    src: url('fonts/PPNeueMontreal-Book.woff2') format('woff2'),
         url('fonts/PPNeueMontreal-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PPNeueMontreal';
    src: url('fonts/PPNeueMontreal-Medium.woff2') format('woff2'),
         url('fonts/PPNeueMontreal-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'PPNeueMontreal';
    src: url('fonts/PPNeueMontreal-Bold.woff2') format('woff2'),
         url('fonts/PPNeueMontreal-Bold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'PPNeueMontreal';
    src: url('fonts/PPNeueMontreal-BoldItalic.woff2') format('woff2'),
         url('fonts/PPNeueMontreal-BoldItalic.woff') format('woff');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'PPRader-Medium';
    src: url('fonts/PPRader-Medium.woff2') format('woff2'),
         url('fonts/PPRader-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

table {
  border-collapse: collapse;
  width: 100%;
}

h1, h2, h3, h4, h5, h6, p {
  overflow-wrap: break-word;
}

body {
  text-rendering: optimizeSpeed;
}

section{
  width: 100%;
}

/* End Reset CSS */

/* Animation */
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
/* End Animation*/

.hide{
  display: none!important;
}

  @media (max-width: 768px) {
    .hide-768{
      display: none!important;
    }
  }
  @media (max-width: 600px) {
    .hide-600{
      display: none!important;
    }
  }

/* Typographie */

p{
  color: #133456;
  font-family: PPNeueMontreal;
  font-size: 16px;
  line-height: 140%;
  padding-bottom: 30px;
  font-weight: 500;
}

h1, h2, h3, h4, h5, h6{
  font-family: PPRader-Medium;
  color: #133456;
}

h2 {
	font-size: 80px;
	font-weight: 500;
}


a{
  text-decoration: underline;
}

.title-project{
  font-size: 50px;
  font-weight: 500;
}

@media (max-width: 1280px) {

}

@media (max-width: 680px) {
	.title-project{
  		font-size: 30px;
	}
	.text-content p{
		font-size: 15px;
		padding-bottom: 0;
	}
}

@media (max-width: 400px) {

}

.button{
	font-family: PPNeueMontreal;
	font-weight: 500;
	font-size: 22;
	color: #fff;
	background: #5b52ff;
	border-radius: 20px;
	padding: 20px 40px;
	text-decoration: none;
	display: inline-block;
	margin-top: 40px;
}

.highlighted{
	/*background: #bebaff;
	border-radius: 20px;
	padding: 1px 10px 3px;*/
	/*font-family: PPRader-Medium;*/
	font-weight: 800;
	font-style: italic;
	/*font-size: 22px;*/
	/*color: #5b52ff;*/
}

/* End Typographie */

/* Structure */

body{
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.main-container{
  width: 100%;
}

.content{
  display: flex;
  gap: 0px;
  max-width: 1440px;
  padding: 20px 20px;
  justify-content: space-between;
  align-self: stretch;
  margin: 0 auto;
  flex-wrap: wrap;
  height: 100vh; 
  scroll-snap-align: start;
  margin-bottom: 120px;
}
.wrapper{
  display: flex;
  gap: 0px;
  max-width: 1440px;
  padding: 20px 20px;
  margin-bottom: 80px;
  margin: 0 auto;
  align-items: center;
}
.banner{
  scroll-snap-align: start;
  background: #cbe6ff;
}


  @media (max-width: 850px) {
    .smooth-scoll{
      height: auto;
      overflow-y: visible; 
      scroll-snap-type: normal;
    }

    .content{
      height: auto; 
      scroll-snap-align: none;
      padding: 10px;
    }
  }

  @media (max-width: 800px) {
  	.wrapper{
  		display: block;
		}
	.button{
		font-size: 16px;
		padding: 10px 20px;
		margin: 40px 0px;
	}
  }
  @media (max-width: 400px) {

  }

/* End Structure */


/* Grille d'image */

.image-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 auto;
}

.row-a,
.row-b {
    display: flex;
    flex-direction: row;
    gap: 10px;
    height: 40vh; 
    min-height: 200px;
    width: 100%;
}

.image-item {
    flex-grow: 1; 
    overflow: hidden; 
    border-radius: 6px;
}


.image-item img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block;
}

@media (max-width: 768px) {

    .row-a,
    .row-b {
        height: 200px; 
        min-height: 200px; 
    }
    
}

@media (max-width: 600px) {

    .row-a,
    .row-b {
        flex-direction: column;
        height: auto; 
        min-height: auto; 
    }

    .image-item img {
       width: 100%; 
        height: auto; 
        object-fit: fill; 
        display: block;
    }
}

/* End Grille d'image */

.content-fiche {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.text-content {
    max-width: 500px;
    padding: 10px 0px 0px 20px;
}
.list-content {
    min-width: 350px;
    padding: 25px 0px 0px 20px;
}

.list-content li{
	color: #133456;
    font-family: PPNeueMontreal;
    font-size: 12px;
    line-height: 140%;
    font-weight: 500;
    text-transform: uppercase;
}

.list-content ::before{
	content:"+";
	color: #5b52ff;
	padding-right: 10px;
	font-size: 20px;
	padding-top:2px;
}



body {
    margin: 0;
    font-family: sans-serif;
}


.banner{
  display: flex;
  padding: 20px 40px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

@media (max-width: 600px) {

  .banner{
    display: flex;
    padding: 20px 20px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
  }
  .list-content {
    min-width: 0;
    padding: 8px 0px 0px 20px;
  }
  .content-fiche {
    display: block;
    width: 100%;
  }
} 

.logo img{
  width: 150px;
  height: auto;
}
.icons-container{
  display: flex; 
  gap: 10px;
}
.icon{
  background: #5b52ff;
  width: 30px;
  height: 30px;
  padding: 8px;
  border-radius: 100px;
  display: flex;
}

.main-background{
	background: #cbe6ff;
	background: linear-gradient(180deg,rgba(203, 230, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.head-wrapper{
	height: 90vh;
}

.intro{
	height: 100%;
	display: flex;
	align-items: center;
}

.heading{
	color: #133456;
	text-align: center;
	margin: -100px auto 0;
}

.heading h1{
  color: #133456;
  text-align: center;
  font-size: 7vw;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}

.intro-p{
  display: block;
  max-width: 700px;
  width: 90vw;
  margin: 20px auto 0px;
}
p.intro-p{
  font-size: 22px;
  padding-bottom: 0;
}

@media (max-width: 1438px) {

    .heading h1 {
        font-size: 10vw; 
    }
}
@media (max-width: 850px) {
    .head-wrapper, .intro{
      height: auto;
    }
    .heading {
      margin: 20px auto 60px;
    }
}
@media (max-width: 600px) {

    .heading h1 {
        font-size: 16vw; 
        line-height: 127%;
    }
    .heading br{
    	display: none;
    }
    .heading{
    	padding: 40px 0 0px;
    }
    p.intro-p{
  		font-size: 16px;
	}
}

.heading .marque{
	color: #fff;
	position: relative;
	display: inline-block; 
	padding: 2% 6% 4%;
  width: auto;
  height: auto; 
  background-image: url('images/marque-bg.png');
  background-size: 100% auto;
  background-repeat: no-repeat;
  animation: bg-move 6s step-end infinite/*,fade 6s linear infinite*/;
  margin-bottom: -3%;
}

.heading .marque::before{
	position: absolute;
	top: 0;
	left: 0;
	content:"";
	display: inline-block; 
  width: 100%;
  height: 100%; 
  background-image: url('images/marque-front.png');
  background-size: 100% auto;
  background-repeat: no-repeat;
  animation: bg-move 6s step-end infinite/*,fade 6s linear infinite*/;
}


@keyframes bg-move {
  0% {
    background-position-y: 0px;
  }
  20% {
    background-position-y: 25%;
  }
  40% {
    background-position-y: 50%;
  }
  60% {
    background-position-y: 75%;
  }
  80% {
    background-position-y: 100%;
  }
  100% {
    background-position-y: 0px;
  }
}

@keyframes fade {
  0% {
    opacity: 0.5;
  }
  2% {
    opacity: 1;
  }
  18% {
    opacity: 1;
  }
  20% {
    opacity: 0.5;
  }
  22% {
    opacity: 1;
  }
  38% {
    opacity: 1;
  }
  40% {
    opacity: 0.5;
  }
  42% {
    opacity: 1;
  }
  58% {
    opacity: 1;
  }
  60% {
    opacity: 0.5;
  }
  62% {
    opacity: 1;
  }
  78% {
    opacity: 1;
  }
  80% {
    opacity: 0.5;
  }
  82% {
    opacity: 1;
  }
  98% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

/*À propos*/

.image-lau{
	max-width: 50%;
	width: 800px;
}
.image-lau img{
	border-radius: 5px;
}

.a-propos{
	background: #cbe6ff;
/*	background: linear-gradient(180deg,rgba(203, 230, 255, 1) 0%, rgba(183, 179, 255, 1) 100%);
*/}
.text-wrapper{
	padding-right: 80px;
}
.large-text p{
	font-family: PPRader-Medium;
	color: #133456;
	font-size: 40px;
}
.a-propos .intro-p{
	width: auto;
}

footer .logo img{
	width: 240px;
}
footer.banner{
	padding: 40px 40px;
	background: none;
}
footer .email{
	display: flex;
	align-items: center;
	gap: 10px;
}

footer .icons-container{
	gap: 30px;
}

@media (max-width: 600px) {
	footer.banner{
		padding: 30px 20px;
	}
	footer .logo img{
		width: 180px;
		padding-bottom: 20px;
	}
	.large-text p{
		font-size: 30px;
	}
	.text-wrapper{
		padding-right: 0px;
	}
	footer.banner{
		display: block;
		text-align: center;
	}
	.image-lau{
		max-width: 100%;
		width: 800px;
	}

}