#contacts-photo {
	width: 100%;
}
.contacts-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	font-family: "Raleway", sans-serif;
	padding: 3rem 0 0;
}
.contacts-div-name {
	grid-column: 1 / 3;
	width: 100%;
	padding: 0;
	font-weight: 700;
	font-size: 2.4rem;
}
.contacts-subdiv-name {
	grid-column: 1 / 3;
	width: 100%;
	font-weight: 500;
	font-size: 2.0rem;
}
.contacts-field-name { 
	flex: 1 1 30%;
	padding: 10px 40px 0 0;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
}
.contacts-field-value {
	flex: 1 1 70%;
	padding: 10px 0 0 0;
}
.contacts-field-value > a {
	color: #ff6000;
}
i.fa-brands , i.fa-solid  {
	font-size: 2.0rem;
	padding: 0 0.5rem 0;
}
.fa-brands > a, .fa-brands > a:hover, .fa-brands > a:visited, .fa-solid > a, .fa-solid > a:hover, .fa-solid > a:visited {
	font-size: 2.0rem;
}
.fa-brands.reduced, .fa-solid.reduced {
	font-size: 1.6rem;
}
.contacts-form-field-title {
	font-weight: 500;
	padding: 0 0 10px;
}
#contacts-feedback-header {
	font-family: "Raleway", sans-serif;
	font-weight: 700;
	font-size: 2.4rem;
	padding: 3rem 0 1rem;
}
#feedback-form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px 50px;
}
#feedback input[type=text] {
	height: 30px;
	width: 100%;
	font-family: "Raleway", sans-serif;
	font-weight: 600;
	font-size: 2.2rem;
	margin: 0 0 20px;
	border: none;
	border-bottom: 1px solid #a0a0a0;
}
#feedback textarea {
	width: 100%;
	height: 20rem;
	font-family: "Raleway", sans-serif;
	font-weight: 600;
	font-size: 2.2rem;
	resize: none;
	margin: 0 0 20px;
	border: 1px solid #a0a0a0;
}
#feedback input[type=text]:focus, #feedback textarea:focus {
	outline: none;
	border-color: #000;
}
.grid-element {
	width: 100%;
}
.grid-rows-merged {
	text-align: center;
}
#feedback-form-submit {
	font-family: "Raleway", sans-serif;
	font-weight: 600;
	font-size: 2.2rem;
	padding: 0.5rem 2.0rem;
}
@media (max-width: 768px) {
}
@media (min-width: 768px) {
	#feedback-form {
		grid-template-columns: 1fr 1fr;
	}
	.grid-rows-merged {
		grid-column: 1/3;
	}
}
