.lws-background-003-lines-container {
  position: relative;
  /* display: block; */
  display: flex; /* Changed to flex */
  flex-direction: column; /* Align items vertically */
  justify-content: center; /* Center vertically */
  align-items: center; /* Center horizontally */
  width: 100%;
  height: 300px;
  /* color: #000; */
  background-color: #212b4a;
  overflow: hidden;
}


.lws-background-003-lines-container p {
  margin: 0 0 16px 0; /* Removed margin */
  padding: 0px 0; /* Adjusted padding */
  color: #ec1c24;
  font-weight: bold;
  text-transform: uppercase;
}

.lws-background-003-lines-container p span {
  display: inline-block;
  padding: 0px 8px; 
}

.lws-background-003-lines-container h2 {
  margin: 0; /* Removed margin */
  padding: 0px 0; /* Adjusted padding */
}

.lws-background-003-lines-container .lines {
  position: absolute;
  margin: auto;
  /* width: 90vw; */
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
}

.lws-background-003-lines-container .line {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  background: rgba(225, 236, 248, 0.1);
  overflow: hidden;
}

.lws-background-003-lines-container .line::after {
  position: absolute;
  display: block;
  height: 15vh;
  width: 100%;
  top: -50%;
  left: 0;
  background: linear-gradient(
    to bottom,
    rgba(225, 236, 248, 0) 0%,
    rgba(225, 236, 248, 1) 75%,
    rgba(225, 236, 248, 1) 100%
  );
  animation: drop 7s 0s infinite;
  -webkit-animation: dropBG033 7s 0s infinite;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
  -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
  content: "";
}

.lws-background-003-lines-container .line:nth-child(1) {
  margin-left: -25%;
}

.lws-background-003-lines-container .line:nth-child(1)::after {
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
}

.lws-background-003-lines-container .line:nth-child(3) {
  margin-left: 25%;
}

.lws-background-003-lines-container .line:nth-child(3)::after {
  animation-delay: 2.5s;
  -webkit-animation-delay: 2.5s;
}

@-webkit-keyframes dropBG033 {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}

@keyframes dropBG033 {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}
