body{
	background-color: #000;
	padding-bottom: 100px;
	min-height: 100vh;
	position: relative;
}

a:hover {
    text-decoration: none;
}

.logo{
	max-width: 200px;
}

.font-title, p, li, span{
	font-family: 'Montserrat', sans-serif;
}

.title{
	font-weight: bold;
}

.img-hover{
	overflow: hidden;
	transition: width 4s, height 4s;
}

.img-hover:hover img{
	-ms-transform: scale(0.1); /* IE 9 */
  	-webkit-transform: scale(0.1); /* Safari 3-8 */
  	filter: grayscale(.8);
  	transform: scale(1.1);  

}

.zoom{
	transition: 0.65s;
}

footer{
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100px;
}

.nav-link{
	font-size: 15px;
	color: #fff!important;	
}
.nav-link:hover{
	text-shadow: 0 0 1px #fff, 0 0 1px #fff; 
}

.top-menu{
	background-color: black;
    height: 60px;
}

/* MOBILE MENU*/
.icon-hamb{
	width: 40px;
	height: 32px;
	transform: translate(-50%, 50%);
	cursor: pointer;
	z-index: 300;
 	position: fixed;
	right: 15px;
    top: 9px;
}

.hamburger{
	position: absolute;
	top: 7px;
	width: 50px;
	height: 5px;
	background: #ffffff;
	transition: .5s;

}

.hamburger:before, 
.hamburger:after{
	content:'';
	position: absolute;
    width: 50px;
    height: 5px;
    background: #ffffff;
	transition: .5s;
}

.hamburger:before{
	top: 11px;
}

.hamburger:after{
	top: -11px;
}

.icon-hamb.active .hamburger{
	background: rgba(0,0,0,0);
}

.icon-hamb.active .hamburger:before{
	transform: rotate(45deg) translateY(-14.5px);
}

.icon-hamb.active .hamburger:after{
	transform: rotate(-45deg) translateY(14.5px);
}

.menu-container{
	height: 100vh;
	position: absolute;
	transform: scale(0);
	top:-300px;
	transition: top 0.4s;
}

.menu-container.active{
	transform: scale(1);
	top: 0;
	left: 0;
	z-index: 100;
	background-color: #000000 ;
 	position: fixed;
}

/* END MOBILE MENU */