html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}body{line-height:1;}ol,ul{list-style:none;}blockquote,q{quotes:none;}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}table{border-collapse:collapse;border-spacing:0;}body{-webkit-text-size-adjust:none}mark{background-color:transparent;color:inherit}input::-moz-focus-inner{border:0;padding:0}input[type="text"],input[type="email"],input[type="password"],select,textarea{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none}

*, *:before, *:after {
	box-sizing: border-box;
}

body {
	line-height: 1.0;
	min-height: var(--viewport-height);
	min-width: 320px;
	overflow-x: hidden;
	word-wrap: break-word;
}

body:before {
	content: '';
	display: block;
	background-attachment: scroll;
	height: var(--background-height);
	left: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	transform: scale(1);
	width: calc(100% - 48rem);
	z-index: 0;
	right: auto;
	background-image: url('images/bg.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	background-color: #FFFFFF;
}

body:after {
	background-color: #36D1B5;
	content: '';
	display: block;
	height: 100%;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	transform: scale(1);
	transition: opacity 2s ease-in-out 0.375s, visibility 2s 0.375s;
	visibility: hidden;
	width: 100%;
	z-index: 1;
}

body.is-loading:after {
	opacity: 1;
	visibility: visible;
}

:root {
	--background-height: 100vh;
	--site-language-alignment: left;
	--site-language-direction: ltr;
	--site-language-flex-alignment: flex-start;
	--site-language-indent-left: 1;
	--site-language-indent-right: 0;
	--viewport-height: 100vh;
}

html {
	font-size: 16pt;
}

u {
	text-decoration: underline;
}

strong {
	color: inherit;
	font-weight: bolder;
}

em {
	font-style: italic;
}

code {
	background-color: rgba(144,144,144,0.25);
	border-radius: 0.25em;
	font-family: 'Lucida Console', 'Courier New', monospace;
	font-size: 0.9em;
	font-weight: normal;
	letter-spacing: 0;
	margin: 0 0.25em;
	padding: 0.25em 0.5em;
	text-indent: 0;
}

mark {
	background-color: rgba(144,144,144,0.25);
}

spoiler-text {
	-webkit-text-stroke: 0;
	background-color: rgba(32,32,32,0.75);
	text-shadow: none;
	text-stroke: 0;
	color: transparent;
	cursor: pointer;
	transition: color 0.1s ease-in-out;
}

spoiler-text.active {
	color: #FFFFFF;
	cursor: text;
}

s {
	text-decoration: line-through;
}

sub {
	font-size: smaller;
	vertical-align: sub;
}

sup {
	font-size: smaller;
	vertical-align: super;
}

a {
	color: inherit;
	text-decoration: underline;
	transition: color 0.25s ease;
}

#wrapper {
	-webkit-overflow-scrolling: touch;
	align-items: stretch;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	min-height: var(--viewport-height);
	overflow: hidden;
	position: relative;
	z-index: 2;
	padding: 0 0 0 7.5rem;
}

#main {
	--alignment: var(--site-language-alignment);
	--flex-alignment: var(--site-language-flex-alignment);
	--indent-left: var(--site-language-indent-left);
	--indent-right: var(--site-language-indent-right);
	--border-radius-tl: 0;
	--border-radius-tr: 0;
	--border-radius-br: 0;
	--border-radius-bl: 0;
	align-items: center;
	display: flex;
	flex-grow: 0;
	flex-shrink: 0;
	justify-content: center;
	max-width: 100%;
	position: relative;
	text-align: var(--alignment);
	z-index: 1;
	background-image: linear-gradient(45deg, rgba(31,43,55,1) 0%, rgba(31,43,56,1) 44%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
}

#main > .inner {
	--padding-horizontal: 10rem;
	--padding-vertical: 8rem;
	--spacing: 1.25rem;
	--width: 48rem;
	border-radius: var(--border-radius-tl) var(--border-radius-tr) var(--border-radius-br) var(--border-radius-bl);
	max-width: 100%;
	position: relative;
	width: var(--width);
	z-index: 1;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#main > .inner > * {
	margin-top: var(--spacing);
	margin-bottom: var(--spacing);
}

