.contactContainer {
    width: 100%;
    background: rgba(4, 31, 77, 0.555);
    height: 1000px;
    position: relative;
	
}

.contactContainer::after {
    content: "";
    position: absolute;
    top:0px;
    left:0px;
    background: url("Photos/2photos.jpeg");
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index:-1;
}

.headerContainer {
    position: absolute;
    top:10%;
    left: 50%;
    text-align: center;
    transform: translate(-50%);
    color: white;
}

.headerContainer h1 {
    font-size: 340%;
    font-weight: 700;
}

.headerContainer p {
    font-size: 110%;
    font-weight: 500;
}


.informationAndForm {
    position: absolute;
    top:30%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

textarea {
    resize: none;
}

.leftSide{
   color: white; 
}

.leftSide .fa-phone-alt, .leftSide .fa-envelope,  .leftSide .fa-map-marker-alt {
    color: black;
    padding: 20px;
    background: white;
    border-radius: 50%;
}

.top {
    display: flex;

}


.mesaj {
	padding-top: 20px;
	font-size: 110%;
}

.fail {
	color: red;
	font-weight: bold;
}




.contactContainer .container{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 15px;
	
}

.contactContainer .container:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: url("img/bg.jpg") no-repeat center;
	background-size: cover;
	filter: blur(50px);
	z-index: -1;
}
.contactContainer .contact-box{
	max-width: 850px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: #fff;
	box-shadow: 0px 0px 19px 5px rgba(0,0,0,0.19);

}

.contactContainer .left{
	background: url("img/bg.jpg") no-repeat center;
	background-size: cover;
	height: 100%;

}

.contactContainer .right{
	padding: 25px 40px;
}

.contactContainer h2{
	position: relative;
	padding: 0 0 10px;
	margin-bottom: 10px;
}

.contactContainer h2:after{
	content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    width: 50px;
    border-radius: 2px;
    background-color: var(--MainColor);
}

.contactContainer .field{
	width: 100%;
	border: 2px solid rgba(0, 0, 0, 0);
	outline: none;
	background-color: rgba(230, 230, 230, 0.6);
	padding: 0.5rem 1rem;
	font-size: 1.1rem;
	margin-bottom: 22px;
	transition: .3s;
}

.contactContainer .field:hover{
	background-color: rgba(0, 0, 0, 0.1);
}

.contactContainer textarea{
	min-height: 150px;
}

.contactContainer .btn{
	width: 100%;
	padding: 0.5rem 1rem;
    background-color: var(--MainColor);
	color: #fff;
	font-size: 1.1rem;
	border: none;
	outline: none;
	cursor: pointer;
	transition: .3s;
}

.contactContainer .btn:hover{
    background-color: var(--SecondColor);
}

.contactContainer .field:focus{
    border: 2px solid rgba(30,85,250,0.47);
    background-color: #fff;
}

@media screen and (max-width: 880px){
	.contactContainer .contact-box{
		grid-template-columns: 1fr;
	}
    .contactContainer.left{
		height: 200px;
	}
}


@media screen and (max-width: 900px) {
	
	.contactContainer .container {
		padding: 0px 30px;
	}
	.headerContainer {
		font-size: 80%;
		
	}
	.headerContainer h1 {
		white-space: nowrap;
	}
	
}

@media screen and (max-width: 900px) {
	

	.headerContainer p{
		font-size: 100%;
	}


}


@media screen and (max-width: 900px) {
	
	.contactContainer::after {
		background: url("Photos/contactimage4.jpeg");
	}

	.contactContainer .right{
		padding: 25px 25px;
	}


}


