/*
    Theme Name: MindsInMotion
    Theme URI: 
    Author: Cristian Avilés
    Author URI: 
    Description: Theme diseñado para MintsInMotion.
    Version: 1.2.4
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    Tags: CSS, boostrap, mobile first
    Text Domain: MintsInMotion
*/

:root {
    --fuentePrincipal: 'Open Sans', sans-serif; 
    --fuenteHeadings:  'Raleway', sans-serif;

    /** Colores **/
    --azul: #ec2929;
    --naranja: #f19f30;
    --verde: #127427;

    --blanco: #FFFFFF;
    --negro: #000000;
    --grisClaro: #c1c1c1;

    --contenedor: 1200px;
}

/*fixed IE11 FLEXBOX*/
html,body {
    display: flex;
    flex-flow:column nowrap;
    /* height:100vh; fix IE11 */
    min-height:100%; /* fix IE11 */  
}

/* fixed produccion */
.wp-block-image img {
    height: auto;
    width: auto;
}



/* general */

html {
    box-sizing: border-box;
    font-size: 62.5%;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    font-family: var(--fuentePrincipal);
    font-size: 1.6rem;
    line-height: 2;
}
p {
    font-size: 1.8rem;
    line-height: 4rem;
}
h1,h2,h3,h4 {
    font-family: var(--fuenteHeadings);
    font-weight: 900;
}

/* movil */

h1 {
    font-size: 4rem;
}
h2 {
    font-size: 3.5rem;
    text-align:center;
    color: var(--azul);
}
h3 {
    font-size: 3rem;
}
h4 {
    font-size: 2.4rem;
}


/* desktop */
@media (min-width: 768px) {
    h1 {
        font-size: 4.8rem;
    }
    h2 {
        font-size: 4rem;
        text-align:center;
        color: var(--azul);
    }
    h3 {
        font-size: 3rem;
    }
    h4 {
        font-size: 2.4rem;
    }
}


/** Globales y utilidades **/
a {
    text-decoration: none;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.lead {
    font-size: 1.8rem; 
    line-height: 3rem;
}

input[type="text"],
[type="email"]
{
    font-size:1.8rem;
}

textarea {
    font-size: 1.8rem !important;
}

.card p {
    font-size: 1.8rem;
    line-height: 2rem;
}

.card .estado-producto  {
    position: absolute;
    top: 0;
    margin: 0rem -1.3rem;
    padding: -1rem;
    width: 12.5rem
}

.redes-sociales {
	visibility:hidden;
    position: absolute;
    display: flex;
    top: 50%;
    z-index: 10000;
    flex-direction: column;
    
    -webkit-filter: drop-shadow(1px 1px 0 rgb(169,168,168))
    drop-shadow(-1px -1px 0 rgb(255,195,195));
    filter: drop-shadow(2px 0px 0 rgb(158,158,158)) 
    drop-shadow(-1px -1px 0 rgb(248,181,181));
    padding: .5rem;
}

.redes-sociales img {
	visibility:hidden;
    width: 2rem;
}

@media (min-width: 768px) {
    .redes-sociales img {
	    visibility:hidden;
        width: 3rem;
    }   
}


.redes-sociales a:hover img {
    transition: .1s ease;
    width: 40px;
	visibility:hidden;
}

.fade-in {
    animation: fadeIn ease .5s;
}

.fade-out {
    animation: fadeOut ease .5s;
}

@keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;} 
 } 

 .site-header {
    background-color: black;
}

.navbar {
    background-color: black !important;
}

.navbar-brand img {
    -webkit-filter: drop-shadow(1px 1px 0 white)
                      drop-shadow(-1px -1px 0 white);
      filter: drop-shadow(2px 0px 0 white) 
              drop-shadow(-1px -1px 0 white);
    padding: .5rem;
}


/*menu redes sociales */
.sr-text {
    display: none;
}

.sociales a {
    -webkit-filter: drop-shadow(1px 1px 0 white)
                      drop-shadow(-1px -1px 0 white);
      filter: drop-shadow(1px 1px 0 white) 
              drop-shadow(-.5px -.5px 0 white);
    padding: .5rem;
}

.sociales {
    padding-top: 1rem;
 }

.sociales ul {
    display: flex;
    justify-content: center;
    margin: 1 0rem;
 
}

.sociales a::before {
    content:'';
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 3rem;
}

.sociales a[href*="facebook.com"]::before {
    background-image: url("img/icons/facebook.svg");
}

