/*-----------------------------------------------------------------------------------------------------------------------------------
    ESTILOS GENERALES
-----------------------------------------------------------------------------------------------------------------------------------*/

/* ---------- Fuentes ---------- */

@font-face {
    font-family: FuturaBold;
    src: url('../fonts/Linotype - FuturaLTPro-Bold.otf');
}

.fnt-bold {
    font-family: FuturaBold !important;
}

@font-face {
    font-family: FuturaBook;
    src: url('../fonts/Linotype - FuturaLTPro-Book.otf');
}

.fnt-book {
    font-family: FuturaBook !important;
    line-height: 1.5;
}

/* ---------- Colores IXOS ---------- */

.verde-ixos {
    color: #00AEA9 !important;
}

.bg-verde-ixos {
    background-color: #00AEA9 !important;
}

.btn-verde-ixos {
    color: white !important;
    background-color: #00AEA9 !important;
}

.rojo-ixos {
    color: #E2241A !important;
}

.bg-rojo-ixos {
    background-color: #E2241A !important;
}

.btn-rojo-ixos {
    color: white !important;
    background-color: #E2241A !important;
}

.gris-ixos {
    color: #3e3e3c !important;
}

.bg-gris-ixos {
    background-color: #3e3e3c !important;
}

/* ---------- Color placeholders ---------- */

::-webkit-input-placeholder { /* WebKit browsers */
    color: #00AEA9;
    opacity: 0.7;
}

:-moz-placeholder { /* Mozilla Firefox 4 - 18 */
    color: #00AEA9;
    opacity: 0.7;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #00AEA9;
    opacity: 0.7;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #00AEA9;
    opacity: 0.7;
}

/* ---------- Delays de animación ---------- */

.delay {
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
}

.delay-02 {
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
}

.delay-04 {
    animation-delay: 0.35s;
    -webkit-animation-delay: 0.4s;
}

.delay-06 {
    animation-delay: 0.55s;
    -webkit-animation-delay: 0.6s;
}

/* ---------- General ---------- */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: white !important;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    user-select: none;
}

section {
    width: 100%;
    margin: auto;
    padding: 120px 0;
    min-height: 100vh !important;
    font-family: FuturaBook;
    text-align: center;
    background-color: white;
}

.ocultar {
    display: none !important;
}

.mostrar {
    display: inline-block !important;
}

.noVisible {
    visibility: hidden;
}

.visible {
    visibility: visible;
}

h1 {
    margin-bottom: 50px;
}

h5 {
    margin-top: 50px;
    margin-bottom: -25px;
}

.linea-separadora-top {
    border-top: solid 1px #00AEA9;
    margin-top: 10px;
    padding-top: 15px;
}

.linea-separadora-bottom {
    border-bottom: solid 1px #00AEA9;
}

.flecha {
    margin-right: -18px;
    margin-top: -2px;
}

.flechaDescarga {
    width: 30% !important;
    margin-left: 40%;
    margin-top: 0 !important;
}

.btn {
    border-radius: 0;
    color: white;
    font-family: FuturaBold;
    padding: 5px 40px;
}

.btnShadow {
    box-shadow: 6px 8px 1px rgba(0,0,0,0.2);
}

.btnShadow-mini {
    box-shadow: 4px 6px 1px rgba(0,0,0,0.2);
}

    .btnShadow:hover, .btnShadow:active, .btnShadow-mini:hover, .btnShadow-mini:active {
        box-shadow: none;
        transition: ease-in-out 0.3s;
    }

.quitarGrayscale {
    filter: grayscale(0) !important;
}

