* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Cabin", sans-serif;
}
*::after::before {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

h1 {
  font-size: 4.5rem;
}

h2 {
  font-size: 12rem;
  font-weight: 700;
}

h3 {
  font-size: 6rem;
}

h4 {
  font-size: 3rem;
}

h5 {
  font-size: 2.5rem;
  font-weight: 200;
}

button {
  padding: 4.5px 10px;
  border: none;
  background-color: #1693A5;
  border-radius: 2px;
  font-size: 2.5rem;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: white;
  font-size: 2.5rem;
}

li {
  list-style: none;
}

p {
  font-size: 2.5rem;
}

header {
  background: url(./IMG/Acceuil.jpg);
  background-position: center center;
  background-size: cover;
  min-height: 100vh;
}
header .topBar {
  width: 100%;
  height: auto;
  position: relative;
  position: fixed;
  top: 0;
  transition: top 0.5s;
  z-index: 2;
  background: none;
}
header .topBar .backgroundTopBar {
  height: 100%;
  width: 100%;
  position: absolute;
  top: -100%;
  left: 0;
  background: white;
  transition: top 0.3s;
}
header .topBar nav {
  height: auto;
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
header .topBar nav svg {
  height: 100px;
  width: 100px;
  z-index: 2;
}
header .topBar nav svg .lastColored {
  fill: #1693A5;
}
header .topBar nav svg .colored {
  fill: black;
}
header .topBar nav .toggle-container {
  position: relative;
  display: flex;
  width: 50px;
  cursor: pointer;
  z-index: 3;
}
header .topBar nav .toggle-container .toggle {
  overflow: hidden;
}
header .topBar nav .toggle-container .toggle .line {
  width: 50px;
  height: 2px;
  background: black;
  position: absolute;
}
header .topBar nav .toggle-container .toggle .line1 {
  top: 45%;
  left: 400%;
  transition: transform 0.6s ease-in-out;
}
header .topBar nav .toggle-container .toggle .line1::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: -400%;
  background: black;
  z-index: 1;
}
header .topBar nav .toggle-container .toggle .line2 {
  top: 55%;
  left: 300%;
  transition: transform 0.3s ease-in-out;
}
header .topBar nav .toggle-container .toggle .line2::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: -300%;
  background: black;
  z-index: 1;
}
header .topBar nav .toggle-container:hover .line1 {
  transform: translateX(-400%);
}
header .topBar nav .toggle-container:hover .line2 {
  transform: translateX(-300%);
}
header .topBar nav .toggle-container span {
  position: absolute;
  top: 0;
  left: 100%;
  font-size: 3rem;
  height: 100px;
  display: grid;
  place-items: center;
  padding: 0px 5px;
  color: #1693A5;
  transition: font-size 0.3s ease;
}
header .topBar nav .toggle-container:hover span {
  font-size: 3.5rem;
}
header .topBar nav a {
  height: 100%;
  margin: auto 0px;
  z-index: 1;
}
header .topBar nav a span {
  font-size: 3rem;
  color: black;
}
header .topBar nav a span i {
  color: #1693A5;
  transition: transform 0.3s ease;
}
header .topBar nav a span:hover i {
  transform: translateY(-30%);
}
header #acceuil {
  height: auto;
  width: 80%;
  margin: auto;
  text-align: center;
  display: flex;
  justify-content: center;
}
header #acceuil div {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header #acceuil div h2 {
  font-weight: bold;
  font-size: 10rem;
}
header #acceuil div p {
  margin: 15px 0;
  font-size: 5rem;
}
header #acceuil div a {
  background: none;
  border: solid 2px #1693A5;
  color: #1693A5;
  font-size: 2.5rem;
  font-weight: 600;
  padding: 5px 10px 5px 10px;
  margin-top: 25px;
  transition: 0.7s;
  position: relative;
}
header #acceuil div a::after {
  content: "Plus";
  background: #1693A5;
  color: white;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: circle(0%);
          clip-path: circle(0%);
  transition: -webkit-clip-path ease-in-out 250ms;
  transition: clip-path ease-in-out 250ms;
  transition: clip-path ease-in-out 250ms, -webkit-clip-path ease-in-out 250ms;
  display: grid;
  place-items: center;
}
header #acceuil div a:hover::after {
  -webkit-clip-path: circle(100%);
          clip-path: circle(100%);
}

