@font-face {
  font-family: bodyFont;
  src: url(../../fonts/Cocomat\ Light-trial.ttf);
}

@font-face {
  font-family: agenceFont;
  src: url(../../fonts/RigSolid-BoldHalftone.ttf);
}

* {
  font-family: "Roboto", sans-serif;
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: bodyFont;
}

/* HEADER PART */
.header {
  height: 80px;
  position: fixed;
  z-index: 3;
  width: 100%;
  box-shadow: 1px 1px 4px 0 rgb(0, 0, 0);
  background-color: #fff;
}

.main-menu {
  height: 100%;
  width: 80%;
  margin: auto;
}

.nav-logo {
  height: 70px;
}

.top-nav {
  height: 100%;
}

.nav-bar {
  display: flex;
  flex-direction: row;
  width: auto;
  height: 100%;
  align-content: center;
  justify-content: space-between;
  align-items: center;
}

.nav-menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.burger {
  display: none;
  cursor: pointer;
  padding-top: 20px;
}

.bar {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: #000;
}

.menu-item a {
  text-decoration: none;
  color: #000;
  font-family: bodyFont;
  font-size: 20px;
  font-weight: 500;
  height: auto;
  padding: 23px 15px;
  transition: 0.2s;
}

.menu-item a:hover {
  border-bottom: 5px #fff222 solid;
  transform: translateY(-5px);
}

/* PRESENTATION PART */
.introduction {
  margin-bottom: 50px;
}

.bg-intro {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 600px;
  z-index: 1;
  filter: contrast(42%);
}

.intro-container {
  width: 80%;
  margin: auto;
}

.page-moto {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 600px;
  opacity: 1;
  font-weight: bolder;
  z-index: 2;
}

.intro-title {
  font-family: agenceFont;
  font-weight: bolder;
  font-size: 70px;
  font-weight: bolder;
  z-index: 2;
  color: #fff222;
}

/* SERVICES PART */
.services-container {
  width: 96%;
  margin: auto;
}

.services-title h2 {
  font-family: agenceFont;
  text-align: center;
  font-weight: 800;
  font-size: 2.5em;
}

.hr-title {
  width: 80px;
  margin: auto;
  border: 3px solid #fff222;
}

.services-row1 {
  margin: 40px 0 40px 0;
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
}

#services {
  margin: 80px 0;
}

/* CARD */
figure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 331px;
  height: 500px;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}

figure:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

figure:hover h3 {
  opacity: 0;
}

figure:hover img {
  transform: scale(1.25);
}

figure:hover figcaption {
  bottom: 0;
}

figure h3 {
  position: absolute;
  top: 37%;
  left: 20px;
  margin: 0;
  padding: 0;
  color: #000;
  font-size: 45px;
  font-weight: bold;
  line-height: 1;
  z-index: 2;
  text-align: center;
}

figure img {
  height: 100%;
  transition: 0.25s;
  filter: contrast(30%);
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

figure figcaption {
  position: absolute;
  bottom: -62%;
  left: 0;
  height: 50%;
  margin: 0;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.85);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  color: white;
  line-height: 1;
  transition: 0.25s;
}

figure figcaption p {
  text-align: center;
  font-size: 14px;
  line-height: 1.75;
  padding-top: 23%;
}

/* FIN CARD */
/* PROJETS PART */
#projets {
  padding: 80px 0;
  background-color: #4b4b4b;
}

.projets-container {
  display: flex;
  flex-direction: column;
}

.projets-title {
  text-align: center;
}

.projets-title h2 {
  font-family: agenceFont;
  text-align: center;
  font-weight: 800;
  font-size: 2.5em;
  color: #fff;
}

.projets-list {
  display: flex;
  flex-direction: row;
  padding-top: 40px;
  margin-bottom: 50px;
}

.projets-row1 {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin: auto;
  gap: 30px;
}

.card {
  width: 60%;
  height: 300px;
  background: #fff;
  box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  overflow: hidden;
  position: relative;
}

.card img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  transition: all 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.card .descriptions {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 100%;
  transition: all 0.7s ease-in-out;
  padding: 20px;
  box-sizing: border-box;
  -webkit-clip-path: circle(0% at 100% 100%);
  clip-path: circle(0% at 100% 100%);
}

.card h1 {
  color: #000;
  letter-spacing: 1px;
  margin: 0px;
}

.card p {
  line-height: 24px;
  height: 70%;
}

.card button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  cursor: pointer;
  border-style: none;
  background-color: #fff222;
  color: #000;
  font-size: 15px;
  outline: none;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease-in-out;
}

.card button a {
  text-decoration: none;
  color: #000;
}

.card button:hover {
  transform: scale(0.95) translateX(-5px);
  transition: all 0.5s ease-in-out;
}

.card:hover .descriptions {
  left: 0px;
  transition: all 0.7s ease-in-out;
  -webkit-clip-path: circle(75%);
  clip-path: circle(75%);
}

.card:hover img {
  transition: all 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  transform: scale(1.6) rotate(20deg);
  filter: blur(3px);
}

/* TEAM PART */
#equipe {
  padding: 80px 0;
}

.equipe-container {
  width: 80%;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.equipe-title h2 {
  font-family: agenceFont;
  text-align: center;
  font-weight: 800;
  font-size: 2.5em;
}

.equipe-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 30px;
}

/*  Card Test Perso */
.card-perso {
  width: 350px;
  display: inline-block;
}

