.banner-one-container .banner {
	position:  relative;
	cursor: pointer;
}

.banner-one-container .banner img {
	width:  100%;
}

.banner-one-container .banner .inside {
	position:  absolute;
	top:  0;
	left:  0;
	width:  100%;
	height: 100%;
	opacity:  0;
	transition:  500ms;
	overflow: hidden;
}

.banner-one-container .banner .inside .in {
	position:  absolute;
	top:  100%;
	left:  50%;
	opacity: 0;
	-webkit-transform:  translate(-50%, -50%);
	transform:  translate(-50%, -50%);
	width:  420px;
	text-align:  center;
	transition:  500ms;
}

.banner-one-container .banner .inside .in p.title {
    font-family: 'Grad' !important;
	font-weight: 400;
	font-size: 36px;
	line-height: 100%;
	display: block;
	align-items: center;
	text-align: center;
	letter-spacing: -0.03em;
	margin:  0 auto;
}

.banner-one-container .banner .inside .in p.desc {
	font-weight: 300;
	font-size: 14px;
	line-height: 150%;
	text-align: center;
	margin:  16px auto 32px auto;
}

.banner-one-container .banner:hover .inside {
	opacity: 1;
}

.banner-one-container .banner:hover .inside .in {
	top: 50%;
	opacity: 1;
}

.banner-one-container .banner .inside .in a:hover {
	background:  transparent;
}

.banner-one-container .banner.mobile {
	display:  none;
}

@media only screen and (max-width: 996px) {
	.banner-one-container .banner:not(.mobile) {
		display:  none;
	}

	.banner-one-container .banner.mobile {
		display:  block;
	}

	.banner-one-container .banner.mobile p.desc {
		font-style: normal;
		font-weight: 300;
		font-size: 13px;
		line-height: 150%;
		text-align: center;
		margin:  16px auto;
	}

	.banner-one-container .banner.mobile  a {
		width: 100%;
	}
}