

/* .contact-spacer{
	height: 10vh;
} */
.container{
	width: 100%;
	height: fit-content;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 100px 1rem;
}
.container .row{
	border: 1px solid #EC1C24 !important;
	border-radius: 20px;
	display: flex;
	width: 90%;
	/* box-shadow: #EC1C24 -10px 20px 30px -10px; */
	/* box-shadow: #EC1C24 0px 25px 50px -12px; */
	box-shadow: #EC1C24 0px 10px 35px -12px;
}
.row section.col{
	display: flex;
	flex-direction: column;
}
.row section.left{
	width: 50%;
	/* margin-right: 2rem; */
	background-color: #EC1C24;
	padding: 1rem 2rem;
	border-radius: 20px; 
	justify-content: center;
}

section.left .contactTitle h2{
	color: white;
	font-family: vorkurs;
	position: relative;
	font-size: 48px;
}
section.left .contactTitle h2::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: white;
	top: 120%;
	left: 0;
	border-radius: 10px;
}
section.left .contactTitle h2::after{
	content: '';
	position: absolute;
	width: 60%;
	height: 3px;
	background-color: white;
	border-radius: 10px;
	top: calc(120% - 1px);
	right: 0;
}
section.left .contactTitle p{
	color: #e4e4e4;
	font-size: 17px;
	font-family: MullerNarrow;
	letter-spacing: 1px;
	line-height: 1.2;
}

.contactInfo .iconGroup{
	display: flex;
	align-items: center;
	margin: 25px 0px;
}
.iconGroup .icon{
	width: 45px;
	height: 45px;
	border: 2px solid white;
	border-radius: 50%;
	margin-right: 20px;
	position: relative;
}
.iconGroup .icon i{
	font-size: 20px;
	color: white;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.iconGroup .details span{
	display: block;
	color: white;
	font-size: 16px;
	text-decoration: none;	
}
.iconGroup .details span a{
	color: rgb(222, 222, 222);
	text-decoration: none;
}
.iconGroup .details span:nth-child(1){
	font-size: 20px;
	font-family: vorkurs;
	text-transform: uppercase;
	color: white;
	cursor: default;
}
section.left .socialMedia{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
	margin: 0;
}
.socialMedia a{
	width: 35px;
	height: 35px;
	text-decoration: none;
	text-align: center;
	margin-right: 15px;
	border-radius: 5px;
	background-color: white;
	transition: all 0.4s;
}
.socialMedia a i{
	color: #EC1C24;
	font-size: 18px;
	line-height: 35px;
	border: 1px solid transparent;
	transition: all 0.5s;
}
.socialMedia a:hover{
	background-color: #EC1C24;
	color: white;
	border: 1px solid white;
}
.socialMedia a:hover i{
	color: white;
}

/* Code for the right section (column) */

.row section.right .messageForm{
	padding: 2rem;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-top: 30px;
}
.row section.right .inputGroup{
	margin: 1rem 0;
	position: relative;
}
.messageForm .halfWidth{
	flex-basis: 48%;
}
.messageForm .fullWidth{
	flex-basis: 100%;
}
.messageForm input, .messageForm textarea{
	font-family: MullerNarrow;
	width: 100%;
	font-size: clamp(1rem, 1.5vw, 0.5rem);
	padding: 2px 0px;
	color: #EC1C24;
	border: none;
	border-bottom: 2px solid #EC1C24;
	outline: none;
}
.messageForm textarea{
	resize: none;
	height: 220px;
	display: block;
}
textarea::-webkit-scrollbar{
	width: 5px;
}
textarea::-webkit-scrollbar-track{
	background-color: #1e1e1e;
	border-radius: 15px;
}
textarea::-webkit-scrollbar-thumb{
	background-color: dodgerblue;
	border-radius: 15px;
}
.inputGroup label{
	font-family: vorkurs;
	position: absolute;
	left: 0;
	bottom: 4px;
	color: #ffcfd1;
	font-size: 18px;
	transition: 0.4s;
	pointer-events: none;
}
.inputGroup:nth-child(4) label{
	top: 2px;
}
.inputGroup input:focus ~ label, .inputGroup textarea:focus ~ label,
.inputGroup input:valid ~ label, .inputGroup textarea:valid ~ label
{
	transform: translateY(-30px);
	font-size: 16px;
}
.inputGroup button{
	padding: 0.6rem 1rem;
	margin: 1rem 0;
	font-size: 18px;
	background-color: #EC1C24;
	color: #e4e4e4;
	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: white;
	color: #EC1C24;
	box-shadow: 0px 0px 15px rgba(255, 0, 0, 0.3);
	border: 1px solid #EC1C24;
}
@media(max-width: 1100px){
	.messageForm .halfWidth{
		flex-basis: 100%;
	}
}
@media(max-width: 900px){
	.container{
		padding: 70px 1rem;
	}
	.container .row{
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		width: fit-content;
		padding-right: 0;
	}
	.row section.left{
		padding: 1rem;
		width: fit-content;

	}
	.section.left .contactTitle h2{
		font-size: 28px;
	}
	.section.left .contactTitle p{
		line-height: 1;
		letter-spacing: normal;
		margin: 0;
	}

	.contactTitle p{
		margin: 0 !important;
		padding: 0;
	}

	.contactInfo .iconGroup{
		margin: 15px 0px;
	}
	.iconGroup .icon{
		width: 40px;
		height: 40px !important;
	}
	.iconGroup .icon i{
		font-size: 14px;
	}

	.iconGroup .details span{
		font-size: 10px;
		display: inline-block;
	}

	/* .iconGroup .details span:nth-child(1){
		font-size: 18px;
		text-transform: none;
	} */




	.row section.left, .row section.right{
		margin: 0;
	}
	.row section.right .messageForm{
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		flex-wrap: wrap;
		padding-top: 30px;
	}
}