#contacts {
	padding-bottom: 136px;
	
}
.contacts-grid {
	display: grid;
	grid-template-columns: 1fr 330px;
	grid-gap: 30px;
}
aside {
	padding-top: 160px;
}
#contacts h2{
	font-weight: bold;
	/*font-size: 30px;*/
	line-height: 43px;
	text-transform: uppercase;
	color: #455B7B;
	margin-bottom: 10px;
}
.form-contacts {
	background: #ECF3FC;
	border-radius: 3px;
	text-align: center;
	padding: 0 0 21px 0;
	margin-bottom: 30px;
}
.form-contacts p {
	font-weight: normal;
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	color: #455B7B;
	max-width: 188px;
	margin: 3px auto 0 auto;
}
.form-contacts__social {
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(-10px);
}
.form-contacts__social li {
	margin: 0 5px;
}
.form-contacts__phone {
	font-weight: 500;
	font-size: 18px;
	line-height: 26px;
	color: #455B7B;
	text-align: center;
}
.form-contacts__phone img {
	margin-right: 10px;
}

.service-item {
	border-bottom: 1px solid #D3D3D3;
}
.service-item__head {
	display: flex;
	padding-bottom: 20px;
	padding-top: 20px;
	cursor: pointer;
}
.service-item__head h3{
	font-weight: bold;
	font-size: 20px;
	line-height: 32px;
	text-transform: uppercase;
	color: #455B7B;
	position: relative;
	padding-right: 31px;
}
.service-item__head h3:after {
	content: '';
	position: absolute;
	right: 0;
	top: calc(50% - 4.5px);
	width: 16px;
	height: 9px;
	background: url(../image/icon/arrow-vacancy.png);
	transform: rotate(-90deg);
	transition: 200ms linear;
}
.service-item__head.active h3:after {
	transform: rotate(0deg);
}
.service-item__description {
	display: none;
}
.service-item__description p {
	font-weight: normal;
	font-size: 14px;
	line-height: 26px;
	color: #494949;
	max-width: 610px;
}
.service-item__description h4 {
	font-weight: 500;
	font-size: 18px;
	line-height: 26px;
	color: #455B7B;
}
.service-item__services {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	grid-gap: 34px 10px;
	margin-top: 20px;
}
.service-item__services li {
	display: grid;
	grid-template-columns: 45px 1fr;
	align-items: center;
	justify-content: flex-start;
	grid-gap: 10px;
}
.service-item__services span {
	font-weight: bold;
	font-size: 40px;
	line-height: 20px;
	color: #F8DB48;

	text-align: right;
}
.amenities-list__head {
	display: flex;
	align-items: flex-start;
	margin-bottom: 16px;
}
.amenities-list {
	margin-bottom: 52px;
}
.amenities-list__line {
	background: #fff;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 70px;
	padding: 20px 30px;
}
.amenities-list__line:nth-child(odd){
	background: #F7F7F7;
}
.amenities-list__line p{
	font-weight: normal;
	font-size: 14px;
	line-height: 26px;
	color: #494949;
}
.addresses-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.addresses-grid {
	display: grid;
	grid-template-columns: minmax(200px,230px) 1fr;
	grid-gap: 35px 60px;
	max-width: calc(270px * 2 + 60px);
}
.service-item__addresses iframe {
	width: 100%;
	height: 256px;
	border:none;
	margin-bottom: 34px;
	margin-top: 40px;
}
.addresses-item__email {
	font-weight: normal;
	font-size: 14px;
	line-height: 21px;
	text-decoration: underline;
	color: #507FC6;
}
.service-item .addresses-item__office {
	font-weight: 500;
	font-size: 18px;
	line-height: 26px;
	color: #494949;
	padding-right: 20px;
	margin-bottom: 10px;
	position: relative;
}
.service-item .addresses-item__office span {
	display: block;
	position: absolute;
	right: 0;
	top: calc(50% - 5px);
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
.service-item .addresses-item__area {
	font-weight: 500;
	font-size: 14px;
	line-height: 26px;
	color: #494949;
}
.service-item .addresses-item__adress {
	font-weight: normal;
	font-size: 12px;
	line-height: 21px;
	color: #494949;
	max-width: none;
	margin-bottom: 4px;
}
.service-item .addresses-item__work {
	font-weight: 600;
	font-size: 12px;
	line-height: 21px;
	color: #B9B9B9;
	margin-bottom: 10px;
}
.addresses-item__phone {
	font-weight: normal;
	font-size: 14px;
	line-height: 26px;
	color: #494949;
}
.address-grid {
	display: grid;
	grid-template-columns: 210px 1fr;
	grid-gap: 30px;
	align-items: center;
	margin-bottom: 68px;
	margin-top: 10px;
}
.address-grid iframe {
	width: 100%;
	height: 170px;
	border:none;
}
@media (max-width: 991px){
	#contacts {
		padding: 0 40px 136px 40px;
	}
	.contacts-grid {
		display: flex;
		flex-direction: column-reverse;
	}
	aside {
		padding-top: 0;
		margin-bottom: 40px;
	}
	#contacts h2 {
		margin-bottom: 35px;
	}
	#contacts  .form-input h2 {
		grid-row: 1;
		grid-column: 1/3;
		margin-bottom: 14px;
		font-size: 20px;
		line-height: 32px;
	}
	#contacts .form-input {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-gap: 0 40px;
	}
	#contacts .form-contacts {
		grid-column: 2;
		grid-row: 2/4;
		margin-bottom: 7px;
		    margin-top: 30px;
	}
	#contacts .input-wrap:nth-of-type(4) {
		grid-column: 1/3;
	}
}
@media (max-width: 767px){
	#contacts .form-input {
		display: flex;
		flex-direction: column;
		padding: 25px;
	}
	#contacts  .form-input h2 {
		margin: 30px 0 14px 0;
	}
	#contacts {
	    padding: 0 0 172px 0;
	}
	#contacts > h2 {
		padding: 0 20px;
		margin: 26px 0;
		font-size: 20px;
		line-height: 32px;
	}
	.contacts-grid {
		padding: 0 20px;
	}
	.addresses-grid {
		grid-template-columns: 1fr;
		max-width: 100%;
	}
	.amenities-list {
		width: calc(100% + 40px);
		overflow: auto;
    	margin-left: -20px;
	}
	.amenities-list__line {
		width: 768px;
	}
	.service-item__head h3 {
		font-size: 16px;
	}
	.address-grid {
		grid-template-columns: 1fr;
	}
	.address-grid iframe {
		height: 256px;
	}
}

