:root
{
    --color_rosa: #E50040;
    --color_gris:#303030;
    --color_gris_bajo: #575757;
}
*
{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
body 
{
    font-size: 16px;
}

.color_fondo_rosa
{
    background-color: var(--color_rosa);
}
.color_fondo_gris_muy_bajo
{
    background-color: rgb(235,235,235);
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*primera parte*/
.h_custom
{
    height: 100vh;
}
.h1_grande
{
    font-size: 4rem;
    line-height: 0.5;
    font-weight: 800;
}
.h1_small
{
    font-size: 1.2rem;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*segunda parte*/
.img_fondo_pt2
{
    background-image: url(../img/img_fondo_pt2.jpeg);
    background-position: center;
    background-size: cover;
}
.filtro_pt2
{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}
.t_letras_h2
{
    font-size: 2.5rem;
}
.cont_video
{
    height: 400px;
    border-radius: 10px;
}
.t_icono
{
    font-size: 5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.t_icono:hover
{
    scale: 1.2;
}

.cont_video_total
{
    z-index: 5;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.363);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}
#cerrar_video
{
    z-index: 3;
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: red;
    cursor: pointer;
    transition: all 0.3s ease;
}
#cerrar_video:hover
{
    scale: 1.1;
}
.video_principal
{
    height: 90vh;
}

@media (max-width: 840px)
{
   .cont_video
   {
        height: 300px;
   }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*tercera parte*/
.box_logos
{
    width: 100%;
    height: 260px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0);
    text-decoration: none;
    transition: all 0.3s ease;
}
.box_logos:hover
{
    border: 1px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 840px)
{
    .box_logos
    {
         border: 1px solid rgba(255, 255, 255, 0.5);
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*cuarta parte*/
.img_fondo_pt4
{
    background-image: url(../img/img_fondo_pt4.jpg);
    background-position: center;
    background-size: cover;
}
.t_letras_p
{
    font-size: 1.3rem;
}
.h_height
{
    height: 70vh;
}
.boton_habita
{
    width: 250px;
    height: 50px;
    border: 2px solid white;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}
.boton_habita:hover
{
    background-color: var(--color_rosa);
}
@media (max-width: 840px)
{
    .h_height
    {
        height: auto;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*img mural*/
@media (max-width: 840px)
{
    .img_mural
    {
        width: 80%;
    }
}
@media (max-width: 570px)
{
    .img_mural
    {
        width: 90%;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*quinta parte*/
.text_pt5_color
{
    font-size: 1.5rem;
    color: white;
}
.a_decorate
{
    text-decoration: none;
}

@media (max-width: 840px)
{
    .aling_center
    {
        justify-content: center !important;
    }
}