#services {
  min-height: 50vh;
  text-align: center;
}
#services h3 {
  margin: 9rem 0px;
}
#services h4 {
  margin-bottom: 4.5rem;
  font-weight: 300;
}
#services h4::before {
  content: open-quote;
  font-size: 6rem;
  color: #1693A5;
}
#services h4::after {
  content: close-quote;
  font-size: 6rem;
  color: #1693A5;
}
#services .container3 {
  height: auto;
  display: grid;
  grid-template-columns: 10% 1fr 1fr 10%;
}
#services .container3 div:nth-child(1) {
  grid-column: 3/4;
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin-left: 10px;
}
#services .container3 div:nth-child(1) p i {
  color: #1693A5;
}
#services .container3 div:nth-child(1) a {
  background: none;
  border: solid 2px #1693A5;
  color: #1693A5;
  font-size: 3rem;
  font-weight: 600;
  padding: 5px 10px 5px 10px;
  margin-top: 25px;
  transition: 0.7s;
  position: relative;
}
#services .container3 div:nth-child(1) a::after {
  content: "Contactez Nous";
  background: #1693A5;
  color: white;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: circle(0%);
          clip-path: circle(0%);
  transition: -webkit-clip-path ease-in-out 250ms;
  transition: clip-path ease-in-out 250ms;
  transition: clip-path ease-in-out 250ms, -webkit-clip-path ease-in-out 250ms;
  display: grid;
  place-items: center;
}
#services .container3 div:nth-child(1) a:hover::after {
  -webkit-clip-path: circle(100%);
          clip-path: circle(100%);
}
#services .container3 div:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1/2;
}
#services .container3 div:nth-child(2) img {
  height: 100%;
  width: 100%;
}

#a-propos {
  min-height: 110vh;
  text-align: center;
}
#a-propos h3 {
  margin: 100px 0px;
  font-weight: 200;
}
#a-propos .container {
  text-align: left;
  height: auto;
  display: grid;
  grid-template-columns: 20% 1fr 1fr 20%;
}
#a-propos .container div:nth-child(1) {
  grid-column: 2/3;
  margin-right: 41px;
  margin-top: 25px;
}
#a-propos .container div:nth-child(1) img {
  width: 100%;
  height: 55%;
}
#a-propos .container div:nth-child(1) h4 {
  border-bottom: solid 2px #1693A5;
  display: inline;
}
#a-propos .container div:nth-child(1) p {
  font-size: 1.5rem;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  margin-top: 10px;
}
#a-propos .container div:nth-child(2) {
  grid-column: 3/4;
  margin-right: 40px;
}
#a-propos .container div:nth-child(2) img {
  width: 100%;
  margin-bottom: 20px;
}
#a-propos .container div:nth-child(2) h4 {
  border-bottom: solid 2px #1693A5;
  display: inline;
}
#a-propos .container div:nth-child(2) p {
  font-size: 1.5rem;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 20px;
  margin-top: 10px;
}

#project {
  min-height: 50vh;
  text-align: center;
}
#project .container2 {
  height: auto;
  display: grid;
  grid-template-columns: 10% 1fr 1fr 1fr 10%;
  margin-top: 200px;
}
#project .container2 .card1 {
  height: 600px;
  grid-column: 2/3;
  margin: 0px 20px;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2), 0px 40px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  border-radius: 5px;
  overflow: hidden;
}
#project .container2 .card1 a {
  color: black;
}
#project .container2 .card1 a img {
  width: 100%;
  height: 60%;
}
#project .container2 .card1 a h4 {
  font-weight: 100;
  margin: 25px 0px;
}
#project .container2 .card1 a p {
  font-size: 2rem;
  margin: 0px 10px 30px 10px;
}
#project .container2 .card1:hover {
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2), 0px 40px 40px rgba(0, 0, 0, 0.3);
}
#project .container2 .card2 {
  height: 600px;
  grid-column: 3/4;
  margin: 0px 20px;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2), 0px 40px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  border-radius: 5px;
  overflow: hidden;
}
#project .container2 .card2 a {
  color: black;
}
#project .container2 .card2 a img {
  width: 100%;
  height: 60%;
}
#project .container2 .card2 a h4 {
  font-weight: 100;
  margin: 25px 0px;
}
#project .container2 .card2 a p {
  font-size: 2rem;
  margin: 0px 10px 30px 10px;
}
#project .container2 .card2:hover {
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2), 0px 40px 40px rgba(0, 0, 0, 0.3);
}
#project .container2 .card3 {
  height: 600px;
  grid-column: 4/5;
  margin: 0px 20px;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2), 0px 40px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  border-radius: 5px;
  overflow: hidden;
}
#project .container2 .card3 a {
  color: black;
}
#project .container2 .card3 a img {
  width: 100%;
  height: 60%;
}
#project .container2 .card3 a h4 {
  font-weight: 100;
  margin: 25px 0px;
}
#project .container2 .card3 a p {
  font-size: 2rem;
  margin: 0px 10px 30px 10px;
}
#project .container2 .card3:hover {
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2), 0px 40px 40px rgba(0, 0, 0, 0.3);
}
#project .show-more {
  height: auto;
  margin-top: 50px;
}
#project .show-more a {
  color: #1693A5;
  position: relative;
}
#project .show-more a::before {
  content: "";
  width: 150%;
  height: 20%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 130%;
  background: linear-gradient(to left, #1693A5, #ffffff);
  transition: transform 0.3s;
}
#project .show-more a::after {
  content: "";
  width: 150%;
  height: 20%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 130%;
  background: linear-gradient(to right, #1693A5, #ffffff);
  transition: transform 0.3s;
}
#project .show-more a:hover::before {
  transform: translateX(10%);
}
#project .show-more a:hover::after {
  transform: translateX(-10%);
}

