/* body{ */
/* 	background-color:#1d2024; */
/* 	animation:image 10s infinite alternate; */
/* 	-webkit-animation:image 10s infinite alternate; */
/* 	-moz-animation:image 10s infinite alternate; */
/* } */
/* @keyframes image{ */
/* 	0%{ */
/* 		background-color:#1d2024; */
/* 	} */
 
/* 	25%{ */
/* 		background-color:#334154; */
/* 	} */
 
/* 	50%{ */
/* 		background-color:#364d6d; */
/* 	} */
 
/* 	75%{ */
/* 		background-color:#32598d; */
/* 	} */
 
/* 	100%{ */
/* 		background-color:#2863b2; */
/* 	} */
/* } */


    #homepage-hero {
      position: absolute;
      left: 0;
      right: 0;
      height: 100%;
/*       background: #049ec4 url(/assets-20250306/dev-images/cloud.jpg) repeat-x 50% 100%; */
         background: #ffffff;
    }

    @media only screen and (min-width: 760px) {
      #homepage-hero {
        -webkit-animation: animate-cloud 30s linear infinite;
        -moz-animation: animate-cloud 30s linear infinite;
        -ms-animation: animate-cloud 30s linear infinite;
        -o-animation: animate-cloud 30s linear infinite;
        animation: animate-cloud 30s linear infinite;
      }

    @-webkit-keyframes animate-cloud {
      from {
        background-position: 1000px 100%;
      }
      to {
        background-position: 0 100%;
      }
    }

