/* PRELOADER */
.preloader {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1000000;
  right: 0;
  top: 0;
  background: #00001c;
  transition-duration: 1s;
  -webkit-transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1); }
  
  .preloader figure {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffd4296c;
    border-radius: 50%;
    animation: fadeup 0.30s;
    position: relative; }
	
    .preloader figure:after {
      content: "";
      width: 100%;
      height: 100%;
      border: 1px solid transparent;
      border-top: 1px solid #ffb32c;
      border-radius: 50%;
      position: absolute;
      left: 0;
      top: 0;
      animation: rotate1 0.180s infinite; }
	  
  .preloader img {
        height: 150px;
    display: inline-block;
    width: 200px;
}
    display: inline-block; }

.page-loaded .preloader {
  top: 100%; }

@keyframes fadeup {
  0% {
    transform: translateY(20px);
    opacity: 0; }
  100% {
    transform: translateY(0);
    opacity: 1; } }
@keyframes rotate1 {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
.ortabutton {
  text-align: center; }

/* PAGE TRANSITION */
.page-transition {
  width: 100%;
  height: 0;
  position: fixed;
  z-index: 100;
  left: 0;
  bottom: 0;
  background: #000000;
  transition-duration: 1s;
  -webkit-transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1); }
  .page-transition.active {
    height: 100%; }