/* MAIN STYLES */
*{
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body{
	font-family: 'Source Serif Pro';
	font-weight: normal;
	font-style: normal;
	font-size: 16px;
	color: #3d3834;
	line-height: 26px;
	background: #fff;
	overflow-x: hidden;
	width: 100%;
	position: relative;
}
a,
a:hover,
a:focus,
a:active,
a:visited{
	color: #3d3834;
	text-decoration: none;
	outline: none;
}
ul,
ol{
	margin: 0;
	padding: 0;
	list-style: none;
}
input,
textarea{
	border: none;
	border-radius: 0;
	outline: none;
	padding: 0;
	margin: 0;
	display: block;
	color: #000;
	width: 100%;
}
textarea{
	resize: none;
}
button{
	background: transparent;
	border-radius: 0;
	border: none;
	outline: none;
	padding: 0;
}
.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}
 
.clearfix::after {
  clear: both;
}
.page-wrapper{
	padding: 0 0 0 250px;
}
.overflow-hidden{
	overflow: hidden;
}
.content-wrapper{
	max-width: 910px;
	width: 100%;
	margin: 0 auto;
}
.content-wrapper > main{
	position: relative;
}
/* HEADER (SIDEBAR) */

.language-chooser {
	display: flex;
	padding: 0 40px 20px 50px;
}

.language-chooser > li:not(:last-child) {
	margin-right: 4px;
}

.language-chooser > li a {
	width: 32px;
	height: 32px;
	display: block;
	padding: 8px 6px 9px;
	background-size: 20px 15px;
	background-position: center center;
	background-repeat: no-repeat;
}

.language-chooser > li a span {
	display: none;
}

.lang-en a {
	background-image: url('../img/icon_flag_en.svg');
}

.lang-de a {
	background-image: url('../img/icon_flag_ger.svg');
}

.lang-fr a {
	background-image: url('../img/icon_flag_fr.svg');
}

