/**Media Queries****************************************************/
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/*For my Son Colors*/
/**
 * 
 * Creates a container with the given aspect ratio. If you place a .content inside
 * the container, It will cover the entire container. Note: the container's width
 * is set to 100%. Overide if necessary.
 * 
 */
/*Blog entry item listing*/
.actions-wrapper {
  padding: 70px 0 30px 0;
  background: #ebebeb;
  text-align: center;
}
.actions-wrapper .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.actions-wrapper .action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .actions-wrapper .action {
    padding-bottom: 0;
  }
}
.actions-wrapper .action a {
  text-align: left;
  color: #000;
}
.actions-wrapper .action a:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  opacity: 0.5;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.actions-wrapper .action a h3 {
  max-width: 100%;
  margin: 10px 0 5px 0;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .actions-wrapper .action a h3 {
    text-align: center;
  }
}
.actions-wrapper .action a .image {
  -webkit-background-size: cover;
  -khtml-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  /**
 * Background image styling
 */
}
.actions-wrapper .action a .image:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 66.66667%;
}
.actions-wrapper .action a .image > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.actions-wrapper .action a p {
  line-height: 140%;
  font-size: 13px;
  color: #777;
}
