.plane-section {
  position: relative;
  width: 100%;
  background: white;
  overflow: hidden;
  background-image: url("/assets/media/images/BG.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}
.plane-section .plane-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: 25vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plane-section .plane-animation {
  position: absolute;
  width: 100%;
  height: 300px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.plane-section .plane-frame {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}
.plane-section .plane-frame.active {
  opacity: 1;
}
.plane-section .plane-path {
  position: absolute;
  width: 100%;
  height: 2px;
  top: 50%;
  background-image: linear-gradient(to right, #003974 50%, transparent 50%);
  background-size: 20px 1px;
  background-repeat: repeat-x;
  opacity: 0;
  transform: translateY(-50%);
}
.plane-section .plane-path.animate {
  animation: showPath 1s linear forwards;
}

@keyframes showPath {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (max-width: 1200px) {
  .plane-animation {
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 768px) {
  .plane-animation {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 576px) {
  .plane-animation {
    width: 150px;
    height: 150px;
  }
}
/*# sourceMappingURL=plane-section.min.css.map */
