﻿body{
    background: url(../images/fondo.webp) no-repeat center center fixed;
    background-size: cover;
    font-family: 'Montserrat', sans-serif;
}


.chat{
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 1000;
    width: 60px;
}
.chat img{
    width: 100%;
}
.chat span{
    position: absolute;
    top: 12px;
    left: -120%;
    border: 0px solid red;
    background: yellow;
    font-size: 22px;
    font-weight: bold;
    color: black;
    padding: 4px 10px;

    border-radius: 10px;
}

.blanco{
    box-shadow: 10px 10px 10px gray;
}
.blanco .logotipo img{
    width: 70%;
}


.cabecera-ayuda{
    height: 149px;
}
.cabecera{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: url(../images/fondo.webp) no-repeat center center;
    background-size: cover;
    padding-top: 5px;
    padding-bottom: 5px;

    transition: all 0.2s;
}

.logotipo{
    text-align: center;
}
.logotipo img{
    width: 80%;

    transition: all 0.2s;
}

nav ul{
    list-style: none;
    padding: 0;
}

nav ul li{
    position: relative;
    width: 24%;
    float: left;
    margin-left: 1%;
}


.menu-r{
    display: none;
}
.menu, .menu-r{
    background: #f7f7f7;
    font-size: 21px;
    text-align: center;
    font-family: 'Roboto Slab', serif;
    cursor: pointer;
}
.menu:hover, .menu-r:hover{
    font-weight: bold;
}


nav ul li:hover .menuS{
    display: block;
}

.menuS{
    position: absolute;
    top: 30px;
    left: -50%;
    width: 200%;
    display: none;

    box-shadow: 2px 2px 2px black;
}
.menuS ul li{
    width: 100%;
}
.menuS .menu{
    padding: 2px 0;
}


.datos{
    text-align: center;
    font-size: 20px;
}
.datos p{
    margin-bottom: 5px;
}
.datos img{
    width: 25px;
}



.efecto{
    padding: 0;
}


.categorias{
    padding-top: 30px;
    padding-bottom: 30px;
}

.titulo{
    font-family: 'Roboto Slab', serif;
    font-size: 33px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.c{
    text-align: center;
    margin-bottom: 50px;
    cursor: pointer;

    overflow: hidden;
}
.c img{
    height: 250px;
}
.c strong{
    width: 100%;
    text-align: center;
    color: #011b97;
    font-size: 20px;
    display: inline-block;
}
.c strong span{
    width: 100%;
    color: black;
    font-weight: lighter;
    display: inline-block;
}


.seccion{
    background: rgb(0,3,127);
    background: radial-gradient(circle, rgba(0,3,127,0.7245491946778712) 0%, rgba(0,3,127,0.9430365896358543) 46%, rgba(0,3,127,1) 100%);
    color: white;
    font-size: 18px;
    line-height: 28px;
    padding: 40px;
}
.seccion strong{
    font-size: 23px;
    text-shadow: 2px 2px 2px black;
}

.img1{
    background: url(../images/venta-de-maquinaria-industrial.webp) no-repeat center center;
    background-size: cover;
}


.leyenda{
    background: white;
    text-align: center;
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    font-size: 25px;
    padding-top: 12px;
    padding-bottom: 12px;
}
.leyenda img{
    height: 40px;
}


.form-group{
    margin-bottom: 20px;
}



.contenido{
    padding-top: 30px;
    padding-bottom: 30px;
}


.p{
    text-align: center;
}
.titulo-p{
    color: blue;
    font-weight: bold;
    font-size: 22px;
    padding: 12px 0;
}
.imagen-p img{
    width: 100%;
}

.btn-naranja{
    border: 0;
    background: #61bf1a;
    width: 50%;
    color: white;
    font-size: 19px;
    margin: 0 10% 10px 0;
    padding: 2px 0;
    border-radius: 5px;
    transition: all 0.2s;
}
.btn-naranja:hover{
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 2px black;
}


.imagen-principal img{
    width: 100%;
}
.imagensita {
    display: inline-block;
    margin-bottom: 15px;
    cursor: pointer;
    margin-top: 20px;
}

.descripcion p{
    margin-bottom: 0;
}

.p a{
    text-decoration: none;
}

footer{
    background: black;
    text-align: center;
    color: white;
    padding-top: 30px;
    padding-bottom: 30px;
}
footer a{
    color: white;
}
footer strong{
    width: 100%;
    font-size: 20px;
    display: inline;
    margin-bottom: 20px;
}
.tarjetas{
    background: yellow;
    color: blue;
    padding: 0 10px;
}

.parpadea {
    width: 100%;
    font-size: 30px;
    line-height: 30px;
    display: inline-block;
    animation-name: parpadeo;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  
    -webkit-animation-name:parpadeo;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
}
  
@-moz-keyframes parpadeo{  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}
  
@-webkit-keyframes parpadeo {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}
  
@keyframes parpadeo {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}


@media screen and (max-width:1400px){

}

@media screen and (max-width:1200px){
    .cabecera-ayuda{
        display: none;
    }
    .cabecera{
        position: relative;
    }
}

@media screen and (max-width:992px){

}

@media screen and (max-width:768px){
    .img{
        height: 240px;
    }
    .logotipo img{
        width: 60% !important;
    }
    .c img{
        width: 70% !important;
        height: auto !important;
        margin: 0 15% !important;
    }
}

@media screen and (max-width:576px){
    .logotipo img{
        width: 60% !important;
    }
    .menu-r{
        display: block;
    }
    nav{
        margin-top: 20px !important;
        margin-bottom: 20px;
    }
    .menuS{
        position: relative;
        top: 0;
        left: 0;
        display: block;
        background: white;
        width: 100%;
    }
    .menuS .menu{
        background: white;
    }
    .menu{
        padding: 12px 0;
    }
    nav ul{
        display: none;
    }
    nav ul li{
        width: 100%;
    }
    footer a{
        font-size: 14px;
    }
    .descripcion iframe{
        width: 100% !important;
    }
}