hr {
    margin-top: -25px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    body {
        background-color: white !important;
    }

    section {
        padding: 90px 0 30px 0;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .btn {
        padding: 5px 20px;
    }

    .flechaDescarga {
        width: 22% !important;
        margin-left: 60%;
    }
}

@media (min-width: 769px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}

/* ---------- Avisos legales ---------- */

.vista {
    width: 100%;
    float: left;
    padding: 0 20% 20px 20%;
    margin-bottom: 20px;
    background-color: white;
    font-family: FuturaBook !important;
    font-size: 1.1rem;
}

    .vista h2 {
        font-size: 2.5rem;
        margin-top: 120px;
        margin-bottom: 50px;
        text-align: center;
    }

    .vista h3 {
        font-size: 1.2rem;
        font-family: FuturaBold;
        margin-top: 60px;
        margin-bottom: 30px;
    }

    .vista p, .vista li {
        margin-bottom: 20px;
        font-size: 1rem;
    }

    .vista tr, th, td {
        border: 1px solid black;
        text-align: center;
        padding: 10px 20px;
    }

.notas {
    margin-top: 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .vista {
        padding: 0 5% 0 5%;
    }

        .vista h2 {
            font-size: 1.8rem;
            margin-top: 90px;
        }

        .vista ul {
            overflow-x: scroll;
        }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #quienessomos, #productos, #servicios, #noticias, #contacto {
        padding-left: 5% !important;
        padding-right: 5% !important;
    }

        #productos ul {
            justify-content: initial !important;
        }

        #productos li {
            width: 18% !important;
            margin: 4% 3.5% !important;
        }


        #servicios li {
            width: 22% !important;
            margin: 2% 1.5% !important;
        }

    .contentNoticias, .container-tiendas, #FormContacto, .pContact {
        width: 100% !important;
        margin-left: 0 !important;
    }

    .card {
        width: 30% !important;
    }

    .tiendaCard {
        width: 48% !important;
    }

    #popupBody {
        width: 100% !important;
        margin: 0 !important;
    }

    .divTeLlamamos2 {
        width: 100% !important;
        height: 100% !important;
        overflow: auto !important;
        top: 0 !important;
        z-index: 1820 !important;
    }
}

/*-----------------------------------------------------------------------------------------------------------------------------------
    MENÚ DE NAVEGACIÓN RESPONSIVE
-----------------------------------------------------------------------------------------------------------------------------------*/

.navbar {
    position: fixed;
    font-size: 0.94rem;
    padding: 0 2rem !important;
    border-bottom: 1px solid white;
}

    .navbar a {
        color: white;
    }

        .navbar a:hover {
            opacity: 0.8 !important;
        }

.navbar-brand {
    padding: 0 1rem !important;
    margin-right: 2rem !important;
}

.navbar-toggler {
    font-size: 1.6rem;
    border: none;
    margin-right: 1rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
    vertical-align: initial;
}

.navbar-expand-md .navbar-nav .nav-link {
    padding: 0 0.8rem;
}

.nav-link {
    padding: 1.2rem 1rem 0.9rem 1rem !important;
}

.login-desktop {
    margin: 0 1rem;
    font-size: 0.86rem !important;
    position: absolute;
    right: 1.4rem;
    border: 1px solid white;
}

.login-mobile {
    display: none;
}

.btnNav {
    border-radius: 0;
    color: white;
    font-family: FuturaBold;
    padding: 10px 20px;
}

    .btnNav:hover {
        color: black;
        text-decoration-line: none;
        background-color: white;
    }

.logoIXOS {
    width: 100px;
    margin-top: -3px;
    padding: 0.9rem 0;
}

.nav-unete {
    margin-left: 15px;
    cursor: pointer;
    padding: 1.1rem !important;
}

@media (min-width: 480px) and (max-width: 1460px) {
    .nav-unete {
        margin-left: 0 !important;
        position: absolute;
        left: 0;
        bottom: -50px;
        width: 100%;
        height: 50px;
        text-align: center;
        border-bottom: 1px solid white;
    }

    .login-desktop {
        right: 0;
        bottom: -46px;
        background-color: white;
        color: black !important;
    }
}

@media (max-width: 768px) {
    .navbar, .navbar-brand {
        padding: 0 !important;
    }

    .nav-link {
        padding: 0.9rem 2rem !important;
    }

    .nav-unete {
        margin-left: 0;
    }

    .logoIXOS {
        margin-left: 2rem;
    }

    .login-desktop {
        display: none;
    }

    .login-mobile {
        display: inline-block;
        width: 100%;
        text-align: left;
        padding: 10px 0;
        padding-left: 2rem;
        margin-top: 0 !important;
        margin-bottom: 10px !important;
        background-color: white;
        color: black !important;
    }

    button:focus {
        outline: none !important;
    }

    .btnNav {
        width: 100%;
    }
}

/*-----------------------------------------------------------------------------------------------------------------------------------
    SECCIÓN HOME
-----------------------------------------------------------------------------------------------------------------------------------*/

#home {
    height: 100%;
    margin: 0;
    padding: 0;
}

.container h2 {
    color: white;
}

#video {
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3000;
    background-color: #E2241A;
}

#video2 {
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3000;
    background-color: #E2241A;
}

video {
    height: 90%;
    margin: auto;
}

#videoCerrar {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 25px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    opacity: 0.9;
    z-index: 3000;
}

