section.services-list .col-holder {
  transform: translateY(50px);
  transition: all ease 0.5s;
  opacity: 0;
}
section.services-list .col-holder.animate, section.services-list .col-holder.visible {
  transform: translateY(0px);
  opacity: 1;
}
section.services-list .col-holder.visible .service .image-holder img {
  transform-style: preserve-3d;
  transform: perspective(300px) rotateY(0deg) rotateX(0deg) scale(1) !important;
}
section.services-list .col-holder:nth-child(odd) .service .image-holder img {
  transition: all 1.5s ease-in-out 0s;
  will-change: transform;
  transform-style: preserve-3d;
  transform: perspective(300px) rotateY(9deg) rotateX(15deg) scale(0.8);
}
section.services-list .col-holder:nth-child(even) .service .image-holder img {
  transition: all 1.5s ease-in-out 0s;
  will-change: transform;
  transform-style: preserve-3d;
  transform: perspective(300px) rotateY(-8deg) rotateX(-10deg) scale(0.8);
}

section.projects .boxes {
  overflow: hidden;
}
section.projects .boxes .box:before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  transition: all ease 1s;
  width: 30px;
  height: 30px;
  opacity: 0;
  border-radius: 50%;
  transform: translateX(-200px) scale(0.7) rotate(0deg);
  background: linear-gradient(180deg, rgba(64, 123, 255, 0.5) 0%, rgba(64, 123, 255, 0) 100%);
}
section.projects .boxes .box.visible:before {
  opacity: 1;
  transform: translateX(0px) scale(1) rotate(45deg);
}

section.columns .image,
section.contact .image {
  transition: all ease 3s;
  opacity: 0;
  transform: translateX(-100px) translateY(50px);
}
section.columns .image.visible,
section.contact .image.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

section.banner .image {
  transition: all ease 3s;
  opacity: 0.2;
  transform: translateX(-100px) translateY(50px);
}
section.banner .image.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}
section.banner .image-holder {
  min-width: 850px;
}
section.banner .image-collage {
  position: relative;
  min-width: 850px;
  min-height: 670px;
}
section.banner .image-collage.animate img, section.banner .image-collage.visible img {
  opacity: 1 !important;
  transition: all ease 1.5s;
  transform: translateX(0) translateY(0) scale(1) !important;
}
section.banner .image-collage img.first {
  transition: all ease 2s;
  transform: translateX(-100px) scale(0.8);
}
section.banner .image-collage img.sec {
  transition: all ease 2s;
  transform: translateX(100px) translateY(-250px) scale(0.8);
}
section.banner .image-collage img.third {
  transition: all ease 0.5s;
  opacity: 0;
}

section .animate-row {
  opacity: 0;
  transition: all ease 1s;
  transform: translateY(100px);
}
section .animate-row .pre-title {
  letter-spacing: 5px;
  transition: all ease 1s;
}
section .animate-row.animate, section .animate-row.visible {
  opacity: 1;
  transform: translateY(0px);
}
section .animate-row.animate .pre-title, section .animate-row.visible .pre-title {
  letter-spacing: 1px;
}

section.featured-icons .boxes .box {
  transition: all ease 1s;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
}
section.featured-icons .boxes .box.visible {
  opacity: 1 !important;
  transition: all ease 1.5s;
  transform: translateX(0) translateY(0) scale(1) !important;
}

section.hover-links .links .link-holder {
  opacity: 0;
  transition: all ease 1s;
  transform: translateX(80px);
}
section.hover-links .links .link-holder.animate {
  opacity: 1;
  transform: translateX(0px);
}

section.hover-links .image-holder {
  min-width: 500px;
  position: absolute;
  left: -52%;
  right: 0;
  top: 0px;
}

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

/*# sourceMappingURL=animations.css.map */
