* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 130%;
	color: #fff;
	background: #0f1219;
	-webkit-text-size-adjust: 100%;
	padding-top: 25px;
	padding-bottom: 50px;
	/* scroll-behavior: smooth; */
}
body.fixed {
	overflow: hidden;
}
button,
input,
select,
textarea {
	font-family: 'Manrope', sans-serif;
}
img {
	max-width: 100%;
	border: 0;
	display: block;
}

ul {
	margin: 0;
	list-style-type: none;
}

.container {
	max-width: 320px;
	padding: 0 15px;
	margin: auto;
}
.nav {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transform: translateY(-100%);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #0f1219;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 25px 0 45px;
	transition: 0.5s;
}
.nav.open {
	opacity: 1;
	pointer-events: initial;
	visibility: visible;
	transform: translateY(0);
	z-index: 10;
}
.nav__top {
	margin-bottom: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 285px;
}
.nav li {
	margin-bottom: 30px;
}
.nav a {
	display: block;
}
.nav__email {
	margin-top: auto;
}
.nav__close {
	display: block;
	background: url(../img/close.svg) no-repeat center/ contain;
	width: 14px;
	height: 14px;
	cursor: pointer;
}

.main {
	background: rgba(31, 58, 71, 0.1);
	border: 1px solid rgba(48, 171, 232, 0.3);
	border-radius: 15px;
	position: relative;
	overflow: hidden;
	padding: 25px 20px 0 20px;
	text-align: center;
	margin-bottom: 50px;
}
.main::before {
	content: '';
	position: absolute;
	width: 706px;
	height: 754px;
	background: url(../img/circle-right.svg) no-repeat center / contain;
	top: -320px;
	right: -380px;
	z-index: -1;
	opacity: 0.8;
}
.main::after {
	content: '';
	position: absolute;
	width: 856px;
	height: 917px;
	background: url(../img/circle-left.svg) no-repeat center / contain;
	bottom: -390px;
	left: -410px;
	z-index: -1;
	opacity: 0.6;
}
.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}
.sandwich {
	display: flex;
	flex-direction: column;
	gap: 4px;
	cursor: pointer;
}
.sangwich-line {
	height: 2px;
	background-color: #fff;
	width: 22px;
}
.h1 {
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 15px;
}
.h2 {
	font-weight: 700;
	font-size: 30px;
	line-height: 130%;
	letter-spacing: -0.5px;
	text-align: center;
	margin-bottom: 15px;
}
.h2 span {
	color: #30abe8;
}
p {
	margin-bottom: 20px;
	line-height: 150%;
}
.btn {
	background: #30abe8;
	color: #fff;
	border-radius: 100px;
	padding: 15px 30px;
	font-weight: 700;
	font-size: 16px;
	width: 100%;
	cursor: pointer;
	border: 0;
	display: block;
	text-align: center;
	transition: 0.2s;
	position: relative;
	overflow: hidden;
}
.btn:after {
	content: '';
	position: absolute;
	top: 0;
	left: -200%;
	width: 200%;
	height: 100%;
	transform: skewX(-20deg);
	background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
}
.btn:hover {
	color: #fff;
}
.btn:hover:after {
	animation: shine 1.6s ease;
}
.btn:active {
	transform: translateY(1px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

@keyframes shine {
	100% {
		left: 200%;
	}
}
.main .btn {
	margin-bottom: 25px;
}
.main__content-img {
	width: 290px;
	max-width: none;
	margin-left: -20px;
}
.about {
	text-align: center;
	margin-bottom: 50px;
}
p.note {
	font-weight: 300;
	font-size: 14px;
	line-height: 130%;
	text-align: center;
	color: #a1a1a1;
}
.features {
	margin-bottom: 50px;
}
.features__item {
	background: rgba(31, 58, 71, 0.1);
	border: 1px solid rgba(48, 171, 232, 0.3);
	border-radius: 15px;
	padding: 20px;
	margin: 0 5px;
}
.features__icon {
	width: 50px;
	height: 50px;
	background: #cbe7f528;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}
.features__item-name {
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 15px;
}
.features__item p {
	font-weight: 400;
	margin-bottom: 0;
}
.slick-dots {
	text-align: center;
	margin: 20px 0;
	height: 14px;
}
.slick-dots button {
	display: block;
	width: 14px;
	height: 14px;
	font-size: 0;
	border: 0;
	border-radius: 100%;
	background: rgba(255, 252, 252, 0.33);
}
.slick-dots .slick-active button {
	background: #30abe8;
}
.slick-dots li {
	height: 14px;
	display: inline-block;
	vertical-align: top;

	margin: 0 5px;

	cursor: pointer;
}
.how .h2 {
	text-align: center;
}
.how {
	margin-bottom: 50px;
	counter-reset: section;
}
.how__item {
	background: rgba(31, 58, 71, 0.1);
	border: 1px solid rgba(48, 171, 232, 0.3);
	border-radius: 15px;
	padding: 20px;
	margin-bottom: 15px;
}
.how__item-name {
	font-weight: 700;
	font-size: 18px;
	position: relative;
	padding-left: 30px;
	margin-bottom: 15px;
}
.how__item-name::before {
	counter-increment: section;
	content: counter(section);
	background-color: #30abe8;
	border-radius: 50%;
	font-weight: 800;
	font-size: 16px;
	color: #10161d;
	width: 22px;
	height: 22px;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
}
.how__item img {
	margin-bottom: 15px;
}
.how__item p {
	margin-bottom: 0;
	font-weight: 400;
}
.feedback {
	background: rgba(31, 58, 71, 0.1);
	border: 1px solid rgba(48, 171, 232, 0.3);
	border-radius: 15px;
	position: relative;
	overflow: hidden;
	padding: 25px 20px 30px 20px;

	margin-bottom: 50px;
}
.feedback .h2 {
	margin-bottom: 30px;

	text-align: left;
}

input,
textarea,
select {
	width: 100%;
	display: block;
	margin-bottom: 15px;
	border: 1px solid rgba(48, 171, 232, 0.3);
	border-radius: 10px;
	background: #1f2937;
	font-weight: 400;
	font-size: 16px;
	padding: 12px 25px;
	color: #adaebc;
}
input,
input:focus,
input:hover,
input:visited,
input:active,
textarea:focus,
textarea:hover,
textarea:visited,
textarea:active,
textarea,
select:focus,
select:hover,
select:visited,
select:active,
select,
button,
button:active,
button:focus {
	outline: none;
}
input::-webkit-input-placeholder {
	color: #adaebc;
}
input::-moz-placeholder {
	color: #adaebc;
}
input:-moz-placeholder {
	color: #adaebc;
}
input:-ms-input-placeholder {
	color: #adaebc;
}
textarea {
	resize: none;
	height: 90px;
	scrollbar-width: thin;
	scrollbar-color: #30abe8 #1f2937;
}
textarea::-webkit-input-placeholder {
	color: #adaebc;
}
textarea::-moz-placeholder {
	color: #adaebc;
}
textarea:-moz-placeholder {
	color: #adaebc;
}
textarea:-ms-input-placeholder {
	color: #adaebc;
}

select::-ms-expand {
	display: none;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none !important;
}

[placeholder]:focus::-webkit-input-placeholder {
	color: transparent;
}

[placeholder]:focus::-moz-placeholder {
	color: transparent;
}

[placeholder]:focus:-ms-input-placeholder {
	color: transparent;
}

[placeholder]:focus::placeholder {
	color: transparent;
}
.footer__logo {
	margin-bottom: 30px;
	display: block;
}
.footer__logo img {
	width: 103px;
}
.footer p {
	margin-bottom: 15px;
}
a {
	color: #fff;
	text-decoration: none;
	transition: 0.2s;
}
a:hover {
	color: #30abe8;
}
.footer__contacts,
.footer__nav {
	margin-bottom: 30px;
}
.footer__title {
	color: #a6a6a6;
	margin-bottom: 15px;
}
.footer__nav li,
.footer__legal li {
	margin-bottom: 15px;
}
@media (min-width: 992px) {
	.nav__close,
	.sandwich {
		display: none;
	}
	.nav__intouch {
		border: 1px solid;
		border-radius: 100px;
		padding: 15px 30px;
	}
	.nav__logo img {
		width: 103px;
	}
	.nav {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		pointer-events: initial;
		position: static;
		min-height: 1px;
		height: auto;
		background: transparent;
		padding: 0 30px 65px;
		justify-content: space-between;
	}
	.nav,
	.nav ul {
		display: flex;
		align-items: center;
		flex-direction: row;
	}
	.nav ul {
		gap: 20px;
	}
	.container {
		max-width: 970px;
	}
	.main__logo,
	.nav a.nav__email {
		display: none;
	}
	.nav li,
	.nav__top {
		margin-bottom: 0;
	}
	.h1 {
		font-size: 25px;
		margin-bottom: 20px;
	}
	.h2 {
		font-size: 40px;

		margin: auto;
		margin-bottom: 30px;
		max-width: 670px;
	}
	.main .h2 {
		font-size: 45px;
	}
	.main p,
	.about p {
		font-size: 18px;
	}
	p {
		margin: auto;
		margin-bottom: 30px;
		max-width: 670px;
	}
	.btn {
		max-width: 200px;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}
	.main__content-img {
		width: auto;
		margin-left: auto;
		margin-right: auto;
		max-width: 100%;
	}
	.main,
	.about,
	.features,
	.how,
	.feedback {
		margin-bottom: 100px;
	}
	.main::before {
		width: 1176px;
		height: 1124px;

		top: -400px;
		right: -540px;
		opacity: 0.8;
	}
	.main::after {
		width: 1276px;
		height: 1397px;
		bottom: -630px;
		left: -480px;
	}
	.about p.note {
		font-size: 16px;
	}
	.features__list,
	.how__list {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		align-items: stretch;
		justify-content: space-between;
		gap: 30px;
		margin-bottom: 30px;
	}
	.features__item {
		margin: 0;
	}
	.feedback {
		display: grid;
		grid-template-columns: 1.1fr 0.9fr;
		/* grid-template-rows: repeat(2, 1fr); */
		gap: 10px 50px;
		padding: 40px 50px 0;
	}
	.feedback .h2 {
		grid-column: 1/2;
		grid-row: 1/2;
	}
	.feedback img {
		grid-column: 1/2;
		grid-row: 2/3;
	}
	.feedback .form {
		grid-column: 2/3;
		grid-row: 1/3;
	}
	.feedback::before {
		content: '';
		position: absolute;
		width: 1266px;
		height: 1254px;
		background: url(../img/circle-right.svg) no-repeat center / contain;
		top: -380px;
		right: -610px;
		z-index: -1;
		opacity: 0.6;
	}
	.feedback::after {
		content: '';
		position: absolute;
		width: 1266px;
		height: 1387px;
		background: url(../img/circle-left.svg) no-repeat center / contain;
		bottom: -760px;
		left: -600px;
		z-index: -1;
		opacity: 0.6;
	}
	.form .btn {
		max-width: 100%;
	}
	input,
	textarea,
	select {
		margin-bottom: 20px;
	}
	.footer {
		display: grid;
		grid-template-columns: 1.2fr 0.4fr 0.4fr;
		gap: 100px;
	}
	.footer__title {
		margin-bottom: 40px;
	}
}
@media (min-width: 1200px) {
	.container {
		max-width: 1200px;
	}
	.nav ul {
		gap: 50px;
	}
	.features__list,
	.how__list {
		gap: 80px;
	}
	.feedback {
		gap: 10px 100px;
		padding: 55px 95px 0;
	}
}
.terms {
	padding: 0;
}
.terms .overflow {
	overflow: hidden;
}
.terms .container {
	max-width: 1200px;
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
}

.terms h2 {
	text-align: center;
	margin-bottom: 50px;
}
.terms h2 b {
	font-size: 14px;
	font-weight: 400;
}
.terms p {
	text-align: left;
	margin-left: 0;
	margin-bottom: 15px;
	max-width: 100%;
}
.terms h3 {
	margin-bottom: 20px;
	margin-top: 40px;
	text-align: center;
}
.terms h4 {
	font-weight: 700;
	margin-bottom: 10px;
}
.terms a {
	color: #30abe8;
	text-decoration: underline;
}
.terms a:hover {
	text-decoration: none;
}
.terms .container::before {
	content: '';
	position: absolute;
	width: 1266px;
	height: 1254px;
	background: url(../img/circle-right.svg) no-repeat center / contain;
	top: -480px;
	right: -610px;
	z-index: -1;
	opacity: 0.6;
}
.terms .container::after {
	content: '';
	position: absolute;
	width: 1266px;
	height: 1387px;
	background: url(../img/circle-left.svg) no-repeat center / contain;
	bottom: -760px;
	left: -600px;
	z-index: -1;
	opacity: 0.6;
}
.error-message {
	color: #ff4444;
	font-size: 12px;
	margin-top: 5px;
	margin-bottom: 10px;
	display: none;
}

.error-message.visible {
	display: block;
}

input.error,
textarea.error {
	border-color: #ff4444 !important;
}

.form-status {
	margin: 15px 0;
	padding: 10px;
	border-radius: 4px;
	display: none;
	grid-column: 2 / 3;
	text-align: center;
}

.form-status.success {
	display: block;
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.form-status.error {
	display: block;
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}
