@charset 'UTF-8';


/* CONTACT FORM FRAME */

.wpcf7 {
	height: auto;
	width: 100%;
		
	margin: 0;
	padding: 50px;
	
	background: hsla(0,0%,95%,1.00);
}

.wpcf7 ::placeholder {
	color:  hsla(0,0%,95%,1.00);
}

#wpcf7-f303-p151-o1 {
	height: auto;
	width: 50%;
	
	position: absolute;
	
	top: 0;
	right: 0;
}

@media screen and (max-width: 1200px) {
	
	.wpcf7 {
		position: absolute;
	}
		
	#wpcf7-f303-p151-o1 {
		height: auto;
		width: 100%;

		position: relative;
		
		padding: 20px;
	}
	
}


/* INPUT FIELDS */

.wpcf7 input, 
.wpcf7 textarea {
	height: auto;
	width: 100%;
	max-width: 100%;
	
	position: relative;
	
	padding: 15px 20px;
	margin: 0;
	
	font-size: 24px;
	
	border: 1px solid white;
	
	box-shadow: none;
	outline: none;
}

.wpcf7 lable {	
	height: auto;
	width: auto;
		
	position: absolute;
	
	top: 0;
	left: 0px;
	
	transform: translateY(-100%);
	
	z-index: 9;
	
	margin: 0;
	padding: 5px 10px;
	
	opacity: 0%;
	
	font-size: 18px;
	color: white;
	
	transition: all .5s ease;
	
	background: #FFE800;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
	border: 1px solid #FFE800;
	transition: all .5s ease;
	
	background: hsla(0,0%,100%,1.00);
	box-shadow: none;
}

.wpcf7 input:focus + lable, 
.wpcf7 textarea:focus ~ lable {
	opacity: 100%;
}

.wpcf7 input:focus :placeholder {
	color: white;
}


/* SUBMIT BUTTON */

.form-submit-input {
	float: right;
	
	margin: 0;
}


/* ALERT */

.wpcf7-response-output {
	padding: 50px;
	
	font-weight: 400;
	font-style: normal;
	
	font-size: 24px;
	line-height: 1.5;
	text-align: left;
}