#contact {
  min-height: 100vh;
  text-align: center;
}
#contact h3 {
  margin-bottom: 50px;
}
#contact .contact-tools {
  height: auto;
  width: 100%;
  display: grid;
  grid-template-columns: 10% 1fr 1fr 1fr 10%;
  align-items: center;
}
#contact .contact-tools h5:nth-child(1) {
  grid-column: 2/3;
}
#contact .contact-tools h5 {
  font-weight: 400;
  font-size: 3rem;
  margin-bottom: 30px;
}
#contact .contact-map {
  height: auto;
  width: 100%;
  display: grid;
  grid-template-columns: 10% 1fr 10%;
  text-align: left;
}
#contact .contact-map a {
  grid-column: 2/3;
}
#contact .contact-map a iframe {
  width: 100%;
  height: 60vh;
}

@media screen and (max-width: 1580px) {
  html #project .container2 {
    grid-template-columns: 5% 1fr 1fr 1fr 5%;
  }
}
@media screen and (max-width: 1380px) {
  html #project .container2 {
    grid-template-columns: 1% 1fr 1fr 1fr 1%;
  }
}
@media screen and (max-width: 1280px) {
  html #project .container2 {
    grid-template-columns: 30% 1fr 30%;
    grid-template-rows: 1fr 1fr 1fr;
  }
  html #project .container2 .card1 {
    grid-row: 1/2;
    grid-column: 2/3;
    margin-bottom: 30px;
  }
  html #project .container2 .card2 {
    grid-row: 2/3;
    grid-column: 2/3;
    margin-bottom: 30px;
  }
  html #project .container2 .card3 {
    grid-row: 3/4;
    grid-column: 2/3;
  }
}
@media screen and (max-width: 1180px) {
  html .navBar div:nth-child(1) ul li a {
    font-size: 5rem;
  }
}
@media screen and (max-width: 1080px) {
  html {
    font-size: 50%;
  }
  html #services .container3 {
    grid-template-columns: 5% 1fr 1fr 5%;
  }
  html #a-propos .container {
    grid-template-columns: 1fr 1fr;
  }
  html #a-propos .container div:nth-child(1) {
    grid-column: 1/2;
    margin-left: 20px;
    margin-right: 20px;
  }
  html #a-propos .container div:nth-child(2) {
    grid-column: 2/3;
    margin-right: 20px;
  }
  html #contact .contact-tools {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
  html #contact .contact-tools h5:nth-child(1) {
    grid-column: 1/2;
  }
}
@media screen and (max-width: 980px) {
  html .navBar div:nth-child(1) ul li a {
    font-size: 5rem;
  }
  html .navBar div:nth-child(2) h5 {
    font-size: 1rem;
  }
  html .navBar div:nth-child(3) h5 {
    font-size: 1rem;
  }
  html .navBar div:nth-child(3) a {
    font-size: 1rem;
  }
  html #project .container2 {
    grid-template-columns: 20% 1fr 20%;
  }
}
@media screen and (max-width: 880px) {
  html .navBar div:nth-child(1) ul li a {
    font-size: 4rem;
  }
  html header .topBar nav .toggle-container span {
    display: none;
  }
  html header .topBar nav a {
    display: none;
  }
}
@media screen and (max-width: 780px) {
  html header #acceuil div h2 {
    font-size: 8rem;
  }
  html header #acceuil div p {
    font-size: 4rem;
  }
  html header #acceuil div a {
    font-size: 2rem;
    margin: 0px;
  }
  html #services .container3 {
    grid-template-columns: 15% 1fr 15%;
    grid-template-rows: 1fr 1fr;
  }
  html #services .container3 div:nth-child(1) {
    grid-row: 2/3;
    grid-column: 2/3;
  }
  html #services .container3 div:nth-child(2) {
    grid-row: 1/2;
    grid-column: 2/3;
  }
  html #project .container2 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 680px) {
  html .navBar div:nth-child(1) ul li a {
    font-size: 3.5rem;
  }
  html #project .container2 {
    grid-template-columns: 10% 1fr 10%;
  }
}
@media screen and (max-width: 580px) {
  html .navBar {
    width: 150%;
  }
  html #services .container3 {
    grid-template-columns: 1% 1fr 1%;
  }
  html footer div:nth-child(1) h5 {
    font-size: 1.5rem;
  }
  html footer div:nth-child(2) h5 {
    font-size: 1.5rem;
  }
  html footer div:nth-child(2) a {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  html header .navBar {
    width: 100%;
  }
  html header #acceuil div h2 {
    font-size: 10rem;
  }
  html #a-propos .container {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }
  html #a-propos .container div:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/2;
    margin: 0px 10px 0px 10px;
  }
  html #a-propos .container div:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/3;
    margin: 0px 10px 0px 10px;
  }
  html #project .container2 {
    grid-template-columns: 5% 1fr 5%;
  }
}
@media screen and (max-width: 380px) {
  html #project .container2 {
    grid-template-columns: 1% 1fr 1%;
  }
  html #project .container2 .card1,