#main > .inner > :first-child {
	margin-top: 0 !important;
}

#main > .inner > :last-child {
	margin-bottom: 0 !important;
}

#main > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
	width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
}

#main > .inner > .full:first-child {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#main > .inner > .full:last-child {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#main > .inner > .full.screen {
	border-radius: 0 !important;
	max-width: 100vw;
	position: relative;
	width: 100vw;
	left: auto;
	margin-left: calc(-100vw + var(--padding-horizontal));
	right: -100%;
}

body.is-instant #main, body.is-instant #main > .inner > *,body.is-instant #main > .inner > section > *  {
	transition: none !important;
}

body.is-instant:after {
	display: none !important;
	transition: none !important;
}

.image {
	display: block;
	line-height: 0;
	max-width: 100%;
	position: relative;
}

.image .frame {
	-webkit-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	vertical-align: top;
	width: 100%;
}

.image .frame img {
	border-radius: 0 !important;
	max-width: 100%;
	vertical-align: top;
	width: inherit;
}

.image.full .frame {
	display: block;
}

.image.full:first-child .frame {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.image.full:last-child .frame {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#image03 {
	text-align: center;
}

#image03 .frame {
	width: 18.5rem;
	transition: none;
}

#image03 .frame img {
	transition: none;
}

h1, h2, h3, p {
	direction: var(--site-language-direction);
	position: relative;
}

h1 span.p, h2 span.p, h3 span.p, p span.p {
	display: block;
	position: relative;
}

h1 span[style], h2 span[style], h3 span[style], p span[style], h1 strong, h2 strong, h3 strong, p strong, h1 a, h2 a, h3 a, p a, h1 code, h2 code, h3 code, p code, h1 mark, h2 mark, h3 mark, p mark, h1 spoiler-text, h2 spoiler-text, h3 spoiler-text, p spoiler-text {
	-webkit-text-fill-color: currentcolor;
}

h1.style2:not(:first-child), h2.style2:not(:first-child), h3.style2:not(:first-child), p.style2:not(:first-child) {
	margin-top: 2.125rem !important;
}

h1.style2:not(:last-child), h2.style2:not(:last-child), h3.style2:not(:last-child), p.style2:not(:last-child) {
	margin-bottom: 2.125rem !important;
}

h1.style2, h2.style2, h3.style2, p.style2 {
	text-align: justify;
	color: #FFFFFF;
	font-family: 'Karla', sans-serif;
	font-size: 1em;
	line-height: 1.75;
	font-weight: 400;
}

h1.style2 u, h2.style2 u, h3.style2 u, p.style2 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36D1B5;
}

h1.style2 a, h2.style2 a, h3.style2 a, p.style2 a {
	text-decoration: underline;
}

h1.style2 a:hover, h2.style2 a:hover, h3.style2 a:hover, p.style2 a:hover {
	text-decoration: none;
}

h1.style2 span.p:nth-child(n + 2), h2.style2 span.p:nth-child(n + 2), h3.style2 span.p:nth-child(n + 2), p.style2 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

form {
	display: flex;
	justify-content: var(--flex-alignment);
}

form .inner {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	max-width: 100%;
}

form label {
	direction: var(--site-language-direction);
	display: block;
}

form .field button {
	align-items: center;
	background-color: transparent;
	border: 0;
	cursor: pointer;
	display: flex;
	justify-content: center;
}

form .field button > svg {
	height: 50%;
	min-width: 100%;
}

form input[type="text"], form input[type="email"], form input[type="password"], form input[type="tel"], form input[type="number"], form textarea, form select, form .file {
	background-color: transparent;
	border: 0;
	direction: var(--site-language-direction);
	display: block;
	outline: 0;
	text-align: var(--site-language-alignment);
	width: 100%;
}

form input[type="tel"] {
	-webkit-appearance: none;
}

form textarea {
	height: 10rem;
	line-height: normal;
}

