body{
    background-image: url("../img/textura.jpg");
    background-repeat: repeat;
    background-position: center;
    margin: 0;
    padding: 0;
    font-family: "Armata-Regular";
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

div, body, header, nav, ul, footer{
    box-sizing: border-box;
}

.main-wrapper, header, footer{
    width: 100%;
}

h1, h2, h3, h4, h5, h6{
    text-wrap: balance;
}

p{
    text-wrap: pretty;
}

*{
    box-sizing: border-box;
    text-decoration: none;
}

header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

/* Barra Menú */

.container-menu{
    width: 100%;
    height: 70px;
    background-color: #312783;
    box-shadow: 0 0 10px 0 #000;
}

.menu{
    margin: auto;
    height: 100%;
}

.menu nav{
	width: 100vw;
    height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	
}

.menu nav > ul{
    height: 100%;
    display: flex;
	width: 900px !important;
}

.menu nav ul li{
    height: 100%;
    list-style: none;
    position: relative;
}

.menu nav > ul > li:nth-child(3) > a{
    background-image: url(../img/logos-trucks-and-trailers/trucks-trailers-\ fondo-blanco\ .png);
    background-size: 130px;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 20px 80px;
}

.menu nav > ul > li:nth-child(3):hover > a{
    background-image: url(../img/logos-trucks-and-trailers/trucks-trailers-\ fondo-blanco\ .png);
    background-size: 130px;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 20px 80px;
}

.menu nav > ul > li > a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 30px;
    color: #fff;
    font-size: 1rem;
    transition: all 300ms ease;
}

.menu nav > ul > li > a:hover{
    transform: scale(1.1);
    background: #0002;
    border-radius: 10px;
    box-shadow:  0 0 10px #000;
}

/* Sub Menú*/

nav ul li ul{
    width: 230px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    position: absolute;
    top: 90px;
    left: -5px;
    padding: 15px 15px;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 0 10px 0 #000;
    z-index: 10;
    transition: all 300ms ease;
}

nav ul li:hover ul{
    visibility: visible;
    opacity: 1;
    top: 70px;
}

nav ul li ul::before{
    content: "";
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #fff;
    position: absolute;
    top: -12px;
    left: 70px;
}

nav ul li ul li a{
    display: block;
    color: #808080;
    padding: 6px;
    padding-left: 14px;
    margin-top: 10px;
    font-size: 0.8rem;
    text-align: left;
    transition: all 300ms ease;
}

nav ul li ul li a:hover{
    background: #0002;
    color: #312783;
    transform: scale(1.02);
    padding: 10px 90px;
    padding-left: 14px;
    border-radius: 10px;
    font-size: 0.8rem;
    box-shadow: 0 0 10px 0 #000;
}

/* Elementos Responsivos Header */

.icon-menu{
    font-size: 26px;
    color: #fff;
    cursor: pointer;
    width: 26px;
    height: 100%;
    display: none;
    align-items: center;
}

#label-check{
    width: 26px;
    height: 100%;
    display: none;
}

#check-menu{
    display: none;
}

@media screen and (max-width: 720px){
    .header-superior{
        padding: 0;
    }

    .logo img{
        width: 150px;
    }

    .menu nav > ul{
        flex-direction: column;
        background-color: #312783;
        position: fixed;
        left: 0;
        top: 130px;
        width: 100%;
        height: 0;
        transition: all 300ms ease;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
    }

    .menu nav > ul > li > a:hover{
        transform: scale(1);
    }

    .menu nav ul li ul{
        left: 90px;
    }

    .menu nav ul li:hover ul{
        top: 61px;
    }

    .menu nav > ul > li:nth-child(3n) > a{
        background-position: 20px;
    }

    #selected{
        transform: scale(1);
    }

    #label-check{
        display: block;
    }

    .icon-menu{
        display: flex;
    }

    #check-menu:checked ~ nav > ul{
        height: 300px;
        visibility: visible;
        opacity: 1;
    }

}

/* Main Section */

.main-wrapper{
    max-width: 1280px;
    display: flex;
    margin-top: 70px;
    flex-grow: 1;
}

h1{
    font-family: "Montserrat-Bold";
    font-size: 2rem;
    color: #4A4A49;
}

h2{
    font-family: "Montserrat-Bold";
    font-size: 1.3rem;
    text-align: center;
    color: #4A4A49;
}

h3{
    font-family: "Montserrat-Bold";
    font-size: 1.3rem;
    text-align: left;
    color: #4A4A49;
}

h4{
    font-size: 0.7rem;
    color: #fff;
}

h5{
    font-family: "Montserrat-Bold";
    font-size: 1.3rem;
    text-align: center;
    max-width: 800px;
    min-width: 360px;
    color: #fff;
    background-color: #e30613;
    border-radius: 5px;
    box-shadow: 0 0 10px 0 #000;
    margin-top: 0;
}

p{
    font-family: "Montserrat-Light";
    font-size: 1rem;
    text-align: left;
    line-height: 1.3rem;
    color: #4A4A49;
}

.texto-cuerpo{
    max-width: 790px;
    min-width: 360px;    
}

main{
    max-width: 870px;
    display: inline-block;
    margin-top: 50px;
    flex-grow: 1;
}

.logo-jake{
    width: 500px;
    margin-left: 140px;
    box-shadow: 0 0 10px 0 #0007;
}


.kit-completo{
    box-sizing: border-box;
    width: 400px;
    margin-left: 140px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0 0 10px 0 #0007;
}