html #project .container2 .card2,
html #project .container2 .card3 {
    margin: 20px 0;
  }
  html footer div:nth-child(1) h5 {
    font-size: 1rem;
  }
  html footer div:nth-child(2) h5 {
    font-size: 1rem;
  }
  html footer div:nth-child(2) a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1380px) {
  html .navBar div:nth-child(1) ul li a {
    font-size: 5.5rem;
  }
  html #acceuil2 .container4 {
    grid-template-columns: 5% repeat(2, 1fr) 5%;
    grid-template-rows: repeat(5, 1fr) 150px;
  }
  html #acceuil2 .container4 .text-container {
    grid-row: 1/2;
    grid-column: 2/4;
  }
  html #acceuil2 .container4 .text-image-container1 {
    grid-row: 2/3;
    grid-column: 2/3;
  }
  html #acceuil2 .container4 .text-image-container2 {
    grid-row: 2/3;
    grid-column: 3/4;
  }
  html #acceuil2 .container4 .text-image-container3 {
    grid-row: 3/4;
    grid-column: 2/3;
  }
  html #acceuil2 .container4 .text-image-container4 {
    grid-row: 3/4;
    grid-column: 3/4;
  }
  html #acceuil2 .container4 .text-image-container5 {
    grid-row: 4/5;
    grid-column: 2/3;
  }
  html #acceuil2 .container4 .text-image-container6 {
    grid-row: 4/5;
    grid-column: 3/4;
  }
  html #acceuil2 .container4 .text-image-container7 {
    grid-row: 5/6;
    grid-column: 2/3;
  }
  html #acceuil2 .container4 .last-text-container {
    grid-row: 6/7;
    grid-column: 2/4;
  }
}
@media screen and (max-width: 1180px) {
  html .navBar div:nth-child(1) ul li a {
    font-size: 5rem;
  }
}
@media screen and (max-width: 980px) {
  html .navBar div:nth-child(1) ul li a {
    font-size: 5rem;
  }
  html .navBar div:nth-child(2) h5 {
    font-size: 1rem;
  }
  html .navBar div:nth-child(3) h5 {
    font-size: 1rem;
  }
  html .navBar div:nth-child(3) a {
    font-size: 1rem;
  }
  html #acceuil2 .container4 {
    grid-template-columns: 20% repeat(1, 1fr) 20%;
    grid-template-rows: repeat(8, 1fr) 150px;
  }
  html #acceuil2 .container4 .text-container {
    grid-row: 1/2;
    grid-column: 2/3;
  }
  html #acceuil2 .container4 .text-image-container1 {
    grid-row: 2/3;
    grid-column: 2/3;
  }
  html #acceuil2 .container4 .text-image-container2 {
    grid-row: 3/4;
    grid-column: 2/3;
  }
  html #acceuil2 .container4 .text-image-container3 {
    grid-row: 4/5;
    grid-column: 2/3;
  }
  html #acceuil2 .container4 .text-image-container4 {
    grid-row: 5/6;
    grid-column: 2/3;
  }
  html #acceuil2 .container4 .text-image-container5 {
    grid-row: 6/7;
    grid-column: 2/3;
  }
  html #acceuil2 .container4 .text-image-container6 {
    grid-row: 7/8;
    grid-column: 2/3;
  }
  html #acceuil2 .container4 .text-image-container7 {
    grid-row: 8/9;
    grid-column: 2/3;
  }
  html #acceuil2 .container4 .last-text-container {
    grid-row: 9/10;
    grid-column: 2/3;
  }
}
@media screen and (max-width: 880px) {
  html .topBar nav div span {
    display: none;
  }
  html .topBar nav a {
    display: none;
  }
  html .navBar div:nth-child(1) ul li a {
    font-size: 4rem;
  }
  html #landing-page h3 {
    font-size: 14rem;
  }
  html #acceuil2 .container4 {
    grid-template-columns: 15% repeat(1, 1fr) 15%;
  }
}
@media screen and (max-width: 780px) {
  html .topBar nav div span {
    display: none;
  }
}
@media screen and (max-width: 680px) {
  html .navBar div:nth-child(1) ul li a {
    font-size: 3.5rem;
  }
  html #acceuil2 .container4 {
    grid-template-columns: 10% repeat(1, 1fr) 10%;
  }
}
@media screen and (max-width: 580px) {
  html .navBar {
    width: 50%;
  }
  html #landing-page h3 {
    font-size: 12rem;
    left: 12%;
  }
}
@media screen and (max-width: 480px) {
  html .navBar {
    width: 100%;
  }
  html .topBar ul li a {
    font-size: 3.5rem;
  }
  html #landing-page h3 {
    font-size: 10rem;
  }
  html #acceuil2 .container4 {
    grid-template-columns: 5% repeat(1, 1fr) 5%;
  }
}
@media screen and (max-width: 380px) {
  html #acceuil2 .container4 {
    grid-template-columns: 1% repeat(1, 1fr) 1%;
  }
}
.topBar {
  width: 100%;
  height: auto;
  position: relative;
  position: fixed;
  top: 0;
  transition: top 0.5s;
  z-index: 3;
  background: white;
}
.topBar .backgroundTopBar {
  height: 100%;
  width: 100%;
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 1;
  transition: top 0.3s;
}
.topBar nav {
  height: auto;
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.topBar nav svg {
  height: 100px;
  width: 100px;
  z-index: 2;
}
.topBar nav svg .lastColored {
  fill: #1693A5;
}
.topBar nav svg .colored {
  fill: black;
}
.topBar nav div {
  position: relative;
  display: flex;
  width: 50px;
  cursor: pointer;
  z-index: 3;
}
.topBar nav div .toggle {
  overflow: hidden;
}
.topBar nav div .toggle .line {
  width: 50px;
  height: 2px;
  background: black;
  position: absolute;
}
.topBar nav div .toggle .line1 {
  top: 45%;
  left: 400%;
  transition: transform 0.6s ease-in-out;
}
.topBar nav div .toggle .line1::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: -400%;
  background: black;
  z-index: 1;
}
.topBar nav div .toggle .line2 {
  top: 55%;
  left: 300%;
  transition: transform 0.3s ease-in-out;
}
.topBar nav div .toggle .line2::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: -300%;
  background: black;
  z-index: 1;
}
.topBar nav div:hover .line1 {
  transform: translateX(-400%);
}
.topBar nav div:hover .line2 {
  transform: translateX(-300%);
}
.topBar nav div span {
  position: absolute;
  top: 0;
  left: 100%;
  font-size: 3rem;
  height: 100px;
  display: grid;
  place-items: center;
  padding: 0px 5px;
  color: #1693A5;
  transition: font-size 0.3s ease;
}
.topBar nav div:hover span {
  font-size: 3.5rem;
}
.topBar nav a {
  height: 100%;
  margin: auto 0px;
  z-index: 1;
}
.topBar nav a span {
  font-size: 3rem;
  color: black;
}
.topBar nav a span i {
  color: #1693A5;
  transition: transform 0.3s ease;
}
.topBar nav a span:hover i {
  transform: translateY(-30%);
}

