.serviceContainer{
	height: calc(100vh - 70px);
	position: relative;
}
.serviceMask{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to bottom right, rgba(0,0,0,.9),rgba(0,0,0,.9),rgba(0,0,0,.5),rgba(0,0,0,.1),rgba(0,0,0,.1));
}
.serviceContainer>.info{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding-top: 5vw;
	padding-left: 5vw;
}
.serviceContainer>.info>.title{
	font-size: 50px;
	color: #fff;
	padding-bottom: 10px;
	position: relative;
}
.serviceContainer>.info>.title:after{
    width: 50px;
    height: 2px;
    background: rgb(255,255,255,.5);
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
}
.serviceContainer>.info>.minTitle{
    font-size: 22px;
    padding-top: 20px;
    padding-bottom: 40px;
    color: #eee;
    width: 50%;
    line-height: 2.2em;
}
@media screen and (max-width: 960px) {
	.serviceContainer>.info>.title{
		font-size: 36px;

	}	
	.serviceContainer>.info>.minTitle{
		font-size: 18px;
		padding-left: 10px;
		padding-right: 20px;
		width: 100%;
	}
	.serviceContainer>.info{
		padding: 5vw;
	}
}