:root {
	--color-1: #DA291C;   
    --color-1b:#FF4000; 
	--color-2: #001489;
    --color-2b: #013ADF;
	--color-3: #FFF;
    --color-4: #D4AC0D;
    --color-5: #F5F5F5;
    --color-6: #778899;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    /*font-size: 62.5%;*/
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--color-6);
}

.header{
    position: fixed;

}

.logo {
    background: var(--color-5);
}

.logo img {
    width: 300px;
}

.nav-bar {
    background: var(--color-1);
    padding: 10px;
    display: flex;
    color: var(--color-3);
    cursor: pointer;
    font-size: 1.5rem;
    width: 100%;
}

.menu, .submenu {
    list-style: none;
}

.menu {
    background-color: var(--color-2);
    width: 100%;
    margin-left: -100%;
    transition: all 0.5s;

    height: 0px; /*Para no dejar espacio en blanco*/
    /*position: fixed;*/
}

.menu__link {
    display: block;
    padding: 20px;
    color: var(--color-3);
    font-size: 1.2rem;
    text-decoration: none;
}

.menu__link:hover {
    background: var(--color-1b);
}

.submenu {
    height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.submenu .menu__link{
    background-color: var(--color-2) ;
    padding-left: 40px;
}

.submenu .menu__link:hover {
    background: var(--color-2b);
}

.mostrar {
    margin-left: 0;

    height: auto; /*Para empujar el contenido cuando se despliega el menu*/
}





.container-main {
    width: 100vw;
    height: auto;
    display: flex;
    flex-wrap: wrap;
}

.banner {
    width: 100%;
}

.banner img {
    width: 100vw;
}

.c1, .c2, .c3, .c4, .c5 {
    width: 100%;
    min-width: 150px;
    height: auto;
    border-radius: 5px;
    margin-top: 5px;
}



.mini-container {
    width: 50%;
    min-width: 50px;
    height: auto;
    border-radius: 5px;
    margin-top: 5px;
    color: white;
    font-size: 0.9rem;
    padding: 10px;
}

.mini-container img{
    width: 80%;
    margin: auto;
}




/*----------Contenedor seccion contacto-----*/
.box_contact {
    text-align: center;
    color: white;
    line-height: 2rem;
    list-style: none;    
    width: 100%;
    min-width: 150px;
    height: auto;
    border-radius: 5px;
    margin: 15px 3px;
    padding: 20px 0;
    background-color: var(--color-1);
}

.box_contact a {
    text-decoration: none;
    color: white;
}

.box_contact ul{
    list-style: none;
}





/*----------Seccion Tabla1-------*/
.tabla1 {
    border-collapse: collapse;
    border: 2px solid gray;
    letter-spacing: 1px;
    font-size: 0.8rem;
 

    margin: 0 auto;
    width: 100%;
  }
  
  .tabla1 td, th {
    border: 1px solid gray;
    padding: 10px 20px;
    background-color: #848484;
  }
  
.tabla1 thead th {
    color: #FFF;
    background-color: #444;
  }
  
.tabla1 td {
    text-align: center;
  }






/*----------Seccion footer-------*/
.footer-mtu {
    background-color: var(--color-2);
    text-align: center;
    color: white;
    text-decoration: none;
    font-size: .8rem;
  }

.footer-mtu img {
    margin: 20px 0;  
}

.footer-mtu a {
    color: white;
    text-decoration: none;
}

.footer-mtu div {
    margin-top: 20px;
}












/*----------Seccion Whatsapp-------*/
.btn-wsp{
    position:fixed;
    width:60px;
    height:60px;
    line-height: 63px;
    bottom:25px;
    right:25px;
    background:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:35px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
    z-index:100;
    transition: all 300ms ease;
}
.btn-wsp:hover{
    background: #20ba5a;
}


























@media (min-width: 600px) {
    .nav-bar {
        display: none;
    }
    .menu {
        margin-left: 0;
        display: flex;

        height: auto;
        background-color: var(--color-1);
    }
    .container-submenu {
        position: relative;
    }
    .submenu {
        position: absolute;
        top: 60px;
        width: 200%;
        overflow: visible;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
    }
    .container-submenu:hover .submenu {
        opacity: 1;
        visibility: visible;
    }
    .logo img {
        width: 500px;
    }

    .c1, .c2, .c3 {
        width: 50%;
    }

    .mini-container {
        width: 25%;
    }
    /*----------Contenedor seccion contacto-----*/
    .box_contact {
    width: 24%;
    }

}


