#landing-page {
  height: 100vh;
  width: 100%;
  background: url(./IMG/Second-try-png.png);
  background-size: cover;
  position: relative;
}
#landing-page h3 {
  font-size: 18rem;
  position: absolute;
  top: 20%;
  left: 17%;
  color: white;
}

.landing-page {
  height: 60vh;
  width: 100%;
  background: url(./IMG/Second-try-png.png);
  background-size: cover;
  position: relative;
}
.landing-page h3 {
  font-size: 12rem;
  position: absolute;
  top: 10%;
  left: 14%;
  color: white;
}

#acceuil2 {
  min-height: 100vh;
}
#acceuil2 .container4 {
  display: grid;
  height: auto;
  margin-top: 50px;
  grid-template-columns: 5% 1fr 1fr 1fr 5%;
  grid-template-rows: 1fr 1fr 1fr 150px;
}
#acceuil2 .container4 .text-container {
  grid-row: 1/2;
  grid-column: 2/4;
  display: grid;
  place-items: center;
  margin: 10px;
}
#acceuil2 .container4 .text-container h4 {
  width: 100%;
}
#acceuil2 .container4 .text-container p i {
  color: #1693A5;
}
#acceuil2 .container4 .text-image-container1 {
  height: 400px;
  grid-row: 1/2;
  grid-column: 4/5;
  position: relative;
  margin: 10px;
}
#acceuil2 .container4 .text-image-container1 .Image-container1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#acceuil2 .container4 .text-image-container1 .Image-container1 img {
  width: 100%;
  height: 100%;
}
#acceuil2 .container4 .text-image-container1 .Image-container1-2 {
  background: black;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
#acceuil2 .container4 .text-image-container1 .Image-container1-2 img {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}
#acceuil2 .container4 .text-image-container1 .Image-container1-2:hover {
  opacity: 1;
}
#acceuil2 .container4 .text-image-container1 .text-container1 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  pointer-events: none;
}
#acceuil2 .container4 .text-image-container1 .text-container1 h1 {
  transform: translateY(50%);
  transition: all 0.3s ease-in-out;
}
#acceuil2 .container4 .text-image-container1 .text-container1 p {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
#acceuil2 .container4 .text-image-container1:hover .text-container1 h1 {
  transform: translate(0);
}
#acceuil2 .container4 .text-image-container1:hover .text-container1 p {
  opacity: 1;
}
#acceuil2 .container4 .text-image-container2 {
  height: 400px;
  grid-row: 2/3;
  grid-column: 2/3;
  position: relative;
  margin: 10px;
}
#acceuil2 .container4 .text-image-container2 .Image-container2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#acceuil2 .container4 .text-image-container2 .Image-container2 img {
  width: 100%;
  height: 100%;
}
#acceuil2 .container4 .text-image-container2 .Image-container2-2 {
  background: black;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
