:root{
    --color-primario:#009fc2;
}
html,body{
    overflow-x: hidden;
}
body{
    background-color: #211E1F;
}
.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;
}

/*Banner*/
.banner{
    background-position: center;
    background-size: cover;
    height: 300px;
}
.banner h1{
    font-size: 70px;
    font-weight: 700;
    line-height: 74px;
    max-width: 489px;
}


/*Section 1*/
.section1{
    background-color: #2E2A2B;
    padding: 50px 0 50px 0;
}
.section1_div{
    width: 100%;
    max-width: 1200px;
}
.section1_div h2{
    font-size: 45px;
    line-height: 48px;
    font-weight: 700;
    max-width: 534px;
}
.section1_div-button{
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    width: 167px;
    height: 32px;
    background-color: var(--color-primario);
}
.section1_div-button:hover{
    color: white;
}


/*Section 2*/
.section2_container{
    width: 100%;
}
.section2_div1{
    width: 65%;
}
.section2_div2{
    width: 35%;
}
.section2_div1 p{
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 0 !important;
}
.section2_div1_card-container{
    width: 100%;
}
.cardcustom{
    width: 50%;
    height: 480px;
    background-position: center;
    background-size: cover;
}
.cardtext1{
    background-color: rgb(114, 87, 65);
}
.cardtext2{
    background-color: rgb(53, 41, 30);
}
.cardtext3{
    background-color: rgb(0, 0, 0);
}
.cardtext4{
    background-color: rgb(66, 58, 49);
}

.section2_div2 h2{
    line-height: 40px;
    letter-spacing: 0px;
    font-weight: 600;
    font-size: 36px;
}
.section2_div2 h3{
    color: var(--color-primario);
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
}
.section2_div2 p{
    line-height: 24px;
    letter-spacing: 0px;
    font-weight: 400;
    font-size: 16px;
    max-width: 345px;
}

@media only screen and (max-width:992px){
    .section2_div1, .section2_div2{
        width: 100%;
    }
}

@media only screen and (max-width:768px){
    .banner h1{
        font-size: 45px;
        line-height: 56px;
    }
    .section1 {
        padding: 80px 0 80px 0;
    }
    .cardcustom{
        width: 100%;
    }
}