#videoCerrar2 {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 25px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    opacity: 0.9;
    z-index: 3000;
}

svg {
    position: absolute;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 10;
}

@media (max-width: 768px) {
    svg {
        width: 100% !important;
        z-index: 0;
    }

    video {
        height: 100%;
        width: 100%;
    }

    .videoPequeño {
        margin-top: 15px !important;
    }
}

@media (min-width: 1024px) {
    myJump {
        display: block;
    }
}

/*-----------------------------------------------------------------------------------------------------------------------------------
    ESTILOS RSS
-----------------------------------------------------------------------------------------------------------------------------------*/

.RSScontent {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .RSScontent hr {
        color: #00AEA9 !important;
        border-top: 2px solid #00AEA9 !important;
        margin: -15px 0 20px 0;
    }

.card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 28%;
    background-color: white;
    position: relative;
}

    .card:hover {
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.6);
    }

.noticias {
    text-align: left;
    font-size: 1rem;
    margin-bottom: 25px !important;
}

    .noticias a {
        font-size: 1.5rem !important;
    }

.ultima {
    display: none;
}

@media (max-width: 768px) {
    .card {
        width: 100%;
        margin: auto;
        margin-bottom: 2.5rem;
    }

    .ultima {
        display: inline-block;
    }
}

/* ---------- Contenido ---------- */

.contenidoRSS {
    padding: 10px;
    padding-bottom: 0;
}

    .contenidoRSS h3 {
        position: relative;
        font-family: FuturaBold;
        font-size: 0.9em;
        color: black;
        margin-top: 4px;
        margin-bottom: 35px;
        display: block;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: left;
    }

.fechaRSS {
    color: white;
    background-color: rgba(0,0,0,0.3);
    font-size: 0.7em;
    position: absolute;
    padding: 10px !important;
}

.imgRSS {
    width: 100%;
    min-height: 200px;
    background-size: cover;
    background-position-x: center;
}

    .imgRSS p {
        position: absolute;
        bottom: -5px;
        right: 0;
        font-size: 0.8em;
        background-color: white;
        padding: 0 15px !important;
    }

/*-----------------------------------------------------------------------------------------------------------------------------------
    SECCIÓN QUIÉNES SOMOS
-----------------------------------------------------------------------------------------------------------------------------------*/

#quienessomos, #noticias {
    padding-left: 17.5%;
    padding-right: 17.5%;
}

    #quienessomos p {
        font-family: FuturaBook;
    }

    #quienessomos .quienesP {
        width: 80% !important;
        margin: 3rem auto !important;
    }

    #quienessomos .fachada {
        width: 100%;
        height: 450px;
        overflow: hidden;
        background-size: 100%;
        background-position-y: -120px;
        margin-top: 50px;
    }

.claim {
    margin-top: 50px;
}

    .claim img {
        max-height: 450px;
    }

@media (max-width: 768px) {
    #quienessomos, #noticias {
        padding-left: 5%;
        padding-right: 5%;
    }

        #quienessomos h2 {
            padding-left: 12%;
        }

        #quienessomos .fachada {
            height: 200px;
            background-position-y: -20px;
        }
}

/*-----------------------------------------------------------------------------------------------------------------------------------
    SECCIÓN PRODUCTOS
-----------------------------------------------------------------------------------------------------------------------------------*/

#productos {
    padding-left: 17.5%;
    padding-right: 17.5%;
    background-color: whitesmoke !important;
}

    #productos ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 110%;
        margin: auto;
        margin-top: 50px;
        margin-left: -5%;
        padding-left: 0 !important;
    }

    #productos li {
        list-style: none;
        text-align: center;
        width: 9%;
        margin: 0;
        border-bottom: solid 2px #00AEA9;
        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
        position: relative;
        background-color: white;
    }

        #productos li a {
            font-family: FuturaBook;
            color: black;
            font-size: 1em;
        }

            #productos li a:hover {
                text-decoration-line: none !important;
                text-decoration: none !important;
            }

.contentList {
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

#productos img {
    width: 50%;
    margin-top: 20px;
}

#productos p {
    font-size: 1em;
    margin-bottom: 10px;
    color: black;
}

#productos a {
    font-size: 0.9rem;
}

    #productos a:hover {
        opacity: 1 !important;
    }

#productos .enlaceCatalogo {
    position: absolute;
    bottom: -92px;
    right: 0;
    width: 100%;
}

.enlaceCatalogo p {
    text-align: right !important;
    font-size: 0.7rem !important;
    margin-top: 5px !important;
}

