 
.page-header__shape-one{
  position: absolute;
  left: 45px;
  top: 60px;
  width: 114px;
  height: 93px;
  background-size: cover;
  background-repeat: no-repeat;
  animation: SlideRight 4s linear 0s infinite normal forwards;
  background-image: url(https://deaesim.com/img/esim/page-header-shape-1.png);
       filter: invert(1);

   @media (max-width: 1199px) {
    display: none;
  }
 
}
@keyframes SlideRight {
  0% {
	transform: translateX(0);
  }

  100% {
	transform: translateX(100px);
  }
}


.page-header__bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 158px;
  background-size: cover;
  background-repeat: repeat-x;
  animation: cloudMove 60s linear 0s infinite;
  background-image: url(https://deaesim.com/img/esim/page-header-bg-shape.png);

  @media (max-width: 767px) {
    height: 95px;
  }
}

@keyframes cloudMove {
  0% {
    background-position: 1920px 100%;
  }

  100% {
    background-position: 0 100%;
  }
}
 

