*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	height: 100vh;
	font-family: 'Montserrat', sans-serif;
}
.header{
	height: 20vh;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 5vw;
	font-weight: 600;
}
.header img{
	height:100px;
	padding: 0 40px;
}
nav ul{
	display: flex;
}
nav li{
	list-style: none;
}
nav li:nth-child(2){
	margin-left: 80px;
}
nav a{
	text-decoration: none;
	font-size: 20px;
	color: black;
	text-transform: uppercase;
	padding: 10px;
}
nav a:hover{
	border-bottom:2px solid black;
}
.responsive{
	display: none;
}
.abrir,.cerrar{
	-webkit-appearance:none;
	appearance: none;
	display:none;
}

/*___LOGOTYPE___*/

.logo-gallery{
	height: 80vh;
}
.logoBW{
	height: 100%;
	display:grid;
	grid-template-columns: repeat(5,auto);
	grid-template-rows: repeat(4,auto);
	gap: 5px;
}

.logoBW div{
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.L01{
	grid-column: 1 / 3;
	grid-row: 1 / 5;
	background-image:url(../img/w-logotype/logo-00th_white.jpg);
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;
	transition: background-image 0.5s;	
}
.L01:hover{
	background-image:url(../img/w-logotype/logo-00th_dark.jpg);
}
.L02{
	grid-column: 3 / 4;
	grid-row: 1 / 3;
	background-image:url(../img/w-logotype/logo-01th_white.jpg);
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;
	transition: background-image 0.5s;	
}
.L02:hover{
	background-image:url(../img/w-logotype/logo-01th_dark.jpg);
}
.L03{
	grid-column: 4 / 5;
	grid-row: 1 / 3;
	background-image:url(../img/w-logotype/logo-02th_white.jpg);
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;
	transition: background-image 0.5s;	
}
.L03:hover{
	background-image:url(../img/w-logotype/logo-02th_dark.jpg);
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;	
}
.L04{
	grid-column: 5 / 6;
	grid-row: 1 / 3;
	background-image:url(../img/w-logotype/logo-03th_white.jpg);
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;
	transition: background-image 0.5s;	
}
.L04:hover{
	background-image:url(../img/w-logotype/logo-03th_dark.jpg);
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;	
}
.L05{
	grid-column: 4 / 5;
	grid-row: 3 / 5;
	background-image:url(../img/w-logotype/logo-04th_white.jpg);
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;
	transition: background-image 0.5s;	
}
.L05:hover{
	background-image:url(../img/w-logotype/logo-04th_dark.jpg);
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;	
}
.L06{
	grid-column: 3 / 4;
	grid-row: 3 / 5;
	background-image:url(../img/w-logotype/logo-05th_white.jpg);
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;
	transition: background-image 0.5s;	
}
.L06:hover{
	background-image:url(../img/w-logotype/logo-05th_dark.jpg);
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;	
}
.L07{
	grid-column: 5 / 6;
	grid-row: 3 / 5;
	background-image:url(../img/w-logotype/logo-06th_white.jpg);
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;
	transition: background-image 0.5s;	
}
.L07:hover{
	background-image:url(../img/w-logotype/logo-06th_dark.jpg);
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;	
}

.mockups{
	height: 100vh;
	display:flex;
	justify-content:space-evenly;
	align-items:center;
}
.gallery-sign{
	width: 300px;
	height: 600px;
	background-image:url(../img/gallery_sign.png);
	background-repeat: no-repeat;
	background-position:center;
	background-size: 70%;
	opacity: 0.7;
}
.mockup_logo{
	height: 500px;
	width: 500px;
	display:grid;
	grid-template-columns: repeat(3,auto);
	gap: 10px;
}
.mockup_logo .slide{
	height: 80%;
}
.mockup_logo img{
	display: block;
	width:100%;
}

.mockup_logo a:nth-child(1){
	grid-column: 1 / 4;
}
.modal{
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.7);
	display: none;
	justify-content: space-around;
	align-items: center;
}
.visible{
	display:flex;
}
button{
	-webkit-appearance:none;
	appearance:none;
	display: block;
	border: none;
	background-color:transparent;
	color: white;
	font-size: 4em;
	margin: 0 10px;
	cursor: pointer;
}

@media screen and (max-width:1200px){
.logo-gallery{
	display: flex;
	justify-content: center;
	align-items: center;
}
.logoBW{
	height: 80%;
	width: 95%;
	display:grid;
	grid-template-columns: repeat(5,auto);
	grid-template-rows: repeat(4,auto);
	gap: 10px;
}

.logoBW div{
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
}

@media screen and (max-width:900px){

/* _NAV BAR_RESPONSIVE - 900px */

.header{
	display: none;
}
.responsive{
	height: 20vh;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 7vw;
	}
	.responsive img{
		height: 75px;
	}
nav{
		position: fixed;
		top:-100vh;
		left:0;
		z-index: 2;
		padding:20px;
		width: calc(100% - 5px);
		height: calc(100vh - 5px);
		display: block;
		background-image:url(../img/bckg-nav.jpg);
		background-repeat: no-repeat;
		background-position:right;
		background-size: cover;	
		display: flex;
		justify-content: center;
		align-items: center;
		transition: top 0.8s;
	}
nav a{
	font-weight: 600;
	color:white;
	font-size:2em;
}
nav a:hover{
	border-bottom:0;
}
.desplegado{
	top:0;
}
nav ul{
	display: block;
}
nav li:not(:last-child){
	margin-right:0;
}
nav li:not(:first-child){
	margin-top: 20px;
}
nav li:nth-child(2) {
    margin-left: 0;
}
.cerrar{
	display:block;
	background-color:transparent;
	border:none;
	color:#1b1a1d;
	font-size:1.5em;
	font-weight:600;
	cursor:pointer;
	position:absolute;
	top:20px;
	right:20px;
}
.abrir img{
	display: block;
	height: 40px;
	cursor: pointer;
}
.abrir{
		display: block;
		background-color: transparent;
		border: 2px solid #777;
		border-radius: 5px;
		width:45px;
		height: 40px;
		padding: 5px 5px 0;
		cursor: pointer;
}
.abrir span{
		display: block;
		height:2px;
		background-color: #777;
		margin-bottom:5px;
}

/*___LOGO___*/

.logo-gallery{
	background-color: #f7f5f6;
}
.logoBW{
	height: 78%;
}

.gallery-sign {
    width: 200px;
    height: 350px;
    background-size: 80%;
}
.mockup_logo {
    height: 450px;
    width: 450px;
}
.modal img{
	height: 450px;
}

@media screen and (max-width:780px){
 .logo-gallery{
 	height: 80vh;
 }
.logoBW {
    height:100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../img/logo500.gif);
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;
}
.gallery-sign {
    width: 120px;
    height: 230px;
    background-size: 90%;
 }
.mockup_logo {
    height: 350px;
    width: 350px;
    gap: 5px;
}
.modal img{
	height: 300px;
}
}

@media screen and (max-width:500px){

.responsive img{
	height: 58px;
}

.logo-gallery{
	height: 80vh;
}

.mockups{
		flex-direction: column;
}

.gallery-sign{
	width: 300px;
    height: 120px;
	background-image: url(../img/gallery_sign_h.png);
	opacity: 0.5;
}
.mockup_logo{
	height: 300px;
    width: 300px;
    gap: 3px;
}
.modal{
	justify-content: space-evenly;
}

button{
	font-size: 3em;
	margin: 0 5px;
}
.modal img{
	height: 220px;
}
}