.enlaceCatalogo:hover .descargaCatalogo {
    visibility: visible !important;
    text-align: right !important;
}

.enlaceCatalogo a:hover {
    list-style-type: none !important;
}

.containerProd {
    position: relative;
    height: 100px;
}

.overlayProd {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #00AEA9;
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
    opacity: 0.4;
}

#productos li:hover .overlayProd {
    height: 200%;
    transition: 0.3s;
}

.textProd {
    white-space: nowrap;
    color: white !important;
    font-size: 20px;
    position: absolute;
    overflow: hidden;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.banner-fichasTecnicas, .banner-presentacion, .banner-PDM {
    margin-top: 7%;
}

    .banner-fichasTecnicas img, .banner-presentacion img, .banner-PDM img {
        width: 65% !important;
        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.5);
    }

        .banner-fichasTecnicas img:hover, .banner-presentacion img:hover, .banner-PDM img:hover {
            box-shadow: 0 4px 8px 0 rgba(0,0,0,0.3);
            cursor: pointer;
        }

.descargaCatalogo {
    visibility: hidden;
}

.descargaCatalogoMV {
    visibility: hidden;
}

#productos .tarifaPrecios {
    margin-top: 65px !important;
}

@media (max-width: 768px) {
    .containerProd {
        height: 80px;
    }

    #productos {
        padding-left: 5%;
        padding-right: 5%;
    }

        #productos ul {
            width: 100%;
            padding: 0;
            margin-left: 0;
        }

        #productos li {
            width: 30%;
            margin-left: 0;
            margin-bottom: 65px;
        }

        #productos img {
            margin-top: 12px;
        }

    .descargaCatalogo {
        display: none;
    }

    .descargaCatalogoMV {
        visibility: visible;
    }

    .banner-fichasTecnicas, .banner-presentacion, .banner-PDM {
        margin-top: 0;
        width: 112%;
        margin-left: -6%;
        margin-bottom: 30px;
    }

    .banner-presentacion {
        margin-top: 22%;
        margin-bottom: -25px;
    }

        .banner-fichasTecnicas img, .banner-presentacion img, .banner-PDM img {
            width: 100% !important;
        }

    .contentList {
        height: 100%;
    }

    #productos .enlaceCatalogo {
        bottom: -64px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .descargaCatalogo {
        display: none;
    }

    .descargaCatalogoMV {
        visibility: visible;
    }

    #productos .enlaceCatalogo {
        bottom: -60px;
    }
}

@media (min-width: 1025px) and (max-width: 1460px) {
    #productos ul {
        justify-content: flex-start;
    }

    #productos li {
        width: 18%;
        margin: 1%;
        margin-top: 55px;
    }
}

/*-----------------------------------------------------------------------------------------------------------------------------------
    SECCIÓN SERVICIOS
-----------------------------------------------------------------------------------------------------------------------------------*/

#servicios {
    padding-left: 17.5%;
    padding-right: 17.5%;
}

    #servicios ul {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        margin: auto;
        margin-top: 50px;
        padding-left: 0 !important;
    }

    #servicios li {
        list-style: none;
        text-align: center;
        overflow: hidden;
        width: 15%;
        margin: 1% 0.5%;
        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    }

    #servicios ul li img {
        height: 100%;
        margin-left: -10%;
        border-bottom: solid 2px #00AEA9;
    }

    #servicios ul li p {
        font-size: 1em;
        margin: 5px 10px 15px 10px;
    }

    #servicios ul li a {
        font-size: 0.9rem;
        display: inline-block;
        overflow: hidden;
        height: 150px;
    }

        #servicios ul li a:hover img {
            height: 140%;
            margin-left: -30%;
            margin-top: -10%;
        }

    #servicios .banner-fichasTecnicas img {
        height: auto !important;
        margin-left: 0px;
        border-bottom: none;
        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.3);
    }

        #servicios .banner-fichasTecnicas img:hover {
            height: 100%;
            margin-left: 0;
            margin-top: 0;
            box-shadow: 0 4px 8px 0 rgba(0,0,0,0.5);
            cursor: pointer;
        }

    #servicios .banner-fichasTecnicas a {
        height: auto !important;
    }

@media (max-width: 768px) {
    #servicios {
        padding-left: 5%;
        padding-right: 5%;
    }

        #servicios ul {
            width: 100%;
            padding: 0;
            margin-bottom: 40px;
        }

        #servicios li {
            width: 48%;
            margin: 1%;
            margin-bottom: 30px;
        }

        #servicios ul li a {
            height: 120px;
        }
}

