html {
	background: #f3f3f3;
	color: #282828;
}

.wrap {
	width: 100%;
	max-width: 1024px;
	margin: auto;
}

header .wrap {
	display: flex;
	align-items: center;
}

header .wrap > div {
	display: flex;
	align-items: center;
}

header .wrap img {
	flex-shrink: 0;
}

#logo {
	display: block;
	margin-right: 5px;
}

header nav {
	margin-right: auto;
}

header nav ul {
	display: flex;
	gap: 30px;
	font-size: 1.125em;
}

header nav ul li a {
	padding-bottom: 5px;
	text-decoration: none;
	border-bottom: 1px solid #000;
	color: #282828;
}

header nav ul li a:hover {
	color: #7f191f;
	border-color: #7f191f;
}

main {
	margin-top: 25px;
}

main .custom_wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: 750px;
}

main h1 {
	color: #7f191f;
	font-size: 3em;
	display: block;
	font-weight: bold;
	line-height: normal;
	text-align: center;
}

main h2 {
	font-size: 1.5em;
	display: block;
	font-weight: bold;
	text-align: center;
}

main .wrap > p {
	font-size: 1.125em;
	margin: 15px 0px;
}

#form_box {
	background: #fff;
	box-shadow: 0px 14px 73px 0px rgba(0, 0, 0, 0.23);
	padding-bottom: 25px;
	width: 100%;
	position: relative;
	margin-top: 65px;
}

#form_box form {
	width: 70%;
	margin: auto;
	padding-top: 75px;
	text-align: center;
	display: flex;
	flex-direction: column;
}

#form_box .rounded {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	width: 130px;
	height: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	right: 0;
	left: 0;
	top: -65px;
	background: #ffffff;
	position: absolute;
	box-shadow: 0px -14px 27px 0px rgba(0, 0, 0, 0.12);
}

#form_box .rounded img {
	flex-shrink: 0;
}

#form_box form p {
	font-size: 1.5em;
	margin-bottom: 15px;
}

#form_box form p.head {
	color: #4ce08e;
	font-weight: bold;
}

#form_box form .screen {
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 15px;
	display: none;
}

#form_box form .screen.current {
	display: flex;
}

#form_box form .screen > label {
	font-size: 1.875em;
}

#form_box form .screen input[type='number'],
#form_box form .screen input[type='text'],
#form_box form .screen input[type='tel']{
	background: #e7e7e7;
	border: 3px solid #dedede;
	font-size: 1.125em;
	text-align: center;
	height: 64px;
	width: 50%;
}

#form_box form .screen .column_radio {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
	font-size: 1.5em;
}

input[type='submit'] {
	height: 92px;
	background: #4ce08e;
	border: 0px;
	color: #fff;
	font-weight: bold;
	font-size: 2.25em;
	width: 100%;
	display: block;
	cursor: pointer;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

input[type='submit']:hover {
	background: #44c67e;
}

input.errorField,
textarea.errorField {
    background-color: #FFBABA !important;
}

main .wrap .note {
	font-size: 0.875em;
	margin: 10px 0px;
	display: block;
}

main .block {
	margin: 35px 0px;
}

main .block h3 {
	text-align: center;
	font-size: 1.5em;
	display: block;
	font-weight: bold;
	margin-bottom: 35px;
}

#faq .body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	align-items: flex-start;
}

#faq .body section {
	width: calc(50% - 15px);
	box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.21);
	background: #fff;
	min-height: 78px;
	cursor: pointer;
	padding: 30px;
}

#faq .body section i {
	font-size: 1.2em;
	font-weight: bold;
	margin-left: 10px;
}

#faq .body section span {
	font-weight: bold;
	font-size: 1.2em;
}

#faq .body section.current span,
#faq .body section.current i{
	color: #7f191f;
}

#faq .body section p {
	display: none;
	width: 100%;
}

#contact {
	padding-bottom: 40px;
}

#contact .body > p {
	font-size: 1.125em;
	text-align: center;
	margin-bottom: 35px;
}

#contact .body form {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

#contact .body form label {
	width: 100%;
	display: flex;
	gap: 15px;
	font-size: 1.2em;
}

#contact .body form label > * {
	flex: 1;
}

#contact .body form label span {
	flex: 0.30;
	font-weight: bold;
}

#contact .body form label input {
    background: #e7e7e7;
    border: 3px solid #dedede;
    font-size: 1.125em;
	text-indent: 15px;
    height: 64px;
}

#back-top {
	font-size: 3em;
	position: fixed;
	bottom: 0vh;
	right: 3vw;
	line-height: normal;
	cursor: pointer;
	color: #7f191f;
	display: none;
}

.custom_radio label {
	position: relative;
	cursor: pointer;
	display: block;
	padding-right: 35px;
}

.custom_radio label input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.custom_radio label .checkmark {
	position: absolute;
	top: calc(50% - 25px / 2);
	right: 0;
	height: 25px;
	width: 25px;
	background-color: #e7e7e7;
	border-radius: 50%;
	border: 3px solid #dedede;
}

.custom_radio label:hover input ~ .checkmark {
	background-color: #ccc;
}

.custom_radio label input:checked ~ .checkmark {
	background-color: #4ce08e;
}

@media only screen and (max-width: 800px) {
	.wrap {
		padding: 0px 10px;
	}
	header .wrap {
		flex-direction: column;
		gap: 15px;
	}
	header nav ul {
		gap: 15px;
	}
	#faq .body {
		gap: 20px;
	}
	#faq .body section {
		width: 100%;
		min-height: auto;
		padding: 20px;
	}
	main .block {
		margin: 15px 0px;
	}
	main .block h3 {
		margin-bottom: 20px;
	}
	#contact {
		padding-bottom: 20px;
	}
	#contact .body form {
		gap: 15px;
	}
	#contact .body form label {
		flex-direction: column;
		gap: 5px;
	}
	#contact .body form label input {
		height: 44px;
	}
	#contact .body form label > * {
		flex: auto;
	}
	input[type='submit'] {
		height: 58px;
		font-size: 1.5em;
	}
	main h1 {
		font-size: 2em;
	}
	header .wrap > div {
		margin-top: 10px;
	}
	header .wrap > div img {
		max-height: 40px;
	}
	#form_box form {
		width: 94%;
	}
	#form_box form .screen {
		gap: 10px;
	}
	#form_box form p {
		font-size: 1.125em;
		margin-bottom: 0;
	}
	#form_box form .screen input[type='number'], 
	#form_box form .screen input[type='text'], 
	#form_box form .screen input[type='tel'] {
		width: 100%;
	}
	#form_box form .screen > label {
		font-size: 1.7em;
		line-height: normal;
	}
}