.main-sidebar{
	width: 250px;
	height: 100%;
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	will-change: transform;
	box-shadow: 5px 0 15px 0 rgba(0, 0, 0, 0.03);
	padding: 40px 0 0 0;
}
.logo-wrapper{
	padding: 0 50px;
	margin: 0 0 50px 0;
}
.logo-wrapper img{
	display: block;
	max-width: 100%;
	height: auto;
	cursor: pointer;
}
.mobile-logo-wrapper > span{
	display: none;
}
.sidebar-nav{
	padding: 0 40px;
	font-size: 14px;
	line-height: 16px;
	font-family: 'Futura PT';
	font-weight: 500;
	text-transform: uppercase;
}
.sidebar-nav > li > a{
	display: block;
	padding: 9px 9px 10px 9px;
}
.sidebar-nav > li{
	border-bottom: 1px solid #f1f1f1;
	position: relative;
}
.sidebar-nav > li::after{
	content: '';
	display: block;
	width: 0;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: -1px;
	background-color: #3d3834;
	transition: width .6s ease-in-out;
}
.sidebar-nav > li:hover::after{
	width: 100%;
}
.sidebar-nav > li:last-of-type{
	border-bottom: none;
}
.sidebar-footer{
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
}
.sidebar-footer-content-wrapper{
	padding: 0 40px 15px 50px;
	font-family: 'Futura PT';
	font-weight: 500;
	line-height: 22px;
}
.sidebar-footer-content-wrapper > p{
	color: #8e3a59;
	margin: 0 0 10px 0;
	font-size: 15px;
	line-height: 18px;
}
.sidebar-footer-content-wrapper > address{
	font-style: normal;
	font-size: 16px;
	line-height: 22px;
}
.sidebar-phones-list > li > a{
	transition: color .3s ease;
	font-size: 16px;
	line-height: 22px;
}
.sidebar-phones-list > li > a:hover{
	color: #8e3a59;
}
.show-modal-btn{
	display: block;
	background-color: #8e3a59;
	padding: 16px 20px;
	text-align: center;
	font-size: 16px;
	line-height: 18px;
	font-family: 'Futura PT';
	font-weight: 500;
	color: #fff;
	cursor: pointer;
	transition: opacity .3s ease;
}
.show-modal-btn:hover{
	opacity: .9;
}
.mobile-burger{
	display: none;
}
/* SECTION: INTRO */
.section-intro{
	width: 100%;
	height: 100vh;
	overflow: hidden;
	position: relative;
}
.section-intro::after{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3) 100%);
}
.section-intro .intro-prlx{
	background-position: 50% 50%;
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	will-change: transform;
}
.section-intro-content-wrapper{
	width: 100%;
	padding: 20px 100px;
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	text-align: center;
	color: #fff;
}
.section-intro-content-wrapper > h2{
	font-size: 40px;
	line-height: 40px;
	font-family: 'Futura PT Demi';
	font-weight: 600;
	margin: 0 0 10px 0;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.section-intro-content-wrapper > p{
	font-size: 16px;
	line-height: 20px;
	font-family: 'Futura PT';
	font-weight: 500;
	text-transform: uppercase;
	margin: 0 0 52px 0;
	text-shadow: 0 0 13px rgba(0, 0, 0, 0.3);
}
.section-intro-content-wrapper > a{
	font-size: 13px;
	line-height: 18px;
	font-family: 'Futura PT Book';
	color: #fff;
	display: inline-block;
	cursor: pointer;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
/* SECTION: ABOUT US */
.section-about-us{
	padding: 100px 0 40px 0;
}
.about-us-content-wrapper > h2{
	font-family: 'Futura PT Book';
	font-size: 60px;
	line-height: 65px;
	font-weight: normal;
	text-transform: uppercase;
	color: #ebebea;
	max-width: 515px;
	margin: 0 0 30px 0;
}
.about-us-content-wrapper > p{
	font-family: 'Futura PT';
	font-weight: 500;
	font-size: 22px;
	line-height: 32px;
	text-transform: uppercase;
	max-width: 515px;
	margin: 0 0 30px 0;
}
.about-us-text-wrapper{
	margin: 0 0 60px 0;
}
.about-us-text-wrapper p{
	margin: 20px 0;
}
.about-us-text-wrapper p:first-of-type{
	margin: 0 0 20px 0;
}
.about-us-text-wrapper p:last-of-type{
	margin: 20px 0 0 0;
}
.about-us-text-wrapper p:only-of-type{
	margin: 0;
}
.about-us-anchors-list{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	    justify-content: space-between;
	font-family: 'Futura PT Demi';
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	text-transform: uppercase;
	max-width: 770px;
}
.about-us-anchors-list > li{
	margin: 0 0 10px 0;
}
.about-us-anchors-list > li > a{
	color: #8e3a59;
	display: inline-block;
	position: relative;
}
.about-us-anchors-list > li > a::after{
	content: '';
	display: block;
	width: 0;
	height: 1px;
	background-color: #8e3a59;
	position: absolute;
	bottom: -3px;
	left: 0;
	transition: width .3s ease-in-out;
}
.about-us-anchors-list > li > a:hover::after{
	width: 100%;
}
/* SECTION: SERVICES */
.section-services{
	padding: 50px 0 100px 0;
}
.services-content-wrapper > h2{
	font-family: 'Futura PT Book';
	font-weight: normal;
	font-size: 60px;
	line-height: 65px;
	text-transform: uppercase;
	color: #ebebea;
	max-width: 330px;
	margin: 0 0 30px 0;
	clear: both;
}
.services-blocks-heading{
	font-family: 'Futura PT';
	font-weight: 500;
	font-size: 20px;
	line-height: 20px;
	text-transform: uppercase;
	color: #8e3a59;
	margin: 0 0 30px 50px;
	padding: 0 0 0 60px;
	position: relative;
	clear: both;
}
.services-blocks-heading::before{
	content: '';
	display: block;
	width: 40px;
	height: 1px;
	background-color: #8e3a59;
	position: absolute;
	left: 0;
	top: 10px;
}
.property-management-content-wrapper{
	margin: 0 80px 80px 50px;
	width: 400px;
	float: left;
}
.property-management-content-wrapper p{
	margin: 20px 0;
}
.property-management-content-wrapper p:first-of-type{
	margin: 0 0 20px 0;
}
.property-management-content-wrapper p:last-of-type{
	margin: 20px 0 0 0;
}
.property-management-content-wrapper p:only-of-type{
	margin: 0;
}
.service-image-wrapper{
	overflow: hidden;
}
.service-image-wrapper > img{
	display: block;
	max-width: 100%;
	width: 100%;
	height: auto;
}
.service-image1-wrapper{
	width: calc(100% - 530px);
	float: right;
	margin: 0 0 -80px 0;
}
.service-image2-wrapper{
	clear: both;
	width: 100%;
	max-width: 580px;
	margin: -80px 0 88px 30px;
}
.asset-management-block{
	float: left;
	width: 350px;
	margin: 0 100px 0 50px;
}
.asset-management-block > h3{
	margin: 0 0 30px 0;
}
.asset-management-content-wrapper p{
	margin: 20px 0;
}
.asset-management-content-wrapper p:first-of-type{
	margin: 0 0 20px 0;
}
.asset-management-content-wrapper p:last-of-type{
	margin: 20px 0 0 0;
}
.asset-management-content-wrapper p:only-of-type{
	margin: 0;
}
.other-services-block{
	float: left;
	width: 350px;
}
.other-services-block > h3{
	margin: 0 0 30px 0;
}
.other-services-content-wrapper p{
	margin: 20px 0;
}
.other-services-content-wrapper p:first-of-type{
	margin: 0 0 20px 0;
}
.other-services-content-wrapper p:last-of-type{
	margin: 20px 0 0 0;
}
.other-services-content-wrapper p:only-of-type{
	margin: 0;
}
.other-services-content-wrapper ul{
	margin: 20px 0;
	list-style-type: disc;
	padding: 0 0 0 18px;
}
/* SECTION: TEAM */
.team-section{
	padding: 100px 0 0 0;
	background-color: #fafafa;
}
.team-content-wrapper > h2{
	font-family: 'Futura PT Book';
	font-weight: normal;
	font-size: 60px;
	line-height: 65px;
	text-transform: uppercase;
	color: #e6e6e5;
	max-width: 550px;
	margin: 0 0 30px 0;
}
.team-content-wrapper > p{
	font-family: 'Futura PT';
	font-weight: 500;
	font-size: 22px;
	line-height: 32px;
	text-transform: uppercase;
	max-width: 350px;
	margin: 0 0 70px 0;
}
.team-list{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-ms-flex-pack: justify;
	    justify-content: space-between;
}
.team-list > li{
	display: inline-block;
	vertical-align: top;
	width: 35%;
	margin: 0 50px 100px 50px;
}
/* .team-list > li:last-of-type{
	margin: 0 0 100px 0;
} */
.team-member-cover{
	width: 220px;
	height: 220px;
	overflow: hidden;
	border-radius: 110px;
	box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.20);
	background-color: #fff;
	margin: 0 0 20px 0;
}
.team-member-cover > img{
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 110px;
	border: 6px solid #fff;
	object-fit: cover;
}
.team-list > li > h3{
	font-family: 'Futura PT Demi';
	font-weight: 600;
	font-size: 18px;
	line-height: 20px;
	text-transform: uppercase;
	margin: 0 0 20px 0;
	text-align: left;
}
.team-member-description{
	height: 120px;
	overflow: hidden;
	font-size: 14px;
	line-height: 24px;
	color: #8d8b88;
	margin: 0 0 25px 0;
}
.team-member-description p{
	margin: 24px 0;
}
.team-member-description p:first-of-type{
	margin: 0 0 24px 0;
}
.team-member-description p:last-of-type{
	margin: 24px 0 0 0;
}
.team-member-description p:only-of-type{
	margin: 0;
}
.expand-team-member-text-btn{
	position: relative;
	display: inline-block;
	font-family: 'Futura PT Demi';
	font-weight: 600;
	font-size: 13px;
	line-height: 15px;
	color: #8e3a59;
	cursor: pointer;
}
.expand-team-member-text-btn::after{
	content: '';
	display: block;
	width: 0;
	height: 1px;
	background-color: #8e3a59;
	position: absolute;
	bottom: -6px;
	left: 0;
	transition: width .3s ease-out;
}
.expand-team-member-text-btn:hover::after{
	width: 100%;
}
/* SECTION: SPACE TO LET */
.space-to-let {
	padding: 150px 0;
}
.space-to-let h2 {
	font-family: 'Futura PT Book';
	font-weight: normal;
	font-size: 60px;
	line-height: 65px;
	text-transform: uppercase;
	color: #e6e6e5;
	max-width: 430px;
	margin: 0 0 60px 0;
}
.space-to-let-list {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.space-to-let-list > li {
	width: 49%;
	margin-bottom: 30px;
}
.space-to-let-slider-photo-list {
	width: 100%;
	height: 270px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	transition: transform 1s;
	position: relative;
}
.space-to-let-slider-photo-list > li {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 1s;
}
.space-to-let-slider-photo-list > li.active {
	opacity: 1;
}
.space-to-let-slider-container img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.space-to-let-title {
	font-family: Futura PT;
	font-size: 18px;
	line-height: 24px;
	margin: 0 0 18px 0;
}
.space-to-let-title p {
	margin: 0;
}
.space-to-let-slider-controls-container {
	height: 54px;
	position: relative;
	margin-bottom: .16rem;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-content: center;
	flex-direction: column;
}
.left-control,
.right-control {
	width: 54px;
	height: 54px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	cursor: pointer;
	transition: transform .5s;
}
.left-control {
	left: 0;
	background-image: url(../img/slider-left.svg);
}
.left-control:hover {
	transform: translateX(-5px);
}
.right-control {
	right: 0;
	background-image: url(../img/slider-right.svg);
}
.right-control:hover {
	transform: translateX(5px);
}
.space-to-let-slider-controls-list {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
}
.space-to-let-slider-controls-list > li:not(:last-child) {
	margin-right: 10px;
}
.space-to-let-slider-controls-list > li > span {
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #3D3834;
	opacity: 0.2;
	cursor: pointer;
	transition: opacity .5s;
}
.space-to-let-slider-controls-list > li.active > span {
	opacity: 1;
}
.space-to-let-links-list > li > a {
	display: block;
	padding: 10px 10px 10px 38px;
	font-family: Futura PT;
	font-size: 16px;
	line-height: 22px;
	color: #0070E0;
	position: relative;
	transition: opacity .3s;
}
.space-to-let-links-list > li > a:hover {
	opacity: .7;
}
.space-to-let-links-list > li > a::before {
	content: '';
	display: block;
    width: 20px;
    height: 20px;
	position: absolute;
	top: 12px;
	left: 10px;
	background-image: url(../img/link.svg);
	background-position: center;
	background-repeat: no-repeat;
}
/* SECTION: SOCIAL RESPONSIBILITY */
.section-social-responsibility{
	padding: 100px 0 130px 0;
}
.social-responsibility-content-wrapper > h2{
	font-family: 'Futura PT Book';
	font-weight: normal;
	font-size: 60px;
	line-height: 65px;
	text-transform: uppercase;
	color: #ebebea;
	max-width: 400px;
	margin: 0 0 30px 0;
}
.social-responsibility-content-wrapper > p{
	font-family: 'Futura PT';
	font-weight: 500;
	font-size: 22px;
	line-height: 32px;
	text-transform: uppercase;
	max-width: 515px;
	margin: 0 0 40px 0;
	clear: both;
}
.social-responsibility-text-wrapper p{
	margin: 20px 0;
}
.social-responsibility-text-wrapper p:first-of-type{
	margin: 0 0 20px 0;
}
.social-responsibility-text-wrapper p:last-of-type{
	margin: 20px 0 0 0;
}
.social-responsibility-text-wrapper p:only-of-type{
	margin: 0;
}
.social-responsibility-text1-wrapper{
	margin: 0 50px 80px 50px;
	float: left;
	width: 400px;
}
.social-responsibility-img-wrapper{
	overflow: hidden;
}
.social-responsibility-img-wrapper > img{
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
}
.social-responsibility-img1-wrapper{
	float: right;
	width: 250px;
	margin: 0 0 80px 0;
}
.social-responsibility-img2-wrapper{
	width: 580px;
	margin: 0 40px 0 0;
	float: left;
}
.social-responsibility-img2-wrapper p{
	margin: 50px 0 0 50px;
}
.social-responsibility-text2-wrapper{
	float: right;
	width: 290px;
	text-align: right;
	padding: 120px 0 0 0;
}
.social-responsibility-text2-wrapper a{
	color: #8e3a59;
	font-weight: bold;
	display: inline-block;
	position: relative;
}
.social-responsibility-text2-wrapper a::after{
	content: '';
	display: block;
	width: 0;
	height: 2px;
	background-color: #8e3a59;
	position: absolute;
	left: 0;
	bottom: -3px;
	transition: width .6s ease-out;
}
.social-responsibility-text2-wrapper a:hover::after{
	width: 100%;
}
/* SECTION: CONTACTS */
.section-contacts{
	padding: 130px 0 100px 0;
	background-color: #fafafa;
}
.content-heading-addresses-wrapper > h2{
	font-family: 'Futura PT Book';
	font-weight: normal;
	font-size: 60px;
	line-height: 65px;
	text-transform: uppercase;
	color: #e6e6e5;
	max-width: 400px;
	margin: 0 0 55px 0;
}
.content-heading-addresses-wrapper > h2 + .sidebar-footer-content-wrapper{
	padding: 0 40px 40px 0;
}
.team-contacts-list{
	font-size: 13px;
	line-height: 20px;
}
.team-contacts-list > li{
	display: inline-block;
	vertical-align: top;
	width: 250px;
	margin: 0 40px 55px 0;
}
.team-contacts-list > li:last-of-type{
	margin: 0 0 55px 0;
}
.team-contacts-list > li > h3{
	font-family: 'Futura PT Demi';
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	text-transform: uppercase;
	margin: 0 0 20px 0;
}
.team-member-contacts-list{
	margin: 0 0 10px 0;
	min-height: 60px;
}
.team-member-contacts-list > li > a{
	transition: color .3s ease-out;
	word-wrap: break-word;
}
.team-member-contacts-list > li > a:hover{
	color: #8e3a59;
}
.team-contacts-list > li > a{
	display: inline-block;
	vertical-align: top;
	font-family: 'Futura PT Demi';
	font-weight: 600;
	font-size: 13px;
	line-height: 15px;
	color: #8e3a59;
	position: relative;
}
.team-contacts-list > li > a::after{
	content: '';
	display: block;
	width: 0;
	height: 1px;
	background-color: #8e3a59;
	position: absolute;
	left: 0;
	bottom: -6px;
	transition: width .3s ease-out;
}
.team-contacts-list > li > a:hover::after{
	width: 100%;
}
.contacts-form-wrapper,
.contacts-map-wrapper{
	width: 50%;
	float: left;
}
.contacts-form-wrapper{
	padding: 0 125px 0 0;
	padding-left: calc((100% - 910px)/2);
}
.contacts-form-wrapper > h4{
	font-family: 'Futura PT Demi';
	font-weight: 600;
	font-size: 18px;
	line-height: 20px;
	text-transform: uppercase;
	margin: 0 0 30px 0;
}
.contacts-form-wrapper > form > label{
	display: inline-block;
	font-family: 'Futura PT';
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	margin: 0 0 10px 0;
}
.contacts-form-wrapper > form > input{
	display: block;
	width: 100%;
	height: 40px;
	font-family: 'Futura PT';
	font-weight: 500;
	line-height: 40px;
	font-size: 16px;
	background-color: #f0f0f0;
	padding: 0 15px;
	margin: 0 0 20px 0;
	border-bottom: 1px solid transparent;
	transition: border-color .3s ease-out;
}
.contacts-form-wrapper > form > input:focus{
	border-color: #8e3a59;
}
.contacts-form-wrapper > form > input.invalid,
.contacts-form-wrapper > form > textarea.invalid{
	border-color: red;
}
.contacts-form-wrapper > form > textarea{
	font-family: 'Futura PT';
	font-weight: 500;
	line-height: 20px;
	font-size: 16px;
	display: block;
	width: 100%;
	height: 150px;
	background-color: #f0f0f0;
	padding: 10px 15px;
	margin: 0 0 30px 0;
	border-bottom: 1px solid transparent;
	transition: border-color .3s ease-out;
}
.contacts-form-wrapper > form > textarea:focus{
	border-color: #8e3a59;
}
.contacts-form-submit{
	display: block;
	float: right;
	padding: 10px 35px;
	font-size: 14px;
	line-height: 20px;
	font-family: 'Futura PT';
	font-weight: 500;
	color: #8e3a59;
	border: solid 1px #8e3a59;
	position: relative;
	transition: color .3s ease-out;
}
.contacts-form-submit > span{
	position: relative;
}
.contacts-form-submit::before{
	content: '';
	display: block;
	background-color: #8e3a59;
	width: 100%;
	height: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: height .3s ease-out;
}
.contacts-form-submit:hover::before{
	height: 100%;
}
.contacts-form-submit:hover{
	color: #fafafa;
}
.contacts-map-wrapper{
	height: 512px;
}
.modals-overlay{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 101;
	opacity: 0;
	pointer-events: none;
	transition: opacity .9s ease;
}
.modals-overlay.visible{
	opacity: 1;
	pointer-events: all;
}
.contact-form-succes-message{
	width: 100%;
	max-width: 478px;
	padding: 70px 100px;
	background-color: #fff;
	text-align: center;
	position: fixed;
	top: -50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 102;
	box-shadow: 8px 8px 15px 0 rgba(0, 0, 0, 0.2);
	font-family: 'Futura PT';
	font-weight: 500;
	font-size: 22px;
	line-height: 32px;
	transition: top .9s ease;
}
.contact-form-succes-message.visible{
	top: 50%;
}
.freecall-modal{
	width: 100%;
	max-width: 478px;
	padding: 62px 0 0 0;
	background-color: #fff;
	box-shadow: 8px 8px 15px 0 rgba(0, 0, 0, 0.2);
	z-index: 102;
	position: fixed;
	top: -50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: top .6s ease-out;
}
.freecall-modal.visible{
	top: 50%;
}
.freecall-modal input{
	display: block;
	width: calc(100% - 200px);
	padding: 9px 10px;
	font-size: 16px;
	line-height: 22px;
	font-family: 'Futura PT';
	font-weight: 500;
	border-bottom: 3px solid #ebebea;
	margin: 0 100px 12px 100px;
	transition: border-color .3s ease-out;
}
.freecall-modal input.invalid{
	border-color: red;
}
.freecall-modal input:last-of-type{
	margin: 0 100px 50px 100px;
}
.freecall-modal input:focus{
	border-color: #8e3a59;
}
/* Webkit */
.freecall-modal input::-webkit-input-placeholder { color: #000; }
/* Firefox 4-18 */
.freecall-modal input:-moz-placeholder { color: #000; }
/* Firefox 19+ */
.freecall-modal input::-moz-placeholder { color: #000; }
/* IE10+ */
.freecall-modal input:-ms-input-placeholder { color: #000; }
.request-call-submit-btn{
	display: block;
	width: 100%;
	text-align: center;
	padding: 13px 20px;
	background-color: #8e3a59;
	font-family: 'Futura PT';
	font-weight: 500;
	color: #fff;
	transition: opacity .3s ease-out;
}
.request-call-submit-btn:hover{
	opacity: .9;
}
.close-freecall-modal-btn{
	display: block;
	width: 48px;
	height: 48px;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	background-image: url('../img/close-modal-icon.svg');
	background-size: 15px 15px;
	background-position: center center;
	background-repeat: no-repeat;
	transition: opacity .3s ease-out;
}
.close-freecall-modal-btn:hover{
	opacity: .9;
}