#fast_navs_wr {margin-bottom: 30px;}
.fast_nav {
  position: relative;
  overflow: hidden;
}
.fast_nav:before {
  content: "";
  display: block;
  width: 500px; height: 300px;
  background: rgba(255, 255, 255, 0.3);
  transition-duration: 0.6s;
  position: absolute;
  top: -130%; right: -150%;
  transform: rotate(45deg);
}
.fast_nav:hover:before {
  top: 150%; right: 150%;
}

.fast_nav img {
  display: block;
  width: 100%;
}
.fast_nav a {
  position: absolute;
  left: 53.4%;
  bottom: 39%;
  font-weight: 400;
  font-size: 16px;
  color: #000;
}
.fast_nav a p {
  margin: 0 0 0 0;
  display: inline;
}
.fast_nav a:after {
  content: '';
  display: inline-block;
  width: 0; height: 5px;
  background: url(../img/fast_navs_arr.png) no-repeat center center;
  transition-duration: .3s;
  position: relative;
  top: -2px;
}
.fast_nav a:hover:after {width: 17px; margin-left: 10px;}

.fast_nav a:hover,
.fast_nav a:active,
.fast_nav a:focus,
.fast_nav a:active:focus {text-decoration: none;}

@media (max-width: 767px) {
  .fast_nav {max-width: 480px; margin: 0 auto 30px auto;}
  #fast_navs {margin-bottom: 0;}
}