:root
{
    --color_dorado:#C89D2E;
    --color_azul: #1F388A;
    --color_gris:#555555;
    --color_gris_bajo: #616161;
}
*
{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
body 
{
    font-size: 16px;
}
.colr_text_dorado
{
    color: var(--color_dorado);
}
.color_text_gris
{
    color: var(--color_gris);
}
.color_text_gris_bajo
{
    color: var(--color_gris_bajo);
}

.fs_1
{
    font-size: 4rem;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*primera parte*/
.cont_encima
{
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100vh;
}
.h_custom
{
    height: 100vh;
}
.img_cover
{
    object-fit: cover;
}

@media (max-width: 840px)
{
    .img_cover
    {
        object-position: right;
    }
    .cont_encima
    {
        background-color: rgba(255, 255, 255, 0.6);
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*segunda sección*/
.bg_background_pt2
{
    background-image: url(../img/bg-background-pt2.jpg);
    background-position: center;
    background-size: cover;
}
.h_custom_pt2
{
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
}
.bg_background_pt2_2
{
    background-image: url(../img/bg-background-pt2_2.jpg);
    background-position: center;
    background-size: cover;
}
.filter_custom
{
    background-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 840px)
{
    .bg_background_pt2_2
    {
        background-position: right;
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*tercera sección*/
.bg_color_beich
{
    background-color: #F5F5DC;
}
.border_custom
{
    border: 1px solid red;
}
.img_puntos_
{
    background-image: url(../img/img_puntos.png);
    background-size: cover;
    background-position: center;
}
.bg_img_puntos
{
    background-color: #F5F5DC;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*cuarta sección*/
.bg_color_dorado
{
    background-color: #c89c2e50;
}
.h_video_custom
{
    height: 70vh;
}
.circulo_video_play
{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid white;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    background-color:#c89c2e71;
    cursor: pointer;
    transition: all 0.3s ease;
}
.logo_play
{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 80px;
}
.circulo_video_play:hover
{
    background-color:#C89D2E;
}

.img_fondo_poster
{
    background-image: url(../img/img_poster.jpg);
    background-position: center;
    background-size: cover;
}


@media (max-width: 840px)
{
    .h_video_custom
    {
        height: 50vh;
    }
}

.pantalla_completa_video
{
    z-index: 4;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
}
#boton_cerrar_video
{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    font-size: 35px;
    color: red;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*quinta sección*/
.img_background_pt5
{
    background-image: url(../img/img_background_pt5.jpg);
    background-size: cover;
    background-position: center;
}
.border_right
{
    border-right:1px solid rgb(230,230,230);
}
.w_30
{
    width: 30%;
}
.w_70
{
    width: 70%;
}
.link_contact
{
    text-decoration: none;
    transition: all 0.3s ease;
}
.link_contact:hover
{
    color: var(--color_dorado);
}

@media (max-width: 840px)
{
    .w_30
    {
        width: 100%;
    }
    .w_70
    {
        width: 100%;
    }
    .border_right
    {
        border-right:none;
        border-bottom:1px solid rgb(230,230,230);
    }
}