<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.contact form {
	margin-top:-15px;
}

.contact input:-webkit-autofill,
.contact input:-webkit-autofill:hover,
.contact input:-webkit-autofill:focus,
.contact input:-webkit-autofill:active {
 -webkit-transition-delay:9999s;
 -webkit-transition:color 9999s ease-out, background-color 9999s ease-out;
}

.contact .input {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin: 1em;
	margin-left:0;
	margin-bottom:0;
	max-width: 1000px;
	width: calc(100% - 2em);
	vertical-align: top;
}

.contact .input__field {
	position: relative;
	display: block;
	float: right;
	padding: 0.8em;
	width: 60%;
	border: none;
	border-radius: 0;
	background: transparent;
	color: #000;
	-webkit-appearance: none; /* for box shadows to show on iOS */
}

.contact .input__field:focus {
	outline: none;
}

.contact .input__label {
	display: inline-block;
	float: right;
	padding: 0;
	width: 40%;
	color: #000;
	font-size: 100%;
	font-weight:normal;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.contact .input__label-content {
	position: relative;
	display: block;
	padding: 1.6em 0;
	width: 100%;
}

.contact .btn-primary {
	display:inline-block;
	width:auto;
	font-family:'ralewaymedium';
	font-size:100%;
	color:#000;
	background-color:transparent;
	margin-top:15px;
	padding:12px 50px;
	border:2px solid #000;
	border-radius:0;
}
.contact .btn-primary:hover,
.contact .btn-primary:focus,
.contact .btn-primary:active,
.contact .btn-primary.active,
.contact .open .dropdown-toggle.btn-primary {
	color:#fff;
	background-color:#000;
}
@media screen and (max-width: 767px) {
	.contact .btn-primary {
		float:none;
		width:100%;
		padding:10px 15px;
	}
}

/* Fumi */

.contact .input--fumi {
	width:100%;
	background: transparent;
	overflow: hidden;
	padding: 0;
	border: 0;	
	border-bottom: 2px solid #000;
	border-radius: 0;
}

.contact .input__field--fumi {
	background: transparent;
	padding: 1.5em 1em 0.25em 0em;
	width: 100%;
	color: #000;
}

.contact .input__label--fumi {
	position: absolute;
	width: 100%;
	text-align: left;
	padding-left: 0;
	pointer-events: none;
}

.contact .icon--fumi {
	width: 2em;
	position: absolute;
	top: 0;
	left: 0;
	padding: 1em 0 0 0.5em;
}

.contact .input__label-content--fumi {
	padding: 1.7em 0;
	display: inline-block;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}

.contact .input__label-content--fumi span {
	display: inline-block;
}

.contact .input__field--fumi:focus + .input__label--fumi .input__label-content--fumi,
.contact .input--filled .input__label-content--fumi {
	-webkit-animation: anim-fumi-1 0.3s forwards;
	animation: anim-fumi-1 0.3s forwards;
}

@-webkit-keyframes anim-fumi-1 {
	50% {
		-webkit-transform: translate3d(0, 3em, 0);
		transform: translate3d(0, 3em, 0);
	}
	51% {
		-webkit-transform: translate3d(0, -3em, 0) scale3d(0.85, 0.85, 1);
		transform: translate3d(0, -3em, 0) scale3d(0.85, 0.85, 1);
	}
	100% {
		color: #000;
		-webkit-transform: translate3d(0, -1.1em, 0) scale3d(0.85, 0.85, 1);
		transform: translate3d(0, -1.1em, 0) scale3d(0.85, 0.85, 1);
	}
}

@keyframes anim-fumi-1 {
	50% {
		-webkit-transform: translate3d(0, 3em, 0);
		transform: translate3d(0, 3em, 0);
	}
	51% {
		-webkit-transform: translate3d(0, -3em, 0) scale3d(0.85, 0.85, 1);
		transform: translate3d(0, -3em, 0) scale3d(0.85, 0.85, 1);
	}
	100% {
		color: #000;
		-webkit-transform: translate3d(0, -1.1em, 0) scale3d(0.85, 0.85, 1);
		transform: translate3d(0, -1.1em, 0) scale3d(0.85, 0.85, 1);
	}
}


.contact .input__field--fumi:focus + .input__label--fumi .icon--fumi,
.contact .input--filled .icon--fumi {
	-webkit-animation: anim-fumi-2 0.3s forwards;
	animation: anim-fumi-2 0.3s forwards;
}

@-webkit-keyframes anim-fumi-2 {
	50% {
		opacity: 1;
		-webkit-transform: translate3d(0, -3em, 0);
		transform: translate3d(0, -3em, 0);
	}
	50.25% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3em, 0);
		transform: translate3d(0, -3em, 0);
	}
	50.75% {
		opacity: 0;
		-webkit-transform: translate3d(0, 3em, 0);
		transform: translate3d(0, 3em, 0);
	}
	51% {
		opacity: 1;
		-webkit-transform: translate3d(0, 3em, 0);
		transform: translate3d(0, 3em, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		color: #000;
	}
}

@keyframes anim-fumi-2 {
	50% {
		opacity: 1;
		-webkit-transform: translate3d(0, -3em, 0);
		transform: translate3d(0, -3em, 0);
	}
	50.25% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3em, 0);
		transform: translate3d(0, -3em, 0);
	}
	50.75% {
		opacity: 0;
		-webkit-transform: translate3d(0, 3em, 0);
		transform: translate3d(0, 3em, 0);
	}
	51% {
		opacity: 1;
		-webkit-transform: translate3d(0, 3em, 0);
		transform: translate3d(0, 3em, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		color: #000;
	}
}</pre></body></html>