.seccion-inicio{
    float: left;
    height: auto;
    background-color: #ffffff;
    width: 100%;
    position: relative;
    z-index: 1;
}

.contenedor-general-slide{
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    left: 0;
    top: 0;
    float: left;
    background-color: #e8e8e8;
    z-index: 1;
}

.contenedor-paginacion-slider input[type="radio"]{
    display: none;
    visibility: hidden;
}

.contenedor-paginacion-slider{
    position: absolute;
    width: 80px;
    height: auto;
    left: 0;
    right: 0;
    bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
    display: inline-flex;
    justify-content: space-between;
    background-color: transparent;
}

.contenedor-paginacion-slider label{
    width: 7px;
    height: 7px;
    border: none;
    display: inline-block;
    background: #ffffff;
    cursor: pointer;
    -webkit-cursor: pointer;
    -moz-cursor: pointer;
    -o-cursor: pointer;
    transform: scale(1);
}

.contenedor-general-slide button{
    width: 60px;
    height: 60px;
    background-color: #86CBEE;
    padding: 10px;
    outline: none;
    cursor: pointer;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    position: relative;
    z-index: 10;
    position: absolute;
    top: 0px;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
}

.contenedor-general-slide .btn-slide-izq{
    left: 90px;
}

.contenedor-general-slide .btn-slide-der{
    right: 90px;
}

.contenedor-general-slide button img{
    background-color: transparent;
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
}

.contenedor-general-slide button:hover{
    background-color: #0B3F88;
}

.slider{
    width: 100%;
    height: 100vh;
    position: absolute;
    opacity: 1;
    left: 0;
    top: 0;
    display: inline-block;
    align-items: center;
    background-color: transparent;
    -webkit-transition: -webkit-transform 1.2s;
    transition: -webkit-transform 1.2s, transform 1.2s;
}