@media (min-width: 1025px) and (max-width: 1460px) {
    #servicios li {
        width: 23%;
        margin: 1%;
    }
}

/*-----------------------------------------------------------------------------------------------------------------------------------
    SECCIÓN NOTICIAS
-----------------------------------------------------------------------------------------------------------------------------------*/

#noticias {
    background-color: whitesmoke !important;
}

    #noticias .contentNoticias {
        margin-top: 6%;
        width: 80%;
        margin-left: 10%;
    }

.noticiasP {
    margin-top: 30px;
}

@media (max-width: 768px) {
    #noticias .contentNoticias {
        width: 90%;
        margin-left: 5%;
        margin-top: 50px;
    }
}

@media (min-width: 1025px) and (max-width: 1460px) {
    #noticias .contentNoticias {
        width: 100%;
        margin-left: 0;
    }
}
/*-----------------------------------------------------------------------------------------------------------------------------------
    SECCIÓN MARCAS
-----------------------------------------------------------------------------------------------------------------------------------*/

#marcas {
    padding-left: 17.5%;
    padding-right: 17.5%;
}

#marcasContent {
    display: flex;
    margin-top: 100px;
}

    #marcasContent img {
        width: 70%;
    }

.slider {
    position: relative;
    width: 95%;
    height: 100px;
    margin: auto;
    background: white;
    overflow: hidden;
}

    .slider::before, .slider::after {
        background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
        content: "";
        height: 100px;
        position: absolute;
        z-index: 2;
    }

    .slider::after {
        right: 0;
        top: 0;
        transform: rotateZ(180deg);
    }

    .slider::before {
        left: 0;
        top: 0;
    }

    .slider .slide-track {
        -webkit-animation: scroll 120s linear infinite;
        animation: scroll 120s linear infinite;
        display: flex;
        width: calc(300px * 122);
    }

    .slider .slide {
        width: 250px;
    }

.manualLeft {
    animation: left 1s linear initial;
}

.manualRight {
    animation: right 1s linear initial;
}

@media (max-width: 768px) {
    #marcas {
        padding-left: 5%;
        padding-right: 5%;
    }

    #marcasContent img {
        width: 90%;
        filter: none;
    }

    .slider {
        width: 90% !important;
        height: 90px;
    }

        .slider .slide-track {
            -webkit-animation: scrollMV 150s linear infinite;
            animation: scrollMV 150s linear infinite;
            width: calc(150px * 122);
        }

        .slider .slide {
            width: 100px;
        }
}

@media (min-width: 769px) and (max-width: 899px) {
    .slider {
        width: 100%;
    }

        .slider .slide-track {
            -webkit-animation: scrollTab 120s linear infinite;
            animation: scrollTab 120s linear infinite;
            display: flex;
            width: calc(300px * 122);
        }
}

@media (min-width: 900px) and (max-width: 1024px) {
    .slider {
        width: 85%;
    }

        .slider .slide-track {
            -webkit-animation: scrollTab 120s linear infinite;
            animation: scrollTab 120s linear infinite;
            display: flex;
            width: calc(300px * 122);
        }
}

@media (min-width: 1025px) and (max-width: 1460px) {
    .slider .slide-track {
        -webkit-animation: scrollTab 120s linear infinite;
        animation: scrollTab 120s linear infinite;
        display: flex;
        width: calc(250px * 122);
    }

    .slider .slide {
        width: 200px;
    }
}

/*-----------------------------------------------------------------------------------------------------------------------------------
    SECCIÓN CONTACTO
-----------------------------------------------------------------------------------------------------------------------------------*/

#contacto {
    padding-left: 17.5%;
    padding-right: 17.5%;
    background-color: whitesmoke !important;
}

