body {
  font-family: "Roboto", sans-serif;
  color: #a4a4a4;
  background-color: #000000;
}
body .card {
  opacity: 85%;
}
body .card:hover {
  opacity: 100%;
  transition: 0.3s ease-in-out;
}

header .acceuil-premier-plan {
  background-image: url("../img/bg.jpg");
  background-repeat: none;
  background-position: center;
  background-size: cover;
  height: 94vh;
}
header .acceuil-premier-plan .nom {
  text-align: center;
  padding-top: 70px;
}
@media screen and (min-width: 768px) {
  header .acceuil-premier-plan .nom {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1200px) {
  header .acceuil-premier-plan .nom {
    font-size: 1.8rem;
  }
}
header .acceuil-premier-plan .nom p:nth-of-type(2) {
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 1.75rem;
  color: rgba(164, 164, 164, 0);
  animation: nom 1s 0.5s ease-in-out forwards;
}
@media screen and (min-width: 768px) {
  header .acceuil-premier-plan .nom p:nth-of-type(2) {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  header .acceuil-premier-plan .nom p:nth-of-type(2) {
    font-size: 2.3rem;
  }
}
@keyframes nom {
  0% {
    color: rgba(164, 164, 164, 0);
  }
  100% {
    color: #0b980b;
  }
}
header .acceuil-premier-plan .nom p:nth-of-type(3) {
  font-size: 20px;
  padding-bottom: 70px;
}
@media screen and (min-width: 768px) {
  header .acceuil-premier-plan .nom p:nth-of-type(3) {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1200px) {
  header .acceuil-premier-plan .nom p:nth-of-type(3) {
    font-size: 1.8rem;
  }
}
header .acceuil-premier-plan .acceuil-slogan {
  text-align: center;
  margin-left: 20px;
  margin-right: 20px;
  font-size: 1.75rem;
  scale: 0;
  animation: slogan 3s 1.5s ease-in forwards;
}
@media screen and (min-width: 768px) {
  header .acceuil-premier-plan .acceuil-slogan {
    margin-left: 80px;
    margin-right: 80px;
    font-size: 1.9rem;
  }
}
@media screen and (min-width: 1200px) {
  header .acceuil-premier-plan .acceuil-slogan {
    margin-left: 150px;
    margin-right: 150px;
    font-size: 2.3rem;
  }
}
@keyframes slogan {
  0% {
    color: #063306;
    scale: 0;
  }
  50% {
    color: #a4a4a4;
    scale: 1;
  }
  70% {
    rotate: -3eg;
    color: #a4a4a4;
    scale: 1;
  }
  80% {
    rotate: 3deg;
    scale: 1;
  }
  90% {
    rotate: -3deg;
    scale: 1;
  }
  100% {
    rotate: 0deg;
    scale: 1;
  }
}
header .btn {
  display: flex;
  justify-content: center;
  margin-left: 10px;
  margin-right: 10px;
}
header .btn a {
  min-width: 200px;
  text-decoration: none;
  margin-top: 150px;
  background-color: #0b980b;
  border: 4px #063306 solid;
  border-radius: 8px;
  color: #fff;
  padding: 8px;
  animation: bouton 0.3s 4.5s ease-in-out infinite alternate;
  transition: background-color 0.3s ease-in-out;
}
@keyframes bouton {
  0% {
    rotate: 1deg;
  }
  100% {
    rotate: -1deg;
  }
}
header .btn a:hover {
  background-color: rgb(6, 51, 6);
}
header .video video {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  header .video video {
    height: 50vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (min-width: 768px) {
  main .presentation {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 10px;
    margin-left: 40px;
    margin-right: 40px;
  }
}
main .presentation .image-profil {
  width: 200px;
  height: 200px;
  margin: 60px auto 40px auto;
}
@media screen and (min-width: 768px) {
  main .presentation .image-profil {
    width: 250px;
    height: 250px;
  }
}
main .presentation .image-profil img {
  border-radius: 50%;
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  filter: grayscale(100%);
  transition: filter 0.2s ease-in-out;
}
main .presentation .image-profil img:hover {
  filter: grayscale(0%);
}
main .presentation .presentation-texte {
  text-align: center;
  margin: 40px 30px 30px 30px;
}
@media screen and (min-width: 768px) {
  main .presentation .presentation-texte {
    text-align: left;
  }
}
main .presentation .presentation-texte h2 {
  font-size: 2rem;
}
@media screen and (min-width: 1200px) {
  main .presentation .presentation-texte h2 {
    font-size: 2.2rem;
  }
}
main .presentation .presentation-texte p {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  main .presentation .presentation-texte p {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 1200px) {
  main .presentation .presentation-texte p {
    font-size: 1.2rem;
  }
}
main .formation {
  margin-top: 60px;
}
main .formation h2 {
  text-align: center;
  font-size: 2rem;
}
@media screen and (min-width: 1200px) {
  main .formation h2 {
    font-size: 2.2rem;
  }
}
main .formation .formations-blocs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  place-items: center;
  min-width: 320px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  main .formation .formations-blocs {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1200px) {
  main .formation .formations-blocs {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
main .formation .formations-blocs .formations-bloc1,
main .formation .formations-blocs .formations-bloc2,
main .formation .formations-blocs .formations-bloc3,
main .formation .formations-blocs .formations-bloc4 {
  border: 3px #063306 solid;
  border-radius: 5px;
  padding: 5px;
  width: 90%;
}
main .competences {
  margin-top: 80px;
}
main .competences h2 {
  text-align: center;
  font-size: 2rem;
}
@media screen and (min-width: 1200px) {
  main .competences h2 {
    font-size: 2.2rem;
  }
}
main .competences .img-competences {
  margin-left: 40px;
  margin-right: 40px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  place-items: center;
  row-gap: 30px;
}
@media screen and (min-width: 768px) {
  main .competences .img-competences {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
}
main .competences img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px #0b980b solid;
  transition: scale 0.2s ease-in-out;
}
main .competences img:hover {
  scale: 1.2;
}
main .competences img:nth-of-type(4) {
  background-color: #0b980b;
}
main .competences img:nth-of-type(6) {
  background-color: #0b980b;
}
main .projets {
  margin-top: 80px;
}
main .projets h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}
@media screen and (min-width: 1200px) {
  main .projets h2 {
    font-size: 2.2rem;
  }
}
main .projets .projets-bloc1 {
  margin-top: 40px;
}
main .detail-projet {
  margin: 30px 20px 30px 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  main .detail-projet {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 15px;
    width: 90%;
    margin: 0 auto;
    align-items: center;
    text-align: left;
  }
}
main .detail-projet h2 {
  font-size: 2rem;
}
@media screen and (min-width: 1200px) {
  main .detail-projet h2 {
    font-size: 2.2rem;
  }
}
main .detail-projet p {
  margin-top: 40px;
}
@media screen and (min-width: 1200px) {
  main .detail-projet p {
    font-size: 1.2rem;
  }
}
main .formulaire-reception {
  display: none;
  text-align: center;
  color: #0b980b;
}
main .formulaire {
  display: none;
  background-color: #222;
  padding: 10px;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 700px;
}
main .formulaire div {
  display: grid;
  margin-bottom: 10px;
  margin-left: 15px;
  margin-right: 15px;
}
main .formulaire a {
  background-color: #0b980b;
  border: 2px #063306 solid;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  text-decoration: none;
}

.footer .text-footer {
  margin-top: 60px;
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  .footer .text-footer p {
    font-size: 1.2rem;
  }
}
.footer .footer-icon {
  display: flex;
  gap: 20px;
  margin-left: 20px;
  margin-right: 20px;
}
.footer .footer-icon img {
  width: 30px;
  height: 30px;
  transition: scale 0.2s ease-in-out;
}
.footer .footer-icon img:hover {
  scale: 1.1;
}/*# sourceMappingURL=style.css.map */