:root {
  --color-secondary: #a2ff1f;
}
.title-section-page:before {
  content: "";
  bottom: -5px;
  left: 50%;
  width: 65%;
  height: 1px;
  display: block;
  position: absolute;
  transform: translateX(-50%);
  background: var(--color-secondary);
}

.video-background::before {
  top: 0;
  z-index: 5;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #10100f;
  opacity: 0.5;
}

.image-banner-size {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.background-graph-section {
  background-image: url(/assets/images/background.svg);
}

.background-graph-section-2 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-image: url(/assets/images/background-2.svg);
}
.background-graph-section-3 {
  background-image: url(/assets/images/background-3.svg);
}

.menu-content {
  top: 0;
  z-index: 49;
  width: 100%;
  display: none;
  height: 100vh;
  position: fixed;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.288);
  justify-content: center;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeInContainer 0.5s ease;
}

.menu-active {
  display: flex;
}


.backdrop-filter-blur{
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@keyframes fadeInItems {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInItems {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInNavigation {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInNavigation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInContainer {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInContainer {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInLine {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInLine {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

.menu-content li {
  animation: fadeInItems 0.5s ease;
  animation-fill-mode: both;
  opacity: 0;
}

.menu-content .navigation-bottom {
  animation: fadeInNavigation 0.5s ease;
  animation-fill-mode: both;
  opacity: 0;
}

.menu-content .line-separator {
  animation: fadeInLine 0.5s ease;
  animation-fill-mode: both;
  opacity: 0;
}

.menu-content button {
  animation: fadeInItems 0.5s ease;
  animation-fill-mode: both;
  transform: translateY(-50px);
  opacity: 0;
}

.menu-content li:nth-child(1) {
  animation-delay: 0.3s;
}
.menu-content li:nth-child(2) {
  animation-delay: 0.4s;
}
.menu-content li:nth-child(3) {
  animation-delay: 0.5s;
}
.menu-content li:nth-child(4) {
  animation-delay: 0.6s;
}
.menu-content li:nth-child(5) {
  animation-delay: 0.7s;
}
.menu-content li:nth-child(6) {
  animation-delay: 0.8s;
}

.menu-content button {
  animation-delay: 0.2s;
}
.menu-content button svg {
  fill: white;
}

.menu-content .navigation-bottom {
  animation-delay: 1s;
}

.menu-content .line-separator {
  animation-delay: 1.2s;
}

.menu-content ul li a {
  padding: 0 10px;
  color: white;
  transition: 0.3s ease all;
}

.menu-content ul li a:hover {
  color: #a2ff1f;
}
.button-submit-old-are {
  padding: 5px 15px;
  color: #a2ff1f;
  cursor: pointer;
  text-transform: uppercase;
  border: 1px solid #a2ff1f;
  outline: 0;
}
.draw-timeline {
  top: -25px;
  left: 50%;
  width: 1px;
  z-index: -1;
  position: absolute;
  background: #a2ff1f;
  height: calc(100% + 50px);
  transform: translateX(-50%);
}

.all-draw-timeline {
  left: 50%;
  width: 1px;
  z-index: -1;
  position: absolute;
  background: #a2ff1f;
  height: calc(100% + 50px);
  transform: translateX(-50%);
}

/* <div className="bg-secondary h-[120%] w-[1px] absolute top-[-30px] z-[-1] translate-x-[-50%] left-[50%]"></div> */
