:root,
[data-scheme="default"] {
	--color-text-base: #2C3039;
	--color-button: #FFA119;
	--color-button-contrast: #FFF;
	--color-button-hover: #FFB22A;
	--color-button-contrast-hover: #FFF;
	--color-bg-accent: #FFA119
}

[data-scheme="dark"] {
	--color-text-base: #FFF
}

[data-scheme="inverse"] {
	--color-text-base: #FFF
}

html {
	font-size: 16px;
	background: var(--color-bg-accent)
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

main {
	display: block
}

button,
input[type="submit"] {
	cursor: pointer;
	border: none;
	font-family: "proxima-nova", sans-serif
}

select {
	font-family: "proxima-nova", sans-serif
}

img {
	max-width: 100%;
	margin: 0
}

body,
input,
textarea,
button {
	font-family: "proxima-nova", sans-serif;
	outline: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-o-font-smoothing: antialiased;
	-ms-font-smoothing: antialiased;
	font-smoothing: antialiased
}

* {
	color: var(--color-text-base)
}

.cs-container {
	width: 540px;
	max-width: calc(100% - 20px);
	margin: 0 auto
}

.cs-header {
	padding: 1.875rem 0;
	background: transparent;
	position: relative
}

.cs-header__logo {
	display: block;
	width: 14.75rem;
	height: auto
}

.cs-header__logo img {
	width: 100%;
	height: 100%;
	display: block
}

@media screen and (max-width: 767px) {
	.cs-header__logo {
		width: 148px
	}
}


.cs-banner__content h3{
	font-family: "proxima-nova", sans-serif;
	font-size: 30px;
	line-height: 40px;
}

.cs-banner__content-img{
	padding-top: 50px;
}

.lp-header-light {
    color: #ffdfa9;
}

.cs-button {
	display: inline-flex;
	font-size: 20px;
	margin: 0;
	text-decoration: none;
	padding: 0 24px;
	min-height: 50px;
	line-height: 24px;
	border-radius: 25px;
	font-weight: 700;
	background: var(--color-button);
	color: var(--color-button-contrast);
	text-align: center;
	transition: all .1s ease-in;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center
}

.cs-button .cs-button__text {
	color: var(--color-button-contrast)
}

.cs-button:hover {
	background: var(--color-button-hover);
	color: var(--color-button-contrast-hover)
}

.cs-form {
	background: #FFFFFF;
	border-radius: 30px;
	box-shadow: -5px 5px 40px rgba(44, 48, 57, 0.12);
	padding: 3.125rem;
	width: 400px !important;
}

.cs-form-2 {
	background: #FFFFFF;
	border-radius: 30px;
	box-shadow: -5px 5px 40px rgba(44, 48, 57, 0.12);
	padding: 3.125rem;
	width: 500px !important;
	max-width: 100%;
}


@media screen and (max-width: 767px) {
	.cs-form, .cs-form-2{
		padding: 1.5rem !important;
	}
}


.cs-captcha {
	grid-column: 1 / -1
}

.cs-banner {
	margin-top: -6.25rem;
	padding: 9.375rem 0 0
}

.cs-banner h1 {
	font-weight: bold;
	font-size: 50px;
	line-height: 1.2;
	margin-bottom: 20px
}

@media screen and (max-width: 767px) {
	.cs-banner h1 {
		font-size: 32px;
		margin-bottom: 30px
	}
}

.cs-banner img {
	width: 659px;
	max-width: 100%
}

.cs-banner__grid {
	display: grid;
	gap: 3.125rem;
	grid-template-columns: minmax(0, 1fr) minmax(0, 31.25rem)
}

@media screen and (max-width: 991px) {
	.cs-banner__grid {
		grid-template-columns: minmax(0, 1fr)
	}
}

.cs-banner__grid-2 {
	display: grid;
	gap: 3.125rem;
	grid-template-columns: minmax(0, 1fr) minmax(0, 31.25rem)
}

@media screen and (max-width: 991px) {
	.cs-banner__grid-2 {
		grid-template-columns: minmax(0, 1fr)
	}
}

h2,
.cs-h2 {
	margin: 0 0 remCalc(16);
	font-size: remCalc(32);
	line-height: 1.4;
	font-weight: 400
}

h3,
.cs-h3 {
	font-weight: 700;
	font-size: remCalc(28);
	line-height: 1.36;
	margin: 0 0 remCalc(16);
	font-weight: 400
}

p,
.cs-p {
	font-size: remCalc(16);
	line-height: 1.4;
	font-weight: 300;
	margin: 0 0 remCalc(16)
}

.cs-learn {
	padding: 5.375rem 0 6.25rem;
	text-align: center;
	font-weight: bold;
	font-size: 30px;
	line-height: 40px
}

@media screen and (max-width: 767px) {
	.cs-learn {
		font-size: 25px;
		line-height: 30px;
		padding: 50px 0;
		text-align: left
	}
}

.cs-advantages {
	padding: 0 0 110px
}

.cs-advantages__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 50px
}

@media screen and (max-width: 991px) {
	.cs-advantages__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr))
	}
}

@media screen and (max-width: 767px) {
	.cs-advantages__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 20px
	}
}

@media screen and (max-width: 767px) {
	.cs-advantages__item {
		grid-template-columns: minmax(0, 40px) minmax(0, 1fr);
		display: grid;
		gap: 20px
	}
}

.cs-advantages__item-icon {
	width: 80px;
	height: 80px;
	position: relative;
	margin: 0 auto 20px
}

@media screen and (max-width: 767px) {
	.cs-advantages__item-icon {
		width: 40px;
		height: 40px;
		margin: 0
	}
}

.cs-advantages__item-icon svg {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	fill: #FFF
}

.cs-advantages__item-title {
	text-align: center;
	font-weight: bold;
	font-size: 20px;
	line-height: 1.6
}

@media screen and (max-width: 767px) {
	.cs-advantages__item-title {
		font-size: 20px;
		font-weight: 400;
		text-align: left
	}
}

.cs-advantages__title {
	text-align: center;
	font-weight: bold;
	margin: 0 0 40px;
	font-size: 30px;
	line-height: 40px
}

@media screen and (max-width: 767px) {
	.cs-advantages__title {
		font-size: 25px;
		line-height: 35px;
		text-align: left;
		margin-bottom: 20px
	}
}

.cs-footer {
	padding: 100px 0 5px
}

.cs-footer__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center
}

.cs-footer__nav {
	display: flex;
	align-items: center;
	justify-content: center
}

.cs-footer__nav ul {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap
}

.cs-footer__nav ul li {
	display: block;
	margin: 0 7px 15px
}

.cs-footer__nav ul li a {
	text-decoration: none;
	font-weight: normal;
	font-size: 12px;
	line-height: 22px
}

.cs-footer__nav ul li a:hover {
	text-decoration: underline
}

.cs-footer__copyright {
	font-size: 12px;
	line-height: 22px;
	margin: 0 7px 15px
}

@media screen and (min-width: 768px) {
	.cs-container {
		width: 720px
	}
}

@media screen and (min-width: 992px) {
	.cs-container {
		width: 960px
	}
}

@media screen and (min-width: 1200px) {
	.cs-container {
		width: 1160px
	}
}

@media screen and (min-width: 1440px) {
	.cs-container {
		width: 1270px
	}
}