/* Custom elements */
/*---------------------------------------------------
      LESS Elements 0.9
    ---------------------------------------------------
      A set of useful LESS mixins
      More info at: http://lesselements.com
    ---------------------------------------------------*/
a.blueSquareLink {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}
a.blueSquareLink:hover {
  color: #000;
  text-decoration: none;
}
.blueSquare {
  display: inline-block;
  position: relative;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  background: #dedede url("../images/bg_blue_square.png") no-repeat center;
  width: 185px;
  height: 185px;
  margin: 15px;
  text-align: center;
  padding: 10px;
}
.blueSquare .title {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 15px;
  z-index: 10;
}
.blueSquare .image {
  position: absolute;
  width: 100%;
  height: 145px;
  bottom: 0;
  padding-right: 20px;
}
.blueSquare .image img {
  display: inline-block;
  margin: 0 auto;
  max-width: 135px;
  max-height: 135px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.blueSquare .image i {
  display: block;
  color: #000;
  font-size: 60px;
  margin-top: 25px;
  /*&::before {
        left: 50%;
        margin-left: -30px;
        position: absolute;
      }*/
}
