@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500&display=swap");
@keyframes fade {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
:root {
  --black: #000000;
  --white: #ffffff;
  --red: #E71706;
  --grey-light: #EBEBEB;
  --grey-medium: #e0e0e0;
  --green: #008080;
  --grey-dark: #898888;
  --height-header: 55px;
  --height-hero: calc(100vh - 55px);
  --width-w-padding: calc(100vw - 10vw);
  --font-xs: 12px;
  --font-s: 14px;
  --font-sm: 16px;
  --font-m: 18px;
  --font-l: 32px;
  --font-xl: 42px;
  --font-xxl: 60px;
}

html, body {
  position: relative;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--black);
  color: var(--black);
  transition: background-color 1s;
  font-family: Poppins, sans-serif;
  font-size: var(--font-s);
  font-weight: 300;
}
body main {
  width: 100vw;
  height: 100vh;
}
body main h1 {
  font-size: var(--font-xl);
  font-weight: 300;
}
body main a {
  text-decoration: none;
  outline: none;
}
body main div::selection, body main h1::selection, body main h2::selection, body main p::selection, body main a::selection, body main ul::selection, body main span::selection, body main img::selection {
  background: var(--red);
}
body main #hero {
  height: var(--height-hero);
  width: 100vw;
  opacity: 1;
  z-index: 2;
}
body main #hero header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  height: var(--height-header);
  width: var(--width-w-padding);
  padding: 0 5vw;
  background-color: var(--black);
  color: var(--white);
  border-bottom: 1px solid white;
  z-index: 2;
}
body main #hero header .logo {
  opacity: 0;
}
body main #hero header .logo img {
  width: 120px;
  margin-top: 36px;
  z-index: 3;
}
body main #hero header nav {
  cursor: default;
}
body main #hero header nav a {
  color: var(--white);
  margin-right: 80px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.1s, border 0.3s;
}
body main #hero header nav a:last-of-type {
  margin-right: 0;
}
body main #hero header nav a:hover {
  color: var(--grey-dark);
  border-bottom: 2px solid var(--red);
}
body main #hero .hero-image {
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  background: var(--black);
  display: flex;
  flex-direction: column;
  padding-left: 5vw;
  opacity: 1;
}
@media (max-width: 1150px) {
  body main #hero .hero-image {
    padding-left: 2vw;
  }
}
body main #hero .hero-image .catchline {
  position: relative;
  font-size: 48px;
  color: var(--white);
  margin-top: 100px;
}
@media (max-width: 1150px) {
  body main #hero .hero-image .catchline {
    align-self: center;
    text-align: center;
  }
}
body main #hero .hero-image .underline {
  width: 315px;
  height: 7px;
  margin-top: 15px;
  margin-right: 80px;
  background-color: var(--red);
}
body main #hero .hero-image .catchline, body main #hero .hero-image .underline {
  opacity: 0;
}
body main div.ma {
  display: block;
  background-image: url("/src/img/machine_laser_2.jpg");
  background-repeat: no-repeat;
  background-position: bottom center;
  width: 90vw;
  height: 550px;
  margin: 0 auto 0 auto;
  z-index: 2;
  opacity: 0;
  filter: grayscale(0);
}
body main #info .info-card {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 130px 5vw 0 5vw;
}
@media (max-width: 1150px) {
  body main #info .info-card {
    padding: 130px 2vw 0 2vw;
  }
}
body main #info .info-card:last-of-type {
  justify-content: flex-end;
  padding: 110px 5vw 60px 5vw;
}
@media (max-width: 1150px) {
  body main #info .info-card:last-of-type {
    padding: 110px 2vw 60px 2vw;
  }
}
body main #info .info-card .info-image {
  max-width: 680px;
  margin-right: 75px;
}
body main #info .info-card .info-image img {
  opacity: 1;
  max-width: 560px;
  border: 2px solid var(--grey-light);
  transition: transform 0.5s, border 0.3s;
  cursor: pointer;
  filter: grayscale(1);
}
body main #info .info-card .info-image:last-of-type {
  max-width: 560px;
  margin-right: 0px;
  margin-left: 75px;
}
body main #info .info-card .info-image:last-of-type img {
  max-width: 560px;
}
body main #info .info-card .info-text {
  font-size: var(--font-m);
}
body main #info .info-card .info-text a.click {
  color: var(--grey-dark);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-bottom 0.2s;
}
body main #info .info-card .info-text a.click:hover {
  color: var(--red);
  border-bottom: 2px solid var(--red);
}
body main #services {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 5vw 40px 5vw;
}
@media (max-width: 1150px) {
  body main #services {
    padding: 40px 2vw 40px 2vw;
  }
}
body main #services .services-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 250px;
}
@media (max-width: 1150px) {
  body main #services .services-content {
    width: 225px;
  }
}
body main #services .services-content h1 {
  border-bottom: 4px solid var(--black);
  padding-top: 20px;
}
body main #services .services-content ul {
  margin: 0 0 0 0;
  padding: 0;
  list-style-type: none;
  width: 250px;
  background: var(--grey-light);
  background: linear-gradient(var(--grey-light), var(--white));
}
@media (max-width: 1150px) {
  body main #services .services-content ul {
    width: 225px;
  }
}
body main #services .services-content ul li {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  width: 200px;
  padding-left: 20px;
  list-style: none;
  list-style-type: none;
  font-size: var(--font-m);
  line-height: 2.5;
  transition: transform 0.3s;
}
body main #services .services-content ul li::selection {
  background: transparent;
}
body main #services .services-content ul p {
  display: none;
  opacity: 0;
  margin: 10px 10px 10px 10px;
  transition: opacity 0.5s;
}
body main #services .services-content ul p.on {
  display: flex;
  opacity: 1;
}
body main #realisation {
  display: block;
  padding: 60px 5vw 30px 5vw;
}
@media (max-width: 1150px) {
  body main #realisation {
    padding: 60px 2vw 30px 2vw;
  }
}
body main #realisation h1 {
  display: inline-block;
  border-bottom: 4px solid var(--black);
}
body main #realisation .real-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  overflow: hidden;
}
body main #realisation .real-container h1.number {
  display: none;
  font-size: var(--font-xxl);
  border-bottom: none;
  margin-top: 50px;
  transition: color 0.3s;
}
body main #realisation .real-container p {
  transition: color 0.3s;
}
body main #realisation .real-container .real-card {
  height: 320px;
}
body main #realisation .real-container .real-card img {
  height: 320px;
  margin-right: 30px;
  transition: transform 0.5s ease-in-out;
  filter: grayscale(1);
}
body main #realisation .real-container .real-card img:hover {
  transform: scale(1.1);
  filter: grayscale(0);
}
body main #realisation .real-container .real-card img.last {
  margin-right: 0px;
}
body main #realisation .real-container .text {
  display: none;
}
body main #realisation .real-container .text p {
  font-size: var(--font-sm);
  line-height: 1;
}
body main #realisation .real-container .text p span.bold {
  font-weight: 500;
}
body main #realisation .real2 {
  margin-top: 50px;
}
body main #realisation a.click {
  display: none;
  margin-top: 30px;
  font-size: var(--font-m);
  color: var(--grey-dark);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-bottom 0.2s;
}
body main #realisation a.click:hover {
  color: var(--red);
  border-bottom: 2px solid var(--red);
}
body main .arrow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: -8vh 5vw 0 5vw;
}
@media (max-width: 1150px) {
  body main .arrow {
    margin: -8vh 2vw 0 2vw;
  }
}
body main .arrow h1 {
  color: var(--black);
  cursor: pointer;
  transition: color 0.5s;
}
body main .arrow h1:hover {
  color: var(--red);
}
body main .arrow h1::selection {
  background: transparent;
}
body main #contact {
  padding: 60px 5vw 80px 5vw;
  background: linear-gradient(var(--white) 60%, var(--grey-medium));
}
@media (max-width: 1150px) {
  body main #contact {
    padding: 60px 2vw 80px 2vw;
  }
}
body main #contact h1 {
  display: inline-block;
  border-bottom: 4px solid var(--red);
}
body main #contact .contact-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 400px;
}
body main #contact .contact-container .detail {
  display: flex;
  flex-direction: row;
}
body main #contact .contact-container .detail.detail-email {
  align-self: flex-start;
}
body main #contact .contact-container .detail.detail-adresse {
  align-self: center;
}
body main #contact .contact-container .detail.detail-tel {
  align-self: flex-end;
}
body main #contact .contact-container .detail .line-vertical {
  width: 4px;
  height: 100%;
  background-color: var(--red);
}
body main #contact .contact-container .detail p {
  margin: 0;
  padding: 0;
  font-size: var(--font-sm);
  line-height: 2;
}
body main #contact .contact-container .detail p span {
  font-weight: 600;
  transition: 0.2s color;
}
body main #contact .contact-container .detail p.space {
  margin-left: 25px;
}
body main #contact .contact-container .detail p a {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: default;
  text-decoration: none;
  color: var(--black);
}
body main #contact .contact-container .detail p a p, body main #contact .contact-container .detail p a svg {
  cursor: pointer;
  transition: color 0.2s;
}
body main #contact .contact-container .detail p a svg {
  margin-left: 10px;
}
body main #contact .contact-container .detail p a svg path {
  fill: var(--black);
}
body main #contact .contact-container .detail p a p:hover {
  color: var(--red);
}
body main #contact .contact-container .detail p a svg:hover path {
  fill: var(--red);
}
body main footer {
  background-color: var(--black);
  color: var(--white);
}
body main footer a {
  color: var(--white);
  transition: color 0.2s;
}
body main footer a:hover {
  color: var(--grey-dark);
}
body main footer h2 {
  font-size: var(--font-m);
  font-weight: 500;
}
body main footer p {
  font-size: var(--font-xs);
  line-height: 1.7;
}
body main footer .main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 70px 5vw 50px 5vw;
}
@media (max-width: 1150px) {
  body main footer .main {
    padding: 70px 2vw 50px 2vw;
  }
}
body main footer .main .social a {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  cursor: default;
  text-decoration: none;
}
body main footer .main .social a:hover {
  color: var(--white);
}
body main footer .main .social a p, body main footer .main .social a svg {
  cursor: pointer;
  transition: color 0.2s, opacity 0.2s;
}
body main footer .main .social a p:hover {
  color: var(--grey-dark);
}
body main footer .main .social a svg:hover {
  opacity: 0.4;
}
body main footer .copyright {
  text-align: center;
  font-size: var(--font-xs);
  background: #0F0F12;
  color: var(--grey-dark);
  padding: 10px 0px;
}
body main footer .copyright a {
  color: var(--grey-dark);
}
body main footer .copyright a:hover {
  color: var(--white);
}

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