*{
	margin: 0;
	padding: 0;
}

body{
	font-family: 'Montserrat', sans-serif;
	background-color: #f6f6f7;
}

.container{
	width: 75%;
	margin: auto;
}
.main-header{
	margin: auto;
	margin-top: 40px;
}

.logo{
	width: 150px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin: auto;
}

.logo img{
	width: 100%;
}

/*NAVEGACION*/

.menu-btn{
	position: absolute;
	top: 20px;
	right: 20px;
	width: 30px;
	height: 27px;
	font-size: 24px;
	color:#979797;
	text-align: center;
	cursor: pointer;
	border: 2px solid #a5a5a5;
	border-radius: 5px;
	z-index: 30;
	display: none;
}

.nav-main{
	font-size: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-top: 15px;
}

.nav-main .btn-link{
	font-size: 18px;
}

a{
	text-decoration: none;
	color: #535353;
}

ul{
	list-style: none;
}

/*NAV IZQ*/

.nav-main ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.nav-main ul li{
	padding: 20px;
}

.nav-main ul li a{
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.nav-main ul li a:hover{
	color:#000000;
}
.active{
	color: #f18a48;
	font-weight:500;
}

.nav-main ul.nav-menu{
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}

.nav-menu{
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

/*GALERIA*/

img{
	max-width: 100%;
}
.galeria{
	margin: auto;
	margin-top: 10px;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[8];
	grid-template-columns: repeat(8,1fr);
}

.galeria-item{
	margin: 1px 2px;;
}

.identidad{
	width: 60%;
	margin: auto;
	margin-top: 40px;
}

.albums{
	width: 100%;
	margin: auto;
}

.i-titulo{
	font-size: 36px;
	font-weight: 100;
	text-align: center;
	background-color: #FFFFFF;
	border-radius: 10px;
	padding: 5px;
	color:#f18a48;
	margin-bottom: 30px;
}

.i-text{
	font-size: 14px;
	text-align: justify;
	line-height: 20px;
	color:#535353;
	margin: 40px 0;
}

/*FOOTER*/
footer{
	color: #535353;
	padding: 20px;
	margin-top: 15px;
}

address{
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	font-style: normal;
}
.footer a{
	color:#f18a48;
}

.redes{
	text-align: center;
	padding: 15px;
}
.btn-link{
	margin: 10px;
}
.redes .btn-link i{
	font-size: 22px;
	color: #535353;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.redes .btn-link i:hover{
	color: #000000;
}
.copyright{
	font-size: 12px;
	text-align: center;
	margin-bottom: 5px;
}
.pie{
	font-size: 9px;
	text-align: center;
	color:#97A3B4;
}

/*BOTON UP*/
.button-up{
	width: 40px;
	height: 40px;
	background-color: rgba(210,210,210,0.7);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #ffffff;
	border-radius: 50%;
	font-size: 24px;
	position: fixed;
	z-index: 10;
	bottom: 30px;
	right: 30px;
	cursor: pointer;
	-webkit-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	-webkit-transform: scale(0);
	    -ms-transform: scale(0);
	        transform: scale(0);
}

.button-up:hover{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}

@media (max-width:900px){
	.container{
		width: 90%;
	}
}

@media (max-width:768px){
a{
	color: #ffffff;
	-ms-flex-line-pack: center;
	    align-content: center;
}	
	
	.nav-main ul.nav-menu{
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		background: #2f3640;
		height: 100%;
		padding: 50px;
		opacity: .9;
		-webkit-transform: translate(-320px);
		    -ms-transform: translate(-320px);
		        transform: translate(-320px);
		-webkit-transition: -webkit-transform .5s ease-in-out;
		transition: -webkit-transform .5s ease-in-out;
		-o-transition: transform .5s ease-in-out;
		transition: transform .5s ease-in-out;
		transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
	}
	
.nav-main ul.nav-menu.show{
		-webkit-transform: translate(-45px);
		    -ms-transform: translate(-45px);
		        transform: translate(-45px);
	}
	
.menu-btn{
	display: block;
}	

/*GALERIA*/

img{
	max-width: 100%;
}
.galeria{
	-ms-grid-columns: (1fr)[6];
	grid-template-columns: repeat(6,1fr);
}

.galeria-item{
	margin: .5px 1px;
}
	
.identidad{
	width: 90%;
	margin: auto;
	margin-top: 40px;
}	
	
}

@media (max-width:426px){
	.galeria{
	-ms-grid-columns: (1fr)[4];
	grid-template-columns: repeat(4,1fr);
}
}