.contacts {
    background-color: #222222;
}
.contacts > div:first-child {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: 500px;
    min-height: 500px;
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    font-family: Verdana, Helvetica, sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contacts .address > div:first-child {
    margin-bottom: 25px;
    font-family: Verdana, Helvetica, sans-serif;
}
.contacts .address .name {
    font-size: 21px;
    font-weight: 700;
    position: relative;
    margin-bottom: 25px;
}
.contacts > div:nth-child(2) {
    min-height: 500px;
    min-height: calc(100% - 704px);
}
.contacts > div:nth-child(2) iframe {
    min-height: 500px;
    height: calc(100% - 704px);
}

.contacts form {
	width: 300px;
}
.contacts form input[type="text"] {
	width: 100%;
	margin-bottom: 10px;
	box-sizing: border-box;
	box-shadow: rgba(0, 0, 0, 0.29) 0px 1px 2px inset, rgb(255, 255, 255) 0px 1px 1px, rgb(255, 255, 255) 0px 1px 0px;
	border-width: 1px;
	border-style: solid;
	border-color: rgb(221, 221, 221);
	padding: 0px 10px;
	border-radius: 4px;
	transition: all 0.3s ease 0s;
	outline: none;
	font-size: 14px;
	line-height: 30px;
	color: #000;
	background: #fff;
	font-family: Arial;
	font-weight: 400;
}
.contacts form input[type="text"]:focus {
	border-width: 1px;
	border-style: solid;
	border-color: rgba(0, 0, 0, 0.2);
}
.contacts form textarea {
	width: 100%;
	height: 220px;
	box-sizing: border-box;
	box-shadow: rgba(0, 0, 0, 0.29) 0px 1px 2px inset, rgb(255, 255, 255) 0px 1px 1px, rgb(255, 255, 255) 0px 1px 0px;
	border-width: 1px;
	border-style: solid;
	border-color: rgb(221, 221, 221);
	padding: 0px 10px;
	border-radius: 4px;
	transition: all 0.3s ease 0s;
	outline: none;
	font-size: 14px;
	line-height: 30px;
	color: #000;
	background: #fff;
	font-family: Arial;
	font-weight: 400;	
	resize: none;
	margin-bottom: 10px;
}
.contacts form button {
	width: 300px;
	height: 40px;
	line-height: 40px;
	margin-top: 5px;
	font-size: 14px;
	font-weight: 400;
	font-family: Arial;
	color: rgb(88 ,145, 239);
	box-sizing: border-box;
	padding: 0 15px;
	background-color: #fff;
	cursor: pointer;
	border-width: 1px;
	border-style: solid;
	border-color: rgb(88, 145, 239);
	box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 5px;
	outline: none;
}
.contacts form input[type="submit"]:hover {
	background-color: rgb(250, 250, 250);
    color: rgb(88, 145, 239);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 12px;
    border-color: rgb(88, 145, 239);
}
.contacts #form_completed {
	text-align: center;
	color: #49b349 !important;
	display: none;
}
.contacts #form_completed p {
	color: #49b349 !important;
}
.contacts #form_completed i {
	font-size: 80px;
}