/*............................RAZ.........................*/
* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

/*....................HEADER.............................*/
body {
  background-color: #F5D3D4;
  width: 100%;
}

.mainHeader {
  width: 100%;
  height: 250px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #57304F;
}
.mainHeader > #logo {
  width: 400px;
}
.mainHeader > #logo > a {
  width: 400px;
}
.mainHeader > #logo > a > img {
  width: 200px;
  height: 200px;
}
.mainHeader > nav {
  width: 800px;
  text-align: center;
}
.mainHeader > nav > ul {
  width: 800px;
  list-style-type: none;
  display: flex;
  justify-content: space-evenly;
}
.mainHeader > nav > ul > li {
  width: 200px;
  height: 200px;
  border-radius: 100px;
  background-color: #57304F;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mainHeader > nav > ul > li > a {
  width: 100%;
  text-decoration: none;
  font-size: 2.5rem;
  color: #F5D3D4;
}

/*....................SECTION.............................*/
main {
  width: 100%;
}
main > #presentation {
  width: 100%;
}
main > #presentation > #bienvenue {
  width: 80%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
main > #presentation > #bienvenue > img {
  width: 750px;
  height: 500px;
  display: flex;
  margin: 0 auto;
  position: relative;
}
main > #presentation > #bienvenue h1 {
  width: 400px;
  font-size: 1rem;
  position: absolute;
  text-align: center;
  margin-top: 150px;
  margin-left: 550px;
  color: #F5D3D4;
}
main > #presentation > #bienvenue p {
  width: 350px;
  font-size: 1rem;
  position: absolute;
  text-align: center;
  margin-top: 200px;
  margin-left: 570px;
  color: #F5D3D4;
}
main > #presentation > aside {
  width: 100%;
}
main > #presentation > aside > fieldset {
  width: 80%;
  margin: 30px auto;
  border-radius: 5px;
  box-shadow: 20px 20px 20px;
}
main > #presentation > aside > fieldset:nth-child(2) legend, main > #presentation > aside > fieldset:nth-child(4) legend {
  margin-left: 75%;
}
main > #presentation > aside > fieldset > legend {
  width: 350px;
  color: #F5D3D4;
  background-color: #385a64;
  font-size: 1.8rem;
  padding: 5px 5px 5px 5px;
  margin-left: 20px;
  display: flex;
  justify-content: center;
}
main > #presentation > aside > fieldset > #reponse1,
main > #presentation > aside > fieldset #reponse2,
main > #presentation > aside > fieldset #reponse3,
main > #presentation > aside > fieldset #reponse4 {
  width: 1500px;
  background-color: #F5D3D4;
  color: #57304F;
  font-size: 1.6rem;
  padding: 10px;
}
main > #presentation > aside > fieldset > #reponse1 span,
main > #presentation > aside > fieldset #reponse2 span,
main > #presentation > aside > fieldset #reponse3 span,
main > #presentation > aside > fieldset #reponse4 span {
  font-weight: bold;
  font-size: 2rem;
}
main > #mesProjets {
  width: 100%;
}
main > #mesProjets > article {
  width: 100%;
}
main > #mesProjets > article > .containerCards {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-top: 150px;
}
main > #mesProjets > article > .containerCards > .card {
  width: 400px;
  background-color: #57304F;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 25px;
  margin-bottom: 50px;
  position: relative;
}
main > #mesProjets > article > .containerCards > .card > img {
  width: 400px;
  height: 200px;
}
main > #mesProjets > article > .containerCards > .card > h1 {
  margin: 10px auto;
  color: #F5D3D4;
  font-size: 2.2rem;
}
main > #mesProjets > article > .containerCards > .card > h2 {
  margin-top: 10px;
  color: #F5D3D4;
  font-size: 2rem;
  text-align: center;
}
main > #mesProjets > article > .containerCards > .card > p {
  width: 398px;
  height: 90px;
  margin-top: 10px;
  background-color: #F5D3D4;
  color: #57304F;
  font-size: 1.5rem;
  text-align: center;
  border-left: 1px solid #57304F;
  border-right: 1px solid #57304F;
}
main > #mesProjets > article > .containerCards > .card > a {
  width: 250px;
  margin: 15px auto;
  border-radius: 10px;
  border: 1px solid black;
  text-align: center;
  font-size: 1.5rem;
  text-decoration: none;
  background-color: #F5D3D4;
  color: #57304F;
}
main > #onglet {
  width: 400px;
  height: 50px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
