/* Анимация бегущей строки */
.animate_text_line {
  background: #fff;
  border-bottom: none;
  padding: 10px 0;
  margin: 0 1px 1px 0;
  color: #0a3a67;
  overflow: hidden;
  position: relative;
  /* height: 42px; */
}
@keyframes line_animation {
  0% {
    -webkit-transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-100%, 0);
  }
}
.animate_text_line div {
  position: absolute;
  animation: line_animation 25s linear infinite;
  display: inline-block;
  padding-left: 100%;
  white-space: nowrap;
  font-size: 15px;
}
.animate_text_line div:last-child {
  /* position: absolute; */
  animation-delay: 12.5s;
}

@media (max-width: 518px) {
  .animate_text_line {
    margin: 0 -15px;
  }
}
