.loading {
  position: fixed;
  z-index: 150;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0px 0px 0px 0px;
  background-color: #ffffff;
  border: 0px solid #282828;
  transition: .5s;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
}

.loading_logo1 {
  position: relative;
  z-index: 10;
  width: auto;
  height: auto;
  margin: 0px 0px 0px 0px;
  display: block;
}

.loading_logo1 svg {
  width: 200px;
  height: 60px;
}

.loading_logo1 {
  transition: .5s;
  opacity: 0.3;
}

.loading.page_active_act1 .loading_logo1 {
  opacity: 1;
}

.loading_title1 {
  position: relative;
  z-index: 50;
  width: auto;
  height: 50px;
  padding: 0px 0px 0px 0px;
  margin: 15px 0px 0px 0px;
  /* background-color: #b50e2d; */
  border-radius: 50px;
  transition: .5s;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading_title1.page_active_act1 {
  height: 0px;
  margin: 0px 0px 0px 0px;
  opacity: 0;
}

.loading_title1 div {
  position: unset;
  width: auto;
  height: auto;
  color: #ec2919;
  font-size: 20px;
  font-weight: 700;
  text-indent: 1px;
  letter-spacing: 1px;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading_title1_parts1 {
  left: 0%;
  animation: move 2s ease 0.0s infinite;
}

.loading_title1_parts2 {
  left: 10%;
  animation: move 2s ease 0.1s infinite;
}

.loading_title1_parts3 {
  left: 20%;
  animation: move 2s ease 0.2s infinite;
}

.loading_title1_parts4 {
  left: 30%;
  animation: move 2s ease 0.3s infinite;
}

.loading_title1_parts5 {
  left: 40%;
  animation: move 2s ease 0.4s infinite;
}

.loading_title1_parts6 {
  left: 50%;
  animation: move 2s ease 0.5s infinite;
}

.loading_title1_parts7 {
  left: 60%;
  animation: move 2s ease 0.6s infinite;
}

.loading_title1_parts8 {
  left: 70%;
  animation: move 2s ease 0.7s infinite;
}

.loading_title1_parts9 {
  left: 80%;
  animation: move 2s ease 0.8s infinite;
}

.loading_title1_parts10 {
  left: 90%;
  animation: move 2s ease 0.9s infinite;
}

@keyframes move {
  0% {
    color: #ffffff;
    transform: scale(1) rotate(-0deg);
    opacity: 0;
  }
  25% {
    color: #d52b1e;
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    color: #d52b1e;
  }
  75% {
    color: #d52b1e;
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  100% {
    color: #ffffff;
    transform: scale(1) rotate(0deg);
    opacity: 0;
  }
}

.loading_bg1 {
	position: absolute;
	z-index: 0;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	margin: 0px 0px 0px 0px;
}


/***** responsive *****/

@media ( max-width: 1024px ) {

.loading_logo1 {
  width: auto;
  height: auto;
  margin: 0px 0px 0px 0px;
}

.loading_logo1 svg {
  width: 180px;
}

.loading_title1 {
  height: 30px;
  margin: 20px 0px 0px 0px;
}

.loading_title1 div {
  font-size: 18px;
}

}
