/* Lazy Load Styles */
.card-image {
    display: block;
    min-height: 20rem; /* layout hack */
    background: #fff center center no-repeat;
    background-size: cover;
    filter: blur(3px); /* blur the lowres image */
}

.card-image > img {
    display: block;
    width: 100%;
    opacity: 0; /* visually hide the img element */
}

.card-image.is-loaded {
    filter: none; /* remove the blur on fullres image */
    transition: filter 1s;
}


.card-list {
    display: block;
    margin: 1rem auto;
    padding: 0;
    font-size: 0;
    text-align: center;
    list-style: none;
}

.card {
    display: inline-block;
    width: 90%;
    max-width: 28rem;
    margin: 1rem;
    font-size: 1rem;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 0 3rem -1rem rgba(0,0,0,0.5);
    transition: transform 0.1s ease-in-out, box-shadow 0.1s;
}

.card:hover {
    transform: translateY(-0.5rem) scale(1.0125);
    box-shadow: 0 0.5em 3rem -1rem rgba(0,0,0,0.5);
}

.card-description {
    display: block;
    padding: 1em 0.5em;
    color: #e7501e;
    text-decoration: none;
}

.card-description h2:hover, .card-description h2:focus{
  color: #d67556;
}

.card a:hover, .card a:focus{
  color: #efefef;
}

.card-description > h2 {
    margin: 0 0 0.5em;
}

.card-description > p {
    margin: 0;
}

.card-title{
  margin: 15px 0;
  font-size: large;
}

/*style content*/
.section-title{
  display: block;
}

.header-fondo{
  background-image: url(../img/img4.jpeg);
  background-color: black;
  background-size: contain;
  background-repeat: no-repeat;
  color: #e14e1d;
  background-position-x: center;
}

.distribuidores-online-section{
  padding-top: 50px;
  padding-bottom: 0;
  display: block;
  position: relative;
  z-index: 120;
}

.marginbot-distribuidores-50{
    margin-bottom: 50px!important;
    border-top: 1px solid #d67556;
}

.btn-skin-card{
  color: #fff;
  background-color: #d67556;
  border-color: #e7501e;
}

.btn-skin-2{
  color: #fff;
  background-color: #e7501e;
  border-color: #d67556;
  margin: 10px;
  font-size: 25px;
  border-radius: 10px;
}