.technologies {
  font-family: 'Tahoma', sans-serif;
}

.technologies .fw-col-xs-12 {
  padding: 0;
}

.technologies .technologies__title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
}

.technologies .technologies__text {
  padding: 10px 0;
}

.technologies__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.technologies__images a {
    position: relative;
}

.technologies__images a > img {
    transition: 0.2s ease-in-out;
}

.technologies__images a > .overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.technologies__images a > .overlay span {
    color: #ffffff;
    font-size: 20px;
    transform: translateY(50px);
    transition: 0.2s ease-in-out;
}

.technologies__images a:hover > .overlay {
    background-color: rgba(0, 0, 0, 0.8);
    transition: 0.2s ease-in-out;
    opacity: 1;
}

.technologies__images a:hover .overlay span {
    transition: 0.2s ease-in-out;
    transform: translateY(0);
}

.technologies__images a:hover > img {
    transform: scale(1.2);
    transition: 0.2s ease-in-out;
}

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