form select {
	background-repeat: no-repeat;
	background-size: 1rem;
	text-overflow: ellipsis;
	-webkit-appearance: none;
}

form select option {
	background-color: white;
	color: black;
}

form select::-ms-expand {
	display: none;
}

form input[type="checkbox"] {
	-webkit-appearance: none;
	display: block;
	float: left;
	margin-right: -2rem;
	opacity: 0;
	width: 1rem;
	z-index: -1;
}

form input[type="checkbox"] + label {
	align-items: center;
	display: inline-flex;
	line-height: 1.6;
	text-align: left;
}

form input[type="checkbox"] + label:before {
	background-position: center;
	background-repeat: no-repeat;
	content: '';
	cursor: pointer;
	display: inline-block;
	flex-grow: 0;
	flex-shrink: 0;
	vertical-align: middle;
}

form input[type="number"] {
	-webkit-appearance: none;
	-moz-appearance: textfield;
}

form input[type="number"]::-webkit-inner-spin-button, form input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
}

form .number {
	position: relative;
}

form .number > input[type="number"] {
	text-align: center;
}

form .number > button {
	position: absolute;
}

form .field .number > button > svg {
	height: 40%;
}

form .file {
	position: relative;
}

form .file > button {
	position: absolute;
}

form .file > input[type="file"] {
	cursor: pointer;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

form .file[data-filename]:before {
	background-repeat: no-repeat;
	content: attr(data-filename);
	display: block;
	height: 100%;
	overflow: hidden;
	position: absolute;
	text-overflow: ellipsis;
	top: 0;
	white-space: nowrap;
}

form .file[data-filename=""]:before {
	background-image: none !important;
	content: attr(data-placeholder);
	padding-left: 0 !important;
}

form .field .file > button > svg {
	height: 53%;
}

form .actions {
	max-width: 100%;
}

form .actions button {
	align-items: center;
	background-color: transparent;
	border: 0;
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	max-width: 100%;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
}

form .actions button:disabled {
	cursor: default;
	opacity: 0.35;
	pointer-events: none;
}

@keyframes button-spinner {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

form.style1:not(:first-child) {
	margin-top: 2rem !important;
}

form.style1:not(:last-child) {
	margin-bottom: 2rem !important;
}

form.style1 .inner > * {
	margin: 1.25rem 0 0 0;
	max-width: 100%;
}

form.style1 .inner > :first-child {
	margin: 0;
}

form.style1 .inner {
	width: 100%;
}

form.style1 label:first-child {
	margin: 0.25rem 0 0.9375rem 0;
	font-size: 1em;
	line-height: 1.5;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	color: #535861;
}

form.style1 .field button {
	background-size: 1.3rem;
	height: 2.6rem;
	line-height: 2.6rem;
	width: 2.6rem;
	border-radius: 0.24rem;
	background-color: #43E6C8;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

form.style1 .field button svg {
	fill: rgba(0,0,0,0.451);
	transition: fill 0.25s ease;
}

form.style1 input[type="text"], form.style1 input[type="email"], form.style1 input[type="password"], form.style1 input[type="tel"], form.style1 input[type="number"], form.style1 textarea, form.style1 select, form.style1 input[type="checkbox"] + label, form.style1 .file {
	font-size: 1em;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	border-radius: 0.375rem;
}

form.style1 input[type="text"], form.style1 input[type="email"], form.style1 input[type="password"], form.style1 input[type="tel"], form.style1 input[type="number"], form.style1 textarea, form.style1 select, form.style1 .file {
	color: #7B808A;
	border: solid 2px #EBEEF5;
}

form.style1 input[type="text"]:focus, form.style1 input[type="email"]:focus, form.style1 input[type="password"]:focus, form.style1 input[type="tel"]:focus, form.style1 input[type="number"]:focus, form.style1 textarea:focus, form.style1 select:focus, form.style1 .file.focus {
	border-color: #36D1B5;
	box-shadow: 0 0 0 1px #36D1B5;
}

form.style1 input[type="checkbox"] + label {
	color: #7B808A;
}

form.style1 input[type="text"], form.style1 input[type="email"], form.style1 input[type="password"], form.style1 input[type="tel"], form.style1 input[type="number"], form.style1 select, form.style1 .file {
	height: 3.25rem;
	padding: 0 1.1375rem;
	line-height: calc(3.25rem - 4px);
}

form.style1 textarea {
	padding: 1.1375rem;
	height: 10rem;
	line-height: 1.75;
	padding-top: 0.83125rem;
}

form.style1 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%23EBEEF5' /%3E%3C/svg%3E");
	background-position: calc(100% - 1.1375rem) center;
	padding-right: 3.1875rem;
}

form.style1 input[type="checkbox"] + label:before {
	border-radius: 0.375rem;
	color: #7B808A;
	border: solid 2px #EBEEF5;
	background-size: 1.38125rem;
	height: 2.4375rem;
	width: 2.4375rem;
	margin-right: 1.21875rem;
}

form.style1 input[type="checkbox"]:checked + label:before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%237B808A' /%3E%3C/svg%3E");
}

form.style1 input[type="checkbox"]:focus + label:before {
	border-color: #36D1B5;
	box-shadow: 0 0 0 2px #36D1B5;
}

form.style1 .number > input[type="number"] {
	padding-left: 3.1rem;
	padding-right: 3.1rem;
}

form.style1 .number > button.decrement {
	bottom: calc(0.325rem - 0px);
	left: calc(0.325rem - 0px);
}

form.style1 .number > button.increment {
	bottom: calc(0.325rem - 0px);
	right: calc(0.325rem - 0px);
}

form.style1 .file:before {
	width: calc(100% - 4.3875rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%237B808A' /%3E%3C/svg%3E");
	background-size: 1rem;
	background-position: left;
	padding-left: 1.4rem;
}

form.style1 .file > button {
	bottom: calc(0.325rem - 2px);
	right: calc(0.325rem - 2px);
}

form.style1 .actions button {
	display: inline-flex;
	height: 3.25rem;
	line-height: 3.25rem;
	padding: 0 1.625rem;
	font-size: 1em;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	border-radius: 0.375rem;
	flex-direction: row-reverse;
	background-color: #43E6C8;
	color: rgba(0,0,0,0.451);
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

form.style1 .actions button svg {
	display: block;
	fill: rgba(0,0,0,0.451);
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	min-width: 16px;
	width: 1em;
	margin-left: 0.875rem;
	margin-right: calc(-0.125em + 0rem);
	transition: fill 0.25s ease;
}

form.style1 .actions button:hover {
	transform: scale(1.0425);
}

form.style1 .actions button .label {
	direction: var(--site-language-direction);
	overflow: hidden;
}

form.style1 .inner > :first-child > label:first-child {
	margin-top: 0;
}

form.style1 .actions button:before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICMwMDAwMDA3Mzsgc3Ryb2tlLXdpZHRoOiAycHg7IH08L3N0eWxlPjxkZWZzPjxjbGlwUGF0aCBpZD0iY29ybmVyIj48cG9seWdvbiBwb2ludHM9IjAsMCA0OCwwIDQ4LDQ4IDk2LDQ4IDk2LDk2IDAsOTYiIC8+PC9jbGlwUGF0aD48L2RlZnM+PGcgY2xpcC1wYXRoPSJ1cmwoI2Nvcm5lcikiPjxjaXJjbGUgY3g9IjQ4IiBjeT0iNDgiIHI9IjMyIi8+PC9nPjwvc3ZnPg==');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.4375rem;
	content: '';
	display: block;
	height: 2.4375rem;
	left: 50%;
	margin: -1.21875rem 0 0 -1.21875rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.4375rem;
}

form.style1 .actions button.waiting {
	color: transparent;
}

form.style1 .actions button.waiting svg {
	fill: transparent;
}

form.style1 .actions button.waiting:before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

form.style1 ::-webkit-input-placeholder {
	color: #7B808A;
	opacity: 0.55;
}

form.style1 :-moz-placeholder {
	color: #7B808A;
	opacity: 0.55;
}

form.style1 ::-moz-placeholder {
	color: #7B808A;
	opacity: 0.55;
}

form.style1 :-ms-input-placeholder {
	color: #7B808A;
	opacity: 0.55;
}

form.style1 .file[data-filename=""]:before {
	color: #7B808A;
	opacity: 0.55;
}

@media (max-width: 1920px) {
	body:before {
		width: calc(100% - 48rem);
	}

	#main > .inner {
		--width: 48rem;
	}
}

@media (max-width: 1680px) {
	html {
		font-size: 12pt;
	}
}

@media (max-width: 1280px) {
	body:before {
		width: calc(100% - 48rem);
	}

	html {
		font-size: 12pt;
	}

	#main > .inner {
		--width: 48rem;
	}
}