.sociales a[href*="instagram.com"]::before {
    background-image: url("img/icons/instagram.svg");
}

.sociales a[href*="youtube.com"]::before {
    background-image: url("img/icons/youtube.svg");
}

.sociales a[href*="twitter.com"]::before {
    background-image: url("img/icons/twitter.svg");
}


/***********************/
/*  PAGE FRONT        */
/***********************/


/* iconos left */
.icon-header-left {
    margin: 0 1rem;
    padding: 0
  }
  
  .icon-header-left:first-child {
      margin: 0;
  }

/* iconos redes sociales right */
.icon-redes-header {
    width: 35px;
    margin: .2rem 0rem;
}


/*header*/
.logos .logo {
    padding: 1rem;
    margin: 1 0rem;
    width: 120px
}

@media (min-width: 768px) {
    .logos .logo {
        width: 200px
    }
}

@media (min-width: 768px) {
    
}

/* video */

.video-background{
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, .5);
}


/*--- Fixed Video Background iOS/Mobile Style--*/
.video-wrap {
  clip: rect(0, auto, auto, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#video {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
  z-index: -1000;
}
video { 
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
  background: url('') no-repeat;
  background-size: cover;
  transition: 1s opacity;
}


.caption {
    position: absolute;
    top: 30%;
    width: 100%;
    color:white;
}

.caption h1 {
    font-size: 2.5rem;
    text-shadow: .5rem .5rem .8rem black;
    padding-bottom: .5rem;
    padding-top: 8rem;
}
.caption h3 {
    font-size: 1.4rem;
    text-shadow: .1rem .1rem .5rem black;
    padding-bottom: 1.2rem;
}


.btn-lg {
    border-width: medium;
    border-radius: 0;
    font-size: 1.5rem;
    padding: .6rem 1.3rem;
    margin: 3rem;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .caption {
        position: absolute;
        top: 30%;
        width: 100%;
        color:white;
    }
    
    .caption h1 {
        font-size: 5rem;
        text-shadow: .5rem .5rem .8rem black;
        padding-top: 15rem;
    }
    .caption h3 {
        font-size: 2rem;
        text-shadow: .1rem .1rem .5rem black;
    }
    
    .btn-lg {
        border-width: medium;
        border-radius: 0;
        font-size: 1.5rem;
        padding: .6rem 1.3rem;
    }
    
}

/* DATOS SERVICIOS */
.servicio {
    border-top: solid #f7f4f4 .2rem;
    border-bottom: solid #f7f4f4 .2rem;
}

.showcase-img {
    background-position: 0;
}

.showcase-text {
  padding: 3rem;
}

.showcase-img {
  min-height: 30rem;
  background-size: cover;
}


/***********************/
/*  NAVBAR             */
/***********************/
.menu-sitio .menu a {
    font-family: var(--fuenteHeadings);
    text-transform: uppercase;
    padding: 1rem;
    display: block;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
} 

.menu-sitio .menu .current-menu-parent {
    background-color: #d9dff9;
} 

.menu-sitio .menu li:hover {
    background-color: var(--naranja);
}
.menu-sitio .menu li.current_page_item a {
    border-bottom: .5rem solid var(--azul);
}

.menu-sitio .menu .current-menu-ancestor .sub-menu .current-menu-item  {
    border-bottom: .5rem solid var(--azul);
}

.menu-sitio .menu li.current_page_item .sub-menu li a {
    border: none;
}

/* navbar-elementos-main*/
@media (min-width: 768px) {    
    .menu-sitio .menu {
        display: flex;
        justify-content: space-between;
        padding-right: 10rem;
    }
    .menu-sitio .menu li {
        width: auto;
    }
    .menu-sitio .menu a {
        font-family: var(--fuenteHeadings);
        text-transform: uppercase;
        color: white;
        padding: 1rem;
        display: block;
        font-weight: 700;
        font-size: 1rem;
        text-align: center;
        text-decoration: none;
    } 
}

@media (min-width: 1100px) {
    .menu-sitio .menu {
        display: flex;
        justify-content: space-between;
        padding-right: 20rem;
    }
     .menu-sitio .menu a {
        font-size: 1.1rem;
    }
}

/*subtitulos*/
.menu-sitio .menu ul {
    display: none;
    position: absolute;
    text-align: left;
    width: 160px;
    box-shadow: 0px 2px 2px gray;
    z-index: 1000;
}

.menu-sitio .menu li:hover > ul {
    display: block;
}

.menu-sitio .menu li:hover > ul > li {
    background-color: #f2f1f0;
    border-bottom: 1px solid #D6D6D6;
    padding: .1rem;
    line-height: 25px;   
    transition: all 300ms;
}

.menu-sitio .menu li:hover > ul > li:hover {
    box-shadow: 0px 0px 6px #ccc inset;
    background-color: rgb(230,226,226);
}

.menu-sitio .menu li:hover > ul > li a {
    color: #666666
}


/***********
    Blog
*************
/* blog noticias front page */
.listado-blog {
    margin-top: 2rem;
}

.listado-blog .card-blog .contenido {
    padding: 0 2rem 2rem 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .listado-blog {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .listado-blog .card-blog .contenido {
        text-align: left;
    }
    
    .card-blog {
        flex: 0 0 calc(50% - 2rem);
        position: relative;
        border: none;
    }
    
     .card-blog .contenido {
        position: absolute;
        bottom: 0;
        left: 0;
        text-align: left;
        z-index: 2;
    }
    
    .card-blog .contenido h3 {
        color: white !important;
    }

    .card-blog img {
        display: block;
        transition: transform .5s ease;
    }
    .card-blog:hover img {
        transform: scale(1.1);
    }
}

@media (max-width: 768px ) {
    .card-blog .contenido h3 {
        padding-top: 2rem;
    }
    .card-blog .contenido p {
        font-weight: 700;
        font-size: 2rem;
        margin: 0;
        color: black !important;
    }
}

.card-blog {
    margin-top: 4rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--grisClaro);
    overflow: hidden;
}

.card-blog  .contenido {
    padding: 2rem;
}

.card-blog .contenido p {
    font-weight: 700;
    font-size: 2rem;
    margin: 0;
    color: white;
}

.card-blog .contenido h3 {
    margin: 0rem;
    line-height: 1;
    color: var(--colorPrimario);
}

.card-blog .contenido h3:hover  {
    color: orange !important;
}

.card-blog .contenido a {
    text-decoration: none;
} 

.card-blog:last-of-type  {
    border: none;
}

@media only screen and (min-width: 768px) and (max-width: 1074px) {
    .card-blog h3 {
        font-size: 2rem;
    }
}


@media (min-width: 768px) {
    .gradient::after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+39,0.3+69,0.7+100 */
        background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0) 39%, rgba(0,0,0,0.3) 69%, rgba(0,0,0,0.7) 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 39%,rgba(0,0,0,0.3) 69%,rgba(0,0,0,0.7) 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 39%,rgba(0,0,0,0.3) 69%,rgba(0,0,0,0.7) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#b3000000',GradientType=0 ); /* IE6-9 */
    }
}





