:root {
	--yellow: #FFCB00;
	--gray: #EEEEEE;
	--dark: #C5C5C5;
	--heavy: #808080;
	--green: #009E54;
	--red: #DF0704;
	--radius: 30px;
}

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

h1 {
	font-family: 'gilroy-bold';
	font-size: 48px;
}

p {
	font-size: 24px;
	line-height: 1.5;
}

.mt-0 {
	margin-top: 0 !important;
}

.mt-30 {
	margin-top: 30px !important;
}

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

.mb-30 {
	margin-bottom: 30px !important;
}

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

.col-left,
.col-right {
	width: 50%;
	float: left;
	box-sizing: border-box;
}

.col-left {
	padding-right: 15px;
}

.col-right {
	padding-left: 15px;
}

.d-flex {
	display: flex;
	align-content: center;
	align-items: center;
}

@media (min-width: 800px) {
	.d-flex-desktop {
		display: flex;
		align-content: center;
		align-items: center;
	}
}

.clearfix {
	width: 100%;
	float: left;
	clear: both;
}

.title {
	background: var(--yellow);
	padding: 15px 30px;
	box-sizing: border-box;
	width: 100%;
	font-size: 32px;
	float: left;
	margin-bottom: 20px;
	font-family: 'gilroy-bold';
	border-radius: var(--radius);
}

.checkboxes {
	width: 100%;
	float: left;
}

.checkbox {
	background: var(--gray);
	border-radius: var(--radius);
	width: 100%;
	float: left;
	box-sizing: border-box;
	font-family: 'gilroy-bold';
	cursor: pointer;
	margin-bottom: 10px;
	padding: 15px 40px;
	display: flex;
	gap: 25px;
	align-items: center;
}

.check {
	width: 25px;
	min-width: 25px;
	max-width: 25px;
	height: 25px;
	background: var(--dark);
	border-radius: 7px;
	box-sizing: border-box;
}

.button {
	width: 94%;
	max-width: 580px;
	background: var(--red);
	border-radius: 18px;
	color: #fff;
	box-sizing: border-box;
	padding: 15px;
	text-align: center;
	cursor: pointer;
	border: 0;
	font-size: 36px;
	text-decoration: none;
	transition: .3s all ease-in-out;
}

.button:hover {
	background: #9e0200;
}

.section {
	width: 100%;
	float: left;
	margin-top: 20px;
	margin-bottom: 50px;
	justify-content: center;
}

.info {
	background: var(--gray);
	width: 90%;
	float: left;
	margin: 10px 0 30px;
	margin-left: 5%;
	box-sizing: border-box;
	padding: 20px;
	border-radius: var(--radius);
}

.info textarea {
	width: 100%;
	background: #fff;
	height: 200px;
	resize: none;
	box-sizing: border-box;
	padding: 25px;
	border: 0;
	outline: none;
	border-radius: var(--radius);
	font-family: 'gilroy-regular';
	font-size: 16px;
}

.info h3 {
	margin-top: 0;
}

.info label {
	width: 100%;
	display: block flex;
	align-items: center;
	gap: 15px;
	float: left;
	cursor: pointer;
	margin-bottom: 15px;
}

.info label:last-child {
	margin-bottom: 0;
}

.dropzone {
	min-height: auto !important;
	border-radius: 15px !important;
	border: 2px dashed var(--heavy) !important;
}

input[type="radio"] {
	margin-left: 0;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	background: var(--dark);
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}

input[type="radio"]:checked {
	background: var(--heavy);
	border: 4px solid var(--dark);
}

.checkboxes .info {
	display: none;
}

.checkboxes.active .info {
	display: block;
}

.checkbox.active .check {
	background: var(--yellow) url('../imgs/check.svg') no-repeat center center / 10px;
	border: 4px solid var(--dark);
}

.d-block {
	display: block;
}

.w100p {
	width: 100%;
}

.ml-0 {
	margin-left: 0 !important;
}

.bg-green {
	background: var(--green);
	padding: 10px 20px;
	display: inline-block;
	border-radius: 20px;
	color: #fff;
}

.bg-title {
	background: var(--yellow);
	padding: 10px 20px;
	border-radius: 20px;
	font-family: 'gilroy-bold';
	display: inline-block;
}

.bg-title p {
	margin-bottom: 0;
	font-family: 'gilroy-regular';
	font-size: 18px;
}

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

.pa-50 {
	padding: 50px !important;
}

.rec-table {
	max-width: 390px;
}

.rec-table .col-left,
.rec-table .col-right {
	height: 70px;
	position: relative;
}

.rec-table .col-left:after {
	content: '';
	width: 5px;
	height: 100%;
	background: #CDCDCD;
	position: absolute;
	right: 40px;
	border-radius: 4px;
	top: -5px;
}

.rec-table .col-left:before {
	width: 20px;
	height: 20px;
	border: 1px solid var(--heavy);
	background: #fff;
	content: '';
	position: absolute;
	right: 32px;
	top: -9px;
	border-radius: 100%;
	z-index: 10;
}

@media (max-width: 800px) {
	.col-left,
	.col-right {
		width: 100%;
		padding: 0;
		display: block !important;
	}
	
	.col-right img {
		height: 250px !important;
	}
	
	.rec-table {
		margin-bottom: 50px;
		width: 100%;
		float: left;
	}
	
	.pa-50 {
		padding: 30px !important;
	}
	
	.rec-table .col-left,
	.rec-table .col-right {
		width: 50%;
	}
	
	h1,
	.title {
		font-size: 23px;
	}
	
	p {
		font-size: 18px;
	}
	
	.checkbox h2 {
		font-size: 21px;
	}
}