.container-tiendas {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

    .container-tiendas span {
        margin-bottom: 7px;
    }

    .container-tiendas img {
        cursor: initial !important;
        width: 100%;
        margin: 10px 0 20px 0;
    }

.spanTienda {
    display: flex;
    margin-bottom: 7px;
}

.tituloTienda strong {
    margin-right: 8px;
    color: black !important;
}

.tiendaCard {
    text-align: left;
    width: 32%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    margin: 20px 0;
    padding: 10px 20px 20px 20px;
    background-color: white !important;
}

    .tiendaCard i {
        width: 25px !important;
        padding-top: 2px;
    }

    .tiendaCard a {
        color: black;
    }

        .tiendaCard a:hover {
            color: #00AEA9;
            text-decoration-line: none;
        }

.telf {
    transform: rotate(90deg);
    margin-left: -5px;
    margin-right: 4px;
    margin-top: 5px;
}

.tituloTiendas {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 2px;
}

.primera {
    width: 100% !important;
    padding-left: 40px;
    padding-right: 50px;
    display: flex;
}

    .primera div {
        width: 50%;
    }

        .primera div div {
            width: 100%;
            padding-left: 10%;
            margin-top: 20px;
        }

    .primera img {
        margin-top: 5%;
    }

.img-contat-cealco {
    width: 100% !important;
}

h6 {
    width: 100%;
    text-align: left;
    margin-top: 15px
}

.contactoP {
    margin-top: 2%;
}

.content-btn-info-contact {
    font-family: FuturaBold;
    display: none;
}

.btn-info-contact {
    display: flex;
    justify-content: space-between;
}

    .btn-info-contact a {
        width: 48%;
        padding: 10px;
        text-align: center;
        color: white !important;
        background-color: #3e3e3c;
        cursor: pointer;
    }

        .btn-info-contact a:hover {
            color: white !important;
        }

.btn-info-contact-llamar {
    display: block;
    width: 90%;
    margin-left: 10%;
    padding: 10px;
    margin-top: 14px;
    text-align: center;
    color: white !important;
    cursor: pointer;
}

    .btn-info-contact-llamar:hover {
        color: white !important;
    }

#contacto .content-boton-tiendas {
    display: none;
}

.boton-tiendas {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

    .boton-tiendas a {
        width: 47.5%;
        padding: 10px 5px;
        text-align: center;
        color: white !important;
        font-family: FuturaBold;
    }

.boton-tiendas-llamar {
    width: 100%;
    margin-top: 18px;
    display: inline-flex;
}

    .boton-tiendas-llamar a {
        width: 100%;
        padding: 14px 10px;
        text-align: center;
        color: white !important;
        font-family: FuturaBold;
    }

@media (max-width: 768px) {
    #contacto {
        padding-left: 5%;
        padding-right: 5%;
        margin-bottom: -30px !important;
    }

    .container-tiendas {
        width: 100%;
        margin: auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin: 25px 0;
    }

    .tiendaCard {
        text-align: left;
        width: 100%;
        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
        margin: 20px 0;
        padding: 20px 20px 30px 20px;
    }

    .primera {
        width: 100%;
        display: block;
        margin-top: -5px;
    }

        .primera div {
            width: 100%;
            margin: -15px 0 10px 0;
        }

            .primera div div {
                padding-left: 0;
                margin-bottom: 30px;
            }

        .primera span {
            margin-bottom: 5px;
        }

    #contacto .content-boton-tiendas {
        display: inline;
    }

    .btn-info-contact-llamar {
        width: 100%;
        margin-left: 0;
        margin-top: -10px;
    }

    .content-btn-info-contact {
        display: inline-block;
        margin-top: -25px !important;
        margin-bottom: -15px !important;
    }

    .content-boton-tiendas {
        display: inline;
    }
}

@media (min-width: 1025px) and (max-width: 1460px) {
    .container-tiendas {
        width: 100%;
    }
}

/*-----------------------------------------------------------------------------------------------------------------------------------
    OTROS
-----------------------------------------------------------------------------------------------------------------------------------*/

#horariosTiendas, #catalogos, #promociones {
    padding-left: 17.5%;
    padding-right: 17.5%;
}

/*-----------------------------------------------------------------------------------------------------------------------------------
    FOOTER
-----------------------------------------------------------------------------------------------------------------------------------*/
.footer {
    width: 100%;
    padding: 10px 0 15px 0;
    text-align: center;
    color: white;
    margin-bottom: 0;
}

.extraPaddingFooter {
    padding: 55px 0 10px 0 !important;
}

.link_footer, a.link_footer:active, .link_footer:visited {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

a.link_footer:hover {
    cursor: pointer;
    color: white;
    text-decoration: underline;
}

.legalTermsMV {
    display: none;
}

.redesSociales {
    margin-bottom: 0;
}

    .redesSociales img {
        width: 1.5%;
        margin: -5px 2.5px 0 2.5px;
    }

    .redesSociales a:hover {
        text-decoration: none !important;
    }

@media (max-width: 768px) {
    .legalTermsMV {
        display: inline-block;
        padding: 0 20px !important;
        font-size: 0.9em;
    }

    .redesSociales img {
        width: 9%;
    }

    .legalTerms {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .redesSociales img {
        width: 4%;
    }
}
