.banner__mobile {
    background-image: url(../img/fade-mobile.png);
    background-size: cover;
    height: fit-content;
    background-repeat: no-repeat;
}

.banner__cont {
    padding: 30px 15px 40px 15px;
}

.banner__title {
    font-size: 30px;
    font-weight: normal;
    color: #FFF;
line-height: 37px;
}

.banner__sub {
   margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.banner__descargas {
    display: flex;
    flex-direction: column;
  
    align-items: flex-start;
    justify-content: flex-start;
 
}

.banner__phone {
    width: 150px;
 
}

.banner__title--color {
    color: #F09124;
}

.descargas__img {
    width: 112px;
     
    margin-bottom: 15px;
}

/* pasos */
.pasos__cont {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    padding: 0 15px;
}


.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;
    margin-top: 10px;
    margin-bottom: 20px;
}

.paso__title {
    font-weight: normal;
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
}

.paso__title--bold {
    font-weight: 500;
}

.paso__img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.pasos__img {
    margin-top: 20px;
    width: 150px;
     
    align-self: center;
     
    margin-bottom: 40px;
}

.pasos__title--orange {
    text-decoration: none;
}
.footer__content {
    padding: 0px 15px !important;
     
}

/* Media Queries */
/* Media Queries */

@media screen and (min-width: 320px) {
    .br-desk {
        display: none;
    }
}

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

    
}

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

    .banner__title {
        font-size: 40px;
    }

    .banner__phone {
        width: 200px;
        height: auto;
    }
}

@media screen and (min-width: 600px) and (max-width: 900px) {
    .pasos__cont {
        justify-content: center;
        align-items: center;
        width: 70%;
    }

    .paso,
    .pasos__title {
        align-self: flex-start;
    }

    .br-desk {
        display: block;
    }
    .descargas__img {
        width: 170px;
    }
}

@media screen and (min-width: 900px) {
    .descargas__img {
        width: 120px;
        margin-right: 15px;
    }
    .banner__mobile {
        background-image: url(../img/fade-desk.png);
        background-size: cover;
        height: 350px;
        /* background-position:-650px 0; */
        background-repeat: no-repeat;
    }

    .banner__title{
        font-size: 36px !important;
    }

    
    .pasos__cont--grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-areas:
            "p1 p-img p4"
            "p2 p-img p5"
            "p3 p-img p6";


    }

    .pasos__cont--grid> :nth-child(1) {
        grid-area: p1;
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
    }

    .paso__img {
        width: 60px;
        height: 60px;
    }

    .pasos__cont--grid> :nth-child(2) {
        grid-area: p2;
        justify-content: space-between;
        flex-direction: row-reverse;
    }

    .pasos__cont--grid> :nth-child(3) {
        grid-area: p3;
        justify-content: space-between;
        flex-direction: row-reverse;
    }

    .pasos__cont--grid> :nth-child(4) {
        grid-area: p4;
    }

    .pasos__cont--grid> :nth-child(5) {
        grid-area: p5;

    }

    .pasos__cont--grid> :nth-child(6) {
        grid-area: p6;
    }

    .pasos__img {
        grid-area: p-img;
        height: auto;
        width: 250px;
        display: flex;
        place-items: center;
        justify-self: center;
    }

    .pasos__sub {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .banner__title {
        font-size: 50px;
    }

    .br-desk {
        display: block;
    }

    .banner__cont {
        position: relative;
    }

    .banner__descargas {

        display: flex;
        flex-direction: row;
    }

    .banner__phone {
        position: absolute;
        right: 0px;
        top: 25px;
    }
    .br-desk3{
        display:  block !important;
    }
    .paso{
        margin: 0 20px;
        width: auto;
    }
}