/*
 Table Of Contents

 1.) Homepage

 ===============================================*/

/*
 1.) Homepage
 ----------------------------------------*/
body{
	min-height: 100vh;
}
.wrapper {
	background: url(../images/bg-landing.png) center top no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
	min-height: 100vh;
}
/*--------------Mailgroup--------------------------*/
.mailgroup {
	font-size: 24px;
	color: #ba2219;
	font-weight: 700;
}
.mailgroup-info {
	margin-bottom: 87px;
}
.down {
	border: 1px solid #1d1e1c;
	padding: 10px;
	border-radius: 50%;
	background-color: transparent;
}
.down:hover {
	background-color: rgba(255,255,255,0.7);
}
/*--------------Services--------------------------*/
.services {
	width: 32%;
	margin-right: 45px;
}
.services:last-child {
	margin-right: 0;
}
.services figure {
	height: 300px;
	width: 300px;
	border-radius: 50%;
	background-color: #fff;
	position: relative;
	margin-bottom: 26px;
}
.services figure img {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.services-wrap {
	padding-bottom: 83px;
}
.services span {
	font-weight: 300;
	color: #fff;
	font-size: 18px;
	display: block;
	line-height: 1.2;
	margin-bottom: 38px;
}
.services h2 {
	min-height: 52px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
}
/*--------------Popup--------------------------*/
.pop-up {
	position: fixed;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	/*top: 337px;*/
	right: 0;
	opacity: 0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	z-index: -1;
	background-color: #fff;
	padding: 76px 57px 61px 58px;
	border: 1px solid #000;
	width: 1008px;
	margin: 0 auto;
	left: 0;
	height: 80vh;
	max-height: 748px;
}
.pop-content{
	height:calc(80vh - 191px);
	overflow: auto;
}
.cross {
	position: absolute;
	top: 30px;
	right: 47px;
}
.pop-up.show {
	opacity: 1;
	z-index: 1;
}
.pop-up p, .pop-up ul {
	font-weight: 300;
	font-size: 14px;
	letter-spacing: -0.1px;
	line-height: 1.2;
	margin-bottom: 17px;
}
