*{
	margin: 0;
	padding: 0;
}
a{	
	text-decoration: none;
}
a,
img,
i,
svg *{
	/* backface-visibility: hidden; */
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}
img{
	max-width: 100%;
	height: auto;
}
@font-face {
	font-family: 'Avenir'; /*Light*/
	src: url('fonts/Avenir-Light.woff2') format('woff2'),
	url('fonts/Avenir-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}
@font-face {
	font-family: 'Avenir'; /*Light Italic*/
	src: url('fonts/Avenir-Medium.woff2') format('woff2'),
	url('fonts/Avenir-Medium.woff') format('woff');
	font-weight: 500;
}

body{
	font-family: 'Avenir', Arial, sans-serif;
}

.main{
	position: relative;
	height: 100vh;
	width: 100%;
}
.text-center{
	text-align: center;
}
.v-center.text-center {
	padding: 0 15px;
}
.all-center {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	box-sizing: border-box;
}
.v-center {
	/* padding: 0 15px; */
	position: absolute;
	top: 50%;
	width: 100%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	box-sizing: border-box;
}
.logo-wrap{
	margin-bottom: 30px;
}
.content-wrap h3{
	font-size: 16px;
	font-weight: 500;
	line-height: 1.44;
	letter-spacing: 4.4px;
	color: #102efd;
	margin-bottom: 26px;
}
.content-wrap p{
	font-size: 16px;
	font-weight: 300;
	font-style: normal;
	font-stretch: normal;
	line-height: 1;
	letter-spacing: 0.8px;
	text-align: center;
	color: #000;
	margin-bottom: 30px;
}
.content-wrap p a[href^="tel"]{
	color: #000;
}
.content-wrap p span{
	position: relative;
	padding: 0 5px;
}
.content-wrap p span:after{
	content: '';
	width: 1px;
	height: 22px;
	position: absolute;
	top: 50%;
	right: -2px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: #102efd;
}
.content-wrap p span:last-child:after{
	content: none;
}
.btn-wrap a{
	font-size: 16px;
	position: relative;
	line-height: 1;
	letter-spacing: 0.8px;
	font-weight: 500;
	color: #102efd;
	text-decoration: none;
	padding-right: 17px;
	display: inline-block;
}
.btn-wrap a:hover{
	color: #000	;
}
.btn-wrap a i{
	/* position: relative; */
	right: -4px;
	width: 14px;
	height: 8px;
	display: inline-block;
	overflow: hidden;
	text-align: right;
}
.btn-wrap a:hover i{
	width: 22px;
	right: -12px;
}
.btn-wrap a:hover svg *{
	fill: #000;
}
.btn-wrap a i svg{
	position: absolute;
	right: 0;
	top: 0;
	height: 8px;
	width: 22.5px;
}

@media (max-width: 991px){
	.logo-wrap{
		margin-bottom: 10px;
	}
	.logo-wrap img{
		width: 180px;
	}
}
@media (max-width: 767px){
	.all-center{
		width: 100%;
	}
	.content-wrap h3{
		letter-spacing: 3px;
		margin-bottom: 16px;
	}
	.content-wrap p{
		margin-bottom: 15px;
	}
}
@media (max-width: 639px){
	.content-wrap p span{
		display: block;
		padding: 8px 0;
	}
	.content-wrap p span:after{
		content:  none;
	}
}