/* Para Cel */
/*-----------------------------------------------------------------------------------------------------------------------------------*/
@media only screen and (min-width:320px) and (max-width:1024px){	

body {
    font-family: 'Titillium Web', sans-serif;
	overflow-x: hidden;
	
}

nav {
	height: 8vh;
	
    display: flex;    
	justify-content: space-around;
    align-items: center;

	/*border: 1px solid red;*/
    /*background-color: rgb(255,255,255);*/
	/*background-color: #333439;*/
	background-color: #17202a;
	/*background-color: #101a23;*/

    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .05);

    transition: top 0.3s ease-in-out;

    z-index: 3000;
	
}

.logo-brand {
	max-height: 40px;
	
	/*border: 1px solid red;*/
	
}	

.nav-links {
	width: 60%;
	height: 88vh;
	margin: 0;
	
	position: absolute;
	right: 0;
	top: 6vh;
	
	display: flex;
	flex-direction: column;
	justify-content: start;
    align-items: center;

	/*border: 1px solid red;*/
	/*background-image: url(../img/navbar-background.png);*/
	/*background-size: cover;*/
	background-color: #232f3e;
	
	transform: translateX(100%);
	transition: transform 0.5s ease-in;

}

.nav-links li {
	width: 100%;
	height: 15vh;

	display: flex;
	/*flex-direction: column;*/
	justify-content: start;
    align-items: center;
	
	opacity: 0;	
    list-style: none;

	/*border: 1px solid red;*/
	
}

.nav-links li:hover {
	/*border-bottom: 1px solid red;*/

}

.nav-link { 
   padding: 0;

  /*color: rgb(0,0,0);*/
	color: #fff;
    text-decoration: none;
	
	/*border: 1px solid red;*/
	
}

.nav-link:hover { 
	color:#fff;
	/*color:rgb(254, 80, 0);*/

	/*border-radius: 10px;*/
	border-bottom: 1px solid #fe5000;	
	/*box-shadow: 0px 0px 5px #999;*/	
	/*background-color: #666;*/
	
}

.language {
    margin: 8px 0 0 0;
}

.language-icon {
    width: 15px;
    margin: 0;
    padding-bottom: 3px;
}

.language-link {
    margin: 0;
    padding: 0;
    display: inline-block;
}

.language-selected {
    color: rgb(200,200,200);   
    cursor: default;
}

.default {
    cursor: default;
}
	
.nav-up {
    top: -50px;

}
	
.burger {
    margin-left: 75px;
	display: block;
	
    cursor: pointer;
	
}

.burger div {
    width: 25px;
    height: 3px;
    margin: 5px;
	
    /*background-color: rgb(50,50,50);*/
    background-color: #fff;

    transition: all 0.3s ease;
	
}

.nav-active {
    transform: translateX(0%);

}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);

}

.toggle .line2 {
    opacity: 0;

}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);

}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }

}

}	

/* Para Laptop */
/*-----------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:1025px) and (max-width:1599px) {	

body {
    font-family: 'Titillium Web', sans-serif;
	
}

nav {
    height: 9vh;
	
    display: flex;
    
	justify-content: space-around;
    align-items: center;

	/*border: 1px solid red;*/
    /*background-color: rgb(255,255,255);*/
	/*background-color: #333439;*/
	background-color: #17202a;
	/*background-color: #101a23;*/
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .05);
    z-index: 3000;
    transition: top 0.3s ease-in-out;


}

.logo-brand {
	max-height: 45px;
	
	/*border: 1px solid red;*/
	
}	

.nav-links {
    display: flex;
    justify-content: space-around;
    margin: 5px;
    width: 800px;
	
	padding-right: 50px;

	/*border: 1px solid red;*/
	/*border: 1px solid gray;*/
	/*border-radius: 10px;*/
	/*box-shadow: 0px 0px 5px #999;*/	
	/*background-color: #555;*/
}

.nav-links li {
    list-style: none;

}

.nav-links li:hover {
	/*border-bottom: 1px solid red;*/

}

.nav-link { 
	color: #fff;
	text-align: center;
	font-size: 16px;
	font-family: Titillium Web, Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration: none;
	/*text-transform: uppercase;*/	
	/*text-shadow: #132639 2px 2px 2px;*/
		
	/*border: 1px solid red;*/
	
}

.nav-link:hover { 
	color:#fff;
	/*color:rgb(254, 80, 0);*/

	/*border-radius: 10px;*/
	border-bottom: 1px solid #fe5000;	
	/*box-shadow: 0px 0px 5px #999;*/	
	/*background-color: #666;*/
	
}

.language {
    margin: 8px 0 0 0;
}

.language-icon {
    width: 15px;
    margin: 0;
    padding-bottom: 3px;
}

.language-link {
    margin: 0;
    padding: 0;
    display: inline-block;
}

.language-selected {
    color: rgb(200,200,200);   
    cursor: default;
}

.default {
    cursor: default;
}

.nav-up {
    top: -60px;
	
}

.burger {
    display: none;

}
	
}

/* Para PC */
/*-----------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:1600px) {

body {
    font-family: 'Titillium Web', sans-serif;

}

nav {
    height: 10vh;
	
    display: flex;
    
	justify-content: space-around;
    align-items: center;

	/*border: 1px solid red;*/
    /*background-color: rgb(255,255,255);*/
	/*background-color: #333439;*/
	background-color: #17202a;
	/*background-color: #101a23;*/
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .05);
    z-index: 3000;
    transition: top 0.3s ease-in-out;


}

.logo-brand {
	max-height: 70px;
	
	/*border: 1px solid red;*/
	
}	

.nav-links {
    display: flex;
    justify-content: space-around;
    margin: 5px;
    width: 800px;
	
	padding-right: 50px;

	/*border: 1px solid red;*/
	/*border: 1px solid gray;*/
	/*border-radius: 10px;*/
	/*box-shadow: 0px 0px 5px #999;*/	
	/*background-color: #555;*/
}

.nav-links li {
    list-style: none;

}

.nav-links li:hover {
	/*border-bottom: 1px solid red;*/

}

.nav-link { 
	color: #fff;
	text-align: center;
	font-size: 18px;
	font-family: Titillium Web, Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration: none;
	/*text-transform: uppercase;*/	
	/*text-shadow: #132639 2px 2px 2px;*/
		
	/*border: 1px solid red;*/
	
}

.nav-link:hover { 
	color:#fff;
	/*color:rgb(254, 80, 0);*/

	/*border-radius: 10px;*/
	border-bottom: 1px solid #fe5000;	
	/*box-shadow: 0px 0px 5px #999;*/	
	/*background-color: #666;*/
	
}

.language {
    margin: 8px 0 0 0;
}

.language-icon {
    width: 15px;
    margin: 0;
    padding-bottom: 3px;
}

.language-link {
    margin: 0;
    padding: 0;
    display: inline-block;
}

.language-selected {
    color: rgb(200,200,200);   
    cursor: default;
}

.default {
    cursor: default;
}

.nav-up {
    top: -80px;
	
}

.burger {
    display: none;

}

}