#acceuil2 .container4 .text-image-container2 .Image-container2-2 img {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}
#acceuil2 .container4 .text-image-container2 .Image-container2-2:hover {
  opacity: 1;
}
#acceuil2 .container4 .text-image-container2 .text-container2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  pointer-events: none;
}
#acceuil2 .container4 .text-image-container2 .text-container2 h1 {
  transform: translateY(50%);
  transition: all 0.3s ease-in-out;
}
#acceuil2 .container4 .text-image-container2 .text-container2 p {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
#acceuil2 .container4 .text-image-container2:hover .text-container2 h1 {
  transform: translate(0);
}
#acceuil2 .container4 .text-image-container2:hover .text-container2 p {
  opacity: 1;
}
#acceuil2 .container4 .text-image-container3 {
  height: 400px;
  grid-row: 2/3;
  grid-column: 3/4;
  margin: 10px;
  position: relative;
}
#acceuil2 .container4 .text-image-container3 .Image-container3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#acceuil2 .container4 .text-image-container3 .Image-container3 img {
  width: 100%;
  height: 100%;
}
#acceuil2 .container4 .text-image-container3 .Image-container3-2 {
  background: black;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}
#acceuil2 .container4 .text-image-container3 .Image-container3-2 img {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}
#acceuil2 .container4 .text-image-container3 .Image-container3-2:hover {
  opacity: 1;
}
#acceuil2 .container4 .text-image-container3 .text-container3 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  pointer-events: none;
}
#acceuil2 .container4 .text-image-container3 .text-container3 h1 {
  transform: translateY(50%);
  transition: all 0.3s ease-in-out;
}
#acceuil2 .container4 .text-image-container3 .text-container3 p {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
#acceuil2 .container4 .text-image-container3:hover .text-container3 h1 {
  transform: translate(0);
}
#acceuil2 .container4 .text-image-container3:hover .text-container3 p {
  opacity: 1;
}
#acceuil2 .container4 .text-image-container4 {
  height: 400px;
  grid-row: 2/3;
  grid-column: 4/5;
  margin: 10px;
  position: relative;
}
#acceuil2 .container4 .text-image-container4 .Image-container4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#acceuil2 .container4 .text-image-container4 .Image-container4 img {
  width: 100%;
  height: 100%;
}
#acceuil2 .container4 .text-image-container4 .Image-container4-2 {
  background: black;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
#acceuil2 .container4 .text-image-container4 .Image-container4-2 img {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}
#acceuil2 .container4 .text-image-container4 .Image-container4-2:hover {
  opacity: 1;
}
#acceuil2 .container4 .text-image-container4 .text-container4 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  pointer-events: none;
}
#acceuil2 .container4 .text-image-container4 .text-container4 h1 {
  transform: translateY(50%);
  transition: all 0.3s ease-in-out;
}
#acceuil2 .container4 .text-image-container4 .text-container4 p {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
#acceuil2 .container4 .text-image-container4:hover .text-container4 h1 {
  transform: translate(0);
}
#acceuil2 .container4 .text-image-container4:hover .text-container4 p {
  opacity: 1;
}
#acceuil2 .container4 .text-image-container5 {
  height: 400px;
  grid-row: 3/4;
  grid-column: 2/3;
  margin: 10px;
  position: relative;
}
#acceuil2 .container4 .text-image-container5 .Image-container5 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#acceuil2 .container4 .text-image-container5 .Image-container5 img {
  width: 100%;
  height: 100%;
}
#acceuil2 .container4 .text-image-container5 .Image-container5-2 {
  background: black;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
#acceuil2 .container4 .text-image-container5 .Image-container5-2 img {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}
#acceuil2 .container4 .text-image-container5 .Image-container5-2:hover {
  opacity: 1;
}
#acceuil2 .container4 .text-image-container5 .text-container5 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  pointer-events: none;
}
#acceuil2 .container4 .text-image-container5 .text-container5 h1 {
  transform: translateY(50%);
  transition: all 0.3s ease-in-out;
}
#acceuil2 .container4 .text-image-container5 .text-container5 p {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
#acceuil2 .container4 .text-image-container5:hover .text-container5 h1 {
  transform: translate(0);
}
#acceuil2 .container4 .text-image-container5:hover .text-container5 p {
  opacity: 1;
}
#acceuil2 .container4 .text-image-container6 {
  height: 400px;
  grid-row: 3/4;
  grid-column: 3/4;
  margin: 10px;
  position: relative;
}
#acceuil2 .container4 .text-image-container6 .Image-container6 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#acceuil2 .container4 .text-image-container6 .Image-container6 img {
  width: 100%;
  height: 100%;
}
#acceuil2 .container4 .text-image-container6 .Image-container6-2 {
  background: black;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