@media (max-width: 1024px) {
	body:before {
		width: calc(100% - 48rem);
	}

	#main > .inner {
		--width: 48rem;
	}
}

@media (max-width: 980px) {
	html {
		font-size: 10pt;
	}

	body {
		display: flex;
		flex-direction: column;
		background-color: #1F2B37;
	}

	body:before {
		flex-grow: 1;
		flex-shrink: 0;
		max-height: 35vh;
		overflow: hidden;
		position: relative;
		width: 100%;
	}

	#main {
		border-bottom: none;
		border-left: none;
		border-radius: 0;
		border-right: none;
		box-shadow: none;
		width: 100%;
		background-image: linear-gradient(45deg, rgba(31,43,55,1) 0%, rgba(31,43,56,1) 44%);
		background-size: cover;
	}

	#main > .inner {
		background: none;
		max-width: 75%;
		width: auto;
	}

	#wrapper {
		height: auto !important;
		min-height: 0;
		padding: 0;
	}
}

@media (max-width: 736px) {
	html {
		font-size: 11pt;
	}



	#main > .inner {
		--padding-horizontal: 2rem;
		--padding-vertical: 3.5rem;
		--spacing: 1.25rem;
		max-width: 100%;
	}

	#wrapper {
		padding: 0;
	}

	#image03 .frame {
		width: 18.5rem;
	}

	h1.style2:not(:first-child), h2.style2:not(:first-child), h3.style2:not(:first-child), p.style2:not(:first-child) {
		margin-top: 1.59375rem !important;
	}

	h1.style2:not(:last-child), h2.style2:not(:last-child), h3.style2:not(:last-child), p.style2:not(:last-child) {
		margin-bottom: 1.59375rem !important;
	}

	h1.style2, h2.style2, h3.style2, p.style2 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.75;
	}

	form.style1:not(:first-child) {
		margin-top: 1.5rem !important;
	}

	form.style1:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}

	form.style1 label:first-child {
		font-size: 1em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}

	form.style1 input[type="text"], form.style1 input[type="email"], form.style1 input[type="tel"], form.style1 input[type="number"], form.style1 textarea, form.style1 select, form.style1 input[type="checkbox"] + label, form.style1 .file {
		font-size: 1em;
		letter-spacing: 0rem;
	}



	form.style1 textarea {
		line-height: 1.75;
		padding-top: 0.83125rem;
	}

	form.style1 .actions button {
		font-size: 1em;
		letter-spacing: 0rem;
	}

	form.style1 .actions button svg {
		width: 1em;
	}
}

@media (max-width: 480px) {
	#main > .inner {
		--spacing: 1.09375rem;
	}

	#wrapper {
		padding: 0;
	}

	form.style1 .actions button {
		max-width: 32rem;
		width: 100%;
	}
}

@media (max-width: 360px) {
	#main > .inner {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.625rem;
		--spacing: 0.9375rem;
	}

	#wrapper {
		padding: 0;
	}

	h1.style2, h2.style2, h3.style2, p.style2 {
		font-size: 1em;
	}
}

.error {
  opacity: 1;
  transform: none;
  background: #fd5656;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
}
