:root{
    --color-primario:#009fc2;
}
html,body{
    overflow-x: hidden;
}
.open-sans{
    font-family: 'Open Sans Condensed', sans-serif;
}
.open-sans-n{
    font-family: 'Open Sans', sans-serif;
}
/*Padding de 24px para izquierda y derecha reutilizable en móvil*/
@media (max-width: 1024px) {
    .pl-pr-sm{
        padding-left:24px !important;
        padding-right: 24px !important;
    }
}

*{
    margin: 0;
    padding: 0;
}

.section1{
    padding: 177px 0 165px 0;
    background-position: top;
    background-size: cover;
}

.section1_div h1{
    font-size: 70px;
    line-height: 74px;
    font-weight: 700;
    max-width: 484px;
}

.section1_div {
    width: 48%;
}
.section1_div p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0px;
    text-transform: none;
}
.section1_div--button{
    width: 132px;
    height: 32px;
    background-color: var(--color-primario);
    color: white;
    text-decoration: none;
    font-size: 16px;
    line-height: 80px;
    font-weight: 500;
}
.section1_div--button:hover{
    color: white;
}


/*tablet*/
@media only screen and (max-width:992px){
    .section1{
        background-image: none !important;
        background-color: #2E2A2B;
        padding: 0 0 100px 0;
    }
    .section1_img{
        width: 100%;
        object-fit: cover;
        margin-bottom: 30px;
    }
    .section1_div{
        width: 100%;
    }
    .section1_div a, .section1 h1, .section1 p{
        color: white !important;
    }
    .section1_div h1 {
        font-size: 67px;
        line-height: 73px;
    }
}