.snow-container {
  position: absolute;
  height: 300px;
  width: 100%;
  max-width: 100%;
  top: 0;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.snow {
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  -webkit-transform: translate3d(0, -100%, 0);
          transform: translate3d(0, -100%, 0);
  -webkit-animation: snow linear infinite;
          animation: snow linear infinite;
}
.snow.foreground {
  background-image: url(../img/snow-large-1.png);
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
}
.snow.foreground.layered {
  -webkit-animation-delay: 7.5s;
          animation-delay: 7.5s;
}
.snow.middleground {
  background-image: image-url(../img/snow-1.png);
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
}
.snow.middleground.layered {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}
.snow.background {
  background-image: image-url(../img/snow-small-1.png);
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
}
.snow.background.layered {
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}

@-webkit-keyframes snow {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  100% {
    -webkit-transform: translate3d(15%, 100%, 0);
            transform: translate3d(15%, 100%, 0);
  }
}

@keyframes snow {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  100% {
    -webkit-transform: translate3d(15%, 100%, 0);
            transform: translate3d(15%, 100%, 0);
  }
}

	#techStack-section {
		position: relative;
	    height: 300px;
	    background-color: rgba(0, 0, 0, 0.5);
	}
	.tech-stack {
		text-align: center;
		padding: 70px;
		z-index: 2;
	}
	.tech-stack a {
		font-size: 18px;		
		font-weight: bold;
		text-transform: uppercase; 
	}
	.btn-techstack {
		background-color: #000000;
		border-color: #000000;
		color: #ffffff;
		width: 150px;
	}
	.btn-techstack:hover, .btn-techstack:focus {
		background-color: transparent;
		border-color: #000000;
		color: #000000;
	}
	.outstaffs-button-divider {
	    padding: 34px;
	}
