*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: helvetica;
}

ul{
    list-style: none;
}

.modal{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
}

#btn-modal:checked ~ .modal{
    opacity: 1;
    visibility: visible;
}

.contenedor-modal{
    width: 400px;
    height: auto;
    border-radius: 10px;
    margin: auto;
    background: #fff;
    box-shadow: 1px 7px 25px rgba(0,0,0,0.6);
    transition: all 500ms ease;
    position: relative;
    transform: translateY(-30%);
}

#btn-modal:checked ~ .modal .contenedor-modal{
    transform: translateY(0);
}

.contenedor-modal .header{
    padding: 10px;
    background: #01015a;
    color: #fff;
    border-radius: 10px 10px 0 0;
}

.contenedor-modal label{
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}
#btn-modal{
    display: none;
}

.lbl-modal{
    background: #e69706;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    position: absolute;
    top: -7px;
    right: 0;
    display: none;
}

#contenido-del-modal::-webkit-scrollbar{
    width: 7px;
}

#contenido-del-modal::-webkit-scrollbar-thumb{
    background: #01015a;
    border-radius: 5px;
}


.contenido{
    padding: 30px;
}

#mi-archivo{
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

label[for="mi-archivo"]{
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background-color: #106BA0;
    transition: all .5s;
    cursor: pointer;
    padding: 15px 40px;
    text-transform: uppercase;
    width: fit-content;
    text-align: center;
    position: relative;
    margin: 0 auto 20px auto;
    display: block;
    z-index: -10;
}

.select-add-product{
    outline: none;
    border: none;
}

.a-modal{
    padding: 0 10px;
    color: #000;
    text-decoration: none;
}

.p-modal{
    padding-right: 13px;
    border-right: 1px solid #01015a;
}

.article-modal{
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border: 1px solid #01015a;
    margin: 10px 0;
}

.ml-a{
    margin-left: auto;
}


#productos .productos #selected-page{
    color: #fff;
    background: #1335bb;
    border-radius: 10px;
}

#selected{
    position: relative;
    background: #112679;
    color: #fff;
}

#wathsapp a{
    display: block;
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 9;
    bottom: 5px;
    right: 5px;
    cursor: pointer;
}

#wathsapp img{
    width: 100%;
}

/* NAV */
.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.nav > img{
    width: 200px;
    height: 60px;
}

.menu-btn{
    cursor: pointer;
    position: relative;
    top: 3px;
}

.menu ul{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    background: #060b13;
    height: 120%;
    padding: 30px;
    opacity: .9;
    transform: translate(-400px);
    transition: transform .5s ease-in-out; /*TRANSICION*/
    z-index: 10;
}

.menu ul a{
    color: #fff;
    text-decoration: none;
}

.menu ul a:hover{
    text-decoration: underline;
}

.menu ul li{
    padding: 5px;
    font-size: 1rem;
}

.menu .show{
    transform: translate(-20px);
}

.dismiss-menu{
    color: #fff;
    position: absolute;
    bottom: 170px;
    left: 50%;
    cursor: pointer
}


/* SLIDER */
.section-slider{
    width: 100%;
    height: 400px;

    background: #0F2027;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to top, #2C5364, #203A43, #0F2027);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to top, #2c536400, #1b1d35d4, #050138eb), url(../img/fondos/fondo.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: bottom;
}

.slider-text{
    color: #fff;
    font-size: 15px;
    padding: 40px 40px 30px 40px;
}
.contenedor{
    width: 100%;
    overflow: hidden;
}

.slider-contenedor{
    width: 100%;
    display: flex;
}

.contenido-slider{
    width: 100%;
    height: 200px;
    padding-top: 15px;
    display: flex;
    flex-shrink: 0;
}

.contenido-slider img{
    width: 50%;
    height: 150px;
    margin: 0 auto;
}


/* NOSOTROS */
#btn-ver-mas{
    display: block;
    padding: 8px;
    margin: 8px 0;
    color: #fff;
    background: #80027f;
    width: 90px;
    text-align: center;
    text-decoration: none;
}

#nosotros{
    padding: 30px 40px;
}

.nosotros-text{
    font-size: 16px;
    font-weight: 700;
}

.nosotros-text > h3{
    padding: 20px 0;
    font-size: 20px
}

.nosotros-text p{
    display: inline;
}

#nosotros > img{
    width: 100%;
    height: 200px;
    padding-top: 25px;
}

.circle{
    width: 5px;
    height: 5px;
    background: #000;
    display: inline-block;
    padding: 2px;
    margin-right: 5px;
    position: relative;
    top: -3px;
}

/* FOOTER */
footer{
    background: #0b0f3a;
    padding: 40px 0 30px 0;
    margin: auto;
    overflow: hidden;;
}

