html{
  background-color: #000000;
  z-index: 2;
}
html,body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  max-width: 100%;
}
.hamburger {
  display: none;
  font-size: 15vh;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 1vh;
  z-index: 11;
  color: #ffffff;
  text-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(0, 247, 255, 0.9),
    0 0 40px rgba(0, 251, 255, 0.7);
  animation: flame 0.4s ease-in-out infinite alternate, flicker 0.08s infinite;
}
#matrix-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: block;
}
#matrix-header {
  position: relative;
  height: 25vh;
  overflow: visible;
  background:transparent;
}
#matrix-bg {
  position: fixed;
  top: -20%;
  left: 0;
  width: 100%;
  height: 130%;
  display: block;
  z-index: 0;
  pointer-events: none;
}
.menu {
  display: flex;             
  justify-content: center;
  gap: 5vw;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 2%;
  z-index: 1;
  background-color: transparent;
}
.menu li {
  font-family: 'matrix';
  color: #00ffee;
  font-size: clamp(1vh, 2vw, 4vh);
  letter-spacing: 2px;
  padding: 1vh 2vh;
  border-radius: 622px; 
  height: 3%;
  list-style: none;
  display: flex;
  z-index: 11;
  border: 5px solid #0af20a;
  box-shadow: 0 0 20px #43f243, 0 0 80px #04f204;
  background-color: #000000;
}
.menu li a {
  font-family: 'matrix';
  color: #00ffee;
}
.menu li:hover {
  animation: flame 0.4s ease-in-out infinite alternate, flicker 0.08s infinite;
  color: #ffffff;
  text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
  border-color: #ffffff;
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(0, 247, 255, 0.9),
    0 0 40px rgba(0, 251, 255, 0.7);
}
.menu > li {
  position: relative;
  cursor: pointer;
}
.submenu {
  position: absolute;
  top: 104%;
  left: 0;
  border-radius: 55px;
  padding: 10px 0;
  min-width: 200px;
  display: none;
  background-color: transparent;
  z-index: 999;
}
.submenu li a {
  display: block;
  color: white;
  padding: 10px 20px;
  text-decoration: none; 
  z-index: 999; 
}
.submenu li a:hover {
  color: rgb(243, 236, 236);
    text-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(255, 0, 34, 0.9),
    0 0 40px rgba(255, 0, 21, 0.7);
  transition: all 0.4s ease-in-out;
}
.menu > li:hover .submenu {
  display: block;
}
@keyframes flame {
  0% {
    text-shadow:
      0 0 10px #00bfff,
      0 0 20px #00bfff,
      0 0 40px #00ffff,
      0 0 60px #1ecfff;
  }
  100% {
    text-shadow:
      0 0 20px #00bfff,
      0 0 40px #00ffff,
      0 0 80px #80ffff,
      0 0 150px #b0ffff;
  }
}
/* FLICKER RAPIDE */
@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
  }
  20%, 22%, 24%, 55% {
    opacity: 0.6;
  }
}
.hero {
  height: 15vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  text-align: center;
  max-width: 100%;
  margin-top: 5%;
}
.shield1,.shield2{
  animation: flame 3s ease-in-out infinite alternate, flicker 0.08s infinite;
  z-index: 9;
  margin-bottom: 10%;
}
@font-face {
  font-family: 'matrix';
  src: url('./Matrix-MZ4P.ttf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
.main-title {
  position: absolute;
  font-family: 'matrix', cursive;
  font-size: clamp(6vh, 14vw, 14vh);
  color: #ffffff;
  text-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(0, 247, 255, 0.9),
    0 0 40px rgba(0, 251, 255, 0.7);
  animation: flame 0.4s ease-in-out infinite alternate, flicker 0.08s infinite;
  top: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;  
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  white-space: normal;
}


@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideInY {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideInY_bas_to_haut {
    100% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.container{
  display: flex;
  max-width: 100%;
  max-height:100%;
  margin-top: 10%; 
  background-color: transparent;
}
.left{
  width: 50%;
  height: 100%;
  overflow: visible;
  background-color: #000000;
  z-index: 2;
}
.left_container{
  width: 100%;
  height: 100%;
  overflow: visible;  
  font-size: clamp(2vh, 3vw, 3vh);
  color: #ffffff;
  font-family: 'matrix', cursive;
  text-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(0, 247, 255, 0.9),
    0 0 40px rgba(0, 251, 255, 0.7);
  background-color: #000000;
  text-align: center;
  border: 4px solid #036603;
  animation: slideInX 3s ease-out forwards;
  transform: translateX(-100%);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}
.left_container.animate{
  transform: translateX(0);
}
.cyber_corp{
  width: 100%;
  height:100%;
}
.cyber_corp img{
  width: 100%;
  height:100%;
}
.right {
  width: 50%;       
  height: 100%;
  display: flex;
  flex-direction:column; 
  z-index: 1;
}
.picture_containera{
  z-index: 100;
}
.picture_containera.animate{
  transform: translateY(50%);
  animation:slideInY .5s ease-out forwards;
}
.picture_containera video  {
  width: 100%;
  height: 100%;
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(0, 247, 255, 0.9),
    0 0 40px rgba(0, 251, 255, 0.7);
}
.picture_containerb video  {
  width: 100%;
  height: 100%;
  color: #f5f5f5;
  border-color: #ffffff;
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(255, 0, 0, 0.9),
    0 0 40px rgba(255, 0, 0, 0.9);
  margin-top: 3%;
}
.picture_containerb{
  transform: translateY(50%);
}
.picture_containerb.animate{
  animation:slideInY_bas_to_haut .9s ease-out forwards;
}
.container2{
  display: flex;
  max-width: 100%;
  height: 100%;
  margin-top: 3%; 
  background-color: transparent;
}
.left2{
  width: 50%;
  height: 100%;
  overflow: visible;
  background-color: #000000;
  z-index: 2;
}
.left_container2{
  width: 100%;
  height: 100%;
  overflow: visible;
  font-family: 'matrix', cursive;
  font-size: clamp(2vh, 3vw, 3vh);
  color: #ffffff;
  text-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(0, 247, 255, 0.9),
    0 0 40px rgba(0, 251, 255, 0.7);
  background-color: #000000;
  text-align: center;
  line-height: .85;
  border: 4px solid #036603;
}
.right2 {
  width: 50%;       
  height: 100%;
  display: flex;
  flex-direction: row; 
  z-index: 1; 
}
.picture_container2a{
  z-index: 100;
}
.picture_container2a img  {
  width: 157%;
  height: 80%;
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(0, 247, 255, 0.9),
    0 0 40px rgba(0, 251, 255, 0.7);
}
.picture_container2b video {
  width: 130%;
  height: 70%;
  margin-bottom: 7%;
  margin-top: 15vh;
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(255, 0, 0, 0.9),
    0 0 40px rgba(255, 0, 0, 0.9);
}
.container3,.container4{
  display: flex;
  max-width: 100%;
  height: 100%;
  margin-top: 0vh; 
  background-color: transparent;
}
.left3,.left4{
  width: 50%;
  height: 100%;
  overflow: visible;
  background-color: #000000;
  z-index: 12;
}
.left_container3,.left_container4{
  width: 100%;
  height: 100%;
  overflow: visible;
  font-family: 'matrix', cursive;
  font-size: clamp(2vh, 3vw, 3vh);
  color: #ffffff;
  text-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(0, 247, 255, 0.9),
    0 0 40px rgba(0, 251, 255, 0.7);
  background-color: #000000;
  text-align: center;
  line-height: .85;
  border: 4px solid #036603;
}
.right3,.right4 {
  width: 50%;       
  height: 100%;
  display: flex;
  flex-direction: row; 
  z-index: 1; 
}
.picture_container3a,.picture_container4a{
  z-index: 100;
}
.picture_container3a img,.picture_container4a img  {
  width: 140%;
  height: 80%;
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(0, 247, 255, 0.9),
    0 0 40px rgba(0, 251, 255, 0.7);
}
.picture_container3b video,.picture_container4b video {
  width: 100%;
  height: 70%;
  margin-bottom: 7%;
  margin-top: 15vh;
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(0, 247, 255, 0.9),
    0 0 40px rgba(0, 251, 255, 0.7);
}
.left_container,.left_container2,.left_container3,.left_container4{
  color: #ffffff;
  text-shadow: 0 0 10px #1dcceb, 0 0 20px #1dcceb;
  border-color: #ffffff;
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(0, 247, 255, 0.9),
    0 0 40px rgba(0, 251, 255, 0.7);
}
.contact_2 p ,.form-group label {
  font-family: 'matrix', cursive;
  display: block;
  font-size: clamp(2vh, 7vh, 7vh);
  font-weight: bold;
  background-clip: text;
  transition: all 0.4s ease-in-out;
  text-align: center;
  animation: flame 0.4s ease-in-out infinite alternate, flicker 0.08s infinite;
  color: #ffffff;
  margin-top: 6%;
}
.contact_2 {
  background-color:transparent;
  background-repeat: no-repeat;
  background-size:contain;
  background-position: center center;
  text-align: center;
  padding-bottom: 5vh;
  display: flex;
  flex-direction: column;
  align-items: center; 
}
.contact_2 p{
  font-size: clamp(4vh, 11vh, 11vh);
}
.form-group {
  width: 40%;
  display: grid;
  place-items: center ;
  margin-bottom: 2vh;
  background-color:rgb(13, 13, 13) ;
  border-radius: 5vh;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  z-index: 999;
}
.form-group,.contact_2 form input,.contact_2 form textarea,.form-group:hover {
  box-shadow: 0 0 15vh#43f243, 0 0 10vh #43f243, 0 0 15vh #43f243;
}
.contact_2 form{
  width: 90%;
}
.contact_2 form input{ 
  border-radius: 1vh;
  width: 98%;   
  font-size: 3vh;
  color: #24db36;
  font-family: "matrix", serif;
  background-color: transparent;
  box-shadow: 0 0 10px #036603, 0 0 20px #036603, 0 0 30px #036603;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.contact_2 form input,.contact_2 form textarea:hover {
  animation: flame 0.4s ease-in-out infinite alternate, flicker 0.08s infinite;
}
.form-group{
  color: #ffffff;
  text-shadow: 0 0 10px #1dcceb, 0 0 20px #1dcceb;
  border-color: #ffffff;
  box-shadow:
    0 0 10px rgba(87, 207, 7, 0.8),
    0 0 30px rgba(23, 225, 12, 0.9),
    0 0 40px rgba(54, 235, 14, 0.7);
}
.contact_2 form textarea {
  border-radius: 2vh;
  width:98%;
  height:15vh;
  margin-bottom: 5vh;
  font-size: 3vh;
  color: #24db36;
  font-family: "matrix", serif;
  background-color: transparent;
  box-shadow: 0 0 10px #036603, 0 0 20px #036603, 0 0 0px #036603;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  animation: flame 0.4s ease-in-out infinite alternate, flicker 0.08s infinite;
}
.contact_2 form input[type="image"] {
  all: unset;
  width: 50%;
  margin-top: -5vh;
  margin-bottom: -8vh; 
  animation: flame 0.4s ease-in-out infinite alternate, flicker 0.08s infinite;
  cursor: pointer;
}
.contact_2 form input[type="image"]:hover {
  background-size: 120%;
  transform: scale(1.5);
}
.paper_plane input[type="image"] {
  max-height: 100vh;
  cursor: pointer;
  border: none;
}
footer {
  background-color: transparent;
  padding: 1vh;
  text-align: center;
  font-family: Arial, sans-serif;
  position: relative;
  margin-bottom: 0vh;
}
footer{
  color: #24db36;
}
footer ul li {
  display: inline-block;
  margin-right: 1vh;
}
footer ul li a img {
  width: 8vh;
  height: 8vh;
  transition: transform 0.3s ease-in-out; 
}
footer ul li a img.Dcbeton-icon {
  width: 18vh;
  height: 18vh;
  transition: transform 0.3s ease-in-out;
}
footer ul li a img.Dcepoxy-icon{
  width: 8vw;
  height: 12vh;
  transition: transform 0.3s ease-in-out;
}
footer ul li a img:hover{
  background-size: 120%;
  transform: scale(1.2);
}
@media (min-width:350px) and (max-width:1030px) and (orientation:portrait){
 .hamburger {
    display: block;
  }
  .main-title{
    font-size: clamp(8vh, 8vw, 9vh);
    top: 0%;
    white-space: wrap;
  }
  .shield1 {
    display: none;
  }
  .shield2 {
    position: relative;
    z-index: 10;
    align-items: center;
    width: 100%;
    margin-top: 40%;
  }
  .shield2 img {
    height: auto;
  }
  .menu {
    display: none;
    flex-direction: column;
    background: rgba(0,0,0,0.9);
    position: absolute;
    right: 0;
    width: 100%;
    margin-top: 45%;
  }
  .menu.active {
    display:flex;
    z-index: 990;
  }
  .submenu li a{
    box-shadow: #00bfff;
    font-size: clamp(3vh, 5vw, 9vh);
  }
  .menu > li {
    position: unset;
    border: 5px solid #0af20a;
    box-shadow: 0 0 20px #43f243, 0 0 80px #04f204;
  }

  .hero {
    flex-direction: column;
  }
  #hero-img1{
    display: none;
  }

  .container{
    margin-top: 110%;
  }
  .left,.left2,.left3{
    width: 90%;
    height: 100%;
    overflow: visible;
    background-color: #000000;
    z-index: 2;
    padding-left: 4vw;
  }
  .left2,.left3{
    margin-top: 0%;
  }
  .container,.container2,.container3{
    display: flex;
    flex-direction: column;
  }
  .container2,.container3{
    padding-top: 20%;
  }
  .right{
    width: 98%;
    height: 95%;
    margin-top: 8%;
    padding-left: 4vw;
  }
  .picture_containera video  {
    width: 95%;
    height: 95%;
  }
  .picture_containerb video  {
    width: 95%;
    height: 200%;
    margin-top: 6%;
  }
  .container2{
    top: 0%;
  }
  .right2{
    width: 98%;
    height: 95%;
    margin-top: 8%;
    padding-left: 4vw;
  }   
  .picture_container2a video  {
    width: 95%;
    height: 95%;
  }
  .picture_container2b video  {
    width: 85%;
    height: 100%;
    margin-top: 6%;
    padding-left: 12vw;
  }
  .right3{
    width: 98%;
    height: 95%;
    margin-top: 8%;
    padding-left: 4vw;
  }   
 .form-group {
    width: 70%;
  }
  .contact_2 p,.contact_2{
    font-size: clamp(5vh, 10vw, 10vh);
    margin-top: 20%;
  }
  footer ul li a img.Dcepoxy-icon{
    width: 20vw;
    height: 12vh;
    transition: transform 0.3s ease-in-out;
  }
} 


 

   
 