main > #onglet > a {
  width: 50%;
  color: #5f256f;
  text-align: center;
}
main > #formation {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
main > #formation h2, main > #formation li, main > #formation p {
  color: #F5D3D4;
}
main > #formation > #etudesEtDiplomes {
  width: 30%;
  height: 200px;
  border: 5px solid white;
  display: flex;
  border-radius: 50%;
  flex-direction: column;
  margin-top: 25px;
  margin-left: 25px;
  background-color: #57304F;
  text-align: center;
  justify-content: center;
}
main > #formation > #etudesEtDiplomes > ul {
  width: 100%;
  list-style-type: none;
}
main > #formation > #etudesEtDiplomes > ul > li {
  width: 100%;
  list-style-type: none;
}
main > #formation > .carousel {
  position: relative;
  width: 25%;
  height: 200px;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  margin-top: 25px;
}
main > #formation > .carousel > .carouselItem {
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  justify-content: flex-end;
}
main > #formation > .carousel > .carouselItem > img {
  width: 150px;
  height: 150px;
}
main > #formation > .carousel > .carouselItem.active {
  opacity: 1;
}
main > #formation > #Expro {
  width: 30%;
  height: 200px;
  border: 5px solid white;
  display: flex;
  border-radius: 50%;
  flex-direction: column;
  margin-top: 25px;
  margin-left: 25px;
  background-color: #57304F;
  text-align: center;
  justify-content: center;
}
main > #formation > div:first-child {
  align-self: flex-start;
}
main > #formation > div:nth-child(2) {
  align-self: flex-end;
}
main > #formation > div:last-child {
  align-self: flex-start;
}
main > #contact {
  width: 100%;
}
main > #contact > #titreFormulaire {
  width: 100%;
  text-align: center;
  margin-top: 50px;
  color: #57304F;
}
main > #contact > #formulaire {
  max-width: 1000px;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 50px auto;
  background-color: #57304F;
  border-radius: 10px 10px 10px 10px;
}
main > #contact > #formulaire > #boite {
  width: 50%;
  display: flex;
  flex-direction: column;
}
main > #contact > #formulaire > #boite > #infosContact {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main > #contact > #formulaire > #boite > #infosContact > h2 {
  color: #F5D3D4;
  margin-top: 10px;
}
main > #contact > #formulaire > #boite > #infosContact > p {
  margin-top: 20px;
  color: #F5D3D4;
}
main > #contact > #formulaire > #boite > form {
  width: 500px;
  display: flex;
  flex-direction: column;
  margin-top: 25px;
}
main > #contact > #formulaire > #boite > form > .champ {
  width: 250px;
  margin-left: 39px;
  margin-top: 30px;
  color: #14183d;
}
main > #contact > #formulaire > #boite > form > .champ > label {
  color: #F5D3D4;
}
main > #contact > #formulaire > #boite > form > .champ > input {
  border: 0;
  height: 25px;
  border-radius: 50px;
  padding-left: 10px;
  margin-top: 10px;
}
main > #contact > #formulaire > #boite > form > .champ > textarea {
  width: 400px;
  height: 300px;
  resize: none;
  border-radius: 50px;
  text-align: center;
  margin-top: 10px;
}
main > #contact > #formulaire > #boite > form > .formu {
  width: 100px;
  height: 50px;
  cursor: pointer;
  display: flex;
  margin: 25px auto;
  justify-content: center;
  align-items: center;
  color: #57304F;
  font-size: 1.3rem;
  background-color: #f5d3d4;
  border: 0;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0 0 10px 3px #5f256f;
}
main > #contact > #formulaire > #boite > form > .formu:hover {
  display: block;
  height: 50px;
  transform: scale(1.5, 1.5);
  cursor: pointer;
  text-align: center;
  line-height: 50px;
}
main > #contact > #formulaire > #boite > form > #identity {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-bottom: 10px;
}
main > #contact > #formulaire > #boite > form > #identity > .champ > label {
  color: #F5D3D4;
}
main > #contact > #formulaire > #boite > form > #identity > .champ > input {
  border: 0;
  width: 150px;
  height: 25px;
  border-radius: 50px;
  padding-left: 10px;
  margin-top: 10px;
}
main > #contact > #formulaire > #reseauxSociaux {
  width: 50%;
  border: 1px solid black;
}
main > #contact > #formulaire > #reseauxSociaux > #fondImg {
  position: relative;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background-color: #F5D3D4;
  left: 25px;
  top: 180px;
}
main > #contact > #formulaire > #reseauxSociaux > #fondImg > .rezo {
  width: 400px;
  height: 250px;
  display: flex;
  margin: 0 auto;
  padding-top: 15%;
}
main > #contact > #formulaire > #reseauxSociaux > #logosSocial {
  position: absolute;
  top: 80%;
  left: 61%;
  transform: translate(-50%, -50%);
}
main > #contact > #formulaire > #reseauxSociaux > #logosSocial > .mediaLogo {
  position: absolute;
  transform-origin: bottom center;
  animation: orbit 10s linear infinite;
}
main > #contact > #formulaire > #reseauxSociaux > #logosSocial > .mediaLogo > img {
  width: 90px;
  height: 90px;
}
@keyframes orbit {
  from {
    transform: rotate(0deg) translateY(225px);
  }
  to {
    transform: rotate(360deg) translateY(225px) rotate(-360deg);
  }
}
main > #contact > #formulaire > #reseauxSociaux > #logosSocial .mediaLogo:nth-child(2) {
  animation-delay: 1s;
}
main > #contact > #formulaire > #reseauxSociaux > #logosSocial .mediaLogo:nth-child(3) {
  animation-delay: 2s;
}
main > #contact > #formulaire > #reseauxSociaux > #logosSocial .mediaLogo:nth-child(4) {
  animation-delay: 3s;
}
main > #contact > #formulaire > #reseauxSociaux > #logosSocial .mediaLogo:nth-child(5) {
  animation-delay: 4s;
}
main > #contact > #formulaire > #reseauxSociaux > #logosSocial .mediaLogo:nth-child(6) {
  animation-delay: 5s;
}
main > #contact > #formulaire > #reseauxSociaux > #logosSocial .mediaLogo:nth-child(7) {
  animation-delay: 6s;
}

/*....................FOOTER.............................*/
footer {
  width: 100%;
  text-align: center;
  margin-top: 50px;
  border-top: solid 1px grey;
}

/*....................MEDIA.QUERIES.............................*/
@media only screen and (min-width: 320px) and (max-width: 600px) and (orientation: portrait) {
  .mainHeaderRes1 {
    max-width: 600px;
    width: 100%;
    display: flex;
    margin-left: 50%;
    margin-top: 25px;
    border: none;
  }
  /*....................SECTION.............................*/
  main {
    max-width: 600px;
    width: 100%;
    border: 1px solid black;
  }
  main > #presentation {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */