/***
    The new CSS reset - version 1.7.3 (last updated 7.8.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
	all: unset;
	display: revert;
}

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

/* Reapply the pointer cursor for anchor tags */
a, button {
	cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
	list-style: none;
}

/* For images to not be able to exceed their container */
img {
	max-width: 100%;
}

/* removes spacing between cells in tables */
table {
	border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
	-webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
	white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
	-webkit-appearance: revert;
	appearance: revert;
}

/* reset default text opacity of input placeholder */
::placeholder {
	color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
	display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
	-moz-user-modify: read-write;
	-webkit-user-modify: read-write;
	overflow-wrap: break-word;
	-webkit-line-break: after-white-space;
	-webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
	-webkit-user-drag: element;
}

input, textarea {
	border: 0px solid;
}

@font-face {
	font-family: Porsche;
	src: url(assets/fonts/Regular.woff) format("woff"), url(/fonts/Regular.ttf) format("ttf");
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: Porsche;
	src: url(assets/fonts/Bold.woff) format("woff"), url(/fonts/Bold.ttf) format("ttf");
	font-weight: 700;
	font-display: swap;
}

@font-face {
	font-family: Porsche;
	src: url(assets/fonts/Italic.woff) format("woff"), url(/fonts/Italic.ttf) format("ttf");
	font-weight: 400;
	font-display: swap;
	font-style: italic;
}

@font-face {
	font-family: Porsche;
	src: url(assets/fonts/Boldtalic.woff) format("woff"), url(/fonts/Boldtalic.ttf) format("ttf");
	font-weight: 700;
	font-display: swap;
	font-style: italic;
}

html {
	font-size: 10px;
	font-family: Porsche, sans-serif;
}

* {
	font-family: Porsche, sans-serif;
}

body {
	min-width: 100%;
	min-height: 100vh;
	background-image: url("assets/png/survey-bg.png");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
}

body .overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #000000aa;
}

body.page .overlay {
	background-color: #ffffffdd;
}

body #page {
	min-height: calc( 100vh - 5rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 5rem 2rem;
}

body #page .site-main {
	position: relative;
	z-index: 2;
}

body footer {
	height: 5rem;
	background-color: #efefef;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	position: relative;
	z-index: 2;
	font-size: 1.6em;
	color: #444;
}

.site-main {
	position: relative;
	z-index: 2;
}

.site-main.index {
	text-align: center;
}

.site-main.index h1 {
	font-size: 3.6em;
	font-weight: 700;
	color: #fff;
	margin: 1.5rem auto 30px;
}

.site-main.index p {
	color: #fff;
	font-size: 1.6em;
}

.site-main.index .survey-buttons {
	margin-top: 5rem;
}

.site-main.index .survey-buttons .btn {
	background-color: #f82d2d;
	color: #fff;
	width: 24rem;
	text-align: center;
	padding: 1.5rem 2rem;
	margin: 0 auto 2rem;
	position: relative;
	font-size: 1.6em;
}

.site-main.index .survey-buttons .btn span {
	display: inline-block;
}

.site-main.index .survey-buttons .btn span::after {
	content: '';
	display: inline-block;
	width: 18.5px;
	height: 14.5px;
	background-image: url(assets/svg/arr-right.svg);
	background-repeat: no-repeat;
	background-position: center;
	margin-left: 3rem;
}

.site-main.index .survey-buttons .btn a {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.nf-form-title {
	display: none;
}

.nf-form-wrap {
	max-width: 60rem;
	margin: auto;
}

.nf-form-wrap .nf-form-fields-required {
	font-size: 1.6rem;
	padding: 5px;
	margin-bottom: -1rem;
}

.nf-form-wrap .nf-progress-container {
	height: 5px;
	margin-bottom: 5rem;
}

.nf-form-wrap .nf-progress-container .nf-progress {
	background-color: #f82d2d;
	height: 5px;
}

.nf-form-wrap .nf-error-msg {
	font-size: 1.6rem;
}

.nf-form-wrap nf-field label {
	font-size: 1.6rem;
}

.nf-form-wrap nf-field .nf-field-container {
	margin-bottom: 7rem;
}

.nf-form-wrap nf-field .nf-field-container.section-head {
	margin-bottom: 3rem;
}

.nf-form-wrap nf-field .nf-field-container.section-head p {
	font-size: 1.6rem;
	font-weight: 700;
}

.nf-form-wrap nf-field .nf-field-container.section-head .nf-field-element {
	padding-left: 0;
}

.nf-form-wrap nf-field .nf-field-container.section-head-top-margin {
	margin-top: 7rem;
	margin-bottom: 3rem;
}

.nf-form-wrap nf-field .nf-field-container.section-head-top-margin p {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5em;
}

.nf-form-wrap nf-field .nf-field-container.section-head-top-margin .nf-field-element {
	padding-left: 0;
}

.nf-form-wrap nf-field .nf-field-container.top-margin {
	margin-top: 7rem;
}

.nf-form-wrap nf-field .nf-field-container.disclaimer {
	margin-bottom: 0;
}

.nf-form-wrap nf-field .nf-field-container.disclaimer p {
	font-size: 1.6rem;
	margin-bottom: 1rem;
	line-height: 1.5em;
}

.nf-form-wrap nf-field .nf-field-container.disclaimer .nf-field-element {
	padding-left: 0;
}

.nf-form-wrap nf-field .nf-field-container.submit-btn .nf-field-element {
	padding-left: 0;
}

.nf-form-wrap nf-field .nf-field-container.submit-btn input[type=submit] {
	background-color: #f82d2d;
	margin-left: auto;
	display: block;
}

.nf-form-wrap nf-field .nf-field-container.submit-btn input[type=submit]:hover {
	background-color: #c12323;
	color: #fff;
}

@media screen and (max-width: 450px) {
	.nf-form-wrap nf-field .nf-field-container.section-entry .nf-field-element {
		padding-left: 0;
	}
}

.nf-form-wrap nf-field .nf-field-container .nf-field-label {
	margin-bottom: 3rem;
}

.nf-form-wrap nf-field .nf-field-container .nf-field-label .nf-label-span {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5em;
}

.nf-form-wrap nf-field .nf-field-container .nf-field-element {
	padding-left: 3rem;
}

.nf-form-wrap nf-field .nf-field-container .nf-field-element label {
	font-size: 1.6em;
	font-weight: 400;
	margin-left: 4rem !important;
}

.nf-form-wrap nf-field .nf-field-container .nf-field-element label::after {
	border-radius: 0;
}

.nf-form-wrap nf-field .nf-field-container .nf-field-element input[type="radio"] {
	display: none;
}

.nf-form-wrap nf-field .section-entry.nf-field-container {
	margin-bottom: 3rem;
}

.nf-form-wrap nf-field .section-entry.nf-field-container .nf-field {
	padding-left: 3rem;
}

.nf-form-wrap nf-field .section-entry.nf-field-container .nf-field .nf-field-label {
	margin-bottom: 1rem;
}

.nf-form-wrap .listcheckbox-wrap .nf-field-element label:before {
	content: '';
}

.nf-form-wrap .listcheckbox-wrap .nf-field-element label.nf-checked-label:before {
	content: '';
	left: -2.4rem;
	border-radius: 0;
	background-color: #f82d2d;
	width: 10px;
	height: 10px;
	top: 7px;
}

.nf-form-wrap .listradio-wrap .nf-field-element label, .nf-form-wrap .listcheckbox-wrap .nf-field-element label {
	cursor: pointer;
}

.nf-form-wrap .listradio-wrap .nf-field-element label::after, .nf-form-wrap .listcheckbox-wrap .nf-field-element label::after {
	left: -4rem;
	border-radius: 0;
	border: 0;
	box-shadow: 5px 2px 24px -2px rgba(0, 0, 0, 0.6);
}

.nf-form-wrap .listradio-wrap .nf-field-element label.nf-checked-label::before, .nf-form-wrap .listcheckbox-wrap .nf-field-element label.nf-checked-label::before {
	left: -3.6rem;
	border-radius: 0;
	background-color: #f82d2d;
}

.nf-form-wrap .checkbox-wrap input {
	cursor: pointer;
}

.nf-form-wrap .checkbox-wrap .nf-field-label {
	margin-left: 4rem !important;
}

.nf-form-wrap .checkbox-wrap .nf-field-label label {
	cursor: pointer;
}

.nf-form-wrap .checkbox-wrap .nf-field-label label::after {
	left: -4rem;
	border-radius: 0;
	border: 0;
	box-shadow: 5px 2px 24px -2px rgba(0, 0, 0, 0.6);
}

.nf-form-wrap .checkbox-wrap .nf-field-label label:before {
	content: '';
}

.nf-form-wrap .checkbox-wrap .nf-field-label label.nf-checked-label::before {
	left: -3.6rem;
	border-radius: 0;
	background-color: #f82d2d;
	width: 10px;
	height: 10px;
	top: 4px;
}

.nf-form-wrap .nf-next-previous .nf-next {
	background-color: #f82d2d;
	cursor: pointer;
	padding: 1.5rem 8.5rem 1.5rem 4.5rem;
	background-image: url(assets/svg/arr-right.svg);
	background-repeat: no-repeat;
	background-position: right 40px center;
}

@media screen and (max-width: 450px) {
	.nf-form-wrap .nf-next-previous .nf-next {
		padding: 1.5rem 3.5rem 1.5rem 1.5rem;
		background-position: right 13px center;
	}
}

.nf-form-wrap .nf-next-previous .nf-next:hover {
	background-position: right 40px center;
	background-image: url(assets/svg/arr-right.svg);
	background-repeat: no-repeat;
}

@media screen and (max-width: 450px) {
	.nf-form-wrap .nf-next-previous .nf-next:hover {
		background-position: right 13px center;
	}
}

.nf-form-wrap .nf-next-previous .nf-previous {
	cursor: pointer;
	padding: 1.5rem 4.5rem 1.5rem 8.5rem;
	background-image: url(assets/svg/arr-left.svg);
	background-repeat: no-repeat;
	background-position: left 40px center;
}

@media screen and (max-width: 450px) {
	.nf-form-wrap .nf-next-previous .nf-previous {
		padding: 1.5rem 1.5rem 1.5rem 3.5rem;
		background-position: left 13px center;
	}
}

.nf-form-wrap .nf-next-previous .nf-previous:hover {
	background-image: url(assets/svg/arr-left.svg);
	background-repeat: no-repeat;
	background-position: left 40px center;
}

@media screen and (max-width: 450px) {
	.nf-form-wrap .nf-next-previous .nf-previous:hover {
		background-position: left 13px center;
	}
}

.nf-form-wrap .submit-container {
	height: 0;
	margin-bottom: -18px !important;
	width: 100px;
	margin-left: auto;
	cursor: pointer;
	/* @media screen and (max-width: 800px) {
            margin-bottom: -8px!important;
        } */
}

.nf-form-wrap .submit-container .nf-field-label {
	display: none;
}

.nf-response-msg {
	font-size: 3rem;
}

/*# sourceMappingURL=style.css.map */