@import url('https://fonts.googleapis.com/css?family=Nunito:300,400');

*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}
a{
    text-decoration: none;
    
}

header{
    border-top: 7px solid #0077B4;
    width: 100%;
    height: 110px;
    position: relative;
    z-index: 100;
    background: white;
    -webkit-box-shadow: 0px 10px 10px -2px rgba(0,0,0,0.21);
    -moz-box-shadow: 0px 10px 10px -2px rgba(0,0,0,0.21);
    box-shadow: 0px 10px 10px -2px rgba(0,0,0,0.21);
}
.contenedor{
    max-width: 850px;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
}
.container-header{
    width: 98%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    margin: auto;
}

.container-logo-title{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 10px;
}

.container-logo-title img{
    width: 150px;
}
.menu{
    position: absolute;
    right: 10px;
    margin-top: 20px;
}

.menu ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.menu > ul li{
    list-style: none;
    font-size: 13px;
    font-weight: bold;
    color: #585858;
    padding: 20px 10px;
    border: 1px solid transparent;
    border-top: 4px solid transparent;
    cursor: pointer;
    -webkit-transition: border 300ms;
    transition: border 300ms;
    position: relative;
    text-transform: 
}
.menu > ul li .rojo{
    list-style: none;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 25px;
    border: 1px solid transparent;
    cursor: pointer;
    -webkit-transition: border 300ms;
    transition: border 300ms;
    position: relative;
    background-color: #F18700;
    font-family: 'Muli', sans-serif;
    color: white;
    border-radius: 16px;

}
.menu > ul li .rojo:hover{
    color: #f6ff12;
}
.menu > ul li a{
    color: #585858;
}

.menu > ul li a:hover{
    color: #FE9900;
}

.menu > ul > li:hover{
    color: #FE9900;

}

.menu > ul > li:active{
    color: #FE9900;

}

.menu ul li label,
.menu ul li span{
    color: #FE9900;
}

.menu ul li label:hover,
.menu ul li span:hover{
    color: #FE9900;
}

.menu ul li span{
    font-size: 14px;
    position: relative;
    top: 4px;
}

.menu ul li label{
    font-size: 22px;
    position: relative;
    top: -6px;
}

.menu ul li .icon2{
    position: relative;
    top: -2px;
}



/*Submenu*/

.menu ul li ul{
    width: 235px;
    position: absolute;
    top: 60px;
    left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 1px solid #eeeeee;
    background: white;
    border-bottom: 1px solid #3ca8d3;
    padding: 10px;
}

.menu ul li ul li{
    padding: 10px 20px;
    border-bottom: 1px solid #eeeeee;
    font-weight: 100;
    font-size: 14px;
    position: relative;
}

.menu ul li ul li:hover{
    background: #FAFAFA;
    color: #3ca8d3;
}

.menu ul li ul li ul{
    position: absolute;
    left: 222px;
    top: 0;
}

.icon-menu{
    display: none;
}

main{
    width: 100%;
    max-width: 1220px;
    margin: auto;
    position: relative;
    top: 100px;
}

article{
    padding: 20px;
}

article h1{
    font-size: 40px;
    font-weight: 100;
}

article p{
    font-size: 18px;
    margin-top: 20px;
}

.container-bg{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 20px;
}

/*============================== SLIDER ==============================*/
#banner_desktop img,
#banner_mobile img{
    width: 100%;
}
#banner_mobile{
    display: none;
}
#info_item{
    padding: 80px 0px;
    
}
#info_item p{
    font-size:16px;
    color: #383838;
    text-align: center;
    font-weight: 400;
}
#info_item h1{
    max-width: 400px;
    margin: 0 auto;
    font-size:15px;
    color: white;
    text-align: center;
    font-weight: 500;
    background-color: #0273ad;
    padding: 10px;
    border-radius: 16px;
    margin-bottom: 30px;
}
#info_item p span{
    font-size:16px;
    color: #4b4b4b;
    text-align: center;
    font-weight: 700;
}

/*============================== Rquisitos ==============================*/
.requisitos{
	width: 100%;
	margin: 0;
	overflow: hidden;
    background-color: #f7f7f7;
    padding: 40px 50px;
}

.requisitos h1{
    max-width: 250px;
    width:90%;
    text-align: center;
    color: #ffffff;
    margin: 0 auto;
    border: 1px solid white;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #0077B4;
}
.requisitos p{
    max-width: 1200px;
    width:90%;
    text-align: center;
    color: #262626;
    margin: 0 auto;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
}

/*============================== Pasos ==============================*/
.pasos{
	width: 100%;
	margin: 0;
	overflow: hidden;
    background-color: #0078b7;
    padding: 60px 50px;
}

.pasos_items{
    max-width: 960px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 40px;
    margin-top: 40px;
    
}
.servicios{
    width:100%;
    background-color: #0078b7;
    margin-bottom: 40px;
    overflow: hidden;
}
.servicios p{
    max-width: 600px;
    width:90%;
    text-align: center;
    color: white;
    margin: 0 auto;
    border: 1px solid white;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
}
.icons_items{
    width: 31%;
    float: left;
    margin: 10px;
}
.pasos img{
    width: 250px;
    margin: 0 auto;
    display: block;
}

