@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background-color: #f1eeeea2;
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
}

header{
    position: sticky;
    top: 0px;
    background-color:#000;
    width: 100%;
    z-index: 1000;
}

.container{
    padding: 0 2rem;
    margin: 0 auto;
    display: flex;
    position: relative;
}

.logo-container{
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-btn{
    flex: 3;
    display: flex;
}

.nav-links{
    flex: 2;
}

.log-sign{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.logo{
	height: 70px;
    padding: 1%;
    margin: 0;
}

/**Botones**/

.btn1{
    display: inline-block;
    padding: .5rem 1.3rem;
    font-size: .8rem;
    border: 2px solid #fff;
    border-radius: 2rem;
    line-height: 1;
    margin: 0 .2rem;
    transition: .3s;
    text-transform: uppercase;
}

.btn1.solid, .btn1.transparent1:hover{
    background-color: #fff;
    color:rgba(0, 0, 0, 0.5);
}

.btn1.transparent1, .btn1.solid:hover{
    background-color: transparent;
    color: #fff;
}
/**</Botones>**/



.nav-links > ul{
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link{
    position: relative;
}

.nav-link > a{
    line-height: 3rem;
    color: #fff;
    padding: 0 .8rem;
    letter-spacing: 1px;
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
}

.nav-link > a > i{
    margin-left: .2rem;
}

.nav-link:hover > a{
    transform: scale(1.1);
    color: #fff;
}

.dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    width: 10rem;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}

.dropdown ul{
    position: relative;
}

.dropdown-link > a{
    display: flex;
    background-color: #fff;
    /**LETRAS COLOR EN EL DROP**/
    color: rgb(0, 0, 0);
    padding: .5rem 1rem;
    font-size: .9rem;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
}

.dropdown-link:hover > a{
    background-color: rgba(255, 0, 21);
    color: #fff;
}

.dropdown-link:not(:nth-last-child(2)){
    border-bottom: 1px solid #efefef;
}

.dropdown-link i{
    transform: rotate(-90deg);
}

.arrow{
    position: absolute;
    width: 11px;
    height: 11px;
    top: -5.5px;
    left: 32px;
    background-color: #fff;
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s;
    z-index: -1;
}

.dropdown-link:first-child:hover ~ .arrow{
    background-color: #152acc;
}

.dropdown-link{
    position: relative;
}

.dropdown.second{
    top: 0;
    left: 100%;
    padding-left: .8rem;
    cursor: pointer;
    transform: translateX(10px);
}

.dropdown.second .arrow{
    top: 10px;
    left: -5.5px;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown{
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
}

.hamburger-menu-container{
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu{
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu div{
    width: 1.6rem;
    height: 3px;
    border-radius: 3px;
    background-color: #fff;
    position: relative;
    z-index: 1001;
    transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after{
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #fff;
    border-radius: 3px;
    transition: .5s;
}

.hamburger-menu div:before{
    transform: translateY(-7px);
}

.hamburger-menu div:after{
    transform: translateY(7px);
}

#check{
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div{
    background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before{
    transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after{
    transform: translateY(0) rotate(45deg);
}

@keyframes animation{
    from{
        opacity: 0;
        transform: translateY(15px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

@media (max-width: 920px){
    .hamburger-menu-container{
        display: flex;
    }

    .logo{
        height: 50px;
        padding: 1%;
        margin: 0;
    }

    #check{
        display: block;
    }

    .nav-btn{
        position: fixed;
        height: calc(100vh - 3rem);
        top: 3rem;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        overflow-x: hidden;
        overflow-y: auto;
        transform: translateX(100%);
        transition: .65s;
    }

    #check:checked ~ .nav-btn{
        transform: translateX(0);
    }

    #check:checked ~ .nav-btn .nav-link,
    #check:checked ~ .nav-btn .log-sign{
        animation: animation .5s ease forwards var(--i);
    }

    .nav-links{
        flex: initial;
        width: 100%;
    }

    .nav-links > ul{
        flex-direction: column;
    }

    .nav-link{
        width: 100%;
        opacity: 0;
        transform: translateY(15px);
    }

    .nav-link > a{
        line-height: 1;
        padding: 1.6rem 2rem;
    }

    .nav-link:hover > a{
        transform: scale(1);
        background-color:  rgba(65, 65, 65);

    }

    .dropdown, .dropdown.second{
        position: initial;
        top: initial;
        left: initial;
        transform: initial;
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        padding: 0;
        background-color:  rgba(48, 48, 48);
        display: none;
    }
    
    .nav-link:hover > .dropdown,
    .dropdown-link:hover > .dropdown{
        display: block;
    }

    .nav-link:hover > a > i,
    .dropdown-link:hover > a > i{
        transform: rotate(360deg);
    }

    .dropdown-link > a{
        background-color: transparent;
        color: #fff;
        padding: 1.2rem 2rem;
        line-height: 1;
    }

    .dropdown.second .dropdown-link > a{
        padding: 1.2rem 2rem 1.2rem 3rem;
    }

    .dropdown.second .dropdown.second .dropdown-link > a{
        padding: 1.2rem 2rem 1.2rem 4rem;
    }

    .dropdown-link:not(:nth-last-child(2)){
        border-bottom: none;
    }

    .arrow{
        z-index: 1;
        background-color: #FFF;

        left: 10%;
        transform: scale(1.1) rotate(45deg);
        transition: .5s;
    }

    .nav-link:hover .arrow{
        background-color: #FFF;
    }

    .dropdown .dropdown .arrow{
        display: none;
    }

    .dropdown-link:hover > a{
        background-color: rgb(255, 0, 0);
    }

    .dropdown-link:first-child:hover ~ .arrow{
        background-color: #FFF;
    }

    .nav-link > a > i{
        font-size: 1.1rem;
        transform: rotate(-90deg);
        transition: .7s;
    }

    .dropdown i{
        font-size: 1rem;
        transition: .7s;
    }

    .log-sign{
        flex: initial;
        width: 100%;
        padding: 1.5rem 1.9rem;
        justify-content: flex-start;
        opacity: 0;
        transform: translateY(15px);
    }
}

/** IMG PRINCIPAL **/

.cont_cabecera{
    width: 100%;
    height: 30rem;
    display: flex;
    position: relative;
    margin: 0%;
}

.cont_text{
    background: rgba(0, 0, 0, 0.9);
    padding: 6%;
    position: absolute;
    height: inherit;
    color: #fff;
}

.img_principal{
    background-color: #E9E7E4;
    width: 100%;
    height: 100%;
}

.contwhatsapp{
    position: absolute;
    height: 100%;
    margin-left: 32%;
    margin-top: 6.7%;
}

.buttonWhat{
    background-color: #A6BF6E;
    color: #fff;
    font-size: 1em !important;
    text-align: center;
    width: 350px;
    transition: .5s;
}

.buttonWhat:hover{
    background-color: #95b355;
    color: #fff !important;
    font-size: 1.2em !important;
}

.img_what{
    width: 25%;
    height: 40%;
}

.letDepot{
    display: contents;
    font-size: 32px;
    font-weight: 800;
}

.img_depot{
    height: 5rem;
}

.GestionDepot{
    font-size: 28px;
    font-weight: 650;
    margin-top: 5%;
}

.notedepot{
    border-bottom: 1px solid red;
    margin-bottom: 5%;
}

/**</ IMG PRINCIPAL**/


/**btn en img**/

.button{
    background-color: #D5232C;
    color: #fff;
    border-radius: 1rem;
    display: inline-block;
    font-size: 1.25em;
    padding: 10px 0px;
    text-align: center;
    width: 160px;
    cursor: pointer;
    transition: .5s;
}

.button:hover{
    background-color: #EF3F47;
    color: #fff;
    font-size: 1.45em;
}

.button_div{
    display:inline-block;
    position:absolute;
    top:80%;
    left:8%;
}

.dos{
    left:50%;
}

.dos .button{
    background-color: #0410bf;
}

@media(max-width:970px){

    .cont_cabecera{
        height: 450px;
        position: static;
    }

    .cont_text{
        background: rgba(0, 0, 0, 0.4);
        width: 100%;
        padding: 10%;
    }

    .contwhatsapp{
        position: absolute;
        height: auto;
        margin-left: 4%;
        margin-top: 1.4%;
        z-index: 1;
    }

    .buttonWhat{
        font-size: 0.8rem !important;
        height: 50px !important;
        width: 70%;
    }
    
    .buttonWhat:hover{
        font-size: 1em !important;
    }
    
    .img_what{
        height: 2rem;
    }

    .img_depot{
        left: 5%;
        top:10%;
        margin-top: 8%;
    }
    
    .letDepot{
        font-size: 28px;
        font-weight: 800;
    }
        
    .GestionDepot{
        width: 50%;
        font-size: 20px;
        top:30%;
    }

    .notedepot{
        width: 50%;
        font-size: 20px;
        top:65%;
    }

    .img_principal{
        height: 28rem;
        object-fit: cover;
    }

    .button{
        font-size: 1.10em;
        padding: 8px 0px;
        text-align: center;
        margin-top: 2rem;
        width: 120px;
    }

    .button_div{
       top:75%;
       left: 6%;
    }

    .dos{
        left: 44%;
    }
}

@media(min-width:1500px){

    .cont_cabecera{
        height: 800px;
    }
  
    .cont_text{
        font-size: 40px;
        width: 40%;
        padding: 3%;
    }

    .contwhatsapp{
        position: absolute;
        height: 100%;
        margin-left: 42%;
        margin-top: 6.7%;
    }

    .letDepot{
        font-size: 40px;
    }

    .img_depot{
        height: 10rem;
    }
    
    .GestionDepot{
        font-size: 42px;
        top:36%;
    }

    .notedepot{
        font-size: 34px;
        top:60%;
    }

    .img_principal{
        height: 50rem;
        object-fit: cover;
    }

    .button{
        width: 300px;
    }

    .button_div{
       top:70%;
       left: 6%;
    }

    .dos{
        left: 50%;
    }
}

/**</Btn en imagen>**/

/**Menu antes de texto**/

.menu_mini{
    background-color:rgba(255, 255, 255, 0.850);
    box-shadow:0 10px 25px -15px rgba(0,0,0,.3);
}

.menu_mini ul{
    text-align: center;
    margin: 0;
    padding: 0;
}

.menu_mini ul li{
    display: inline-block;
    width: 30%;
}    

.menu_mini ul li a{
    color: #000;
    display: block;
    padding: 5%;
}

.menu_mini ul li a:hover{
    transition: 0.6s;
    background-color:rgba(0, 0, 0, 0.8);
    color: #FFFF;
}

@media(max-width:970px){

    .menu_mini ul li{
        display: inline-block;
        width: 100%;
    }

}

.active{
    box-shadow: inset 0 4px #000;
}

.active>a{
    font-weight: 600;
    color: #D5232C;
    transition: all 0.5s ease;
}

/**</Menu**/

/**TEXTO DESPUES DE IMG**/

.contenedor_de_titulo{
    padding: 5%;
    /**background-color: #f4f5f8;**/
}

.tituloDp{
    text-align: center;
    font-size: 50px;
    color: #182bd4;
}

.textoDp{
    text-align: center;
    font-size: 20px;
}

/**</ TEXTO DESPUES DE IMG**/

/** YOUTUBE **/

.contenedorGeneral{
    height: 100%;
    color: #fff;
}

.background{
    background-image: url(../img/micropar_logo_2018.png);
    background-position-x: 14%;
    background-position-y:50%;
    background-repeat: no-repeat;
    background-size: 80%;
    z-index: 2;
}

.color_back{
    background-color: #3498db;
    height: 350px;

}

.textoSolo{
    float: left;
    text-align: center;
    width: 40%;
    font-size: 40px;
    margin-top: 5%;
}

.textoSolo p {
    font-size: 18px;
}

.contenedorVideo{
    float: right;
    z-index: 4;
    padding: 1%;
}

.video_real{
    border: solid 15px #f1eeeebb;;
    height: 320px;
    width: 600px;
}

@media(max-width:940px){
    
    .background{
        background-image: url(../img/logo_solo.png);
        background-position-x: 14%;
        background-position-y:4%;
        background-repeat: no-repeat;
        background-size: 100%;
        z-index: 2;
    }
    
    .color_back{
        background-color: #3498db;
        height: 100%;
    }
    
    .textoSolo{
        text-align: center;
        font-size: 35px;
        margin: 3%;
        width: 97%;
        float: none;
    }
    
    .contenedorVideo{
        float: none;
        z-index: 4;
        padding: 1%;
    }
    
    .video_real{
        border: solid 15px #f1eeeebb;;
        height: 320px;
        width: 100%;
    }

}
 
/**</ video y texto **/

/**Contenedores**/

.contenedorCuadro1{
    height: 100%;
    margin: 5% 5% 5% 5%;
    background-color: #f4f5f8;
    box-shadow: 0 0 40px -10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.texto_1{
    padding: 2.5%;
    width: 60%;
    float: right;
}

.texto_1 h2 p{
    text-align: center;
}

.texto_1 h2{
    font-size: 40px;
    FONT-WEIGHT: 500;
    color: rgba(26, 24, 24, 0.9);
}

.texto_1 p{
    margin: 0 0 20px;
    FONT-WEIGHT: 300;
}

.img_1{
    width: 40%;
    float: left;
}

.img_1 img{
    width: 100%;
}

.texto_2{
    padding: 2.5%;
    width: 50%;
    float: left;
}

.texto_2 h2 p{
    text-align: center;
}

.texto_2 h2{
    font-size: 40px;
    FONT-WEIGHT: 500;
    color: rgba(26, 24, 24, 0.9);
}

.texto_2 p{
    margin: 0 0 20px;
    FONT-WEIGHT: 300;
}

.img_2{
    padding: 0;
    width: 50%;
    float: right;
}

.notebooks{
    margin-top: 25%;
    width: 550px;
    height: 320px;
}

@media(max-width:970px){

    .img_1{
        width:100%;
    }

    .img_1 img{
        width: 100%;
        height: 330px;
    }

    .texto_1{
        float: none;
        width: 100%;
    }

    .texto_1 h2{
        text-align: center;
    }

    .img_2{
        width:100%;
    }

    .notebooks{
        margin-top: 0;
        width: 100%;
        height: 100%;
    }

    .texto_2{
        float: none;
        width: 100%;
    }

    .texto_2 h2{
        text-align: center;
    }

}

/**</ Contenedores**/

/** FOOTER **/

footer{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row wrap;
    padding: 50px;
    color: #fff;
    background-color: #011c39;
}
.footer > *{
    flex: 1 100%;
}
.footer-left{
    margin-right: 1.25em;
    margin-bottom: 2em;
}

.footer-left img{
    width: 40%;
}

h2{
    font-weight: 600;
    font-size: 17px;
}

.footer ul{
    padding-left: 0;
}

.footer li{
    line-height: 2em;
}

.footer a{
    text-decoration: none;
}

.footer-right{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row wrap;
}

.footer-right > *{
    flex: 1 50%;
    margin-right: 1.25em;
}

.box a{
    color: #999;
}

.footer-bottom{
    text-align: center;
    color: #999;
    padding-top: 50px;
}

.footer-left p{
    padding-right: 20%;
    color: #999;
}

.socials a {
    background: #364a62;
    width: 40px;
    height: 40px;
    display: inline-block;
    margin-right: 10px;
}

.socials a i{
    color: #e7f2f4;
    padding: 10px 12px;
    font-size: 20px;
}

@media screen and (min-width: 600px){
    .footer-right > *{
        flex: 1;
    }

    .footer-left{
        flex: 1 0px;
    }

    .footer-right{
        flex: 2 0px;
    }
}

@media (max-width:970px){
    .footer{
        padding: 15px;
    }
    .footer-left img{
        width: 70%;
        margin-left: 15%;
    }
}

/** </ FOOTER **/

/** Contratar **/

.soluciones{
    margin: 30px 0 80px 0;
}

.titular {
    margin-bottom: 30px;
    font-size: 45px;
    font-weight: 700;
    color: #0082ca;
    text-align: center;
}


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

.buttonPri{
    background-color: #182bd4e8;
    color: #fff;
    border-radius: 2em 0 0 2em;
    display: inline-block;
    font-size: 1.25em;
    padding: 20px 0px;
    text-align: center;
    width: 230px;
    cursor: pointer;
    box-shadow:0 10px 25px -15px rgba(0,0,0,.5);
}

.buttonPriJQ{
    background-color: #182bd4e8;
    color: #fff;
    border-radius: 0 2em 2em 0;
    display: inline-block;
    font-size: 1.25em;
    padding: 20px 0px;
    text-align: center;
    width: 230px;
    cursor: pointer;
    box-shadow:0 10px 25px -15px rgba(0,0,0,.5);
}

.buttonPri:hover{
    background-color: #fff;
    color: #000;
    transition: 1s;
}

.buttonPriJQ:hover{
    background-color: #fff;
    color: #000;
    transition: 1s;
}

.buttonSec{
    background-color: #e9eaf8;
    color: #000;
    border-radius: 0 2em 2em 0;
    display: inline-block;
    font-size: 1.25em;
    padding: 20px 0px;
    text-align: center;
    width: 230px;
    cursor: pointer;
    box-shadow:0 10px 25px -15px rgba(0,0,0,.5);
}

.buttonSecJQ{
    background-color: #e9eaf8;
    color: #000;
    border-radius: 2em 0 0 2em;
    display: inline-block;
    font-size: 1.25em;
    padding: 20px 0px;
    text-align: center;
    width: 230px;
    cursor: pointer;
    box-shadow:0 10px 25px -15px rgba(0,0,0,.5);
}

.buttonSec:hover{
    background-color: #182bd4e8;
    color: #fff;
    transition: 1s;
}

.buttonSecJQ:hover{
    background-color: #182bd4e8;
    color: #fff;
    transition: 1s;
}

.ContenedorGeneralContra{
    margin: 5% 0 5% 0;
    padding: 2%;
    height: 100%;
    display: flex;
}

[data-content]{
    display: none;
}

.activardo[data-content]{
    display: flex;
}

.contenedoresContra{
    width: 100%;
    margin: 2.5%;
    height: auto;
    background-color:rgba(255, 255, 255, 0.850);
    box-shadow:0 10px 25px -15px rgba(0, 0, 0, 0.45);
}

.contenedoresContra h2{
    font-size: 30px;
    color: #0082ca;
    text-align: center;
    font-weight: 600;
    border-bottom: 3px solid #37A68E;
    padding: 5%;
    margin: 0;
}

.contenedorTexto{
    padding: 10%;
    height: 50%;
}

.precio{
    margin-top: inherit;
    text-align: center;
    font-size: 30px;
    height: 28%;
}

.contratarServicio{
    background-color: #44B03A;
    color: #fff;
    text-align: center;
    font-size: 18px;
    padding: 5%;
}

.contratarServicio a{
    color: #fff;
    font-size: 18px;
}

.contratarServicio a:hover{
    color: #fff;
    font-size: 18px;
}

@media (max-width:970px){

    .titular {
        margin-bottom: 30px;
        font-size: 40px;
        font-weight: 700;
        color: #0082ca;
        text-align: center;
    }

    .buttonPri{
        background-color: #182bd4e8;
        color: #fff;
        border-radius: 2em 0 0 2em;
        display: inline-block;
        font-size: 1.25em;
        padding: 20px 0px;
        text-align: center;
        width: 170px;
        cursor: pointer;
        box-shadow:0 10px 25px -15px rgba(0,0,0,.5);
    }

    .buttonSec{
        background-color: #e9eaf8;
        color: #000;
        border-radius: 0 2em 2em 0;
        display: inline-block;
        font-size: 1.25em;
        padding: 20px 0px;
        text-align: center;
        width: 170px;
        cursor: pointer;
        box-shadow:0 10px 25px -15px rgba(0,0,0,.5);
    }

    [data-content]{
        display: none;
    }
    
    .activardo[data-content]{
        display: block;
    }

    .ContenedorGeneralContra{
        margin: 5% 0% 5% 5%;
        padding: 0%;
        height: 100%;
    }

    .contenedoresContra{
        width: 90%;
        margin-bottom: 5%;
        background-color:rgba(255, 255, 255, 0.850);
        box-shadow:0 10px 25px -15px rgba(0, 0, 0, 0.5);
    }

}
/**</CONTENEDORES BOTONES DE CONTRA */

/**Descargar depot**/
.bodyEspecial{
    background-color: #FFF;
    margin: 0;
    padding: 0;
}

.imgDepot{
    background-image: url("../img/fondoo.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.contenedorDepot{
    margin: 0%;
    padding: 3%;
    overflow: hidden;
}

.contenedorTextoDepot{
    width: 100%;
    display: block;
}

.textoDepot{
    color: rgba(0, 0, 0, 0.8);
    float: left;
    width: 50%;
    font-size: 48px;
    font-weight: 600;
    z-index: 2;
}

.imgDepot2{
    float: right;
    width: 45%;
    z-index: 1;
}

.imgDepot2 img{
    width: 560px;
}

.contenedorTextoDescargar{
    float: left;
    width: 50%;
}

.textExplicativo{
    font-size: 22px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
}

.ContenedorBotones{
    display: inline-block;
}

.informacion{
    background-color: #182bd4;
    color: #fff;
    font-weight: 400;
    border-radius: 0.5rem;
    display: inline-block;
    font-size: 1.25em;
    padding: 10px 0px;
    text-align: center;
    width: 220px;
    cursor: pointer;
    transition: .7s;
}

.informacion a{
    color: #fff;
}

.informacion a:hover{
    color: #000;
}

.informacion:hover{
    background-color: transparent;
    border: solid 2px #999;
    font-weight: 600;
    color: #000;
}

.download{
    background-color: #f30b17;
    color: #fff;
    font-weight: 400;
    border-radius: 0.5rem;
    border: none;
    display: inline-block;
    font-size: 1.25em;
    padding: 10px 0px;
    text-align: center;
    width: 150px;
    cursor: pointer;
    transition: .7s;
}

.download:hover{
    background-color: #f83a43;
    color: rgb(0, 0, 0);
    font-weight: 600;
}

@media screen and (max-width: 970px){
    .contenedorDepot{
        margin: 0%;
        padding: 3%;
        overflow: hidden;
    }
    
    .contenedorTextoDepot{
        width: 100%;
        display: block;
    }
    
    .textoDepot{
        color: rgba(0, 0, 0, 0.8);
        width: 100%;
        margin-top: 100%;
        font-size: 48px;
        font-weight: 600;
        z-index: 2;
    }
    
    .imgDepot2{
        position: absolute;
        width: 90%;
        z-index: 3;
    }
    
    .imgDepot2 img{
        width: 100%;
    }
    
    .contenedorTextoDescargar{
        float: none;
        width: 90%;
    }
    
    .informacion{
        background-color: #182bd4;
        color: #fff;
        font-weight: 400;
        border-radius: 0.5rem;
        display: inline-block;
        font-size: 1.25em;
        padding: 10px 0px;
        text-align: center;
        width: 110%;
        cursor: pointer;
        transition: .7s;
        margin: 2%;
    }
    
    .download{
        background-color: #f30b17;
        color: #fff;
        font-weight: 400;
        border-radius: 0.5rem;
        border: none;
        display: inline-block;
        font-size: 1.25em;
        padding: 10px 0px;
        text-align: center;
        width: 110%;
        cursor: pointer;
        transition: .7s;
        margin: 2%;
    }

}

/**</ Descargar Depot **/

/** LOGIN **/

.wave{
	position: fixed;
	bottom: 0;
	left: 0;
	height: 100%;
	z-index: -1;
}

.containerLogin{
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap :7rem;
    padding: 0 2rem;
}

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

.login-content{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
}

.img img{
	width: 500px;
}

.form{
	width: 360px;
}

.login-content img{
    height: 100px;
}

.login-content h2{
	margin: 15px 0;
	color: #333;
	text-transform: uppercase;
	font-size: 2.9rem;
}

.login-content .input-div{
	position: relative;
    display: grid;
    grid-template-columns: 7% 93%;
    margin: 25px 0;
    padding: 5px 0;
    border-bottom: 2px solid #d9d9d9;
}

.login-content .input-div.one{
	margin-top: 0;
}

.i{
	color: #d9d9d9;
	display: flex;
	justify-content: center;
	align-items: center;
}

.i i{
	transition: .3s;
}

.input-div > div{
    position: relative;
	height: 45px;
}

.input-div > div > h5{
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	font-size: 18px;
	transition: .3s;
}

.input-div:before, .input-div:after{
	content: '';
	position: absolute;
	bottom: -2px;
	width: 0%;
	height: 2px;
	background-color: #182bd4;
	transition: .4s;
}

.input-div:before{
	right: 50%;
}

.input-div:after{
	left: 50%;
}

.input-div.focus:before, .input-div.focus:after{
	width: 50%;
}

.input-div.focus > div > h5{
	top: -5px;
	font-size: 15px;
}

.input-div.focus > .i > i{
	color: #182bd4;
}

.input-div > div > input{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	background: none;
	padding: 0.5rem 0.7rem;
	font-size: 1.2rem;
	color: #555;
	font-family: 'poppins', sans-serif;
}

.input-div.pass{
	margin-bottom: 4px;
}

.linkLogin{
	display: block;
	text-align: right;
	text-decoration: none;
	color: #999;
	font-size: 0.9rem;
	transition: .3s;
}

.linkLogin:hover{
	color: #182bd4;
}

.btnLogin{
	display: block;
	width: 100%;
	height: 50px;
	border-radius: 25px;
	outline: none;
	border: none;
	background-image: linear-gradient(to right, #182bd4, #182bd4, #182bd4);
	background-size: 200%;
	font-size: 1.2rem;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	margin: 1rem 0;
	cursor: pointer;
	transition: .5s;
}
.btnLogin:hover{
	background-position: right;
}


@media screen and (max-width: 1050px){
	.containerLogin{
		grid-gap: 5rem;
	}
}

@media screen and (max-width: 1000px){
	.form{
		width: 290px;
	}

	.login-content h2{
        font-size: 2.4rem;
        margin: 8px 0;
	}

	.img img{
		width: 400px;
	}
}

@media screen and (max-width: 900px){
	.containerLogin{
		grid-template-columns: 1fr;
	}

	.img{
		display: none;
	}

	.wave{
		display: none;
	}

	.login-content{
		justify-content: center;
	}
}

/*</login*/

/* 404 page */

.PageNotFound{
    width: 100%;
    display: block;
    overflow: hidden;
    background-image: url("../img/404.png");
    background-attachment: fixed;
}

.texto404{
    display: block;
    height: 800px;
}
.texto404 h1{
    text-align: center;
    font-size: 80px;
    font-weight: 700;
}

.texto404 p{
    width: 50%;
    margin-left: 2%;
    font-size: 30px;
    font-weight: 500;
}

.texto404 a{
    color: #f30b17;
}

@media screen and (max-width: 970px){
    .PageNotFound{
        width: 100%;
        display: block;
        overflow: hidden;
        background-image: url("../img/404.png");
        background-position-x: 40%;
        color: #eb101b;
    }

    .texto404{
        display: block;
        height: 500px;
    }

    .texto404 p{
        width: 100%;
        margin: 0;
        font-size: 30px;
        font-weight: 500;
        color: #000;
        background-color: rgba(255, 255, 255, 0.500);
    }

}

/* </ 404 */

/* MANTENIMIENTO */

.Mantenimiento{
    height: 680px;
    background-image: url("../img/mantenimiento.png");
    background-size: 100%;
    background-repeat: no-repeat;
}

.link{
    margin-top: 30px;
    text-align: center;
}

.link a{
    font-size: 40px;
    color: #000;
    font-weight: 400;
}

@media screen and (max-width: 970px){
    .Mantenimiento{
        height: 250px;
        background-image: url("../img/mantenimiento.png");
        background-size: 100%;
        background-repeat: no-repeat;
    }

    .link{
        text-align: right;
        margin-right: 5%;
    }

    .link a{
        font-size: 20px;
        color: #000;
        font-weight: 400;
    }

}

/* </ MANTENIMIENTO */

/* MAPA*/
.mother{
    margin: 0%;
    padding: 0%;
    background-color: rgb(235, 235, 235);
}

.father{
    overflow: hidden;
}

.ContenedorMapa{
    width: 46%;
    margin: 4%;
    float: left;
}

.ContenedorMapa h3{
    text-align: center;
}

.ContenedorMapa, .maps{
    width: 450px;
    height: 420px;
}

.formularioContactanos{
    float: right;
    width: 46%;
    margin: 4%;
}

.imgContact{
    width: 100%;
}

.textarea{
    resize: vertical;
    min-height: 60px;
    max-height: 75px;
}

.relleno{
    object-position: center;
    width: 180px;
}

@media screen and (max-width: 970px){
    .ContenedorMapa{
        width: 95%;
        margin: 4%;
        float: none;
    }

    .maps{
        width:95%;
        height: 420px;
    }

    .formularioContactanos{
        float: none;
        width: 90%;
        margin-top: 24%;
        padding: 0%;
    }

}

@media screen and (min-width:560px) and (max-width:1024px){
    .ContenedorMapa{
        width: 95%;
        margin: 4%;
        float: none;
    }

    .maps{
        width:95%;
        height: 420px;
    }

    .formularioContactanos{
        float: none;
        width: 100%;
        margin: 0%;
        padding: 10%;
    }

}
/**</ MAPA **/

/** ERROR 403 **/

.Error403{
    width: 100%;
}

.CuerpoTexto h1{
    font-weight: 500;
    position: absolute;
    margin-left: 20%;
}

@media screen and (max-width: 970px){
    .CuerpoTexto h1{
        font-size: 20px;
        font-weight: 500;
        position: absolute;
        margin: 4%;
    }
}

/** </ 403 **/

/** Form.-contratar **/

.bodyFormContratar{
    background-color: rgb(220, 220, 220);
}

.textoForm{
    color: #D5232C;
    text-align: center;
    font-weight: 800;
}

.Regulador{
    width: 90%;
    margin: 5%;
}

/** GRACIAS correo**/

.mensaje{
    height: 500px;
    margin: 5%;
}

.imgGracias{
    float: left;
    width: 45%;
}

.imgGracias img{
    width: 100%;
}

.textGracias{
    float: right;
    float: 45%;
    width: 45%;
    text-align: center;
}

.textGracias h1{
    
    font-weight: 500;
}

.textGracias h2{
    font-weight: 300;
}

/** </GRACIAS correo**/

/**Información**/

.TextInfo{
    text-align: center;
    padding: 4%;
}

.dropdownMenu{
    width: 90%;
	text-align: center;
    margin: 0% 0% 0.5% 5%;
}
.title{
    padding: 0.5em;
	background-color: #D5232C;
	color: white;
    font-size: 20px;
}
.title:hover{
	background-color: #EF3F47;
}
.dropdownButton:hover{
	cursor: pointer;
}
.dropdownButton > p .fa{
	float: right;
}
.dropdownContent ul{
	margin: 0;
	padding: 0 10px;
}
.dropdownContent,
.dropdownButton{
	border: 1px solid #994b4b;
}
.dropdownContent{
	padding: 15px 8px;
	background-color: #fff;
	margin-top: -1px;
}
.dropdownContent ul li{
	list-style: none;
	padding: 5px 0;
}
.dropdownContent ul li a{
	text-decoration: none;
}
.dropdownContent ul li a:hover{
	color: blue;
}
/**</Información**/

/** Clientes **/
#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

.clientesimg{
    width: 300px;
    height: 300px;
}

.modal-container{
    display: inline-block;
    padding: 1%;
    margin: 3%;
    background-color: #012676;
    box-shadow: 0 10px 25px -15px rgba(0, 0, 0, 0.8);
    border-radius: 10px;
}

.TextImg{
    text-align: center;
    margin-top: 5%;
    text-transform: uppercase;
    color: #fff;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
  margin: auto;
  display: block;
  width: 450px;
  height: 450px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* The Close Button */
.close {
    float: none !important;
    position: absolute !important;
    top: 15px !important;
    right: 35px !important;
    color: #efefef !important;
    font-size: 40px !important;
    font-weight: bold !important;
    transition: 0.3s !important;
    opacity: 1 !important;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 90%;
  }
}

@media screen and (max-width: 970px){
    .modal-container{
        display: block;
        width: 90%;
        padding: 1%;
        margin: 4%;
    }

    .clientesimg{
        width: 100%;
        height: 400px;
    }

    .modal{
        overflow: overlay !important; /* Enable scroll if needed */
    }
}
/**</Clientes**/