header {
  height: 100vh;
}

.portfolio-img-responsive {
  height: 190px;
}

.team-member .img-circle {
  height: 200px;
  width: 200px;
  background-color: wheat;
}

.about-container {
  padding: 30px;
  border-radius: 4px;
  background-size: repeat;
  background-image: url('../img/diagonal_striped_brick.png')
}

.portfolio-item {
  opacity: 0.2;
  transform: translate(0, 80px);
}

.in-view {
  opacity: 1;
  transform: translate(0, -20px);
  transition-duration: 0.7s;
}

.profile-text p {
  font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 1px;
  text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
  color: black;
}

.services-icons {
  height: 128px;
  width: 128px;
  background-size: cover;
  background-position: center;
}

.timeline-image {
  transform: scale(1);
  transition-duration: 1s;
}

.timeline-image:hover {
  transform: scale(1.2);
  transition-duration: 1s;
}

.section-subheading {
  text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
  color: black;
}

.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-color: #0c0c0c;
  z-index: 9000;
  transition: all .1s ease;
}
.loading-img{
  background-image: url('../img/loader.gif');
  background-position: center;
  background-repeat: no-repeat;
  width: 300px;
  height: 300px;
  border-radius: 100px;
}

.fade-out {
  opacity: 0;
  display: none;
}

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.rollIn {
  animation-name: rollIn;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.tool-card {
  display: flex;
  width: 240px;
  margin: 20px;
  padding: 10px;
  text-align: center;
  align-content: stretch;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border-radius: 5px;
}

.tool-card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.service-image {
  position: relative;
  display: inline-block;
  line-height: 2em;
  vertical-align: middle;
}

.animationload {
  display: none;
  z-index: 10000;
  position: fixed;
  bottom: 69px;
  right: 69px;
}

.osahanloading {
  animation: 1.5s linear 0s normal none infinite running osahanloading;
  background: #020202 none repeat scroll 0 0;
  border-radius: 50px;
  height: 50px;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  position: relative;
  top: 50%;
  width: 50px;
}

.osahanloading::after {
  animation: 1.5s linear 0s normal none infinite running osahanloading_after;
  border-color: #20863b transparent;
  border-radius: 80px;
  border-style: solid;
  border-width: 10px;
  content: "";
  height: 80px;
  left: -15px;
  position: absolute;
  top: -15px;
  width: 80px;
}

@keyframes osahanloading {
  0% {
    transform: rotate(0deg);
  }
  50% {
    background: #20863b none repeat scroll 0 0;
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

::-webkit-scrollbar {
  width: 5px;
  padding-top: 40px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.3);
  border: 1px solid black;
  background: black;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  height: 10px;
  width: 5px;
  border: 1px solid black;
  background: black;
  -webkit-box-shadow: 0 1px 1px rgb(0, 0, 0);
  background: -webkit-linear-gradient(rgb(200, 200, 200), rgb(150, 150, 150));
}

::-webkit-scrollbar-track-piece {
  height: 10px;
}