.principal{
    box-sizing: border-box;
    width: 370px;
    margin-left: 140px;
}

.imagen-contenido{
    box-sizing: border-box;
    display: inline-block;
    max-width: 500px;
    margin-left: 140px;
    margin-bottom: 20px;
}

.img-contenido{
    max-width: 500px;
    box-shadow: 0 0 10px 0 #0007;
    border-radius: 10px;

}

.tabla-contenido{
    box-sizing: border-box;
    display: inline-block;
    width: 500px;
    min-width: 360px;
    margin-left: 140px;
    margin-bottom: 20px;
}

table{
    width: 100%;
}

th{
    font-family: "Montserrat-Bold";
    font-size: 0.8rem;
    color: #fff;
    background-color: #808080;
    border-radius: 5px;
}

td{
    max-width: 820px;
    font-family: "Montserrat-Light";
    font-size: 0.8rem;
    color: #4A4A49;
    background-color: #fff;
    text-align: center;
    border: solid 1px #ededed;
    border-radius: 5px;
}

.gray{
    background-color: #ededed;
}

.advertencia{
    width: 360px;
    height: 100PX;
}

.icono-advertencia{
    box-sizing: border-box;
    display: inline-table;
    margin: 0;
    padding: 0;
    width: 120px;
    float: left;
}

.nota-advertencia{
    box-sizing: border-box;
    width: 330PX;
    height: auto;
}

.nota{
    font-family: "Montserrat-Bold";
    font-size: 0.6rem;
    color: #4A4A49;
}

.precaucion{
    width: 130px;
    margin-left: 20px;
}

.nota-precaucion{
    font-family: "Montserrat-Bold";
    font-size: 0.6rem;
    text-align: left;
    margin-left: 20px;
    color: #4A4A49;
}

.ajuste-piston{
    width: 140px;
}

.ajuste-piston-2{
    width: 300px;
}

ol{
    max-width: 800px;
    min-width: 360px;
}

li{
    font-family: "Montserrat-Light";
    font-size: 1rem;
    text-align: left;
    line-height: 1.3rem;
    color: #4A4A49;
}

.herramienta{
    width: 250px;
}

.figura-3{
    width: 250px;
    margin-left: 30px;
}

.galga{
    width: 300px;
}

.brake-plant{
    width: 300px;
}

.text-aside{
    font-family: "Montserrat-Light";
    font-size: 1rem;
    text-align: left;
    line-height: 1.3rem;
}

aside, main{
    padding: 10px 20px;
}

.main-wrapper aside{
    flex-grow: 1;
}

.secondary-navbar{
    min-width: 150px;
}

.secondary-navbar ul{
    padding: 0;
}

.secondary-navbar li{
list-style: none;
}

.secondary-navbar a{
    color: #808080;
    display: inline-block;
    padding: 6px 10px;
    font-size: 0.8rem;
    transition: all 300ms ease;
}

.secondary-navbar a:hover{
    transform: scale(1.1);
    background: #0002;
    color: #312783;
    border-radius: 10px;
    box-shadow:  0 0 10px #000;
}

.secondary-navbar h2{
    max-width: 110px;
    font-size: 0.9rem;
    text-align: left;
    color: #fff;
    background-color: #312783;
    padding: 5px;
    margin: 5px;
    border-radius: 4px;
    box-shadow:  0 0 10px #000;
}

aside:last-child{
    max-width: 350px;
    min-width: 250px;
}

.datos{
    box-sizing: border-box;
    width: 210px;
    background-color: #e30613;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 #000;
    margin-top: 30px;
    padding-bottom: 20px;
}
.tienda{
    text-align: center;
    font-family: "Montserrat-Regular";
    font-size: 1.2rem;
    color: #fff;
    margin: auto;
    padding: 10px;
}

.boton-tienda{
    text-align: center;
    font-family: "Montserrat-Regular";
    font-size: 1.2rem;
    color: #fff;
    margin: auto;
    border: 2px solid #fff;
    width: 200px;
    height: 150px;
    border-radius: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
    transition: all 300ms ease;
}

.boton-tienda:hover{
    transform: scale(1.1);
    background: #0002;
    border-radius: 10px;
    box-shadow:  0 0 10px #000;
}

/* Footer */

footer{
    margin-top: auto;
    background-color: #333;
    padding-left: 25%;
    width: 100%;
    height: 130px;
    text-align: center;
}


.footer{
    width: 500px;
    display: block;
    float: left;
    height: 100px;
    padding: 50px;
}

.siguenos{
    font-size: 1rem;
    color: #fff;
}

.footer-1{
    width: 500px;
    display: block;
    float: left;
    height: 90px;
}

.iconos{
    margin: 20px;
    width: 30px;
    transition: all 300ms ease;
}


/* Fin Footer*/
@media screen and (max-width: 1280px){
    footer{
        padding-left: 12.5%;
    }
}

@media screen and (max-width: 600px) {
    .main-wrapper{
        flex-direction: column;
    }
    .logo-jake{
        margin-left: 0;
        width: 360px;
    }

    .kit-completo{
        width: 360px;
        margin-left: 0;
    }

    .principal{
        width: 360px;
        margin-left: 0;
    }

    .tabla-contenido{
        width: 360px;
        margin-left: 0;
    }

    .imagen-contenido{
        width: 360px;
        margin-left: 0;
    }

    .img-contenido{
        width: 360px;
    }

    footer{
        height: 260px;
        padding: initial;
}

h4{
    display: none;
}
}