@font-face {
    font-family:Montserrat-Bold;
    src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
}
@font-face {
    font-family:Montserrat-Regular;
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
}
*
{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
:root
{
    
    /*colores principales de el negocio*/
    --color_cliente_rojo:#AC191F;
    --color_ubicacion_azul_fuerte: #3c5393;
    --color_inversion_naranja: #f09130;
    --color_textos:rgb(50,50,50);
    
}
body
{
    font-family:"Montserrat-Regular";
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*primera parte*/
.contenedor_primera_parte
{
    width: 100%;
    height: 80vh;
    /*border: 1px solid red;*/
    background-image: url(../img/inversionistas/img_inversionistas_pt1.jpg);
    background-position: top;
    background-size: cover;
}
.cont_filtro_pt1
{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content:center;
}
.cont_filtro_pt1 h2
{
    width: 90%;
    font-size: 50px;
    color: white;
    text-align: center;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*segunda parte*/
.contenedor_segunda_parte
{
    width: 100%;
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.contenedor_segunda_parte b
{
    color: var(--color_cliente_rojo);
}
.contenedor_segunda_parte p
{
    width: 80%;
    font-size: 20px;
    color: var(--color_textos);
}
.cont_botones_contacto
{
    width: 100%;
    padding: 30px 0;
    margin-top: 20px;
    background-color: rgb(230,230,230);
    display: flex;
    align-items: center;
    justify-content: center;
}
.boton_contacto
{
    width: 250px;
    height: 50px;
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    background-color: var(--color_cliente_rojo);
    margin: 10px;
    cursor: pointer;
}
.boton_contacto i
{
    font-size: 25px;
    color: white;
    margin-right: 10px;
}
.boton_contacto p
{
    width: auto;
    font-size: 20px;
    color: white;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*tercera parte*/
.contenedor_tercera_parte
{
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box_logo
{
    width: 50%;
    height: 300px;
}
.boreales
{
    background-image: url(../img/inversionistas/logo_boreales.jpg);
    background-position: center;
    background-size: cover;
}
.torres_vida
{
    background-image: url(../img/inversionistas/logo_torres_vida.jpg);
    background-position: center;
    background-size: cover;
}


/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*RESPONSIVE*/
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
@media screen and (max-width:840px)
{
    /*primera parte*/
    .cont_filtro_pt1 h2
    {
        font-size: 40px;
    }
    /*segunda parte*/
    /*tercera parte*/
    .contenedor_tercera_parte
    {
        flex-direction: column;
    }
    .box_logo
    {
        width: 100%;
    }
}
@media screen and (max-width:570px)
{
    /*primera parte*/
    .cont_filtro_pt1 h2
    {
        font-size: 30px;
    }
    /*segunda parte*/
    .contenedor_segunda_parte p
    {
        font-size: 17px;
        padding-bottom: 20px;
    }
    .cont_botones_contacto
    {
        flex-direction: column;
    }
    /*tercera parte*/
    .box_logo
    {
        width: 100%;
        height: 200px;
    }
}
@media screen and (max-width:395px)
{
    /*primera parte*/
    
}