:root {
	--white: #fff;
	--black: #232834;
	--grey: #8c9aaf;
}

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	min-width: 320px;
	width: 100%;
	overflow-x: hidden;
	font-family: "Wix Madefor Text", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
}


.privacy-label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.checkbox-wrapper {
	position: relative;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-top: 2px;
}

.checkbox-input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	cursor: pointer;
}

.checkbox-box {
	width: 16px;
	height: 16px;
	border: 1px solid var(--grey);
	border-radius: 50%;
	background: transparent;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.checkbox-box:hover {
	border-color: var(--white);
}

.checkbox-input:checked+.checkbox-box {
	border-color: var(--white);
}

.checkmark {
	width: 10px;
	height: 10px;
	opacity: 0;
	-webkit-transition: opacity 0.2s ease;
	-o-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
	display: none;
}

.checkbox-input:checked~.checkbox-box .checkmark {
	display: block;
	opacity: 1;
}

.checkbox-text {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-top: 1px;
}

.checkbox-text-content {
	font-size: 16px;
	font-weight: 400;
	color: var(--white);
	line-height: 1.4;
}

.privacy-link {
	color: var(--white);
	text-decoration: underline;
	cursor: pointer;
}

.privacy-link:hover {
	opacity: 0.8;
}

.fos-sect {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left bottom;
}

.fos-container {
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
	padding: 0 130px;
	height: 100%;
}

.fos-sect__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 60px;
	height: 100%;
}

.fos-sect__desc {
	color: var(--white);
	-webkit-box-flex: 0;
	-ms-flex: 0 1 816px;
	flex: 0 1 816px;

	h2 {
		font-family: Wix Madefor Text;
		font-weight: 700;
		font-size: 90px;
		line-height: 120%;
		text-transform: uppercase;
	}

	p {
		padding: 32px;
		border-radius: 30px;
		-webkit-backdrop-filter: blur(48px);
		backdrop-filter: blur(48px);
		background-color: #E5EBF43D;
		margin-top: 60px;
		font-size: 20px;
		line-height: 130%;
	}
}

.fos-sect__form {
	padding: 48px;
	border-radius: 30px;
	background-color: var(--black);
	-webkit-box-flex: 0;
	-ms-flex: 0 1 684px;
	flex: 0 1 684px;
	color: var(--white);
}

.fos-sect__form>p {
	font-weight: 400;
	font-size: 24px;
	line-height: 140%;
	text-transform: uppercase;
	margin-bottom: 48px;
}

.leed-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 26px;

	input {
		max-width: 100%;
		width: 100%;
		border-radius: 30px;
		border: 1px solid var(--white);
		height: 56px;
		padding: 14px 24px;
		font-size: 20px;
		line-height: 140%;
		background-color: transparent;
		outline: none;
		color: var(--white)
	}

	::-webkit-input-placeholder {
		text-transform: uppercase;
		font-size: 20px;
		line-height: 140%;
		color: var(--white);
		margin-top: 2px;
	}

	::-moz-placeholder {
		text-transform: uppercase;
		font-size: 20px;
		line-height: 140%;
		color: var(--white);
		margin-top: 2px;
	}

	:-ms-input-placeholder {
		text-transform: uppercase;
		font-size: 20px;
		line-height: 140%;
		color: var(--white);
		margin-top: 2px;
	}

	::-ms-input-placeholder {
		text-transform: uppercase;
		font-size: 20px;
		line-height: 140%;
		color: var(--white);
		margin-top: 2px;
	}

	::placeholder {
		text-transform: uppercase;
		font-size: 20px;
		line-height: 140%;
		color: var(--white);
		margin-top: 2px;
	}

}

.leed-form__btn {
	margin-top: 28px;
}

.leed-form__btn button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 16px 24px;
	width: 100%;
	max-width: 100%;
	border-radius: 30px;
	background-color: #EBBD90;
	color: var(--black);
	font-weight: 400;
	font-size: 20px;
	line-height: 140%;
	text-align: center;
	text-transform: uppercase;
	outline: none;
	border: none;
	cursor: pointer;
	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
}

.leed-form__btn button:hover {
	background-color: #d3a578;
}

.leed-form__input {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 10px;
}

.leed-form__input span {
	font-weight: 400;
	font-size: 20px;
	line-height: 140%;
	text-transform: uppercase;
}

@media(max-width: 1600px) {

	.fos-container {
		padding: 0 80px;
	}

	.fos-sect__desc {
		h2 {
			font-size: 64px;
		}
	}
}

@media(max-width: 1439.5px) {
	.fos-sect {
		padding: 100px 0;
	}

	.fos-sect__inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.fos-sect__desc {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 100%;
		flex: 1 1 100%;
	}

	.fos-sect__form {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 100%;
		flex: 1 1 100%;
	}
}

@media(max-width: 1023.5px) {
	.fos-container {
		padding: 0 24px;
	}

	.fos-sect__inner {
		gap: 30px;
	}

	.fos-sect__desc {
		h2 {
			font-size: 40px;
		}

		p {
			font-size: 16px;
			padding: 24px;
			margin-top: 30px;
		}
	}

	.fos-sect__form {
		padding: 24px;
	}

	.fos-sect__form>p {
		font-size: 20px;
		margin-bottom: 24px;
	}

	.leed-form__input span {
		font-size: 16px;
	}

	.leed-form__input {
		::-webkit-input-placeholder {
			font-size: 16px;
		}

		::-moz-placeholder {
			font-size: 16px;
		}

		:-ms-input-placeholder {
			font-size: 16px;
		}

		::-ms-input-placeholder {
			font-size: 16px;
		}

		::placeholder {
			font-size: 16px;
		}

		input {
			font-size: 16px;
		}
	}

	.leed-form__btn {
		margin-top: 4px;
	}
}