/**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*/
/*Merchandise pieces*/
.big-content-container {
  position: relative;
  -webkit-animation: fader ease-in 1;
  -khtml-animation: fader ease-in 1;
  -moz-animation: fader ease-in 1;
  -ms-animation: fader ease-in 1;
  -o-animation: fader ease-in 1;
  animation: fader ease-in 1;
  -webkit-animation-fill-mode: forwards;
  -khtml-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
  -khtml-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  opacity: 0;
}
@-webkit-keyframes fader {
  /*Trailer Stuff*/
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fader {
  /*Trailer Stuff*/
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-ms-keyframes fader {
  /*Trailer Stuff*/
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fader {
  /*Trailer Stuff*/
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fader {
  /*Trailer Stuff*/
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.trailer-button-container {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
}
.trailer-button {
  position: absolute;
  left: 0;
  top: -20px;
  width: 100%;
  text-align: center;
  z-index: 3000;
}
.trailer-button a {
  display: inline-block;
  width: 10%;
}
.trailer-button img {
  width: 100%;
}
.trailer-anchor {
  position: relative;
  float: left;
}
.trailer-wrapper {
  width: 100%;
  background: #000;
}
#trailer {
  position: relative;
  float: left;
  display: none;
  width: 100%;
  background: #000;
  padding-bottom: 56.25%;
  padding-top: 30px;
  margin: 0;
  height: 0;
  overflow: hidden;
  /*Partners ****************/
}
#trailer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#trailer .social-share {
  position: absolute;
  width: 95%;
  height: 50px;
  top: 0;
  text-align: center;
  visibility: hidden;
  z-index: 100;
}
#trailer .social-share .share-button {
  display: inline-block;
  color: ;
  height: 44px;
}
#trailer .social-share .share-button span {
  visibility: hidden;
}
#trailer .social-share a.share-facebook {
  color: #4c66a4;
  background: url(../../img/buttons/landing-hover-facebook-button.png) no-repeat;
  background-position: right top;
}
#trailer .social-share a.share-twitter {
  color: #2fa8df;
  background: url(../../img/buttons/landing-hover-twitter-button.png) no-repeat;
  background-position: left top;
}
#trailer:hover .social-share {
  visibility: visible;
}
.partners-wrapper {
  text-align: center;
}
.partners-container {
  /*Blog Bits*/
}
.partners-container h3 {
  text-transform: uppercase;
  margin-top: 30px;
}
.partners-container ul {
  list-style: none;
  margin: 40px 0;
  padding: 0;
}
.partners-container ul li {
  display: inline-block;
  padding: 0 1%;
  margin: 0;
}
.partners-container ul li img {
  width: 100%;
  max-width: 200px;
}
.blog-wrapper {
  padding: 40px 0 80px;
  width: 100%;
  height: auto;
  /*Blog entry item listing*/
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .blog-wrapper {
    padding: 0px;
  }
}
@media screen and (max-width: 767px) {
  .blog-wrapper {
    padding: 0px;
  }
}
.blog-wrapper .blog-container {
  background: #fff;
}
.blog-wrapper .blog {
  position: relative;
  float: left;
  width: 100%;
  padding: 0 4.5% 40px 4.5%;
  background: #fff;
}
.blog-wrapper .blog header {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.blog-wrapper .blog header h2 {
  margin: 30px 0 0;
  font-size: 45px;
  line-height: 42px;
}
.blog-wrapper .blog header span {
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: none;
}
.blog-wrapper .blog header span a {
  text-transform: uppercase;
  color: #ee4036;
}
.blog-wrapper .blog {
  display: flxex;
  flex-direction: row;
  flex-wrap: wrap;
}
.blog-wrapper .blog .blog-entry {
  flex: 1;
  margin-bottom: 30px;
}
.blog-wrapper .blog .blog-entry .the-container {
  display: block;
  position: relative;
  /**
 * Background image styling
 */
  -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;
  background-repeat: no-repeat;
  padding: 0;
}
.blog-wrapper .blog .blog-entry .the-container:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 75%;
}
.blog-wrapper .blog .blog-entry .the-container > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .blog-wrapper .blog .blog-entry .the-container {
    position: relative;
    /**
 * Background image styling
 */
  }
  .blog-wrapper .blog .blog-entry .the-container:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 60%;
  }
  .blog-wrapper .blog .blog-entry .the-container > .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
