@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
{
    --colorPrincipal:#dc107f;
    --colorSecundario:#3c5393;
    --color_textos:rgb(50,50,50);
}
body
{
    background-color: white;
    font-family:"Montserrat-Regular";
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.estructura_blog
{
    width: 100%;
    display: flex;
    align-items:flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
}
.estructura_blog i
{
    font-size: 15px;
    color: var(--color_textos);
    margin-right: 5px;
}
.estructura_blog h4
{
    font-size: 15px;
    color: var(--color_textos);
    padding-bottom: 10px;
}
.estructura_blog img
{
    width: 100%;
    object-fit: cover;
    object-position: top right;
}

.cont_dobles
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    /*border: 1px solid red;*/
}
.medio
{
    width: 90%;
}
.cont_izq_dobles
{
    width: 50%;
    height: 700px;
    display: flex;
    align-items:flex-start;
    justify-content: center;
    flex-direction: column;
    /*border: 1px solid green;*/
    background-color: rgb(230,230,230);
    padding: 50px;
}
.linea_rosa
{
    width: 100px;
    height: 10px;
    background-color: var(--colorPrincipal);
    margin-bottom: 20px;
}
.cont_izq_dobles h2
{
    font-size: 40px;
    color: black;
    font-weight: 700;
    padding-bottom: 20px;
}
.cont_izq_dobles p
{
    font-size: 20px;
    font-weight: 700;
    line-height: 2;
    color: grey;
    padding-bottom: 20px;
}
.boton_contacto
{
    width: 250px;
    height: 50px;
    background-color: var(--colorPrincipal);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.boton_contacto h6
{
    font-size: 20px;
    color: white;
}

.cont_der_dobles
{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: 1px solid blue;*/
}
.cont_der_dobles img
{
    width: 70%;
    height: 700px;
    object-fit: cover;
}

.cont_sencillo
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px 0;
    /*border: 1px solid red;*/
}
.titulo_op
{
    width: 90%;
    display: flex;
    align-items:flex-end;
    justify-content:flex-start;
    /*border: 1px solid green;*/
}
.titulo_op h2
{
    font-size: 80px;
    color: var(--colorPrincipal);
    padding-right: 20px;
}
.titulo_op h3
{
    font-size: 40px;
    color: black;
    padding-bottom: 10px;
}
.cont_sencillo p
{
    width: 80%;
    font-size: 20px;
    font-weight: 700;
    line-height: 2;
    color: grey;
    padding: 20px 0;
}
.cont_sencillo img
{
    width: 80%;
}

.cont_centrar_letras
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.letras_finales
{
    width: 90%;
    font-size: 20px;
    font-weight: 700;
    color: grey;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*Responsive*/
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
@media screen and (min-width:2000px)
{
    .estructura_blog i
    {
        font-size: 25px;
    }
    .estructura_blog h4
    {
        font-size: 25px;
    }
    .cont_izq_dobles
    {
        height: 900px;
    }
    .cont_der_dobles img
    {
        height: 900px;
    }
    .cont_izq_dobles h2
    {
        font-size: 60px;
    }
    .cont_izq_dobles p
    {
        font-size: 30px;
    }
    .boton_contacto
    {
        width: 350px;
        height: 70px;
    }
    .boton_contacto h6
    {
        font-size: 30px;
    }
    .titulo_op h2
    {
        font-size: 100px;
    }
    .titulo_op h3
    {
        font-size: 60px;
    }
    .cont_sencillo p
    {
        font-size: 30px;
    }
    .letras_finales
    {
        font-size: 30px;
    }
}
@media screen and (max-width:1200px)
{
    .cont_izq_dobles h2
    {
        font-size: 30px;
    }
    .cont_izq_dobles p
    {
        font-size: 17px;
    }
    .titulo_op h2
    {
        font-size: 60px;
    }
    .titulo_op h3
    {
        font-size: 30px;
    }
    .cont_sencillo p
    {
        font-size: 17px;
    }
    .letras_finales
    {
        font-size: 17px;
    }
}
@media screen and (max-width:840px)
{
    .cont_dobles
    {
        flex-direction: column;
    }
    .cont_izq_dobles
    {
        width: 100%;
        height: auto;
    }
    .cont_der_dobles
    {
        width: 100%;
    }
    .cont_der_dobles img
    {
        height: auto;
    }
}
@media screen and (max-width:570px)
{
    .cont_izq_dobles
    {
        padding: 30px;
    }
    .cont_izq_dobles h2
    {
        font-size: 25px;
    }
    .cont_izq_dobles p
    {
        font-size: 15px;
    }
    .boton_contacto h6
    {
        font-size: 17px;
    }
    .cont_der_dobles img
    {
        width: 100%;
    }
    .titulo_op
    {
        width: 100%;
    }
    .titulo_op h2
    {
        font-size: 50px;
    }
    .titulo_op h3
    {
        font-size: 25px;
    }
    .cont_sencillo p
    {
        width: 90%;
        font-size: 15px;
    }
    .medio
    {
        width: 100%;
    }
    .letras_finales
    {
        font-size: 15px;
    }
}