.icon_with_title {
  text-align: center;
  font-size: 16px;
  color: rgba(#3F4D60, .8);
  letter-spacing: 0;
  line-height: 24px;

  span {
    display: block;
  }
  img {
    margin-bottom: 20px;
    opacity: .6;

    @include transition(opacity .3s ease);
  }

  a:not(.btn) {
    color: rgba(#3F4D60, .8) !important;
    display: inline-block;

    &:hover {
      color: #3F4D60 !important;

      img {
        opacity: 1;
      }
    }
  }

  @media all and (max-width: 767px) {
    font-size: 14px;
    line-height: normal;

    span {
      display: none;
    }
  }
}

.back_link,
.edit_page_link {
  color: rgba($secondary, .6);
  font-size: 16px;
  margin-bottom: 55px;
  display: inline-block;
  text-decoration: none !important;

  a:not(.btn) {
    color: rgba($secondary, .6);

    &:hover {
      color: $primary;
    }
  }

  .icon {
    font-size: 16px;
    margin-right: 3px;
  }
}