.cover-image-section{
    height: 400px;
/* 	margin-bottom: 5rem; */
	margin-top: 2rem;
}

.cover-image-section-overlay{
    position: absolute;
    left: 0;
    width: 100vw;
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
}

.cover-image-section-text-container{
/*     display: flex;
    gap: .8rem;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%; */
	padding: 2rem;
	margin-top: 2rem;
}

.cover-image-section-title, .cover-image-section-description{
    color: #fff !important;
}

.cover-image-section-button{
    background-color: #af4c4b;
	padding: 13px 20px;
	border: 0;
	border-radius: 14px;
}

/* Image And Text Section */

.image-and-text-section{
/* 	margin-bottom: 5rem; */
	height: 500px;
}

.image-and-text-section-overlay-container{
	position: absolute;
	left: 0;
	width: 100%;
/* 	background: #e6e6e6; */
/* 	background-color: #40542e; */
	background-color: #636c38;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 500px;
}

.image-and-text-section-text-container *{
	color: #fff;
}

.image-and-text-section-flex-container{
	display: flex;
	flex-direction: row;
	width: 60%;
	padding: 1rem;
}

.image-and-text-section-image{
	width: 100%;
	height: 400px;
	object-fit: cover;
/* 	border-radius: 10px; */
}

.image-and-text-section-image-container{
	width: 40%;
	padding: 1rem;
}

.image-and-text-section-text-container{
	width: 60%;
	padding: 1rem;
}

@media only screen and (max-width: 992px){
	
	.image-and-text-section-overlay-container{
		height: min-content;
		padding: 3rem 0;
	}
	
	.image-and-text-section-flex-container{
		flex-direction: column;
	}
	
	.image-and-text-section-image-container{
		width: 100%;
		padding-right: 1rem !important;
	}

	.image-and-text-section-text-container{
		width: 100%;
		padding-left: 1rem !important;
	}
	
}

.image-and-text-section .left-gap{
	padding-left: 2rem;
}

.image-and-text-section .right-gap{
	padding-right: 2rem;
}

/* Image with overlay text */

.image-with-overlay-text-section{
    height: 400px;
	width: 100%;
	padding: 1rem;
}

.image-with-overlay-text-background{
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.image-with-overlay-text--heading{
	color: #fff;
	padding: 2rem;
	font-size: 1.15rem;
}

/* .image-with-overlay-text--overlay{
    position: absolute;
    left: 0;
    width: 100vw;
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
} */

/* Contact form */

.normal-contact-form-label{
	display: block;
	margin-bottom: .5rem;
}

.normal-contact-form-input{
	width: 100%;
	margin-bottom: .8rem;
	height: 40px;
	padding-left: .5rem;
	padding-right: .5rem;
}

.normal-contact-form-input-textarea{
	height: 140px;
}

.normal-contact-form-submit{
	background-color: #af4c4b;
	color: #fff;
	border: 0;
	padding: .6rem 1rem;
}