div#preloader {
    background-color: transparent !important;
   
}
.preloader2.row {
  position: fixed;
  z-index: 9999999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  text-align: center;
  /*Background*/
  /*Background*/
}
.preloader2.row .before_half,
.preloader2.row .after_half {
  width: 58%;
  height: 200vh;
  background: rgba(19, 20, 27, 0.94);
  position: absolute;
  top: -50vh;
  -webkit-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
  -webkit-transition-duration: 2s;
  transition-duration: 2s;
}
.preloader2.row .before_half {
  left: -13.3%;
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}
.preloader2.row .after_half {
  right: -13.3%;
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}
.preloader2.row .content {
  position: absolute;
  z-index: 2;
  top: -webkit-calc(50% - 137px);
  top: calc(50% - 137px);
  left: -webkit-calc(50% - 137px);
  left: calc(50% - 137px);
  -webkit-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
  -webkit-transition-duration: 2s;
  transition-duration: 2s;
}
.preloader2.row .content .circle {
  width: 274px;
  height: 274px;
  background: rgba(186, 186, 186, 0.2);
  padding: 16px;
  border-radius: 100%;
}
.preloader2.row .content .circle .red {
  background: #5ea945;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.preloader2.row .content .circle .red .rotator {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  -webkit-animation: rotation 4s linear infinite;
  animation: rotation 4s linear infinite;
}
.preloader2.row .content .circle .red .rotator img {
  position: absolute;
bottom: 9%;
left: 17%;
}
.preloader2.row .content .circle .red .logo {
  position: absolute;
  line-height: 56px;
  font-size: 76px;
  font-family: 'Roboto Slab', serif;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  top: -webkit-calc(50% - 28px);
  top: calc(50% - 28px);
  left: -webkit-calc(50% - 77px);
  left: calc(50% - 77px);
  display: inline-block;
}
.preloader2.row.complete .before_half {
  left: -100%;
}
.preloader2.row.complete .after_half {
  right: -100%;
}
.preloader2.row.complete .content {
  top: 110%;
}