@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
{
    --colorPrincipal:rgb(117, 117, 117);
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*primera parte*/
.espacio_vacio_pt1
{
    width: 100%;
    height: 70px;
}
.contenedor_primera_parte
{
    width: 100%;
    height: 100vh;
    background-image: url(../imagenes/img_1_pt1.jpg);
    background-position: top;
    background-size: cover;
    background-attachment: fixed;
}
.filtro_pt1
{
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.11);
    display: flex;
    align-items: center;
    justify-content:flex-end;
}
.cont_info_pt1
{
    width: 40%;
    height: 300px;
    /*border: 1px solid red;*/
}
.cont_info_pt1 h1
{
    font-size: 80px;
    color: white;
    text-align: center;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*segunda parte*/
.contenedor_segunda_parte
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 80px;
    padding-bottom: 50px;
    background-color: var(--colorPrincipal);
}
.cont_titulo_pt2
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 20px;
}
.cont_titulo_pt2 h2
{
    font-size: 35px;
    color: white;
    padding-bottom:20px;
    text-align: center;
}
.cont_titulo_pt2 p
{
    font-size: 25px;
    color: white;
    text-align: center;
    padding-bottom: 30px;
}
.cont_boxes_pt2
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content:space-around;
    flex-wrap: wrap;
    padding: 30px 0;
}
.cont_box_pt2
{
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content:flex-start;
    flex-direction: column;
    /*border: 1px solid red;*/
}
.cont_box_pt2 img
{
    width: 50%;
    padding-bottom: 20px;
}
.cont_box_pt2 p
{
    font-size: 20px;
    color: white;
    text-align: center;
}
.contenedor_img_pt2
{
    width: 100%;
    height: 50vh;
    background-image: url(../imagenes/img_1_pt2.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.filtro_pt2
{
    width: 100%;
    height: 50vh;
    background-color: rgba(0, 0, 0, 0.415);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.filtro_pt2 h2
{
    font-size: 35px;
    color: white;
    padding-bottom: 30px;
    text-align: center;
}
.cont_iconos
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content:space-around;
    flex-wrap: wrap;
}
.cont_iconos img
{
    width: 120px;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*tercera parte*/
.cont_proceso
{
    width: 100%;
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /*border: 1px solid red;*/
}
.cont_proceso h2
{
    font-size: 35px;
    color: var(--colorPrincipal);
    padding-bottom: 20px;
    text-align: center;
}
.cont_proceso h3
{
    font-size: 25px;
    color: grey;
}
.cont_iconos_proceso
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 30px;
}

.box_proceso
{
    width: 160px;
    height: 200px;
    /*border: 1px solid red;*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.box_proceso img
{
    width: 120px;
    padding-bottom: 10px;
}
.box_proceso p
{
    font-size: 20px;
    color: grey;
    text-align: center;
}
iframe
{
    width: 100%;
    height: 50vh;
}

.cont_agendar_cita
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}
.boton_agendar_pt2
{
    width: 250px;
    height: 50px;
    display: flex;
    align-items:center;
    justify-content: center;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s;
    background-color: var(--colorPrincipal);
}
.boton_agendar_pt2:hover
{
    transition: all 0.3s;
    background-color: white;
    border: 2px solid var(--colorPrincipal);
}
.boton_agendar_pt2 a
{
    text-decoration: none;
    color: white;
    font-size: 20px;
}
.boton_agendar_pt2:hover a
{
    transition: all 0.3s;
    color: var(--colorPrincipal);
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*Responsive*/
@media screen and (max-width:840px)
{
    /*primera parte*/
    .contenedor_primera_parte
    {
        background-image: url(../imagenes/img_1_pt1_movile.jpg);
    }
    .filtro_pt1
    {
        justify-content: center;
    }
    .cont_info_pt1
    {
        width: 90%;
    }
    /*segundaa parte*/
    .cont_boxes_pt2
    {
        justify-content:center;
        flex-direction: column;
    }
    .cont_box_pt2
    {
        width: 90%;
        height: auto;
        padding:30px 0;
    }
    .cont_box_pt2 img
    {
        width: 30%;
    }
    /*tercera parte*/

}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
@media screen and (max-width:570px)
{
    /*primera parte*/
    .cont_info_pt1 h1
    {
        font-size: 50px;
    }
    /*segunda parte*/
    .cont_titulo_pt2 h2
    {
        font-size: 25px;
    }
    .cont_titulo_pt2 p
    {
        font-size: 20px;
    }
    .contenedor_img_pt2
    {
        height: auto;
    }
    .filtro_pt2
    {
        height: auto;
        padding: 30px 0;
    }
    .filtro_pt2 h2
    {
        font-size: 25px;
        padding: 0 10px;
    }
    /*tercera parte*/
    .cont_proceso h2
    {
        font-size: 25px;
        padding: 0 10px;
    }
    .cont_proceso h3
    {
        font-size: 20px;
        padding: 0 10px;
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
@media screen and (max-width:395px)
{
    /*primera parte*/
    .cont_info_pt1 h1
    {
        font-size: 35px;
    }
    /*segunda parte*/
    .cont_titulo_pt2 h2
    {
        font-size: 20px;
    }
    .cont_titulo_pt2 p
    {
        font-size: 17px;
    }
    .cont_box_pt2 p
    {
        font-size: 17px;
    }
    .filtro_pt2 h2
    {
        font-size: 20px;
    }
    /*tercera parte*/
    .cont_proceso h2
    {
        font-size: 20px;
    }
    .box_proceso p
    {
        font-size: 17px;
    }
}