.container-fluid { margin: 0 !important; padding: 0 !important  }
.sky { width: 100%; height: 600px; background-image: url(''); background-position: bottom; background-size: cover; position: absolute; z-index: 0 }
.city { width: 100%; height: 1300px; background-image: url('../img/bg.png'); background-position: bottom; background-size: cover; position: relative; z-index: 1}

@keyframes animatedBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
#sky {
  width: 100%;
  height: 600px;
  background-image: url('../img/sky.png');
  background-position: 0px 0px;
  background-repeat: repeat-x;
  animation: animatedBackground 70s linear infinite alternate;
}




::-webkit-input-placeholder {
  color: white !important;
}

:-ms-input-placeholder {
  color: white !important;
}

::placeholder {
  color: white !important;
}



#load{
    width:100%;
    height:100%;
    position:fixed;
    z-index:9999;
    background:white;
}

.loader {
  border: 16px solid black; /* Light grey */
  border-top: 16px solid #A97F43; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  position:absolute;
  left:0; right:0; top:0; bottom:0;
  margin:auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



