#preloader {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  display: flex;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
  background-color: #000;
  transition: all 0.3s ease 0s;
}

#preloader:after {
  left: auto;
  right: 0;
}

#preloader .loader_line {
  margin: auto;
  width: 1px;
  height: 250px;
  position: relative;
  overflow: hidden;
  transition: all 0.8s ease 0s;
}

.loader_line:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0%;
  transform: translateY(-50%);
  background-color: #fff;
  animation: lineheight 1000ms ease-in-out 0s forwards;
}

.loader_line:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #999;
  transform: translateY(-100%);
  animation: lineround 1200ms linear 0s infinite;
  animation-delay: 2000ms;
}

@keyframes lineheight {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
@keyframes lineround {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(200%);
  }
}
.preloaded .loader_line:after {
  opacity: 0;
}

.preloaded .loader_line {
  opacity: 0;
  height: 100% !important;
}

.preloaded:before,
.preloaded:after {
  animation: preloadedzero 300ms ease-in-out 500ms forwards;
}

@keyframes preloadedzero {
  0% {
    width: 50%;
  }
  100% {
    width: 0%;
  }
}
.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: -3px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  z-index: 100;
  background-color: #B42B29;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -40px;
  margin-top: -40px;
  width: 80px;
  height: 80px;
  background-color: #B42B29;
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -15px;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  border: 2px solid #B42B29;
  box-sizing: border-box;
  z-index: 100;
  opacity: 0.5;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.bna_pxl_all_wrap[data-magic-cursor=hide] .mouse-cursor {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: -1111;
}

.bna_pxl_all_wrap {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  position: relative;
}

.zen37_hero .avatar {
  padding-left: 100px;
}
.zen37_hero .image {
  position: relative;
  margin-top: 60px;
}
.zen37_hero .skills {
  display: inline-block;
  width: 75px;
  height: 75px;
  border-radius: 8px;
  position: absolute;
  box-shadow: 24px 0 72px rgba(54, 32, 152, 0.3);
}
.zen37_hero .skills.illustrator {
  background-color: #FF7C00;
  top: 20px;
  left: -30px;
}
.zen37_hero .skills.photoshop {
  background-color: #2DAAFF;
  right: 70px;
  top: 80px;
}
.zen37_hero .skills.figma {
  background-color: #fff;
  bottom: 60px;
  left: 140px;
}
.zen37_hero .skills .svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
}
.zen37_hero .skills .illustrator .svg {
  color: #ff9a00;
}
.zen37_hero .skills .photoshop .svg {
  color: #00a9ff;
}

.bna_pxl_down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 60px;
  z-index: 5;
}
.bna_pxl_down svg {
  width: 35px !important;
  height: 35px !important;
}
.bna_pxl_down svg #wheel {
  animation: scroll ease 2s infinite;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(60px);
  }
}
.animPulse {
  animation: animPulse 3s linear 0s infinite alternate;
}

@keyframes animPulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.anim_moveLeft {
  animation: animMoveLeft 3s linear 0s infinite alternate;
}

@keyframes animMoveLeft {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-20px);
  }
}
.anim_moveRight {
  animation: anim_moveRight 3s linear 0s infinite alternate;
}

@keyframes anim_moveRight {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(20px);
  }
}
.anim_moveTop {
  animation: anim_moveTop 3s linear 0s infinite alternate;
}

@keyframes anim_moveTop {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-20px);
  }
}
.anim_moveBottom {
  animation: anim_moveBottom 3s linear 0s infinite alternate;
}

@keyframes anim_moveBottom {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(20px);
  }
}
.bna_pxl_down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 60px;
  z-index: 5;
}

@media (max-width: 1600px) {
  .zen37_hero .skills {
    width: 50px;
    height: 50px;
  }
  .zen37_hero .skills .svg {
    width: 25px;
    height: 25px;
  }
  .zen37_hero .skills.figma {
    bottom: 20px;
    left: 100px;
  }
  .zen37_hero .skills.photoshop {
    right: 110px;
  }
  .zen37_hero .skills.illustrator {
    left: -20px;
  }
  .zen37_down {
    bottom: 30px;
  }
}
.request_quote {
  position: relative;
}

.request_quote a {
  border: 2px solid #B42B29 !important;
  border-radius: 50px !important;
  padding: 8px 35px 7px;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.request_quote span {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.request_quote a:before {
  position: absolute;
  content: "";
  z-index: 0;
  background-color: #B42B29;
  left: -5px;
  right: -5px;
  bottom: -5px;
  height: 0;
  transition: all 0.3s ease;
}

.request_quote a:hover:before {
  height: 115%;
}

.request_quote a:hover span {
  color: #fff;
}

.single-card {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 360px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.5s;
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
}
.single-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-image: linear-gradient(to bottom, rgb(180, 43, 48), rgb(198, 48, 48));
  opacity: 0.8;
  z-index: -1;
  transition: all 0.5s;
}

.single-card:hover {
  transform: translateY(-5px);
}
.single-card:hover p {
  color: #ffffff;
}
.single-card:hover h3 a {
  color: #ffffff;
}
.single-card:hover h3 a:hover {
  color: #0d0c22;
}

.single-card:hover .read-more {
  color: ffffff;
}

.single-card:hover::after {
  height: 100%;
  top: 0;
  bottom: auto;
}

/*
Go Top Style*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 85%;
  right: -10%;
  background-color: #B42B29;
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  transition: 0.9s;
}

.go-top i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #ffffff;
  transition: 0.5s;
  font-size: 20px;
}

.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

.go-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #B42B29;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.go-top:hover {
  color: #ffffff;
  background-color: #0e0129;
}

.go-top:hover::before {
  opacity: 1;
  visibility: visible;
}

.go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.go-top:focus {
  color: #ffffff;
}

.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}

.go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.go-top.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  right: 3%;
  top: 85%;
}/*# sourceMappingURL=effects.css.map */