*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}
#section1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}
#section1 h2 {
  color: #fff;
  font-family: "Readex Pro", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
#section1 p {
  color: #fff;
  font-family: "Readex Pro", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.patern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 45px;
  border-radius: 45px;
  background-size: cover;
  background-position: center;
  width: 80%;
}
.patern h2{
  text-align: center;
}
#vert {
  background-image: url(../assets/fond-vert.png);
}
#bleu {
  background-image: url(../assets/fond-bleu.png);
}

#section2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
  gap: 40px;
}
.tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 30px;
  background: #050a07;
  width: 35%;
  padding: 20px;
}
.tile img {
  width: 60%;
  border-radius: 10px;
}
.tile h3 {
  color: #fff;
  font-family: "Readex Pro", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.tile p {
  color: #fff;
  text-align: justify;
  font-family: "Readex Pro", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 800px) {
  .patern {
    flex-direction: column;
  }
  #section2{
    flex-direction: column;
  }
  .tile{
    width: 70%;
  }
}