/*----------------
    loader
    ------------*/
#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100dvh;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 10950;
}
#loader {
  width:100%;
  display: none;
  z-index: 999;
  display: flex!important;
    justify-content: center;
    align-items: center;
    width:100%;
    height:100%;
}
#loader img{
  max-width: 330px;
}

div.bd01 {
  position: absolute;
  top: 20px;
  left: 0;
  height: 1px;
  width: 100vw;
  background: #f875ac;
}
div.bd02 {
  position: absolute;
  top: 0;
  right: 20px;
  height: 100vh;
  width: 1px;
  background: #f875ac;
}
div.bd03 {
  position: absolute;
  bottom: 20px;
  left: 0;
  height: 1px;
  width: 100vw;
  background: #f875ac;
}
div.bd04 {
  position: absolute;
  top: 0;
  left: 20px;
  height: 100vh;
  width: 1px;
  background: #f875ac;
}

.bd01Animation {
  animation: slideOut01 1.5s forwards;
  animation-delay: 1s;
}
.bd02Animation {
  animation: slideOut02 1.5s forwards;
  animation-delay: 1s;
}
.bd03Animation {
  animation: slideOut03 1.5s forwards;
  animation-delay: 1s;
}
.bd04Animation {
  animation: slideOut04 1.5s forwards;
  animation-delay: 1s;
}

@keyframes slideOut01 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes slideOut02 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes slideOut03 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes slideOut04 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}


@media screen and (max-width: 599px) {

  #loader {
    width:85%;
    margin:0 auto;
  }
  #loader img{
    max-width: 300px;
  }

  div.bd01 {
    top: 15px;
  }
  div.bd02 {
    right: 15px;
  }
  div.bd03 {
    bottom: 15px;
  }
  div.bd04 {
    left: 15px;
  }

}/*-- media end --*/