/* index page starts */
/* banner */
.banner{
	position: relative;
	min-height:350px;
	background: url(../images/banner-mob.jpg) center top no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.banner img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit:cover;
}
.banner-brand{
	position: absolute;
	top: 45px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 128px;
}
.logo{
	position: absolute;
	bottom: 40px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 150px;
}
/* services */
.services{
	padding: 10px 31px 13px;
}
.services-list li{
	display: flex;
	flex-wrap:wrap;
	justify-content:space-between;
	margin-bottom: 6px;
	cursor: pointer;
}
.services-list li:last-child{
	margin-bottom: 0;
}
.list-img{
	width: 42px;
	height: 36px;
	background-color: #e9c032;
	display: flex;
	justify-content:center;
	align-items:center;
}
.service-title{
	position: relative;
	background-color: #30a4df;
	width: calc(100% - 47px);
	display: flex;
	align-items:center;
	padding: 0 7px;
	height: 36px;
	border:1px solid #30a4df;
	color: #fff;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.service-text{
	position: absolute;
	display: none;
	align-items:center;
	color:#5b5a5a;
	font-weight: 400;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0 7px;
	line-height: 1.1;
}
.service-text br{
	display: none;
}
.services-list li:hover .title-text{
	display: none;
}
.services-list li:hover .service-text{
	display: flex;
}
.services-list li:hover .service-title{
	background-color: transparent;
}
.icon-monitor{
	width: 22px;
	background-position: -23px 3px;	
}
.icon-keyboard{
	background-position: -47px 0;
}
.icon-mic{
	background-position: -75px 3px;
}
.icon-info{
	background-position: -100px 3px;
}
.icon-chat{
	background-position: 0 -28px;
}
/* index page end */
/* error-page starts */
.error-page{
	background: transparent;
}
.banner-error{
	min-height: 85px;
	background: url(../images/banner-bg3.jpg) center top no-repeat;
	background-size: cover;
	text-align: center;
	padding: 27px 15px 15px;
	position: relative;
}
.banner-error:after{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 53, 97, 0.85) ;
}
.banner-error p{
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1.6;
}
.banner-error p small{
	font-weight: 400;
}
.back-arrow{
	display: none;
	width: 14px;
	height: 13px;
	border-top:4px solid #ffffff;
	border-left: 4px solid #ffffff;
	transform:rotate(-49deg);
	position: absolute;
	top: calc(50% - 7px);
	left: 20px;
}
/* error-msg */
.error-msg .container{
	padding: 30px 10px 30px;
}
.msg-content{
	background-color: #ecf0f1;
	border-radius: 6px;
	padding: 60px 60px 90px;
}
.msg-content p{
	font-size: 1.8rem;
	color:#333333;
	font-weight: 300;
	line-height: 1.7;
}
.msg-content p strong{
	font-weight: 600;
	display: block;
}
.error-text{
	position: relative;
	z-index: 1;
}