.blog-wrapper .blog .blog-entry .the-container .content {
  color: #525252;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f8f8f8+0,f8f8f8+100&1+0,0.3+100 */
  padding: 30px;
  /* FF3.6-15 */
  background: -moz-linear-gradient(top, #f8f8f8 0%, rgba(248, 248, 248, 0.3) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-linear-gradient(top, #f8f8f8 0%, rgba(248, 248, 248, 0.3) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  background: linear-gradient(to bottom, #f8f8f8 0%, rgba(248, 248, 248, 0.3) 100%);
  /* IE6-9 */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f8f8', endColorstr='#4df8f8f8',GradientType=0);
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-wrapper .blog .blog-entry .the-container .content {
    padding: 15px;
  }
}
@media screen and (max-width: 767px) {
  .blog-wrapper .blog .blog-entry .the-container .content {
    padding: 5px;
  }
}
.blog-wrapper .blog .blog-entry .the-container .content h3 {
  margin-bottom: 20px;
  font-size: 18px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .blog-wrapper .blog .blog-entry .the-container .content h3 {
    font-size: 21px;
  }
}
@media screen and (max-width: 767px) {
  .blog-wrapper .blog .blog-entry .the-container .content h3 {
    margin-bottom: 10px;
  }
}
.blog-wrapper .blog .blog-entry .the-container .content h3 a {
  color: #525252;
}
.blog-wrapper .blog .blog-entry .the-container .content .excerpt p {
  font-size: 12px;
  color: #333;
}
@media screen and (max-width: 767px) {
  .blog-wrapper .blog .blog-entry .the-container .content .excerpt p {
    font-size: 10px;
  }
}
.blog-wrapper .blog .blog-entry .the-container .content a.read-more {
  display: block;
  font-weight: 700;
  width: 64%;
  text-align: center;
  color: #fff;
  padding: 10px 15px;
  margin: 15px 0;
  border: solid 1px #fff;
  background: rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}
.blog-wrapper .blog .blog-entry .the-container .content a.read-more:hover {
  background: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .blog-wrapper .blog .blog-entry .the-container .content a.read-more {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.blog-wrapper .blog .blog-entry .the-container .social-container .social-share {
  border-left: 1px solid #aaa;
}
.blog-wrapper .blog .blog-entry .the-container .social-container .social-share a {
  display: block;
  width: 48px;
  height: 45px;
  margin-left: 20px;
  background-position: top left;
  background-repeat: no-repeat;
}
.blog-wrapper .blog .blog-entry .the-container .social-container .social-share a:hover {
  background-position: bottom left;
}
.blog-wrapper .blog .blog-entry .the-container .social-container .social-share a span {
  display: none;
}
.blog-wrapper .blog .blog-entry .the-container .social-container .social-share .fb-share {
  background-image: url(../../img/share/share-fbook.png);
}
.blog-wrapper .blog .blog-entry .the-container .social-container .social-share .tw-share {
  background-image: url(../../img/share/share-twitter.png);
}
.blog-wrapper {
  /***************************************
	Media Queries
*/
  /*Tiny*/
}
.blog-wrapper .merc-container {
  position: relative;
}
.blog-wrapper .merc {
  position: relative;
  float: left;
  width: 100%;
  height: auto;
  background: #fff;
}
.blog-wrapper .merc li {
  text-align: center;
}
.blog-wrapper .merc h3 {
  position: absolute;
  top: 0;
  display: block;
  padding: 10px 5px;
  margin: 0;
  color: #fff;
  font-size: 14px;
  background: #ef4036;
}
.blog-wrapper .merc ul {
  width: 100%;
  min-height: 100px;
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}
.blog-wrapper .merc ul li {
  padding: 5%;
  margin: 0;
}
.blog-wrapper .merc ul li img {
  width: 100%;
  max-width: 400px;
}
.blog-wrapper .merc ul li h4 {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ef4036;
  text-align: center;
}
.blog-wrapper .merc ul li h4:hover {
  color: #333;
}
@media (max-width: 479px) {
  /*Small*/  .trailer-button a {
    width: 25%;
  }
  .top-content-container .the-content {
    width: 100% !important;
    margin: 0% !important;
    font-size: 16px !important;
    text-align: justify;
  }
  .actions-wrapper .action {
    margin-bottom: 30px;
  }
  .mailing-wrapper {
    text-align: right;
  }
  .mailing-list input[type='text'], .mailing-list input[type='email'] {
    width: 100%;
    margin-bottom: 5px;
  }
  .mailing-list input[type='submit'] {
    padding: 12px 5px;
    width: 30%;
  }
  .news-container .news-generic {
    margin-bottom: 30px;
  }
  .blog-wrapper .merc {
    margin-top: 15px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  /*Normal*/  .trailer-button a {
    width: 20%;
  }
  .actions-wrapper .action {
    margin-bottom: 30px;
  }
  .mailing-wrapper {
    text-align: right;
  }
  .mailing-list input[type='text'], .mailing-list input[type='email'] {
    width: 50%;
    margin: 0px 25% 5px 25%;
  }
  .mailing-list input[type='submit'] {
    width: 25%;
    margin: 0px 25% 5px 25%;
  }
  .news-container .news-generic {
    margin-bottom: 30px;
  }
  .blog-wrapper .merc {
    margin-top: 15px;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /*Bigger*/  .trailer-button a {
    width: 15%;
  }
  .blog-wrapper .merc {
    margin-top: 15px;
    text-align: center;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /*Huge*/}
