@font-face {
    font-family:Open_Sans;
    src: url('../fonts/OpenSans-VariableFont_wdth\,wght.ttf') format('truetype');
}
*
{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
:root
{
    --colorFondoMenu:rgb(255, 255, 255);
    --colorFondoFooter:rgb(33,38,44);

    --tamaño_logo_principal: 20px;
    --tamaño_logo_footer:25px;
}
body
{
    font-family:"Open_Sans";
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*menu principal*/
.contenedor_menu_principal
{
    z-index: 3;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content:flex-start;
    background-color:var(--colorFondoMenu);
    border-bottom: 1px solid rgb(227, 227, 227);
}
.logo
{
    padding-left: 30px;
}
.logo img
{
    height:var(--tamaño_logo_principal);
}
.cont_menu_lista
{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 30px;
}
.cont_menu_lista li
{
    list-style: none;
}
.cont_menu_lista a
{
    text-decoration: none;
    color: black;
    font-size: 15px;
    padding: 0 20px;
    cursor: pointer;
}
.boton_ubicacion
{
    width: 180px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 2px solid rgb(225, 225, 225);
}
.boton_ubicacion:hover
{
    transition: all 0.3s;
    border: 2px solid red;
}
.boton_ubicacion .ubicacion
{
    font-size: 15px;
    font-family:"Open_Sans";
    /*border: 1px solid blue;*/
    text-align: center;
}
.boton_ubicacion i
{
    font-size: 18px;
    /*border: 1px solid green;*/
    padding-right: 5px;
    color: red;
}
.boton_menu_movile
{
    display: none;
}
#vehiculos
{
    border-bottom: 2px solid white;
    padding-bottom: 13px;
}
#vehiculos.activado
{
    border-bottom: 2px solid red;
}
/*-----------submenu-------------------*/
.contenedor_submenu
{
    z-index: 3;
    width: 100%;
    position:fixed;
    top: 50px;
    background-color: var(--colorFondoMenu);
    padding-left: 50px;
    display: none;

}
.contenedor_submenu.activado
{
    display: flex;
}
.contenedor_submenu a
{
    text-decoration: none;
}
.box_modelo
{
    width: 250px;
    height: 200px;
    /*border: 1px solid red;*/
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.3s;
}
.box_modelo img
{
    width: 200px;
}
.box_modelo p
{
    font-size: 17px;
    color: black;
}
.box_modelo:hover
{
    transition: all 0.3s;
    background-color: rgb(236, 236, 236);
}

.cont_submenu_movile
{
    display: none;
}
.contenedor_menu_movile
{
    display: none;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*footer*/
.contenedor_footer
{
    width: 100%;
    height: auto;
    background-image: url(../imagenes/img_footer.png);
    background-size: cover;
    background-position: bottom;
    clip-path: polygon(83% 0, 100% 0, 100% 100%, 0 100%, 0 9%);
}
.filtro_footer
{
    width: 100%;
    height: auto;
    padding-top: 50px;
    clip-path: polygon(83% 0, 100% 0, 100% 100%, 0 100%, 0 9%);
    background-color: rgba(38, 47, 78, 0.703);
    display: flex;
    align-items:flex-end;
    justify-content: center;
}
.cont_informacion_footer
{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /*border: 1px solid green;*/
}
.cont_logo_footer
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content:flex-start;
    border-bottom: 1px solid white;
    padding: 10px 0;
}
.cont_logo_footer img
{
    height: var(--tamaño_logo_footer);
}
.cont_arriba_footer
{
    width: 100%;
    display: flex;
    align-items:flex-start;
    justify-content:space-between;
    padding: 10px 0;
}
.cont_izq_footer
{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}
.cont_izq_footer p
{
    font-size: 17px;
    color: white;
    text-align: justify;
}
.cont_der_footer
{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content:flex-start;
    flex-direction: column;
    /*border: 1px solid red;*/
}
.cont_der_footer h2
{
    font-size: 17px;
    color: white;
    font-weight: 500;
    padding-bottom: 30px;
}
.cont_redes_footer
{
    width: 90%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}
.boton_red_footer
{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    border-radius: 10px;
    margin: 2px 0;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s;
}
.boton_red_footer:hover
{
    transition: all 0.3s;
    border: 2px solid grey;
}
.boton_red_footer:hover i
{
    transition: all 0.3s;
    color: grey;
}
.boton_red_footer i
{
    font-size: 20px;
    color: white;
}
.cont_abajo_footer
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-top: 1px solid white;
    padding: 10px 0;
}
.cont_abajo_footer h3
{
    font-size: 20px;
    font-weight: 500;
    color: white;
    text-align: center;
    padding-bottom: 10px;
}
.cont_abajo_footer img
{
    height: 40px;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*responsive*/
@media screen and (max-width:840px)
{
    /*menu principal*/
    .contenedor_menu_principal
    {
        justify-content:space-around;
    }
    .logo
    {
        padding-left: 0px;
    }
    .cont_menu_lista
    {
        display: none;
    }
    .boton_menu_movile
    {
        display: flex;
    }
    .boton_menu_movile i
    {
        font-size: 30px;
        margin: 0 15px;
    }
    .boton_menu_movile #localizacion
    {
        color: red;
    }
    /*menu movile*/
    .contenedor_menu_movile
    {
        z-index: 3;
        position: absolute;
        top: 70px;
        width: 100%;
        height: 50vh;
        display: none;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border: 1px solid grey;
        background-color: white;
    }
    .contenedor_menu_movile.activado
    {
        display: flex;
    }
    .contenedor_menu_movile li
    {
        width: 90%;
        list-style: none;
        padding: 10px;
        border-bottom: 1px solid grey;
        text-align: center;
    }
    .contenedor_menu_movile a
    {
        text-decoration: none;
        color: black;
        font-size: 20px;
        font-weight: 700;
    }
    /*sub menu movile*/
    .cont_submenu_movile
    {
        width: 100%;
        display: none;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        background-color: grey;
    }
    .cont_submenu_movile.activado
    {
        display: flex;
    }
    .cont_submenu_movile a
    {
        font-weight: 500;
    }
    .cont_submenu_movile li
    {
        border-bottom: 1px solid grey;
    }
    /*footer*/
    .cont_arriba_footer
    {
        flex-direction: column;
    }
    .cont_izq_footer
    {
        width: 100%;
        padding-bottom: 10px;
    }
    .cont_der_footer
    {
        width: 100%;
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
@media screen and (max-width:570px)
{
    /*footer*/
    .cont_logo_footer
    {
        justify-content:center;
    }
    .cont_izq_footer p
    {
        text-align: center;
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
@media screen and (max-width:395px)
{
    /*footer*/
    .cont_logo_footer img
    {
        height: 25px;
    }
    .cont_izq_footer p
    {
        font-size: 15px;
    }
    .cont_abajo_footer h3
    {
        font-size: 17px;
    }
}