.slide-1 {
    background: url('../assets/img-portada-index-1.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    left: 0;
}

.slide-2 {
    background: url('../assets/img-portada-index-2.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    left: 100%
}

.slide-3 {
    background: url('../assets/img-portada-index-3.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    left: 200%
}

.info-slide{
    width: 1200px;
    height: 240px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: transparent;
}

.info-slide h1{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: 'Roboto Condensed', sans-serif;;
    font-size: 70px;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 1px;
    text-align: left;
    transform: translate(0px, 100px);
    -webkit-transform: translate(0px, 100px);
    -moz-transform: translate(0px, 100px);
    -o-transform: translate(0px, 100px);
    opacity: 0;
    -webkit-transition: opacity .5s, -webkit-transform .5s;
    transition: transform .5s, opacity .5s;
    -webkit-transition-delay: 1.2s; 
    transition-delay: 1.2s;
}

.info-slide h1 span{
    font-family: 'Roboto Condensed', sans-serif;;
    font-size: 70px;
    color: #86CBEE;
}

.info-slide a{
    background-color: #86CBEE;
    float: left;
    margin-top: 30px;
    text-decoration: none;
    padding-top: 18px;
    padding-bottom: 18px;
    width: 220px;
    font-family: 'Roboto', sans-serif;;
    font-size: 14px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    margin-top: 40px;
    opacity: 0;
    cursor: pointer;
    transform: translate(0px, 100px);;
    -webkit-transform: translate(0px, 100px);
    -moz-transform: translate(0px, 100px);
    -o-transform: translate(0px, 100px);
    -webkit-transition: opacity .5s, -webkit-transform .5s;
    transition: transform .5s, opacity .5s;
    -webkit-transition-delay: 1.8s; 
    transition-delay: 1.5s;
}

.info-slide a:hover{
    background-color: #0B3F88;
}

.slide-radio1:checked ~ .contenedor-paginacion-slider .page1,
.slide-radio2:checked ~ .contenedor-paginacion-slider .page2,
.slide-radio3:checked ~ .contenedor-paginacion-slider .page3{
    width: 7px;
    height: 7px;
    transform: scale(2);
    background: #86CBEE;
}

.slide-radio1:checked ~ .slider .slider {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.slide-radio2:checked ~ .slider {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.slide-radio3:checked ~ .slider {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
}

.slide-radio1:checked ~ .slide-1 h1,
.slide-radio2:checked ~ .slide-2 h1,
.slide-radio3:checked ~ .slide-3 h1{
    -webkit-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    transition-delay: 1.2s;
    opacity: 1;
}

.slide-radio1:checked ~ .slide-1 a,
.slide-radio2:checked ~ .slide-2 a,
.slide-radio3:checked ~ .slide-3 a{
    -webkit-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    transition-delay: 1.5s;
    opacity: 1;
    position: relative;
    z-index: 10;
}












.seccion-soluciones{
    width: 100%;
    height: auto;
    background-color: #ffffff;
    float: left;
    padding-top: 140px;
    padding-bottom: 140px;
    display: inline-flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.contenedor-general-soluciones{
    width: 1200px;
    height: auto;
    background-color: transparent;
    float: left;
}

.contenedor-titulo-soluciones{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
}

.contenedor-titulo-soluciones h2{
    width: auto;
    height: auto;
    background-color: transparent;
    float: left;
    padding-top: 20px;
    padding-bottom: 20px;
    font-family: 'Roboto Condensed', sans-serif;;
    font-size: 56px;
    color: #000000;
    font-weight: 900;
    letter-spacing: 1px;
}

.linea-titulo-soluciones{
    width: 2px;
    height: 100px;
    background-color: #000000;
    float: left;
    margin-left: 40px;
    margin-right: 40px;
}

.contenedor-titulo-soluciones p{
    width: 720px;
    height: auto;
    background-color: transparent;
    float: left;
    padding-top: 8px;
    padding-bottom: 20px;
    font-family: 'Roboto', sans-serif;;
    font-size: 16px;
    color: #000000;
    font-weight: 300;
    letter-spacing: .2px;
    line-height: 22px;
}

.contenedor-soluciones{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    margin-top: 60px;
    display: inline-flex;
    justify-content: space-between;
}

.soluciones{
    width: 30%;
    height: auto;
    background-color: transparent;
    float: left;
}

.soluciones figure{
    width: 100%;
    height: 300px;
    background-color: transparent;
    float: left;
    overflow: hidden;
}

.soluciones figure img{
    width: 100%;
    height: 100%;
    float: left;
    background-color: #e8e8e8;
    object-fit: cover;
}

.info-soluciones h3{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 28px;
    color: #000000;
    font-weight: 900;
    letter-spacing: .2px;
    margin-top: 20px;
}

.info-soluciones p{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #000000;
    font-weight: 300;
    letter-spacing: .2px;
    line-height: 22px;
    margin-top: 20px;
}








.seccion-necesitas{
    width: 100%;
    height: auto;
    background-color: #ffffff;
    float: left;
    position: relative;
    z-index: 1;
}

.contenedor-general-necesitas{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left; 
    display: inline-flex;
    justify-content: space-between;   
}

.contenedor-img-necesitas{
    width: 50%;
    height: auto;
    float: left;
    background-color: #e8e8e8;
    background: url("../assets/img-necesitas-i-1.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contenedor-info-necesitas{
    width: 50%;
    height: auto;
    padding-top: 140px;
    padding-bottom: 140px;
    padding-left: 90px;
    padding-right: 180px;
    float: right;
    background-color: #0B3F88;
}

.contenedor-info-necesitas h2{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: 'Roboto Condensed', sans-serif;;
    font-size: 56px;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 1px;
}

.linea-necesitas{
    width: 50px;
    height: 2px;
    float: left;
    background-color: #ffffff;
    margin-top: 20px;
}

.contenedor-info-necesitas p{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: 'Roboto', sans-serif;;
    font-size: 16px;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: .2px;
    line-height: 22px;
    margin-top: 20px;
}

.contenedor-iconos-necesitas{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    margin-top: 20px;
    display: inline-flex;
    justify-content: space-between;
}

.icono-necesitas{
    width: 100px;
    height: auto;
    background-color: transparent;
    float: left;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-right: 0px;
}

.icono-necesitas img{
    width: 100px;
    height: 100px;
    background-color: transparent;
    float: left;
}

.icono-necesitas h3{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: 'Roboto', sans-serif;;
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: .2px;
    line-height: 16px;
    text-align: center;
    margin-top: -10px;
}









.seccion-contenedores{
    width: 100%;
    height: auto;
    background-color: #ffffff;
    float: left;
    padding-top: 140px;
    padding-bottom: 140px;
    float: left;
    display: inline-flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.contenedor-general-contenedores{
    width: 1200px;
    height: auto;
    background-color: transparent;
    float: left;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
}

.contenedor-general-contenedores h2{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: 'Roboto Condensed', sans-serif;;
    font-size: 56px;
    color: #000000;
    font-weight: 900;
    text-align: center;
    letter-spacing: 1px;
}

.linea-contenedores{
    width: 50px;
    height: 2px;
    float: left;
    background-color: #000000;
    margin-top: 20px;
}

.contenedor-contenedores{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    margin-top: 40px;
    display: inline-flex;
    justify-content: space-between;
}

.contenedor{
    width: 350px;
    height: auto;
    background-color: transparent;
    float: left;
    cursor: pointer;
    text-decoration: none;
}

.img-contenedor{
    width: 100%;
    height: 350px;
    float: left;
    background-color: transparent;
    overflow: hidden;
    position: relative;
}

.img-contenedor img{
    width: 100%;
    height: 350px;
    background-color: transparent;
    float: left;
}

.img-contenedor .btn-contenedor{
    width: 220px;
    height: 55px;
    background-color: #0B3F88;
    float: left;
    text-decoration: none;
    padding-top: 18px;
    padding-bottom: 18px;
    display: inline-flex;
    justify-content: center;
    position: absolute;
    bottom: -120px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    transition: bottom ease .4s;
}

.img-contenedor .btn-contenedor span{
    width: auto;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: 'Roboto', sans-serif;;
    font-size: 14px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    margin-top: 1px;
}

.img-contenedor .btn-contenedor img{
    width: 18px;
    height: 18px;
    background-color: transparent;
    float: left;
    margin-left: 10px;
    margin-top: -1px;
}

.contenedor:hover .img-contenedor .btn-contenedor{
    width: 220px;
    height: 55px;
    background-color: #86CBEE;
    float: left;
    text-decoration: none;
    padding-top: 18px;
    padding-bottom: 18px;
    display: inline-flex;
    justify-content: center;
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    transition: bottom ease .4s;
}

.contenedor h3{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    margin-top: 20px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 28px;
    color: #000000;
    font-weight: 900;
    text-align: center;
    letter-spacing: .2px;
}

.contenedor p{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    margin-top: 20px;
    font-family: 'Roboto', sans-serif;;
    font-size: 16px;
    color: #000000;
    font-weight: 300;
    letter-spacing: .2px;
    line-height: 22px;
    text-align: center;
}

.contenedor-btn-contenedores{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    margin-top: 60px;
    display: inline-flex;
    justify-content: center;
}

.contenedor-btn-contenedores a{
    width: 260px;
    height: auto;
    background-color: #0B3F88;
    float: left;
    text-decoration: none;
    padding-top: 18px;
    padding-bottom: 18px;
    font-family: 'Roboto', sans-serif;;
    font-size: 14px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
}

.contenedor-btn-contenedores a:hover{
    background-color: #86CBEE;
}










.seccion-proceso-compra{
    width: 100%;
    height: auto;
    background-color: #000000;
    float: left;
    padding-top: 140px;
    padding-bottom: 140px;
    display: inline-flex;
    justify-content: center;
    overflow: hidden;
}

.seccion-proceso-compra .back-procedo-compra{
    width: 100%;
    height: 100%;
    background-color: transparent;
    float: left;
    object-fit: cover;
    object-position: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: .6;
}

.contenedor-general-proceso-compra{
    width: 1200px;
    height: auto;
    background-color: transparent;
    float: left;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.contenedor-general-proceso-compra h2{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: 'Roboto Condensed', sans-serif;;
    font-size: 56px;
    color: #ffffff;
    font-weight: 900;
    text-align: center;
    letter-spacing: 1px;
}

.linea-titulo-proceso-compra{
    width: 50px;
    height: 2px;
    float: left;
    background-color: #ffffff;
    margin-top: 20px;
}

.contenedor-proceso-compra{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    margin-top: 60px;
    display: inline-flex;
    justify-content: center;
}

.proceso-compra{
    width: 20%;
    height: auto;
    background-color: transparent;
    float: left;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
}

.proceso-compra img{
    width: 70px;
    height: 70px;
    background-color: transparent;
    float: left;
}

.linea-proceso{
    width: 100%;
    margin-top: 30px;
    float: left;
    height: 5px;
    background-color: #86CBEE;
    position: relative;
}

.punto-proceso{
    width: 25px;
    height: 25px;
    background-color: #86CBEE;
    float: left;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
}

.proceso-compra h3{
    width: 90%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: 'Roboto', sans-serif;;
    font-size: 12px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: .2px;
    line-height: 16px;
    text-align: center;
    margin-top: 30px;
}

.contenedor-btn-terminos-compra{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    margin-top: 40px;
    display: inline-flex;
    justify-content: center;
}

.contenedor-btn-terminos-compra a{
    background-color: #86CBEE;
    float: left;
    margin-top: 30px;
    text-decoration: none;
    padding-top: 18px;
    padding-bottom: 18px;
    width: 220px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
}

.contenedor-btn-terminos-compra a:hover{
    background-color: #0B3F88;
}










@media only screen and (max-width: 1580px){

    .contenedor-general-slide .btn-slide-izq{
        left: 0px;
    }
    
    .contenedor-general-slide .btn-slide-der{
        right: 0px;
    }
}







@media only screen and (max-width: 1380px){

    .contenedor-general-slide .btn-slide-izq{
        left: 0px;
    }
    
    .contenedor-general-slide .btn-slide-der{
        right: 0px;
    }

    .info-slide{
        width: 100%;
        padding-left: 90px;
        padding-right: 90px;
    }




    .seccion-soluciones{
        padding-left: 90px;
        padding-right: 90px;
    }
    
    .contenedor-general-soluciones{
        width: 100%;
    }
    
    .contenedor-titulo-soluciones p{
        width: 60%;
    }





    .contenedor-info-necesitas{
        padding-right: 90px;
    }

    
    .contenedor-iconos-necesitas{
        flex-wrap: wrap;
    }

    .icono-necesitas{
        width: 45%;
        margin-bottom: 30px;
    }





    .seccion-contenedores{
        padding-left: 90px;
        padding-right: 90px;
    }
    
    .contenedor-general-contenedores{
        width: 100%;
    }





    .seccion-proceso-compra{
        padding-left: 90px;
        padding-right: 90px;
    }
    
    .contenedor-general-proceso-compra{
        width: 100%;
    }

    .proceso-compra h3{
        letter-spacing: -.5px;
    }
    
}







@media only screen and (max-width: 1180px){

    .info-slide{
        width: 100%;
        padding-left: 90px;
        padding-right: 90px;
    }




    .seccion-soluciones{
        padding-left: 90px;
        padding-right: 90px;
    }
    
    .contenedor-general-soluciones{
        width: 100%;
    }

    .contenedor-titulo-soluciones h2{
        width: 100%;
        padding-top: 0px;
        padding-bottom: 0px;
    }
    
    .linea-titulo-soluciones{
        width: 50px;
        height: 2px;
        background-color: #000000;
        float: left;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .contenedor-titulo-soluciones p{
        width: 100%;
        padding-top: 0px;
        padding-bottom: 0px;
    }





    .contenedor-info-necesitas{
        padding-right: 90px;
        padding-left: 70px;
    }
    
    .contenedor-iconos-necesitas{
        flex-wrap: wrap;
    }

    .icono-necesitas{
        width: 45%;
        margin-bottom: 30px;
    }





    .seccion-contenedores{
        padding-left: 90px;
        padding-right: 90px;
    }
    
    .contenedor-general-contenedores{
        width: 100%;
    }

    .contenedor{
        width: 300px;
    }
    
    .img-contenedor{
        height: 300px;
    }
    
    .img-contenedor img{
        height: 300px;
    }





    .seccion-proceso-compra{
        padding-left: 90px;
        padding-right: 90px;
    }
    
    .contenedor-general-proceso-compra{
        width: 100%;
    }

    .proceso-compra h3{
        width: 100%;
        letter-spacing: -1px;
    }
    
}







@media only screen and (max-width: 980px){

    .info-slide{
        width: 100%;
        padding-left: 70px;
        padding-right: 70px;
        height: 320px;
    }

    .contenedor-general-slide button{
        width: 50px;
        height: 50px;
    }




    .seccion-soluciones{
        padding-left: 70px;
        padding-right: 70px;
        padding-bottom: 110px;
    }
    
    .contenedor-general-soluciones{
        width: 100%;
    }

    .contenedor-titulo-soluciones h2{
        width: 100%;
        padding-top: 0px;
        padding-bottom: 0px;
    }
    
    .linea-titulo-soluciones{
        width: 50px;
        height: 2px;
        background-color: #000000;
        float: left;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .contenedor-titulo-soluciones p{
        width: 100%;
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .contenedor-soluciones{
        flex-wrap: wrap;
    }
    
    .soluciones{
        width: 100%;
        margin-bottom: 40px;
    }
    
    .soluciones figure{
        width: 30%;
        height: 250px;
    }
    
    .info-soluciones h3{
        width: 64%;
        float: right;
        margin-top: 0px;
    }
    
    .info-soluciones p{
        width: 64%;
        float: right;
    }





    .contenedor-info-necesitas{
        padding-right: 70px;
        padding-left: 70px;
    }

    .contenedor-img-necesitas{
        width: 35%;
    }
    
    .contenedor-info-necesitas{
        width: 65%;
    }
    
    .contenedor-iconos-necesitas{
        flex-wrap: wrap;
    }

    .icono-necesitas{
        width: 45%;
        margin-bottom: 30px;
    }





    .seccion-contenedores{
        padding-left: 70px;
        padding-right: 70px;
    }
    
    .contenedor-general-contenedores{
        width: 100%;
    }

    .contenedor{
        width: 200px;
    }
    
    .img-contenedor{
        height: 200px;
    }
    
    .img-contenedor img{
        height: 200px;
    }





    .seccion-proceso-compra{
        padding-left: 70px;
        padding-right: 70px;
    }
    
    .contenedor-general-proceso-compra{
        width: 100%;
    }

    .proceso-compra img{
        width: 60px;
        height: 60px;
    }

    .proceso-compra h3{
        width: 100%;
        letter-spacing: -1px;
        font-size: 10px;
    }
    
}







@media only screen and (max-width: 780px){

    .info-slide{
        width: 100%;
        padding-left: 50px;
        padding-right: 50px;
        height: 320px;
    }

    .contenedor-general-slide button{
        width: 50px;
        height: 50px;
        display: none;
        visibility: hidden;
    }




    .seccion-soluciones{
        padding-left: 50px;
        padding-right: 50px;
        padding-bottom: 110px;
    }
    





    .contenedor-info-necesitas{
        padding-right: 50px;
        padding-left: 50px;
    }

    .contenedor-info-necesitas h2 br{
        display: none;
        visibility: hidden;
    }





    .seccion-contenedores{
        padding-left: 50px;
        padding-right: 50px;
    }
    
    .contenedor-general-contenedores{
        width: 100%;
    }

    .contenedor-contenedores{
        flex-wrap: wrap;
    }
    
    .contenedor{
        width: 100%;
        display: inline-flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
    
    .img-contenedor{
        width: 350px;
        height: 350px;
    }
    
    .img-contenedor img{
        height: 350px;
    }

    .contenedor-btn-contenedores{
        margin-top: 20px;
    }
    





    .seccion-proceso-compra{
        padding-left: 50px;
        padding-right: 50px;
    }
    
    .contenedor-general-proceso-compra{
        width: 100%;
    }

    .contenedor-proceso-compra{
        flex-wrap: wrap;
    }
    
    .proceso-compra{
        width: 100%;
        flex-wrap: nowrap;
    }

    .proceso-compra img{
        width: 70px;
        height: 70px;
        margin-right: 30px;
        margin-top: 35px;
    }

    .linea-proceso{
        width: 5px;
        margin-top: 0px;
        float: left;
        height: 150px;
        background-color: #0B3F88;
        position: relative;
    }

    .punto-proceso{
        left: -10px;
    }

    .proceso-compra h3{
        width: 200px;
        letter-spacing: 0px;
        font-size: 12px;
        margin-top: 0px;
        background-color: transparent;
        margin-left: 30px;
        margin-top: 65px;
        text-align: left;
    }
    
}







@media only screen and (max-width: 580px){

    .info-slide{
        padding-left: 30px;
        padding-right: 30px;
        height: 320px;
    }

    .info-slide h1{
        font-size: 56px;
    }
    
    .info-slide h1 span{
        font-size: 56px;
    }

    .contenedor-general-slide button{
        width: 50px;
        height: 50px;
        display: none;
        visibility: hidden;
    }




    .seccion-soluciones{
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 110px;
    }

    .soluciones{
        width: 100%;
        height: auto;
        background-color: transparent;
        float: left;
        flex-wrap: wrap;
    }
    
    .soluciones figure{
        width: 100%;
        height: 250px;
    }

    .info-soluciones h3{
        width: 100%;
        margin-top: 20px;
    }
    
    .info-soluciones p{
        width: 100%;
        margin-top: 20px;
    }
    



    .contenedor-general-necesitas{
        flex-wrap: wrap;  
    }

    .contenedor-img-necesitas{
        width: 100%;
        height: 250px;
    }

    .contenedor-info-necesitas{
        width: 100%;
        padding-right: 30px;
        padding-left: 30px;
        padding-top: 70px;
    }

    .contenedor-info-necesitas h2 br{
        display: none;
        visibility: hidden;
    }





    .seccion-contenedores{
        padding-left: 30px;
        padding-right: 30px;
    }





    .seccion-proceso-compra{
        padding-left: 30px;
        padding-right: 30px;
    }    
}







@media only screen and (max-width: 480px){

    .info-slide{
        padding-left: 20px;
        padding-right: 20px;
        height: 320px;
    }

    .info-slide h1{
        font-size: 56px;
        letter-spacing: -2px;
    }
    
    .info-slide h1 span{
        font-size: 56px;
        letter-spacing: -2px;
    }

    .contenedor-general-slide button{
        width: 50px;
        height: 50px;
        display: none;
        visibility: hidden;
    }




    .seccion-soluciones{
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 110px;
    }

    .soluciones{
        width: 100%;
        height: auto;
        background-color: transparent;
        float: left;
        flex-wrap: wrap;
    }
    
    .soluciones figure{
        width: 100%;
        height: 250px;
    }

    .info-soluciones h3{
        width: 100%;
        margin-top: 20px;
    }
    
    .info-soluciones p{
        width: 100%;
        margin-top: 20px;
    }
    



    .contenedor-general-necesitas{
        flex-wrap: wrap;  
    }

    .contenedor-img-necesitas{
        width: 100%;
        height: 250px;
    }

    .contenedor-info-necesitas{
        width: 100%;
        padding-right: 20px;
        padding-left: 20px;
        padding-top: 70px;
    }

    .contenedor-info-necesitas h2 br{
        display: none;
        visibility: hidden;
    }





    .seccion-contenedores{
        padding-left: 20px;
        padding-right: 20px;
    }

    .contenedor-general-contenedores h2{
        letter-spacing: -2px;
    }





    .seccion-proceso-compra{
        padding-left: 20px;
        padding-right: 20px;
    }    
}