﻿.quick-links .container {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}
.quick-links__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.quick-links__item {
  display: block;
  max-width: 160px;
  margin: 25px 15px;
  padding: 5px;
  text-align: center;
  transition: all 0.2s ease-in;
  text-decoration: none;
}
.quick-links__item:hover {
  -webkit-box-shadow: 0px 0px 5px 3px rgba(0,246,187,0.67);
  -moz-box-shadow: 0px 0px 5px 3px rgba(0,246,187,0.67);
  box-shadow: 0px 0px 5px 3px rgba(0,246,187,0.67);
}
.quick-links__item_icon {
  width: 100px;
  height: 127px;
}
.quick-links__item_title {
  display: inline-block;
  word-break: break-word;
  color: #444444;
  line-height: 1.1;
  font-weight: 200;
  margin-top: 10px;
}
@media screen and (max-width: 991px) {
  .quick-links__item {
    max-width: 120px;
    margin: 25px 15px;
  }
}
