.contacts-block {
	display: flex;
	align-items: flex-start;
}
.contacts-block__maps {
	width: 100%;
	height: 455px;
	flex: 1;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0px 0px 90px 0px rgba(0, 0, 0, 0.14);
	margin-right: 60px;
}
.contacts-block__map:not(.selected) {
    display: none;
}
.contacts-block__map {
    overflow: hidden;
    position: relative;
}
.contacts-block__map,
.contacts-block__map iframe {
    width: 100%;
    height: 100%;
}
.contacts-block__map iframe {
    display: block;
    border: 0;
}
.contacts-block__info {
	flex: 1;
}
.contacts-switch {
	/* width: 436px; */
	height: 60px;
	border-radius: 30px;
	border: 2px solid #da251c;
	display: flex;
	font-family: Montserrat;
	font-weight: 700;
	font-size: 14px;
	overflow: hidden;
	margin-bottom: 60px;
	cursor: pointer;
}
.contacts-switch__element {
	text-transform: uppercase;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .2s;
}
.contacts-switch__element span {
	color: #da251c;
}
.contacts-switch__element:hover {
	background-color: #da251c;
}
.contacts-switch__element:hover span {
	color: #fff;
}
.contacts-switch__element.selected {
	background-color: #da251c;
}
.contacts-switch__element.selected span {
	color: #fff;
}
.contacts-switch__element.selected:hover {
	background-color: #b32018;
}
.contacts-text__element {
	visibility: hidden;
	opacity: 0;
	transition: .2s;
	display: none;
	font-family: Montserrat;
	font-size: 18px;
	line-height: 40px;
}
.contacts-text__element.selected {
	visibility: visible;
	opacity: 1;
	display: block;
}
.contacts-text__element a {
	color: #da251c;
	font-size: 20px;
	line-height: 24px;
	font-weight: 700;
	text-decoration: underline;
}
@media (max-width: 1200px) {
	.contacts-block__maps {
		margin-right: 30px;
	}
}
@media (max-width: 992px) {
	.contacts-switch {
		width: 290px;
		height: 40px;
	}
}
@media (max-width: 768px) {
	.contacts-block {
		flex-wrap: wrap;
	}
	.contacts-block__maps {
		flex: 100%;
		margin-right: 0;
		order: 2;
	}
	.contacts-block__info {
		order: 1;
		margin-bottom: 30px;
	}
	.contacts-switch {
		margin-bottom: 30px;
	}
}

.contacts-form__description {
	font-size: 18px;
	line-height: 40px;
}

.contacts-control-form {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 24px;
	row-gap: 32px;
}
.contacts-form {
	max-width: 920px;
}
.contacts-form .form-group {
	margin-bottom: 0;
	position: relative;
}
.contacts-form .section-title {
	margin-bottom: 40px;
}
.contacts-form .section-title h3 {
	margin-bottom: 16px;
}
.contacts-form .section-title p {
	line-height: 30px;
}