.card-perso .card-people {
  position: relative;
  overflow: hidden;
  width: 268px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

.card-perso .card-people .content {
  z-index: 2;
  position: relative;
}

.card-perso .card-people .content p {
  font-size: 15px;
  line-height: 24px;
  color: #fff222;
  font-family: bodyFont;
  font-weight: bold;
}

.card-perso .card-people .content p span {
  font-family: agenceFont;
  color: #fff222;
  font-weight: bold;
  font-size: 30px;
}

.card-perso .card-people .content .image img {
  height: 150px;
  border-radius: 90px;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}

.card-perso .card-people .content .details {
  margin-top: 15px;
}

.card-perso .card-people .content .details h2 {
  font-size: 19px;
  font-weight: bolder;
  color: #000;
}

.card-perso .card-people .content .details h2 span {
  color: #000;
  font-size: 15px;
  position: relative;
}

/* CONTACT PART */
#contact {
  background-color: #fff222;
}

.contact-container {
  width: 80%;
  margin: auto;
  padding: 100px 15px;
}

.contact-form {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 40px 10px;
  border-radius: 15px;
  box-shadow: 0px 10px 50px -10px #d6d6d6;
  box-sizing: border-box;
  font-family: bodyFont;
  background-color: #fff;
}

.contact-title {
  text-align: center;
  margin-bottom: 50px;
}

.contact-title h2 {
  font-size: 1em;
}

.contact-title h3 {
  font-size: 2em;
}

.formulaire {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 600px;
}

.formulaire input,
.formulaire select {
  width: 47%;
  margin: 10px 0;
  padding: 10px;
  box-sizing: border-box;
  border: none;
  outline: none;
  border-bottom: 2px solid #e4e4ec;
  transition: 0.2s;
}

.formulaire input:hover,
.formulaire select:hover {
  border-bottom: 2px solid #fff222;
}

.formulaire textarea {
  margin: 10px 0;
  padding: 10px;
  box-sizing: border-box;
  border: none;
  outline: none;
  border-bottom: 2px solid #e4e4ec;
  transition: 0.2s;
  width: 100%;
  margin-bottom: 35px;
  height: 100px;
  resize: none;
}

.formulaire textarea:hover {
  border-bottom: 2px solid #fff222;
}

.button-form {
  width: 192px;
  height: 50px;
  border-radius: 8px;
  border: none;
  background-color: #fff222;
  color: #000;
  font-weight: bold;
  font-size: 1.2em;
  cursor: pointer;
  outline: none;
  font-family: bodyFont;
  margin: 0 auto;
  transition: 0.2s;
}

.button-form:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 40px 0px #d6d6d6;
}

.alert-error {
  background-color: rgba(255, 0, 0, 0.53);
  color: #000;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 2px 1px rgba(0, 0, 0, 0.4392156863);
}

.alert-success {
  background-color: rgb(29, 124, 0);
  color: #000;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 2px 1px rgba(0, 0, 0, 0.4392156863);
}

/* FOOTER PART */
.footer-container {
  width: 80%;
  height: 40px;
  margin: auto;
  border-top: #000 3px solid;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 15px;
}

.link-footer {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.link-footer a {
  text-decoration: none;
  color: #000;
}

.social-footer {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.social-footer a {
  color: #000;
}

.copyright {
  text-align: center;
  padding-top: 15px;
  margin-bottom: 20px;
}

.mentionsDiv {
  padding-top: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  margin: auto;
}

@media (max-width: 912px) {
  .burger {
    display: block;
  }

  .burger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .burger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    gap: 0;
    flex-direction: column;
    background-color: #202020;
    width: 100%;
    text-align: center;
    transition: 0.3s;
  }

  .nav-item {
    margin: 16px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .menu-item {
    height: 70px;
  }

  .menu-item a {
    font-size: 30px;
    color: #fff222;
  }

  .page-moto .intro-title {
    text-align: center;
    font-size: 50px;
  }

  .intro-text {
    width: 90%;
  }

  #services {
    margin: 0;
  }

  #services .services-container {
    width: 100%;
  }

  #services .services-row1 {
    flex-direction: column;
    flex-wrap: wrap;
  }

  #services .services-row1 .image-block {
    width: 100%;
    border-radius: inherit;
  }

  #services .services-row1 .image-block h3 {
    top: inherit;
    left: inherit;
  }

  #services .services-row1 .image-block img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  #services .services-row1 .image-block figcaption p {
    font-size: 17px;
    padding-top: 50px;
  }

  .projets-row1 {
    flex-direction: column;
    align-items: center;
  }

  .projets-row1 .card {
    width: 85%;
  }

  .equipe-list {
    gap: 20px;
  }

  .contact-container {
    width: inherit;
    padding: 100px 0;
  }

  .contact-container .contact-form {
    width: inherit;
    border-radius: inherit;
  }
}

@media (max-width: 425px) {
  .introduction {
    padding-top: 30px;
  }

  .bg-intro {
    height: 635px;
  }

  .page-moto .intro-title {
    font-size: 40px;
  }

  #services .services-row1 .image-block figcaption p {
    font-size: 14px;
    padding-top: 25px;
  }

  #services .services-row1 .image-block h3 {
    text-align: center;
  }

  .equipe-list {
    flex-direction: column;
  }

  .card-perso {
    width: 310px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    height: inherit;
    gap: 20px;
    margin-bottom: 20px;
  }

  .footer-container .link-footer {
    flex-direction: column;
    align-items: center;
  }
}

/*# sourceMappingURL=style.css.map */