* {
	margin: 0;
	padding: 0;
	font-family: 'gilroy-regular';
}

:root {
	--yellow: #FFCB00;
}

header {
	width: 100%;
	height: 320px;
	background: var(--yellow);
	float: left;
	display: flex;
	justify-content: center;
	flex-flow: column;
	align-items: center;
	gap: 20px;
	box-sizing: border-box;
	padding-top: 20px;
	float: left;
}

header div {
	display: flex;
	justify-content: center;
	justify-items: center;
	align-content: center;
	align-items: center;
	flex-direction: column;
}

h1 {
	font-family: 'gilroy-bold';
}

h2 {
	font-family: 'gilroy-bold';
	margin-bottom: 25px;
}

p a {
	color: #df0704;
	text-underline-offset: 2px;
}

.mb-0 {
	margin-bottom: 0;
}

.relative-image {
	position: relative;
	top: 40px;
}

.wrapper {
	width: 94%;
	max-width: 1180px;
	margin: 0 auto;
}

.text-center {
	text-align: center;
}

.mt-50 {
	margin-top: 50px;
}

.mt-25 {
	margin-top: 25px;
}

.form {
	width: 100%;
	text-align: center;
}

.input {
	width: 100%;
	max-width: calc(100% - 40px);
	display: inline-block;
}

.text-left {
	text-align: left;
}

.space-between {
	justify-content: space-between;
}

.input label {
	display: block;
	margin-bottom: 10px;
	font-family: 'gilroy-bold';
	font-size: 18px;
	margin-top: 25px;
}

.input input {
	margin-bottom: 25px;
	width: 100%;
	height: 66px;
	display: block;
	box-sizing: border-box;
	padding: 10px;
	line-height: 66px;
	font-family: 'gilroy-bold';
	font-size: 24px;
	border: none;
	background: #E8E8E8;
	text-align: center;
	border-radius: 10px;
	outline: none !important;
}

.form .button {
	font-size: 16px;
	width: 100%;
}

.headline {
	font-family: 'gilroy-bold';
	font-size: 24px;
	margin-bottom: 30px;	
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

textarea {
	width: 100%;
	height: 130px;
	resize: none;
	background: #E8E8E8;
	border-radius: 45px;
	border: 0;
	outline: none;
	box-sizing: border-box;
	padding: 30px;
}

section {
	margin-top: 150px;
	float: left;
	clear: both;
	width: 100%;
	margin-bottom: 50px;
}

fieldset {
	border: 1px solid #E1E1E1;
	border-radius: 45px;
	padding: 50px;
	box-sizing: border-box;
	margin-bottom: 25px;
	text-align: center;
}

.nps-item {
	text-decoration: none; 
	font-size: 14px; 
	font-family: 'gilroy-bold';
	gap: 4px; 
	display: flex;
	align-items: center;
	flex-flow: column; 
	color: #000;
	position: relative;
	cursor: pointer;
	transition: .3s all ease-in-out;
}

.hide {
	opacity: .5;
}

.nps-item.active img {
	transform: scale(1.05);
	filter: drop-shadow(0 4px 2px rgba(0,0,0,0.25));
}

.nps-holder {
	display: flex; 
	justify-content: space-between; 
	gap: 5px; 
	max-width: 980px; 
	width: 100%; 
	flex-flow: wrap; 
	margin-bottom: 10px;
	margin: 40px auto;
}

.nps-holder strong {
	font-family: 'gilroy-bold';
}

.space-between {
	justify-content: space-between
}

.radio-group {
  display: flex;
  gap: 20px;
  text-align: left;
}

.radio-wrapper {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 18px;
  user-select: none;
  color: #333;
}

.radio-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.custom-radio {
  position: absolute;
  left: 0;
  top: 2px;
  height: 20px;
  width: 20px;
  background-color: #D9D9D9;
  border: 2px solid #D9D9D9;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.radio-wrapper input:checked ~ .custom-radio {
  border-color: #3cb371;
  background-color: #3cb371;
}

.custom-radio::after {
  content: "";
  position: absolute;
  display: none;
}

.radio-wrapper input:checked ~ .custom-radio::after {
  display: block;
}

.radio-wrapper .custom-radio::after {
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.flex-column {
	flex-direction: column;
}

.button {
	background: var(--yellow);
	color: #000;
	padding: 14px 55px;
	box-shadow: 0 2px 4px 0 rgba(0,0,0,.25);
	display: block;
	margin: 0 auto;
	cursor: pointer;
	border: 0;
	font-size: 30px;
	font-family: 'gilroy-bold';
	border-radius: 50px;
	transition: .3s all ease-in-out;
}

.button:hover {
	background: #d50000;
	color: #fff;
}

.box-links {
	display: flex;
	max-width: 700px;
	gap: 20px;
	margin: 20px auto;
}

.box-links img {
	max-width: 340px;
}

.none {
	display: none !important;
}

.on-mobile {
	display: none;
}

.disabled {
	opacity: .5;
	pointer-events: none;
}

.dz-default {
	margin: 0 !important;
}

.dropzone {
	border-radius: 15px;
	border: 2px dashed rgba(0,0,0,.2) !important;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}

@media (max-width: 1000px) {
	header {
		height: 190px;
		padding: 10px 20px;
		display: block;
	}
	
	header div {
		display: flex;
		flex-flow: row;
		justify-content: space-between;
	}
	
	header h1 {
		top: 0;
		font-size: 28px;
	}
	
	header img {
		width: 100px;
		min-width: 100px;
		max-width: 100px;
		height: auto;
		top: 20px !important;
	}
	
	header img:first-child {
		height: 50px;
		width: auto;
		max-width: 200px;
		display: block;
		margin: 0 auto;
	}
	
	section {
		margin-top: 50px;
	}
	
	fieldset {
		padding: 30px;
	}
	
	h2 {
		font-size: 21px;
	}
	
	.on-desktop {
		display: none !important;
	}
	
	.on-mobile {
		display: block;
	}
	
	.nps-holder,
	.radio-group.space-between {
		grid-template-columns: repeat(5, 1fr);
		display: grid;
	}
	
	.nps-item img {
		width: 55px;
		margin-bottom: 10px;
	}
	
	.nps-holder {
		margin-bottom: 10px;
	}
	
	.nps-holder.space-between {
		display: flex;
		text-align: center;
		margin-top: 20px;
		margin-bottom: 50px;
	}
	
	.box-links img {
		max-width: 100%;
	}
	
	.mobile-none {
		display: none !important;
	}
	
	header img.relative-image {
		height: 120px !important;
		width: auto !important;
	}
}



















