body {
  background-color: white;
}
/* loader */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9990;
}
/* text loading */
#loader-wrapper h2 {
  display: block;
  position: relative;
  top: 40%;
  font-size: 36px;
  font-family: "Trebuchet MS";
  text-align: center;
  color: burlywood;
  z-index: 9991;
  animation: myMove 1.5s infinite alternate;
}
@keyframes myMove {
  0% {
    opacity: 100;
  }
  100% {
    opacity: 0;
  }
}
/* loader animation */
#loader-wrapper #loader {
  display: block;
  position: relative;
  left: 49%;
  top: 35%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: -75px 0 0 -75px;
  border: 5px solid transparent;
  border-top-color: lightblue;
  border-bottom-color: lightblue;
  z-index: 9991;
  animation: spin 1s linear infinite;
}
#loader-wrapper #loader:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 5px solid transparent;
  border-radius: 50%;
  border-left-color: #e74c3c;
  border-right-color: #e74c3c;
  z-index: 9991;
  animation: spin 0.5s ease-in-out infinite;
}

#loader-wrapper #loader:after {
  content: "";
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  bottom: 40px;
  border-radius: 50%;
  border: 5px solid transparent;
  border-top-color: #f9c922;
  border-bottom-color: #f9c922;
  z-index: 9991;
  animation: spin 1s ease infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*Background Section Animation*/
#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9990;
  opacity: 0.7;
}

.loaded {
  display: none;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-in;
}
