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;
}
#tunnelBlur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(20px);
  background: white;
  opacity: 1;
  transition: opacity 2s ease;
  z-index: 20;
  pointer-events: none;
}
#tunnelWrapper {
  filter: blur(25px);
  transform: scale(0.05);
  transform-origin: center center;
  opacity: 0;
  transition:
    transform 1.7s cubic-bezier(.1, .7, .1, 1.3),
    filter 1.7s ease,
    opacity 0.8s ease;
}
#tunnelWrapper.tunnel-arrive {
  filter: blur(0px);
  transform: scale(1);
  opacity: 1;
}
#tunnelBlur.fade-out {
  opacity: 0;
}
#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: 9999;
}
.submenu li a {
  display: block;
  color: white;
  padding: 10px 20px;
  text-decoration: none; 
  z-index: 9999; 
}
.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;
  }
}
.glitch {
  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: flicker_prompt 1s infinite steps(2, start);
}
@keyframes flicker_prompt {
  0%, 50%{
    opacity: 1;
    text-shadow:
      0 0 10px #00bfff,
      0 0 20px #00bfff,
      0 0 40px #00ffff,
      0 0 60px #1ecfff;
  }
  50%, 100% {
    opacity: 0;
  }
}
.hero {
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  margin-top: 0vh; 
  max-width: 100%;
}
.title_box{
  height: 100%;
  width: 100%;
  position: relative;
  margin-bottom: 20%;
  z-index: -1;
}
.main-title {
  font-family: 'matrix', cursive;
  font-size: clamp(7rem, 10vw, 14rem);
  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%;
  transform: translate(-50%, -50%);
  z-index: 9;  
  text-align: left;
  margin-left: 35%;
  white-space: nowrap;
}
@font-face {
  font-family: 'matrix';
  src: url('./Matrix-MZ4P.ttf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'racoon';
  src: url('./racoon.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
.racoon_class{
  position: absolute;
  font-family: 'racoon';
  font-size: clamp(12vw, 32vw, 32vw);
  color: #fdfdfd;
  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);
  display: inline-block;
  transform: translateY(-450%);
  animation: flame 3s ease-in-out infinite alternate, flicker 0.08s infinite,drop 0.2s cubic-bezier(.18,.9,.3,1.15) forwards;
  z-index: 999;
}
.title_box img{
  width: 30%;
  height:30%;
}
.bloc_logo{
  position: relative;
  margin-top: -25%;
  left: 28%;
  padding-bottom: 10%;
}
.bloc_logo img{
  display: inline-block;
  animation: flame 3s ease-in-out infinite alternate, flicker 0.08s infinite,drop 0.2s cubic-bezier(.18,.9,.3,1.15) forwards;
  transform: translateY(-450%);
  width: clamp(12vw, 32vw, 32vw);
}
.video-layout {
  display: flex;
  width: 100%;
  height: 120vh;
  margin-top: -20%;
  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);
}
.left {
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.left video {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.right {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.top {
  flex: 1;
  display: flex;
}
.top-left,
.top-right {
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.top-left video,
.top-right video {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.bottom {
  flex: 1;
  display: flex;
}
.bottom-left,
.bottom-right {
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.bottom-left video,
.bottom-right video {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
@keyframes move {
    0% {
        background-position: 100% 100%;
    }
    50% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes drop {
  0% {
    transform: translateY(-480%) rotateX(20deg) scale(1.05);
    opacity: 0;
    filter: blur(3px);
  }
  65% {
    transform: translateY(6%) rotateX(6deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
  82% {
    transform: translateY(-3%) rotateX(0deg);
  }
  100% {
    transform: translateY(0) rotateX(0deg);
  }
}
.word {
  display: inline-block;
  transform: translateY(-450%) rotateX(15deg);
  opacity: 1;
  animation: drop 0.2s cubic-bezier(.18,.9,.3,1.15) forwards;
}
.main-title .word:nth-of-type(1) { animation-delay: 4000ms; }
.main-title .word:nth-of-type(2) { animation-delay: 4300ms; }
.main-title .word:nth-of-type(3) { animation-delay: 4600ms; }
.main-title .word:nth-of-type(4) { animation-delay: 4900ms; }
.racoon_class { animation-delay: 6500ms; }
.bloc_logo img { animation-delay: 6500ms; }
.about-us {
  text-align: center;
  font-size: clamp(2vh, 7vh, 7vh);
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #0f0e0e;
  z-index: 9999;
  font-family: 'matrix', cursive;
  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%;
  margin-top: 5%;
}
.cyber_corp{
  position: relative;
  height: 100%;
  width: 100%;
  border: 3px solid #bc05f9;
  box-shadow: 0 0 20px #f026a3, 0 0 80px #e56ad1;
}
.cyber_corp img{
  height: 100%;
  width: 100%;
}
.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:rgb(0, 0, 0);
  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;
  }
  @keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
  }
  .main-title{
    top: 10%;
    font-size: clamp(2.6rem, 9vw, 14rem);
  }
  .main-title .word {
    all: unset;
    opacity: 0;
    animation: fadein 1s ease forwards;
  }
  .main-title .word:nth-of-type(1) { animation-delay: 4000ms; }
  .main-title .word:nth-of-type(2) { animation-delay: 4300ms; }
  .main-title .word:nth-of-type(3) { animation-delay: 4600ms; }
  .racoon_class{
    font-size: clamp(32vh, 7vh, 7vh);
    top: 94%;
    left: 10%;
    margin-top: 10%;
  }
  .video-layout{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    margin-top: 15%;
  }
  .hero {
    height: 85vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    text-align: center;
    margin-top: 80%; 
    max-width: 100%;
  }
  .left {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .right {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .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: 9999;
  }
  .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;
  }
  .bloc_logo{
    display: flex;
    flex-direction: column;
    gap: 1000px;
    left: -1%;
  }
  .bloc_logo img{
    display: flex;
    height: 100%;
    width: 100%;
    margin-bottom: 14%;
  }
  .bloc_logo .racoon_class{
    margin-top: 15vh;
  }
  .about-us{
    font-size: clamp(3vh, 6vw, 6vh);
  }
  .cyber_corp{
    position: relative;
    height: 100%;
    width: 100%;
  }
  .cyber_corp img{
    height: 50vh;
    width: 100%;
  }
 .form-group {
    width: 70%;
  }
  .contact_2 p,.contact_2{
    font-size: clamp(5vh, 10vw, 10vh);
    margin-top: -10%;
  }
  footer ul li a img.Dcepoxy-icon{
    width: 20vw;
    height: 12vh;
    transition: transform 0.3s ease-in-out;
  }
} 
