.banner {
    background-image: url(../img/fade-mobile.png);
    background-size: cover;
    height: fit-content;
    background-repeat: no-repeat;
}
.banner__cont {
    padding: 30px 15px;
}
.banner__title {
    font-size: 26px;
    font-weight: normal;
    color: #FFF;
    line-height: 37px;
    margin-bottom: 10px;
    text-align: center;
}
.banner__subtitle {
    font-size: 18px;
    color: #fff;
    font-weight: normal;
    line-height: 26px;
    margin-bottom: 20px;
    text-align: center;
}
.banner__sub {
    text-align: center;
    margin-bottom: 20px;
}
.banner__phone {
    width: 190px;
}
.banner__title--color {
    color: #F09124;
}
.banner__app.left {
    display: none;
}
.banner__txt {
    color: #fff;
    font-weight: 200;
    margin-bottom: 10px;
    text-align: center;
}
.banner__apps {
    display: flex;
    grid-gap: 16px;
    margin-top: 10px;
    justify-content: center;
}
.banner__apps__img {
    width: 40px;
}

.pasos {
    padding: 45px 0;
}
.pasos__cont {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
}
.pasos__header {
    color: #66308C;
    font-size: 22px;
    text-align: center;
    font-weight: 500;
    line-height: 26px;
    margin: auto;
    margin-bottom: 30px;
    width: 280px;
}
.pasos__header span {
    color: #F09124;
}
.pasos__cont--grid {
    display: flex;
    flex-direction: column;
}
.pasos__title {
    font-size: 18px;
    color: #2B1937;
    font-weight: 300;
    line-height: 22px;
}
.pasos__title--orange {
    color: #F09124;
}
.pasos__title--bold {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
}

.paso {
    display: flex;
    width: 250px;
    margin: auto;
    margin-bottom: 20px;
}
.paso.dudas {
    width: 280px;
}
.paso.agente {
    width: 280px;
    margin-bottom: 0;
}

.paso__title {
    font-weight: normal;
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
}
.paso__title--bold {
    font-weight: 500;
}
.pasos__title--two{
    font-weight: 300;
    color: #2B1937;
    text-align: center;
}
.paso__img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.pasos__img {
    margin-top: 20px;
    width: 280px;
    align-self: center;
    margin-bottom: 0;
}
.pasos__title--orange {
    text-decoration: none;
}

/* Media Queries */

@media screen and (min-width: 360px) {

    .banner__phone {
        width: 200px;
    }
    .pasos__img  {
        width: 290px;
    }

}

@media screen and (min-width: 500px) {

    .banner__cont,
    .pasos {
        width: 400px;
        margin: auto;
    }
    .banner__title {
        font-size: 30px;
        line-height: 36px;
    }
    .banner__txt {
        font-size: 18px;
    }
    .banner__apps {
        margin-top: 16px;
    }

}

@media screen and (min-width: 768px) {

    .banner {
        background-image: url(../img/fade-desk.png);
        background-size: cover;
        background-repeat: no-repeat;
    }
    .banner__cont {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 700px;
        padding: 60px 0;
    }
    .banner__sub {
        margin-bottom: 0;
    }
    .banner__title {
        font-size: 36px;
        line-height: 50px;
        width: 460px;
        text-align: left;
    }
    .banner__subtitle {
        text-align: left;
    }
    .banner__txt {
        font-size: 24px;
        text-align: left;
    }
    .banner__apps {
        margin-top: 20px;
        justify-content: left;
    }
    .banner__apps__img {
        width: 60px;
    }
    .banner__phone {
        width: 160px;
    }
    .banner__app.left {
        display: block;
    }
    .banner__app.bottom {
        display: none;
    }
    .pasos {
        width: 700px;
        padding: 60px 0;
    }
    .paso__title {
        font-size: 16px;
    }
    .pasos__header {
        width: auto;
        font-size: 28px;
        line-height: 36px;
        text-align: left;
    }
    .paso__title--bold {
        font-size: 20px;
    }
    .pasos__cont {
        padding: 0;
    }
    .pasos__cont--grid{
        margin-top: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr  ;
        grid-template-areas: 
        "p-img p1"
        "p-img p2"
        "p-img p3"
        "p-img p4"
        "p-img p5";  
        grid-template-rows: 70px 70px 70px 70px 70px;  
        margin-bottom: 0;
    
    }
    
    .pasos__cont--grid > :nth-child(1){
        grid-area: p1;        
         display: flex;
         align-items: center;
    }
    .pasos__cont--grid > :nth-child(2){
        grid-area: p2;         
        display: flex;
        align-items: center;
    }

    .pasos__cont--grid > :nth-child(3){
        grid-area: p3;         
        display: flex;
        align-items: center;
    }

    .pasos__img {
        grid-area: p-img;
        height: auto;
        width: 250px;
        display: flex;
        place-items: center;
        justify-self: center;
    }
    .pasos__sub {
        display: flex;
        justify-content: space-between;
    }
    .paso {
        width: auto;
        margin: 0;
        margin-bottom: 20px;
    }
    .paso.dudas {
        width: 290px;
        margin-bottom: 0;
    }
    .paso.agente {
        width: 290px;
    }
    .pasos__title--two {
        text-align: left;
    }


}

@media screen and (min-width: 1000px) {

    .banner__cont {
        width: 900px;
    }
    .banner__phone {
        width: 190px;
    }
    .banner__title {
        width: 600px;
        font-size: 48px;
        line-height: 58px;
    }
    .banner__subtitle {
        width: 500px;
        font-size: 20px;
    }
    .banner__txt {
        font-size: 22px;
    }
    .banner__apps {
        grid-gap: 20px;
    }
    .banner__apps__img {
        width: 66px;
    }
    .pasos {
        width: 870px;
    }
    .pasos__header {
        font-size: 32px;
        line-height: 42px;
    }
    .paso__title--bold {
        font-size: 22px;
    }
    .paso__img {
        width: 60px;
        height: 60px;
    }
    .pasos__img {
        width: 260px;
    }
    .pasos__sub {
        width: 800px;
        margin: auto;
    }

}

@media screen and (min-width: 1200px) {

    .banner__cont {
        width: 1200px;
        justify-content: flex-start;
        grid-gap: 30px;
    }
    .banner__title {
        width: 760px;
        font-size: 60px;
        line-height: 70px;
    }
    .banner__subtitle {
        width: 600px;
        font-size: 26px;
        line-height: 40px;
    }
    .banner__phone {
        width: 200px;
    }
    .banner__txt {
        font-size: 26px;
    }
    .pasos {
        width: 1200px;
        padding: 70px 0;
    }
    .paso__title {
        font-size: 18px;
    }
    .pasos__header {
        width: 1020px;
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 0;
    }
    .paso__title--bold,
    .pasos__title--bold {
        font-size: 26px;
    }
    .paso.dudas,
    .paso.agente {
        width: 326px;
    }
    .pasos__img {
        width: 300px;
        margin: 0;
    }
    .pasos__cont--grid {
        width: 700px;
        margin: 60px auto;
        margin-bottom: 10px;
        grid-template-rows: 90px 90px 90px 90px 90px;
    }
    .pasos__sub {
        width: 900px;
        margin: auto;
    }
    .paso__img {
        width: 65px;
        height: 65px;
    }
    .pasos__sub .paso__img {
        width: 50px;
        height: 50px;
    }

}