.container{
	width: 90%;
	min-height: 100vh;
	margin: 0 auto; /* Center horizontally */
	display: flex;
	align-items: center; 
}

.text-cover{
	top: 20%;
}

@media screen and (max-width: 768px){
	.text-cover h1{
		font-size: 70px;
	}
}

.container .row{
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 2100px;
}

.row section.col{
	display: flex;
	flex-direction: column;
}

.row section.left{
	flex-basis: 35%;
	min-width: 320px;
	margin-right: 60px;
}

.row section.right{
	flex-basis: 60%;
}

section.left .contactTitle h2{
	position: relative;
	font-size: 28px;
	color: #f3f7fa;
	display: inline-block;
	margin-bottom: 25px;
}

section.left .contactTitle h2::before{
	content: '';
	position: absolute;
	width: 50%;
	height: 1px;
	background-color: #f3f7fa;
	top: 120%;
	left: 0;
}

section.left .contactTitle h2::after{
	content: '';
	position: absolute;
	width: 25%;
	height: 3px;
	background-color: #9DC183;
	top: calc(120% - 1px);
	left: 0;
}

section.left .contactTitle p{
	font-size: 17px;
	color: #f3f7fa;
	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 #4F7942;
	border-radius: 50%;
	margin-right: 20px;
	position: relative;
}

.iconGroup .icon i{
	font-size: 20px;
	color: #f3f7fa;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.iconGroup .details span{
	display: block;
	color: #888;
	font-size: 18px;
}

.iconGroup .details span:nth-child(1){
	text-transform: uppercase;
	color: #f3f7fa;
}

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;
	transition: 0.4s;
  border: 1px solid transparent;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
	transition: 0.4s;
}

.socialMedia a i{
	color: #9DC183;
	font-size: 18px;
	line-height: 35px;
	border: 1px solid transparent;
	transition-delay: 0.4s;
}

.socialMedia a:hover{
	transform: translateY(-5px);
	background-color: #4F7942;
	color:  #2e2e2e;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
	border: 1px solid  #2e2e2e;  
}

.socialMedia a:hover i{
	color:  #9DC183;
}

/* Code for the right section (column) */
.row section.right .messageForm{
	display: flex;
	flex-direction: column;
	padding-top: 30px;
	max-width: 100%; /* Set a maximum width */
	width: 100%;
  margin: 0 auto;
}

.row section.right .inputGroup{
	margin: 18px 0px;
	position: relative; 
}

.messageForm .halfWidth{
	flex-basis: 48%;
}

.messageForm .fullWidth{
	flex-basis: 100%; 
}

.messageForm input, .messageForm textarea{
	width: 100%;
  min-height: 40px;
	padding: 2px 0px;
	background-color: #444C38;
	color: #f3f7fa;
	outline: none;
	border: 2px solid #fafafa;
	letter-spacing: 0.5px;
	border-radius: 10px;
	transition: 0.3s;
	font-family: 'Poppins';
	padding-left: 15px;
}

.messageForm input{
	color: #f3f7fa;
}

.messageForm textarea{
	min-height: 200px;
	border-radius: 10px;
	resize: none;
	overflow-y: auto;
}

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{
  padding-top: 3px;
	position: absolute;
	padding-left: 10px;
	bottom: 14px;
	color: #f3f7fa;
	font-size: 0.95rem;
	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: 8px 16px;
	font-size: 18px;
	background-color:#4F7942;
	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: #9DC183;
	color: #2e2e2e;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
	border: 1px solid #2e2e2e;
}

@media(max-width: 1100px){
	.messageForm .halfWidth{
		flex-basis: 100%;
	}
}

@media(max-width: 900px){
	.container .row{
		flex-wrap: wrap;
	}
	.row section.left, .row section.right{
		flex-basis: 100%;
		margin: 0px;
	}
}

