@charset "UTF-8";
/* Body */
body, html {
	font-family:"Lato", sans-serif;
	margin: 0 auto;
	font-style: normal;
	font-weight: 200;
	font-size: 18px;
	width: 100%;
    height: 100%;
	overflow-x: hidden;
		background: rgb(9,9,121);
background: linear-gradient(90deg, rgba(61,85,124,1.00) 26%, rgba(1,132,200,1.00) 89%);

}


.Bkgcontain {
	position: relative;
	width: 100%;
	height: 75vh;
	margin-top:7vw;
	margin-bottom: 7vw;
	top:0;
	background: rgb(9,9,121);
background: linear-gradient(90deg, rgba(61,85,124,1.00) 26%, rgba(1,132,200,1.00) 89%);
	
}

.bkgWord {
    position: absolute;
	
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10vw; /* Adjust the size as needed */
	font-weight: 900;
    z-index: 1; /* Ensure it stays behind other content */
    pointer-events: none; /* Make sure it doesn't interfere with user interactions */
	color:rgba(255,255,255,.1);
	
	
}

.content {
	display:flex;
	
	justify-content: space-between;
	width: 100%;
    position: relative;
    z-index: 2;
    padding: 2vw;
	gap: 2vw;
	box-sizing: content-box;
}
.contentTxt {
	width: 35%;
	align-self: flex-start;
}
.content h2 {
	color: white;
	font-size: 4.5vw;
	margin-top: 6vw;
}
.content p {
	font-size: 18px;
	font-weight: 400;
	color: white;
}
.formContain {
	display: flex;
	flex-direction: column;
	width: 65%;
	padding: 2vw;
	
	
}
form {
	width: 80%;
	align-self: center;
	background: rgba(255,255,255,.5);
	padding: 2vw;
	border-radius: 4px;
		box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
	height: 75vh;

}
input, .message, .button-area, label {
	display: block;
	width: 80%;
	align-self: center;
	margin:  0 auto 1vw;
	border: none;
	
}
label {
	color: white;
	font-weight: 300;
}
input {
	line-height: 2.7;

	border-radius: 4px;
	background-color:  rgba(1,132,200,.3);
}
textarea {
	height: 150px;
	width: 100%;
	background-color:  rgba(1,132,200,.3);
}
::placeholder {
	color: white;
	padding: 10px;
}
form h4 {
	margin-left: 5vw;
	color: white;
}
.submit {
	padding: 12px;
	border:none;
	background-color: rgba(61,85,124,1.00) ;
	color: white;
	border-radius: 4px;
	box-shadow: 0 0 0 0 rgba(#214464, .5);
	-webkit-animation: pulse 1.5s infinite;
	animation: pulse 1.5s infinite;
	transition: background-color 0.5s ease;
	
}
.submit:hover {
	background-color:rgba(1,132,200,1) ;
	-webkit-animation: none;
	animation: none;
}
.hidden {
    display: none;
}

#successMessage, #errorMessage {
	   position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	background-color:rgba(61,85,124,1.00);
	padding: 20px;
    color: white;
    font-weight: bold;
	text-align: center;
	
}
.bar {
	background-color: white;
	width:100%;
	height: 9vw;
	margin-top:-3vw;
	margin-bottom:-3vw;
}

@-webkit-keyframes pulse {
	0% {
		transform: scale(0.9);
	}
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
	}
	100% {
		transform: scale(0.9);
		box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
	}
}

@keyframes pulse {
	0% {
		transform: scale(0.9);
	}
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
	}
	100% {
		transform: scale(0.9);
		box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
	}
}
@media only screen and (max-width: 750px) {
	.content {
		display: flex;
		flex-direction: column;
	
		
	}
	.contentTxt {
		width: 94%;
		
	}
	.formContain {
		display: flex;
		flex-direction: column;
		width: 100%;
		padding: 2vw;
	}
	.Bkgcontain {
		position: relative;
		width: 100%;
		height: 100%;
		margin-top:7vw;
		margin-bottom: 8vw;
		top:0;
		background: rgb(9,9,121);
	background: linear-gradient(90deg, rgba(61,85,124,1.00) 26%, rgba(1,132,200,1.00) 89%);
		
	}
	#contact-form {
		margin: 2vw 0 2vw -8vw;
		padding: 2vw 0;
		align-self: center;
	}

  }