.contact-container {
	width: 100%;
	/* min-height: 70vh; */
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 50px 5%;
	background-color: var(--contact-background);
}

.contact-container .contact-row {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1100px;
}

.contact-row section.contact-col {
	display: flex;
	flex-direction: column;
}

.contact-row section.left {
	flex-basis: 35%;
	min-width: 320px;
	margin-right: 60px;
}

.contact-row section.right {
	flex-basis: 60%;
}

section.left .contactTitle h4 {
	position: relative;
	font-size: 28px;
	color: #ddd;
	display: inline-block;
	margin-bottom: 25px;
}

section.right .contactTitle h4 {
	position: relative;
	font-size: 28px;
	color: #ddd;
	display: inline-block;
	margin-bottom: 25px;
}

section.left .contactTitle h4::before {
	content: '';
	position: absolute;
	width: 50%;
	height: 1px;
	background-color: #888;
	top: 120%;
	left: 0;
}

section.left .contactTitle h4::after {
	content: '';
	position: absolute;
	width: 25%;
	height: 3px;
	background-color: var(--contact-color);
	top: calc(120% - 1px);
	left: 0;
}

section.left .contactTitle p {
	font-size: 17px;
	color: #ccc;
	letter-spacing: 1px;
	line-height: 1.2;
	padding-bottom: 22px;
}

section.left .contactInfo {
	margin-bottom: 16px;
}

.contactInfo .iconGroup {
	display: flex;
	align-items: center;
	margin: 25px 0px;
}

.iconGroup .icon {
	width: 45px;
	height: 45px;
	border: 2px solid var(--contact-color);
	border-radius: 50%;
	margin-right: 20px;
	position: relative;
}

.iconGroup .icon i {
	font-size: 20px;
	color: #ddd;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.iconGroup .details span {
	display: block;
	color: #888;
	font-size: 18px;
}

.contact-email {
	display: block;
	color: #888;
	font-size: 18px;
	text-decoration: none;
	cursor: pointer;
}

.contact-email:hover {
	color: var(--logo-blue);
}

.iconGroup .details span:nth-child(1) {
	text-transform: uppercase;
	color: #ccc;
}

section.left .socialMedia {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	margin: 22px 0px 20px;
}

.socialMedia a {
	width: 35px;
	height: 35px;
	text-decoration: none;
	text-align: center;
	margin-right: 15px;
	border-radius: 5px;
	background-color: var(--contact-color);
	transition: 0.4s;
}

.socialMedia a i {
	color: #ddd;
	font-size: 18px;
	line-height: 35px;
	border: 1px solid transparent;
	transition-delay: 0.4s;
}

.socialMedia a:hover {
	transform: translateY(-5px);
	background-color: #2e2e2e;
	color: var(--contact-color);
	border: 1px solid var(--contact-color);
}

.socialMedia a:hover i {
	color: var(--contact-color);
}

/* Code for the right section (column) */

.contact-row section.right .messageForm {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-top: 30px;
}

.contact-row section.right .inputGroup {
	margin: 18px 0px;
	position: relative;
}

.messageForm .halfWidth {
	flex-basis: 48%;
}

.messageForm .fullWidth {
	flex-basis: 100%;
}

.messageForm input {
	width: 100%;
	font-size: 18px;
	padding: 2px 0px;
	background-color: var(--contact-background);
	color: #ddd;
	border: none;
	border-bottom: 2px solid #666;
	outline: none;
	cursor: text;
}

.inputGroup label {
	position: absolute;
	left: 0;
	bottom: 4px;
	color: white;
	font-size: 18px;
	transition: 0.4s;
	pointer-events: none;
}

.inputGroup:nth-child(4) label {
	top: 2px;
}

.inputGroup input~label {
	transform: translateY(-30px);
	font-size: 16px;
}

.inputGroup button {
	padding: 8px 16px;
	font-size: 18px;
	background-color: var(--contact-color);
	color: #ddd;
	border: 1px solid transparent;
	border-radius: 25px;
	outline: none;
	cursor: pointer;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
	transition: 0.4s;
}

.inputGroup button:hover {
	background-color: #2e2e2e;
	color: var(--contact-color);
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
	border: 1px solid var(--contact-color);
}

.contact-product-select label {
	color: #888;
}

.contact-product-select > div {
	display: inline-block;
	text-align: center;
}

.contact-product-select p {
	color: #ddd;
	font-size: 1.1rem;
}

/* REMOVE ARROWS FROM NUMBER INPUT */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  appearance: textfield;
}

@media(max-width: 1100px) {
	.messageForm .halfWidth {
		flex-basis: 100%;
	}
}

@media(max-width: 900px) {
	.contact-container .contact-row {
		flex-wrap: wrap;
	}

	.contact-row section.left,
	.contact-row section.right {
		flex-basis: 100%;
		margin: 0px;
	}
}