/***********************/
/* HEADER PAGE SINGLES */
/***********************/
.hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 45rem;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero::after {
    position: absolute;
    background-color: rgba(0,0,0,0.6);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
}

.hero h1 {
    color: white;
    z-index: 1;
    position: relative;
}

.overlapping {
    padding-top: 2rem;
}
@media (min-width: 768px) {
    .overlapping {
        margin-top: -9rem;
        background-color: white;
        position: relative;
        padding: 6rem;
    }
}

  




/**********************/
/* Galeria    */  
/**********************/

.gallery {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-width: 33%;
    -moz-column-width: 33%;
    column-width: 33%; }
    .gallery .pics {
    -webkit-transition: all 350ms ease;
    transition: all 350ms ease; }
    .gallery .animation {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); 
}

@media (max-width: 450px) {
    .gallery {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
        -webkit-column-width: 100%;
        -moz-column-width: 100%;
        column-width: 100%;
    }
}

@media (max-width: 400px) {
    .btn.filter {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }
}
    

/**********************/
/*  Servicios   */  
/**********************/
.listado-servicios{
    align-content: center;
    margin: 2rem 0rem;
}

.servicios img {
    height: 450px;
    width: auto;
    object-fit: cover;
}

.servicios .contenido {
    padding: 2rem;
}


.etiqueta {
    margin-right: 2rem;
    background-color: orangered;
    color: white;
    font-family: var(--fuentePrincipal);
    font-size: 1.2rem;
    padding: .5rem 2.5rem;
    border-radius: .5rem;
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 1rem 0;
    font-size: 1.2rem;
}

.etiqueta:last-of-type {
    margin-right: 0;
}

.contenido .contacto {
    margin: 1rem 0;
    
}
.contenido .contacto a {
    color: black;
    text-decoration: none;
}

