*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	width: 100%;	
	margin: auto;	
	background: url(imagenes/fondo.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-attachment: fixed;	
}
header{
	width: 100%;
	max-width: 1680px;
	height: 64px;
	margin: auto;
    z-index: 1000;
	top: 0;	
}
.cabecera{
	width: 100%;
	height: 68px;
	margin: auto;
	background: -webkit-linear-gradient(#fff, #e6e6e6 120%);
	box-shadow: 1px 1px 4px #363E7E;
	display: flex;;
	flex-wrap: wrap;
    top: 0;	  
}
.one{
    width: 100%;
	max-width: 1680px;
	height: 4px;
	margin: auto;
    background: #FF6200;
    top: 0;
 }
#logo{
    width: 27.8%;   
    margin-left: 8%;    
    top: 0;
}
#logo img{
    width: 100%;
    margin-top: 4px;
}
.data {
    width: 100%;
    max-width: 124px;
    height: 42px;
    margin-right: 5%;
    margin-top: 0;
    position: relative;    
}
.data ul{
    list-style: none;
    position: absolute;   
}
.data li a{
    font-family: sans-serif;
    font-size: 1.12rem;
    color: #143470;
    justify-content: flex-end; 
    float: right;
    text-align: right;
}
.data li a:hover{
    color: #ff6600;
    text-decoration: none;
    list-style: none;
}
#btn-menu{
	display: none;
}
header label{
	cursor: pointer;
	display: none;
}
.menu{
    width: 70%;
    height: 24px;
    margin: auto;
    background-color: #143470;
    box-shadow: 0px 0px 8px #fff;
    background: -webkit-linear-gradient(#001957, #143470 120%);
    border-radius: 16px;
    display: flex;
    z-index: 1000;
    margin-top: -10px;
}
.menu ul{
    font-family: sans-serif;
    font-size: 1.2rem;
    display: flex;
    list-style: none;
}
.menu ul ul{
    display: none;
}
.menu a{
    width: 142px;
    display: block;
    padding: 4px 6px;
    color: #fff;
    text-decoration: none;
}
.menu a:hover{
    width: 142px;
    height: 24px;
    color: #fff;
    text-decoration: none;
    border-radius: 16px;
    background-color: rgba(0,0,0,0.3);
    background: -webkit-linear-gradient(#03338c, #001f59 100%);
}
.menu img{
    margin-top: -2px;
    margin-right: 2px;
}
.menu ul li:hover ul{
    display: block;
    position: absolute;
}
.submenu li a{
    width: 206px;
    background-color: rgba(255, 102, 0, 0.6);
}
.submenu li a:hover{
    width: 206px;
    background: -webkit-linear-gradient(#03338c, #001f59 100%);
}
.fixed{
    position: fixed;
    width: 100%;
    max-width: 1680px;
    margin: auto;    
    justify-content: center;
    top: 0;      
    border-radius: 0;   
    z-index: 2000;
}

@media (min-width:720px) and (max-width: 1020px){
    header label{
        display: block;    
        width: 22px;
        height: 22px;
        margin-top: 4px;
    }
    .menu{
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        height: auto;
        border-radius: 0;
        transform: translateX(-100%);
        transition: all 0.4s;
        align-content: center;
        opacity: 0.8;
        z-index: 2000;
        
    }
    .menu ul{
        display: block;        
    }
    .menu ul li:hover ul{
        display: none;
        position: static;
    }
    #btn-menu:checked ~ .menu{
        transform: translateX(0%);
    }
    .data li a{
        font-size: 1rem;
    }
}
@media (min-width:0) and (max-width: 720px){
        header label{
            display: block;  
            width: 20px;
            height: 20px;
            margin-top: 4px;
        }
        #logo{
            width: 68%;
            height: auto;
            margin: auto;
            padding: 4px 4px;             
        }
        .menu{
            position: absolute;
            top: 80px;
            left: 0;
            width: 100%;
            height: auto;
            border-radius: 0;
            transform: translateX(-100%);
            transition: all 0.4s;
            align-content: center;
            opacity: 0.8;
            z-index: 2000;
        }
        .menu ul{
            display: block;        
        }
        .menu ul li:hover ul{
            display: none;
            position: static;
        }
        #btn-menu:checked ~ .menu{
            transform: translateX(0%);
        }
        #logo{
            width: 68%;
            height: auto;
            margin: auto;
            padding: 4px 4px;             
        }
        .data{
            width: 20%;
            height: auto;
            margin: auto;
            margin-right: 1px;
            margin-top: 0;            
            right: 0;
            float: right;
            justify-content: flex-end;
        }
        .data li a{
            justify-content: flex-end;
            font-size: 0.8rem;
            float: right;
            text-align: right;
           
        }
        #btn-menu:checked ~ .menu{
            transform: translateX(0%);
       }
}