#acceuil2 .container4 .text-image-container6 .Image-container6-2 img {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}
#acceuil2 .container4 .text-image-container6 .Image-container6-2:hover {
  opacity: 1;
}
#acceuil2 .container4 .text-image-container6 .text-container6 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  pointer-events: none;
}
#acceuil2 .container4 .text-image-container6 .text-container6 h1 {
  transform: translateY(50%);
  transition: all 0.3s ease-in-out;
}
#acceuil2 .container4 .text-image-container6 .text-container6 p {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
#acceuil2 .container4 .text-image-container6:hover .text-container6 h1 {
  transform: translate(0);
}
#acceuil2 .container4 .text-image-container6:hover .text-container6 p {
  opacity: 1;
}
#acceuil2 .container4 .text-image-container7 {
  height: 400px;
  grid-row: 3/4;
  grid-column: 4/5;
  margin: 10px;
  position: relative;
}
#acceuil2 .container4 .text-image-container7 .Image-container7 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#acceuil2 .container4 .text-image-container7 .Image-container7 img {
  width: 100%;
  height: 100%;
}
#acceuil2 .container4 .text-image-container7 .Image-container7-2 {
  background: black;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
#acceuil2 .container4 .text-image-container7 .Image-container7-2 img {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}
#acceuil2 .container4 .text-image-container7 .Image-container7-2:hover {
  opacity: 1;
}
#acceuil2 .container4 .text-image-container7 .text-container7 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  pointer-events: none;
}
#acceuil2 .container4 .text-image-container7 .text-container7 h1 {
  transform: translateY(50%);
  transition: all 0.3s ease-in-out;
}
#acceuil2 .container4 .text-image-container7 .text-container7 p {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
#acceuil2 .container4 .text-image-container7:hover .text-container7 h1 {
  transform: translate(0);
}
#acceuil2 .container4 .text-image-container7:hover .text-container7 p {
  opacity: 1;
}
#acceuil2 .container4 .last-text-container {
  grid-row: 4/5;
  grid-column: 2/5;
}
#acceuil2 .container4 .last-text-container h4 {
  width: 100%;
  text-align: center;
  font-size: 2.5rem;
}
#acceuil2 .container4 .last-text-container h4::before {
  content: open-quote;
  font-size: 6rem;
  color: #1693A5;
}
#acceuil2 .container4 .last-text-container h4::after {
  content: close-quote;
  font-size: 6rem;
  color: #1693A5;
}

#contact2 {
  min-height: 70vh;
}
#contact2 .container5 {
  height: auto;
  margin-top: 200px;
  width: 100%;
  display: grid;
  grid-template-columns: 10% 1fr 1fr 10%;
}
#contact2 .container5 div:nth-child(1) {
  grid-column: 2/3;
  width: 100%;
}
#contact2 .container5 div:nth-child(1) form {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
#contact2 .container5 div:nth-child(1) form h1 {
  width: 80%;
  margin: 0px auto;
}
#contact2 .container5 div:nth-child(1) form .input-container {
  width: 80%;
  margin: 0 auto;
  height: 100px;
  position: relative;
  font-size: 4rem;
  overflow: hidden;
}
#contact2 .container5 div:nth-child(1) form .input-container input {
  width: 100%;
  height: 100%;
  font-size: 2rem;
  border: none;
  padding-top: 100px;
  outline: none;
}
#contact2 .container5 div:nth-child(1) form .input-container input:focus + .email-container span, #contact2 .container5 div:nth-child(1) form .input-container input:valid + .email-container span {
  transform: translateY(-100%);
  font-size: 3rem;
  color: #1693A5;
}
#contact2 .container5 div:nth-child(1) form .input-container input:focus + .email-container::after, #contact2 .container5 div:nth-child(1) form .input-container input:valid + .email-container::after {
  transform: translateX(0%);
}
#contact2 .container5 div:nth-child(1) form .input-container .email-container {
  position: absolute;
  bottom: 0px;
  left: 0%;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-bottom: 1px solid black;
}
#contact2 .container5 div:nth-child(1) form .input-container .email-container::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-bottom: 3px solid #1693A5;
  z-index: 1;
  left: 0;
  bottom: -1px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
#contact2 .container5 div:nth-child(1) form .input-container .email-container span {
  position: absolute;
  bottom: 5px;
  left: 0;
  transition: all 0.3s ease;
  font-size: 3rem;
}
#contact2 .container5 div:nth-child(1) form .input-container-2 {
  width: 80%;
  margin: 0 auto;
  height: 100px;
  position: relative;
  font-size: 4rem;
  overflow: hidden;
}
#contact2 .container5 div:nth-child(1) form .input-container-2 input {
  width: 100%;
  height: 100%;
  font-size: 2rem;
  border: none;
  padding-top: 100px;
  outline: none;
}
#contact2 .container5 div:nth-child(1) form .input-container-2 input:focus + .text-container span, #contact2 .container5 div:nth-child(1) form .input-container-2 input:valid + .text-container span {
  transform: translateY(-100%);
  font-size: 3rem;
  color: #1693A5;
}
#contact2 .container5 div:nth-child(1) form .input-container-2 input:focus + .text-container::after, #contact2 .container5 div:nth-child(1) form .input-container-2 input:valid + .text-container::after {
  transform: translateX(0%);
}
#contact2 .container5 div:nth-child(1) form .input-container-2 .text-container {
  position: absolute;
  bottom: 0px;
  left: 0%;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-bottom: 1px solid black;
}
#contact2 .container5 div:nth-child(1) form .input-container-2 .text-container::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-bottom: 3px solid #1693A5;
  z-index: 1;
  left: 0;
  bottom: -1px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