.contenido .contacto a:hover {
    transition: .2s ease-in;
    color: orangered;
    font-size: 1.5rem;
    text-decoration: none;
    
}


@media (min-width: 768px) {
   .listado-servicios{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .listado-servicios li {
        flex: 0 0 calc(50%);
        border-bottom: none;
        position: relative;
    }
    
   .servicios .contenido {
       position: absolute;
       top: 0;
       width: 100%;
       height: 100%;
       background-color: rgba(0, 0, 0, 0.7);
       color: white;
       display: flex;
       flex-direction: column;
       justify-content: center;
       opacity: 0;
       transition: opacity .5s ease-in;
    }
    
    .servicios .contenido:hover {
        opacity: 1;
    }

    .contenido .contacto a {
        color: white;
    }
}




/* 

.producto-galeria .card {
    border: none;
}

fieldset.active {
    display: block !important
}

fieldset {
    display: none
}

.pic0 {
    width: 400px;
    height: 500px;
    margin-left: 85px;
    margin-right: auto;
    display: block
}

.product-pic {
    padding-left: auto;
    padding-right: auto;
    width: 100%
}

.thumbnails {
    position: absolute
}

.fit-image {
    width: 100%;
    object-fit: cover
}

.tb {
    width: 62px;
    height: 62px;
    border: 1px solid grey;
    margin: 2px;
    opacity: 0.4;
    cursor: pointer
}

.tb-active {
    opacity: 1
}

.thumbnail-img {
    width: 60px;
    height: 60px
}

@media screen and (max-width: 768px) {
    .pic0 {
        width: 250px;
        height: 350px
    }
} */



/***********************/
/* BLOG Y SIDEBAR       */
/***********************/
@media (min-width: 768px) {
   
}

.entrada-blog {
    padding-top: 3rem;
    padding-bottom: 4rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid black;
}

.entrada-blog:last-of-type{
    border: none;
}

.informacion-entrada .fecha {
    background-color: var(--naranja);
    height: 7rem;
    text-align: center;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.informacion-entrada {
    font-size: 700;
}
.informacion-entrada .fecha time {
    font-size: 3rem;
    font-family: var(--fuenteHeadings);
}
.informacion-entrada .fecha span {
    font-size: 1.8rem;
    display: block;
}
.autor {
    padding-top: 2rem;
    text-transform: uppercase;
    font-family: var(--fuenteHeadings);
}
.autor span {
    color: var(--naranja);
    font-weight: 700;
    font-size: 2rem;
}

.entrada-blog p {
    margin: .5rem 0;
    line-height: 2.4rem;
}

.contenido-entrada a {
    font-size: 1.5rem;
}

/* SIDEBAR */
.widget h3 {
    text-transform:  uppercase;
    font-weight: 700;
    margin: 1rem 0;
}

.widget a {
    color: var(--negro);
    text-decoration: none;
}

.widget a:hover {
    /* color: var(--naranja); */
	color: white;
    font-weight: bold;
}




/***********|************/
/* Footer              */
/***********************/
.site-footer .menu .separador {
    display: none;
}

.site-footer .menu li  {
    flex: 1;
}
/* .site-footer .menu li a {
    font-size: 1.1rem !important;
} */



.site-footer .menu li.current_page_item a {
    border-bottom: .5rem solid var(--azul);
 }


.site-footer .menu .menu-item-has-children .sub-menu li a {
    color: #969799;
    font-size: 1.2rem;
    
}

.footer-nav .menu li.current_page_item .sub-menu li a {
    border: none;
}

.site-footer .menu .menu-item-has-children .sub-menu .separador {
    display: none;
}

@media (min-width: 768px) {
    .site-footer .menu .sub-menu li:hover   {
        background-color: var(--naranja);
        color: black;
    }
}

.site-footer {
    margin: 0 1rem;
    padding: 3rem 0;
    border-top: 1px solid var(--grisClaro);
}
@media (min-width: 768px) {
    .footer-nav .menu {
        display: flex;
        justify-content: center;
    }
}
.footer-nav .menu li {
    text-align: center;
}
.footer-nav .menu a {
    color: var(--negro);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.1rem;
    font-family: var(--fuenteHeadings);
}
.separador {
    display: none;
}
@media (min-width: 768px) {
    .separador {
        display: inline;
        margin: 0 2rem;
    }
    .footer-nav li:last-of-type .separador {
        display: none;
    }
}

.site-footer .sociales {
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    margin: 1 0rem;
 }

.site-footer .direccion i{
    font-size: 1.5rem;
}

.site-footer .direccion p{
    text-align: center;
    font-size: 1.2rem;
}

.copyright {
    text-align: center;
    font-family: var(--fuentePrincipal);
    font-size: 1.8rem;
    margin: 2rem 0 0 0;
}

@media (min-width: 768px) {
    .copyright {
        font-size: 2.4rem;
        margin: 0;
    }
}

.icon-header-left a {
    text-decoration: none;
    color: black;
}

.icon-header-left a:hover {
    text-decoration: none;
    color: var(--azul);
}



/* Fixed theme */
/* cartas de distribuidores e yta*/

@media (min-width: 768px) {

    .card-servicio {
        height: 310px;
    }
    .card-yta {
        height: 250px;
    }
    
}

@media (min-width: 1230px ) {
    .card-yta {
        height: 220px;
    }
}


.email-contact {
    text-decoration: none;
    border: none;
    color: black;
    font-size: 1.1rem;
}

.email-contact:hover {
    color: var(--azul);
    text-decoration: none;
}


/* Fixed Produccion */
.sidebar {
	background-color: #FBAB7E;
	background-image: linear-gradient(0deg, #FBAB7E 0%, #F7CE68 100%);
}


/*sidebar*/
.custom-shape-divider-top-1609356280 {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    padding-left:15px;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
 }

.custom-shape-divider-top-1609356280 svg {
    position: relative;
    display: block;
    width: calc(100% - 15px);
    height: 40px;
}

.custom-shape-divider-top-1609356280  .shape-fill {
        /* fill: rgb(139,199,211); */
	fill: orange;
}

.custom-shape-divider-bottom-1609356712 {
    position: block;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1609356712 svg {
    position: relative;
    display: block;
    height: 55px;
    width: 100%;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1609356712 .shape-fill {
    /* fill: #023e85; */
	 fill:  #F57938;
}
/*fin sidebar*/


/**********************/
/* Agregado Version 3 */
/**********************/
/* banner normal */
.banner-main  {
    margin-top: 5rem;
}

.banner-main {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

@media (min-width: 1700px) {
    .contenido-banner {
        padding: 0rem 5rem;
    }
}

@media (min-width: 920px) {
    .imagen-banner {
        width: 50%;
    }

    .contenido-banner {
        height: 520px;
    }
}

@media (max-width: 480px) {
    .imagen-banner img {
        width: 250px;
        height: auto;
    }
}

.contenido-banner {
    width: auto;
    height: auto;
    padding-top: 4rem;
    display: flex;
    flex-flow: row wrap;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    padding-bottom: 5rem;
}

.contenido-banner  {
    text-transform: uppercase;
}


.contenido-banner .texto-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    margin: 0;
}

.contenido-banner h2  {
    color: white;
}

.contenido-banner h3  {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin: 0 1rem;
    padding-top: 1rem;
}

.contenido-banner .texto-banner a {
    height: auto;
    margin-top: 3rem;
    font-size: 1.4rem;
    font-weight: 700;
    width: 200px;
}

.imagen-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
}

.imagen-banner img {
    margin: 0;
    padding: 0;
} /* fin banner normal */

/* banner con styles automatizado "PRODUCTOS" */
.banner-secundario {
    background-position: center center;
    background-repeat: no-repeat;
}

.banner-secundario .contenido-banner {
    min-height: 350px;
    background: rgba(0, 0, 0, 0.8) !important;
}

@media (min-width: 768px) {
   .banner-secundario {
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 100% auto;
    }
    
    .banner-secundario .contenido-banner {
        min-height: 350px;
    }
} /* FIN banner con styles automatizado "PRODUCTOS" */


/* arreglar colores de targeta servicios */

.servicios .contenido a {
    text-decoration: none;
}


@media (min-width: 768px) {
    
    .servicios .contenido .text-white:hover {
        color: orange !important;
        font-size: 2rem;   
    }

    .servicios .contenido .text-white {
      color: white !important;
      transition: font-size .15s ease-in;     
    }
}

@media (max-width: 768px) { 
    .servicios .contenido .text-white {
       transition: color .1s ease-in;  
       color: black !important;
    }
    .servicios .contenido .text-white:hover {
         color: orange !important;

    }
}

/*fixed imagen-vectorial banner */
.contenido-banner {
    padding-bottom: 0rem;
}