.contenedor-footer{
    width: 90%;
    margin: auto;
    padding-bottom: 50px;
    border-bottom: 1px solid #ccc;
}

.datos{
    text-align: center;
}

.content-foo{
    padding: 10px;
}

.content-foo h4{
    color: #fff;
    border-bottom: 3px solid #f2f2f2;
    padding-bottom: 5px;
    margin-bottom: 10px;
    text-align: center;
}

.content-foo p{
    color: #ccc;
}

.titulo-final{
    text-align: center;
    font-size: 22px;
    margin: 20px 0 0 0;
    color: #9e9797;
}

.form-contact{
    display: block;
    padding: 10px 20px;
    margin-top: 30px;
    background: #fff;
    box-shadow: 0 0 3px 0 #ccc;
    border-radius: 5px;
}

.form-contact > form{
    padding: 0 15px;
}

.form-contact form > h3{
    color: #000;
    padding: 15px 0;
}

.form-contact input[type="text"], .form-contact input[type="email"], .form-contact input[type="number"], .form-contact input[type="password"]{
    display: block;
    width: 100%;
    margin: 0px 0;
    color: rgb(66 65 65);
    border: none;
    outline: none;
    padding: 0 10px;
}

.form-contact input[type="submit"]{
    width: 100%;
    padding: 7px 25px;
    margin-bottom: 3px;
    background: #01015a;
    color: #fff;
    outline: none;
    border: none;
    cursor: pointer;
}

.form-contact i{
    width: 50px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    padding: 0 5px;
    border-right: 1px solid #7f7f7f;
}

.i-input{
    display: flex;
    border: 1px solid #7f7f7f;
    margin-bottom: 20px;
}

/* RESPONSIVE */
@media(min-width: 768px){
    .section-slider{
        display: flex;
        align-items: center;
        height: 300px;

        background: #000428;  /* fallback for old browsers */
        background: -webkit-linear-gradient(to left, #004e92, #000428);  /* Chrome 10-25, Safari 5.1-6 */
        background: linear-gradient(to left, #0628466b, #000428), url(../img/fondos/fondo.jpg);
    
        /* background-position: center; */
        background-repeat: no-repeat;
        background-size: cover;
    }

    .dismiss-menu{
        display: none;
    }

    .menu-btn{
        display: none;
    }

    .menu ul{
        display: flex;
        justify-content: space-between;
        position: relative;
        right: 0;
        color: #000;
        background: #fff;
        height: auto;
        padding: 0 0 0 30px;
        transform: translate(0);
    }

    .menu ul a{
        color: #000;
    }


    /* NOSOTROS */
    #nosotros{
        display: flex;
        flex-direction: row-reverse;
    }

    .nosotros-text{
        width: 100%;
    }

    #nosotros img{
        width: 50%;
        height: 350px;
        padding: 25px 30px;
    }

    /* FOOTER - CONTACTO */
    .contenedor-footer{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
    }

    .datos{
        padding: 10px 20px;
    }

    .form-contact{
        margin-top: 0px;
    }    
}


@media(min-width: 1024px){

    .menu ul li {
        font-size: 18px;
    }

    .nav > img{
        width: 350px;
        height: 90px;
    }

    #wathsapp a{
        right: auto;
        left: 25px;
        bottom: 50px;
    }

    #wathsapp img {
        width: 140%;
    }

    footer{
        padding: 40px 28px 30px 28px;
    }

    .contenedor{
        width: 80%;
        margin: 0 auto;
    }

    .section-slider{
        height: 350px;
    }

    .slider-text{
        padding: 40px 20px 40px 80px;
        padding: 40px 0px 40px 80px;
    }

    .slider-contenedor{
        width: 80%;
        display: flex;
        margin: 0 auto;
    }

    .contenido-slider{
        width: 100%;
        height: 230px;
        padding-top: 35px;
    }


    /* NOSOTROS */
    .nosotros-text{
        width: 90%;
    }

    .nosotros-text > h3 {
        padding: 40px 0 15px 0;
    }

    #nosotros {
        width: 94%;
        margin: 0 auto;
        height: 470px;
    }

    #nosotros > img{
        width: 50%;
        height: 350px;
        margin-top: 20px;
    }
}


@media(min-width: 1200px){
    .contenedor {
        width: 700px;
        margin: 0;
    }

    .slider-text {
        width: 700px;
    }

    .section-slider {
        height: 500px;
        justify-content: center;
    }
    
    .nosotros-text{
        padding: 0 50px;
    }

    .contenedor-footer{
        width: 85%;
    }
}

@media(min-width: 1300px){
    .contenedor-footer{
        width: 980px;
    }
}


@media(min-width: 1400px){
    #nosotros {
        width: 1316px;
    }
}