@font-face {
    font-family:AudiTypeV01;
    src: url('../fonts/AudiTypeV01-Normal.otf') format('truetype');
}
*
{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
:root
{
    --color_Principal:rgba(0, 103, 177);
}
body
{
    font-family:"AudiTypeV01";
}
/*lienas menu*/
.cont_lineas
{
    width: 80%;
    height: 50px;
    border-top: 1px solid rgb(180,180,180);
    border-bottom: 1px solid rgb(180,180,180);
    margin-bottom: 10px;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*primera parte*/
.contenedor_primera_parte
{
    width: 100%;
    height: 90vh;
    display: flex;
    align-items:center;
    justify-content:flex-start;
    flex-direction: column;
    background-color: white;
    /*border: 1px solid red;*/
}
.cont_info_pt1
{
    width: 90%;
    height: 90%;
    background-image: url(../imagenes/img_1_pt1.jpg);
    background-position: center;
    background-size: cover;
}
.cont_botones
{
    width: 90%;
    height: 15%;
    /*border: 1px solid red;*/
    background-color: rgb(229, 229, 229);
    display: flex;
    align-items: center;
    justify-content:flex-start;
}
.box_botones
{
    width: 250px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(229, 229, 229);
    cursor: pointer;
    transition: all 0.3s;
}
.box_botones:hover a
{
    transition: all 0.3s;
    color: rgb(82, 82, 82);
}
.box_botones a
{
    font-size: 20px;
    font-weight: 700;
    color: black;
    text-decoration: none;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*iframe*/
.contenedor_iframe
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    background-color: white;
}
.contenedor_iframe iframe
{
    width: 90%;
    height: 100vh;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*botones distribuidores*/
.contenedor_botones_distribuidores
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: black;
    padding: 30px 0;
}
.contenedor_botones_distribuidores h2
{
    font-size: 25px;
    color: white;
    text-align: center;
}
.cont_botones_mas_distribuidores
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
}
.box
{
    width: 300px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 10px;
    margin: 10px;
}
.box img
{
    width: 60%;
}
.fondo
{
    background-color: rgb(0, 0, 0);
    border: 2px solid white;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*RESPONSIVE*/
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
@media screen and (max-width:840px)
{
    /*botones distribuidores*/
    .contenedor_botones_distribuidores h2
    {
        font-size: 30px;
    }
    .box
    {
        margin: 10px 0;
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
@media screen and (max-width:570px)
{
    .contenedor_botones_distribuidores h2
    {
        font-size: 25px;
    }
    .box
    {
       width: 350px;
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
@media screen and (max-width:395px)
{
    .box_botones
    {
        width: 200px;
    }
    .contenedor_botones_distribuidores h2
    {
        font-size: 20px;
    }
    .box
    {
       width: 260px;
    }
}