#hola{
    width: 100vw;
    height: 100vh;
    background-color: #252328;
    position: fixed;
    z-index: 999;
}
#preloader {
	position:relative;
    width: 80px;
    height: 80px;
    top: 45%;
    margin: 0 auto;
}
#preloader span {
	position:absolute;
	border: 8px solid #ffe066;
	border-top: 8px solid transparent;
	border-radius:999px;
}

#preloader span:nth-child(1){
	width:80px;
	height:80px;
	animation: spin-1 2s infinite linear;
}
#preloader span:nth-child(2){
	top: 20px;
	left: 20px;
	width:40px;
	height:40px;
	animation: spin-2 1s infinite linear;
}
@keyframes spin-1 {
	0% {transform: rotate(360deg); opacity: 1;}
	50% {transform: rotate(180deg); opacity: 0.5;}
	100% {transform: rotate(0deg); opacity: 1;}
}
@keyframes spin-2 {
	0% {transform: rotate(0deg); opacity: 0.5;}
	50% {transform: rotate(180deg); opacity: 1;}
	100% {transform: rotate(360deg); opacity: 0.5;}
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 120px;
  height: 120px;
  margin: -76px 0 0 -76px;
  border: 10px solid #f6c82e;
  border-radius: 50%;
  border-top: 18px solid #ffff;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}

#myDiv {
  display: none;
  text-align: center;
}

/* .home{
    height: 100vh;
    position: relative;
    background-color: #F2F6F2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .home:before{
    position: absolute;
    width: 50%;
    height: 100%;
    z-index: 10;
    top: 0;
    left: 0;
    content: '';
    background-color: #F2F6F2;
  }
  .home:after{
    position: absolute;
    width: 50%;
    height: 100%;
    z-index: 10;
    top: 0;
    right: 0;
    content: '';
    background-color: #F2F6F2;
  }
  .animate-border{
    border: 40px solid #EDEBE6;
    transition: border .5s .2s ease;
  }
  .home.divide:before{
    transition: all .6s 1.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    width: 0;
  }
  .home.divide:after{
    transition: all .6s 1.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    width: 0;
  } */