@keyframes animate-load {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background: #242b4f;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader__title {
  background: #ff8000;
  border-radius: 200px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  font: 700 14px/1 Poppins,sans-serif;
  color: #fff;
  text-align: center;
  justify-content: center;
  height: 50px;
  text-transform: uppercase;
  padding: 0 20px;
}
.preloader__title span {
  font-size: 30px;
}
.preloader__line {
  flex: 1 1 auto;
  width: 100%;
  display: flex;
}
.preloader__line._first {
  justify-content: flex-start;
}
.preloader__line._last {
  justify-content: flex-end;
}
.preloader__line:before {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #ff8000;
  animation: animate-load 5s ease both;
}
.preloader__text {
  position: absolute;
  left: 0;
  bottom: 15px;
  letter-spacing: 1px;
  width: 100%;
  text-align: center;
  font: 700 14px/1 Roboto,sans-serif;
  text-transform: uppercase;
  color: #fff;
}
@media (min-width:768px) {
  .preloader__title {
    font-size: 15px;
    height: 70px;
    padding: 0 40px;
  }
  .preloader__title span {
    font-size: 33px;
  }
  .preloader__line:before {
    height: 3px;
  }
}
@media (min-width:1600px) {
  .preloader__title {
    font-size: 15px;
    padding: 0 95px;
    height: 100px;
  }
  .preloader__title span {
    font-size: 43px;
  }
  .preloader__text {
    font-size: 18px;
    bottom: 35px;
    letter-spacing: 2.5px;
  }
}