#contact2 .container5 div:nth-child(1) form .input-container-2 .text-container span {
  position: absolute;
  bottom: 5px;
  left: 0;
  transition: all 0.3s ease;
  font-size: 3rem;
}
#contact2 .container5 div:nth-child(1) form .button-container-3 {
  width: 80%;
  height: 50px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 30px;
  margin: 30px auto;
}
#contact2 .container5 div:nth-child(1) form .button-container-3 button {
  background: none;
  border: solid 2px #1693A5;
  color: #1693A5;
  font-size: 3rem;
  font-weight: 600;
  padding: 5px 10px 5px 10px;
  transition: all 0.7s;
}
#contact2 .container5 div:nth-child(1) form .button-container-3 button:hover {
  background: #1693A5;
  color: white;
}
#contact2 .container5 div:nth-child(2) {
  grid-column: 3/4;
  height: auto;
  width: 100%;
}
#contact2 .container5 div:nth-child(2) a iframe {
  width: 100%;
  height: 60vh;
  min-height: 50vh;
}

@media screen and (max-width: 1580px) {
  html #contact2 .container5 {
    margin-top: 100px;
    grid-template-columns: 10% 1fr 10%;
    grid-template-rows: repeat(2, 1fr);
  }
  html #contact2 .container5 div:nth-child(1) {
    grid-row: 1/2;
    grid-column: 2/3;
  }
  html #contact2 .container5 div:nth-child(2) {
    grid-row: 2/3;
    grid-column: 2/3;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 680px) {
  html #contact2 .container5 {
    grid-template-columns: 5% 1fr 5%;
  }
}
@media screen and (max-width: 580px) {
  html #contact2 .container5 {
    grid-template-columns: 1% 1fr 1%;
  }
  html #contact2 .container5 div:nth-child(1) form h1 {
    width: 100%;
    text-align: center;
  }
}
footer {
  min-height: 12vh;
  display: grid;
  grid-template-rows: 50px 50px;
  background: black;
  padding-top: 20px;
}
footer div:nth-child(1) {
  grid-row: 1/2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 80%;
  margin: auto;
  border-bottom: 1px solid white;
  padding-bottom: 15px;
}
footer div:nth-child(1) h5:nth-child(1) {
  grid-column: 1/2;
}
footer div:nth-child(1) h5 {
  font-size: 2rem;
  text-align: center;
  color: rgba(235, 238, 239, 0.5);
}
footer div:nth-child(1) h5:hover {
  color: white;
}
footer div:nth-child(2) {
  grid-row: 2/3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 10px;
}
footer div:nth-child(2) a {
  grid-column: 1/2;
}
footer div:nth-child(2) h5 {
  grid-column: 2/3;
  font-size: 2rem;
  text-align: center;
  color: white;
}
footer div:nth-child(2) a {
  grid-column: 3/4;
  font-size: 2rem;
  text-align: center;
}

.navBar {
  min-height: 100vh;
  position: relative;
  position: fixed;
  top: 0%;
  left: 100%;
  display: grid;
  grid-template-rows: 150px 1fr 50px 50px;
  width: 40%;
  z-index: 1;
  transition: left 1s ease;
}
.navBar::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #1693A5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.9;
}
.navBar div:nth-child(1) {
  grid-row: 2/3;
  height: auto;
  width: 100%;
}
.navBar div:nth-child(1) ul {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.navBar div:nth-child(1) ul li {
  line-height: 15vh;
}
.navBar div:nth-child(1) ul li a {
  font-size: 6rem;
  transition: 0.3s ease;
}
.navBar div:nth-child(1) ul li a:hover {
  color: black;
}
.navBar div:nth-child(2) {
  grid-row: 3/4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 80%;
  margin: auto;
  border-bottom: 1px solid white;
  padding-bottom: 15px;
}
.navBar div:nth-child(2) h5:nth-child(1) {
  grid-column: 1/2;
}
.navBar div:nth-child(2) h5 {
  font-size: 1.5rem;
  text-align: center;
  color: rgba(235, 238, 239, 0.5);
}
.navBar div:nth-child(2) h5:hover {
  color: white;
}
.navBar div:nth-child(3) {
  grid-row: 4/5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 10px;
}
.navBar div:nth-child(3) h5 {
  grid-column: 2/3;
  font-size: 1.5rem;
  text-align: center;
  color: white;
}
.navBar div:nth-child(3) a {
  grid-column: 3/4;
  font-size: 1.5rem;
  text-align: center;
}/*# sourceMappingURL=style.css.map */