.icons_items p{
    width: 80%;
    margin: 0 auto;
    display: block;
    text-align: center;
    font-size:15px;
    color: #ffffff;
    margin-top: 20px;
    margin: 0 auto;
    font-weight: 500;
}
.icons_items p span{
    width: 70%;
    margin: 0 auto;
    display: block;
    text-align: center;
    font-size:25px;
    color: #ffffff;
    font-weight: 700;
}
/*============================== Información ==============================*/
.informacion{
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    background-color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 70px 0px;
}
.horario{
    width: 360px;
    border: 1px solid #0273ad;
    padding: 20px;
    margin: 10px;
}

.informacion p span{
    font-size: 17px;
    font-weight: 700;
    color: #535353;

}
.informacion p{
    font-size: 15px;
    font-weight: 500;
    color: #535353;
    letter-spacing: 0.5px;
}
.tarifas{
    width: 360px;
    border: 1px solid #0273ad;
    padding: 20px;
    margin: 10px;
}
.tarifas_items{
    width: 60%;
    float: left;
}
.tarifas_precios{
    width: 35%;
    float: right;
    text-align: right;
    font-weight: 500;

}
/*============FAQ FORMULARIO====================*/
.formulario{
    max-width: 360px;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 0px;
}

#contacto{
    padding-top: 1em;
    background-color: white;
    overflow: hidden;
}
#contacto P{
   color: rgba(0, 0, 0, 0.6);
    font-weight: 500;
    font-size: 20px;
}
#contacto .formu select{
    height:45px;
    width: 100%;
    padding: -5px !important;
    font-weight: 300;
    font-size: 14px;
    background-color: #f5f5f5;
    outline: none;
    border: 0;
    color: #606060;
}
#contacto .formu input{
    height:35px;
    width: 100%;
    padding: 10px;
    font-weight: 300;
    font-size: 14px;
    background-color: #f5f5f5;
    outline: none;
    border: 0;
    margin-top: 15px;
}
#contacto .formu textarea{
    height:120px;
    width: 100%;
    padding:10px;
    font-weight: 300;
    font-size: 14px;
    background-color: #f5f5f5;
    outline: none;
    border: 0;
    margin-top: 15px;
}
#contacto .formu button{
    width: 100%;
    height:35px;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    background-color: #0077B4;
    overflow: hidden;
    outline: none;
    border: 0;
    margin-top: 20px;
}
#contacto .formu button:hover{
    background-color: #454545;
}

/*============================== FOOTER ==============================*/
footer{
    width: 100%;
    padding-top: 2em;
    padding-bottom: 4em;
    background-color: #0077B4;
}

#footer-imagen{
    width: 150px;
    margin: 0 auto;
}
#footer-imagen img{
    width: 100%;
    margin: 0 auto;
    filter: opacity(0.8)
}
footer p{
    text-align: center;
      color: rgba(255, 255, 255, 0.44);
    font-size: 14px;
}


/*============================== Media ==============================*/
@media (max-width: 1000px){
 header{
     height: 60px;
    }
.container-logo-title{
    height: 60px;
    margin-top: 10px;
}
.container-logo-title img{
    width: 135px;
    height: 41px;
}
    
.container-logo-title h1{
    font-size: 20px;
    margin-top: 6px;
}
.icon-menu{
    display: block;
    position: absolute;
    right: 10px;
    top: 60px;
    font-size: 30px;
}
body{
    -webkit-transition: all 300ms;
    transition: all 300ms;
}
.body2{
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px);
    }
 .menu{
     width: 300px;
     height: 100vh;
     position: fixed;
     top: 0px;
     right: -300px;
     background: #0273ad;
     margin-top: 0px;
     overflow-y: scroll;
}
.menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #cbcbcb;
}
.menu ul li{
    padding: 10px 20px;
   color: #e8e8e8;
    font-weight: 700;
    font-size: 14px;     background: #0273ad;
}
.menu > ul li a{
    color: #e8e8e8;
    font-weight: 700;
    font-size: 14px;
}
.menu ul li ul{
    top: 0;
    border-bottom: 1px solid transparent;
     background: #0273ad;
}
    
.menu ul li ul{
        width: 100%;
        position: relative;
        border: none;
        padding: 2px;
        color: #cbcbcb;
}
.menu ul li ul li{
        border-bottom: 1px solid #0077B4;
    }
    
    .menu ul li ul li:hover{
     background: #0273ad;
    }
    
    .menu ul li ul li ul{
        width: 100%;
        position: relative;
        left: 0px;
        top: 6px;
    }
    
    
    article{
        text-align: center;
    }

@media (max-width: 900px){
#banner_mobile{
    display: block;
}
#banner_desktop{
    display: none;
}
.icons_items{
    width: 45%;
    float: left;
    margin-bottom: 50px;
}
    
 @media (max-width: 500px){
     .icons_items{
    width: 98%;
    float: left;
    margin-bottom: 50px;
}


  }
    