<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

/* responsive form */

input[type=text],
input[type=email],
input[type=url],
input[type=tel]
 {
	max-width:500px;
	width: 100%;
	padding: 10px;	
	border: 1px solid #191010;
	font-family: "Liberation sans", Arial, Helvetica, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.2em; 
	 margin-bottom:15px;
	 display: inline-block;
}

textarea{
	max-width:500px;
	width: 100%;
	border: 1px solid #191010;	
	font-family: "Liberation sans", Arial, Helvetica, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.2em; 
	margin-bottom:15px;
	padding:10px;
	resize: none;
	display: inline-block;
  }

select {
	max-width:500px;
	width: 100%;
	border: 1px solid #191010;	
	font-family: "Liberation sans", Arial, Helvetica, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.2em; 
	margin-bottom:15px;
	padding:10px;	
	color:#191010;
	display: inline-block;
	background: #ffffff;
}


select[multiple] option:checked { background: none; }

select option:focus,
select option:hover,
select option:active ,
select option {
	background:#191010;
	color: #fff;
}

input[type=submit]{
	font-family: "Liberation sans", Arial, Helvetica, sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 1.2px;
	text-transform: none;
	font-size:1.6em;
	margin-top:15px;
	display:inline-block;
	border-radius:5px;
	border:none;
	padding:8px 12px;
	background: #22489D;
	color:#fff;
	transition: 0.5s;
}

input[type=submit]:hover{
	background: #0B0C4F;
	color:#fff;
	transition: 0.5s;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #191010;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #191010;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #191010;
}

.name_2{
	display: none !important;
}
</pre></body></html>