.header {
    font-family: Raleway, Helvetica Neue, Helvetica, Arial, sans-serif;
    max-width: 768px;
    margin: 0 auto;
    padding: 1em;
    text-align: center;
    background: #fff;
    letter-spacing: .05em;
}

.logo {
    width: 20%;
    height: 20%;
    min-width: 120px;
    min-height: 47px;
    margin: 0 auto;
    padding-bottom: 1em;
}

.center {
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /* background:orange; */
}

 .fadecycle > * {
    width:75px; height:75px; 
    opacity: 0;
    top:0;
    text-align: center;
    position:absolute;
    filter: invert(70%);
 }

 
.fadecycle > *:nth-child(1) {
  -webkit-animation: fadeinout 12s linear -0.3428571429s infinite;
          animation: fadeinout 12s linear -0.3428571429s infinite;
          position:relative;
}

.fadecycle > *:nth-child(2) {
  -webkit-animation: fadeinout 12s linear 1.3714285714s infinite;
          animation: fadeinout 12s linear 1.3714285714s infinite;
}

.fadecycle > *:nth-child(3) {
  -webkit-animation: fadeinout 12s linear 3.0857142857s infinite;
          animation: fadeinout 12s linear 3.0857142857s infinite;
}

.fadecycle > *:nth-child(4) {
  -webkit-animation: fadeinout 12s linear 4.8s infinite;
          animation: fadeinout 12s linear 4.8s infinite;
}

.fadecycle > *:nth-child(5) {
  -webkit-animation: fadeinout 12s linear 6.5142857143s infinite;
          animation: fadeinout 12s linear 6.5142857143s infinite;
}

.fadecycle > *:nth-child(6) {
  -webkit-animation: fadeinout 12s linear 8.2285714286s infinite;
          animation: fadeinout 12s linear 8.2285714286s infinite;
}

.fadecycle > *:nth-child(7) {
  -webkit-animation: fadeinout 12s linear 9.9428571429s infinite;
          animation: fadeinout 12s linear 9.9428571429s infinite;
}

@-webkit-keyframes fadeinout {
  0% {
    opacity: 0;
  }
  2.8571428571%, 14.2857142857% {
    opacity: 1;
  }
  17.1428571429%, 100% {
    opacity: 0;
  }
}

@keyframes fadeinout {
  0% {
    opacity: 0;
  }
  2.8571428571%, 14.2857142857% {
    opacity: 1;
  }
  17.1428571429%, 100% {
    opacity: 0;
  }
}

.loadtext{
    /* transform: translate(-36%,-50%); */
    bottom:25%;
    width:100%;
    position:absolute;
    margin: 0 auto; 
}
.loadtext > p{
    /* position: absolute;  */
     /* padding: 100px; */
    width: 100%;
    letter-spacing: normal;
    text-align: center;
    color: grey;
    /* opacity: 0; */
}

#preloader-container{
  left: 0;
  position:absolute;
  height:100%;
  width:100%;
  z-index:1;
  background-color:white;
  margin: 0 auto;


}


#dirty-preloader-container{
  left: 0;
  position:absolute;
  height:100%;
  width:100%;
  z-index:1;
  background-color:white;
  margin: 0 auto;
}

.animHide{

  -webkit-animation: fadeout 1s both;
  animation: fadeout 1s both;
}

.animShow{

  -webkit-animation: fadein 1s both;
  animation: fadein 1s both;
}


@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
    visibility: visible;
  }
 100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeout {
  0% {
    opacity: 1;
    visibility: visible;    
  }
 100% {
    opacity: 0;
    visibility: hidden;
  }
}

#progressbar-wrap{
  width: 100%;
  position: absolute;
  bottom: 10%;
  display:flex;
  justify-content: center;
}


#progressbar {
  box-sizing: content-box;
  height: 3px;
  background: #cfe0cf;
  border-radius: 5px;
  padding: 1px;
  /* box-shadow: inset 0 -1px 1px rgb(255 255 255 / 30%); */
  width: 100px;

}
#progressbar > span {
  display: block;
    height: 100%;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background-color: black;
    background-image: linear-gradient( center bottom, rgb(43, 194, 83) 37%, rgb(84, 240, 84) 69% );
    box-shadow: inset 0 2px 9px rgb(255 255 255 / 30%), inset 0 -2px 6px rgb(0 0 0 / 40%);
    position: relative;
    overflow: hidden;
}



/*These styles contain basic styles for fomatting along with our animation css*/


/*animation element*/

/*bounce up animation for the subject*/

.bounce-up {
  opacity: 0;
  -moz-transition: all 700ms ease-out;
  -webkit-transition: all 700ms ease-out;
  -o-transition: all 700ms ease-out;
  transition: all 700ms ease-out;
  -moz-transform: translate3d(0px, 200px, 0px);
  -webkit-transform: translate3d(0px, 200px, 0px);
  -o-transform: translate(0px, 200px);
  -ms-transform: translate(0px, 200px);
  transform: translate3d(0px, 200, 0px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.bounce-up.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}


.hover-bottom{
  bottom: 10px;
}