:root {
	--bg-color: #ffffff;
	--text-color: #000000;

	--icon-color: ;

	--menu-bg: #d9d9d9;

	--nav-bg: #121212;
	--nav-close: #d9d9d9;
	--nav-text: #d9d9d9;
	--nav-link: #00c7b1;

	--proggress-text: #00c7b1;
	--progress-bg: rgba(196, 194, 194, 0.856);
	--progress-filled: #00c7b1;

	--title: #000000;

	--input-border: #00c7b1;
	--input-text: #00c7b1;
	--input-icon: #00c7b1;
	--input-icon-grey: #00c7b1;
	--input-label: #00c7b1;

	--input-border-focus: #00c7b1;
	--input-icon-focus: #00c7b1;
	--input-label-focus: #00c7b1;
	--input-error: #FC5B53;

	--btn-bg: #00c7b1;
	--btn-text: #fff;
	--btn-bg-disabled: #B3B6B7;
	--btn-text-disabled: rgba(0, 0, 0, .3);

	--btn-exit-bg: rgba(0, 0, 0, .1);
	--btn-exit: rgba(0, 0, 0, .6);

	--form-bottom: #000;

	--footer: #000000;

	--price: #d9d9d9;
}

*,
:before,
:after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: 0;
}

html,
body {
	height: 100%;
}

body {
	background: var(--bg-color);
	color: var(--text-color);
	font-family: 'Inter', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.18;
	text-align: center;
}

body.rtl-text {
	direction: rtl;
}

.price {
	padding: 4px 0;
	color: var(--price);
	font-size: 10px;
}

.main {
	max-width: 480px;
	margin: 0 auto;
	padding: 64px 24px 24px;
	position: relative;
}

.menu-btn {
	position: absolute;
	top: 16px;
	left: 24px;
	width: 32px;
	padding: 4px;
	margin-bottom: 20px;
	cursor: pointer;
}

.menu-btn div {
	height: 4px;
	background: var(--menu-bg);
	border-radius: 2px;
}

.menu-btn div+div {
	margin-top: 4px;
}

.main_img {
	display: none;
	opacity: 0;
	width: 55%;
	margin: 20px auto;
	box-shadow: 0 0 10px 5px rgb(255 255 255 / 50%);
}

.service-name {
	position: absolute;
	top: 17px;
	left: 60px;
	right: 60px;
	font-size: 24px;
}

.nav {
	position: fixed;
	top: 0;
	left: -110%;
	bottom: 0;
	width: 100%;
	background: var(--nav-bg);
	padding: 48px 36px;
	color: var(--nav-text);
	text-align: center;
	transition: 0.5s ease;
	z-index: 999;
}

.nav.open {
	left: 0;
}

.nav-close {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 48px;
	height: 48px;
	color: var(--nav-close);
	font-size: 36px;
	line-height: 48px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
}

.nav-item {
	padding: 16px 0;
	font-size: 32px;
	font-weight: 700;
}

.nav-item a {
	color: var(--nav-link);
	text-decoration: none;
}

.steps {
	color: var(--proggress-text);
	font-size: 12px;
	line-height: 1.18;
	text-align: left;
	text-transform: uppercase;
	margin-bottom: 28px;
}

.steps:after {
	content: '';
	display: table;
	clear: both;
}

.step {
	float: left;
	width: calc(50% - 4px);
	height: 8px;
	background: var(--progress-bg);
	border-radius: 2px;
	overflow: hidden;
	margin-top: 8px;
}

.step+.step {
	margin-left: 8px;
}

.step:after {
	content: '';
	display: block;
	border-radius: 2px;
	width: 8px;
	height: 8px;
	background: var(--progress-filled);
	transition: 0.5s ease;
}

.step.filled:after {
	width: 100%;
}

.step+.step:after {
	content: none;
}

.step.filled+.step:after {
	content: '';
}

.rtl-text .steps {
	direction: rtl;
	text-align: right;
}

.rtl-text .step {
	float: right;
}

.rtl-text .step+.step {
	margin-left: 0;
	margin-right: 8px;
}

.title {
	color: var(--title);
	font-size: 18px;
	line-height: 1.18;
	font-weight: 900;
	margin-bottom: 14px;
}

.subtitle {
	color: var(--title);
	font-size: 14px;
	line-height: 1.18;
	font-weight: 500;
	margin-bottom: 14px;
}

.webt-icon {
	width: 180px;
	height: 180px;
	margin: 0 auto 10px;
	position: relative;
}

.icon-progress {
	width: 100%;
	height: 100%;
	position: relative;
}

.icon-progress__bg {
	stroke-width: 14px;
	/*	stroke: var(--progress-bg);*/
	fill: transparent;
}

.webt-icon .progress_arrow {
	width: 120px;
	height: auto;
	opacity: 1;
	/*	transition: 0s;*/
	animation: bounceUpDown 1s ease-in-out infinite;
}

@keyframes bounceUpDown {
	0% {
		transform: translateY(0%);
	}

	50% {
		transform: translateY(-5%);
	}

	100% {
		transform: translateY(0%);
	}
}

.webt-icon__value {
	color: var(--proggress-text);
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: absolute;
	font-size: 46px;
	font-weight: 600;
	top: 0;
	left: 0;
}

.meter-1 {
	stroke-dasharray: 800;
	stroke-dashoffset: 0;
	stroke: var(--progress-filled);
	stroke-width: 14px;
	fill: transparent;
	animation: progress-1 0s ease-out;
}

/*@keyframes progress-1 {
	from {
		stroke-dashoffset: 800;
	}
	to {
		stroke-dashoffset: 0;
	}
}*/

.label {
	font-size: 15px;
	line-height: 1.6;
	text-align: center;
	margin-bottom: 40px;
	color: #00c7b1;
}

.rtl-text .label {
	text-align: right;
}

.field {
	position: relative;
	margin-bottom: 15px;
	/*
	-webkit-animation: heartbeat 1.75s ease-in-out infinite both;
	-webkit-animation-animation: heartbeat 1.75s ease-in-out infinite both;
	*/
}

@keyframes heartbeat {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}

	10% {
		-webkit-transform: scale(0.91);
		transform: scale(0.91);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	17% {
		-webkit-transform: scale(0.98);
		transform: scale(0.98);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}

	33% {
		-webkit-transform: scale(0.87);
		transform: scale(0.87);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	45% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
}

.field-input {
	display: block;
	width: 100%;
	height: 64px;
	background: var(--bg-color);
	border: 2px solid var(--input-border);
	border-radius: 8px;
	padding: 0 38px 0 91px;
	direction: ltr;
	color: var(--input-text);
	font-size: 24px;
	letter-spacing: 2px;
	transition: 0.5s ease;
}

.field-input.pin {
	height: 82px;
	padding-left: 26px;
	text-align: center;
	letter-spacing: 16px;
}

.field-input__prefix {
	position: absolute;
	top: 0;
	left: 0;
	padding-left: 40px;
	color: var(--input-text);
	font-size: 24px;
	line-height: 66px;
	letter-spacing: 2px;
	animation: shake 3s;
	-webkit-animation: shake 3s;
}

@keyframes shake {

	10%,
	90% {
		transform: translate3d(-1px, 0, 0);
		-webkit-transform: translate3d(-1px, 0, 0);
	}

	20%,
	80% {
		transform: translate3d(2px, 0, 0);
		-webkit-transform: translate3d(2px, 0, 0);
	}

	30%,
	50%,
	70% {
		transform: translate3d(-4px, 0, 0);
		-webkit-transform: translate3d(-4px, 0, 0);
	}

	40%,
	60% {
		transform: translate3d(4px, 0, 0);
		-webkit-transform: translate3d(4px, 0, 0);
	}
}

.field-icon {
	position: absolute;
	top: 20px;
	left: 14px;
	fill: var(--input-icon);
	pointer-events: none;
	transition: 0.5s ease;
}

.field-check {
	position: absolute;
	top: 20px;
	right: 14px;
	width: 24px;
	height: 24px;
	fill: var(--input-icon-grey);
	pointer-events: none;
	transition: 0.5s ease;
}

.form-valid .field-check {
	fill: var(--input-icon-focus);
}

.field-label {
	position: absolute;
	top: 20px;
	left: 40px;
	font-size: 24px;
	line-height: 1;
	pointer-events: none;
	transition: 0.5s ease;
}

.rtl-text .field-label {
	left: auto;
	right: 40px;
}

.field-error {
	color: var(--input-error);
	text-align: left;
	margin-top: 8px;
	display: none;
}

.rtl-text .field-error {
	text-align: right;
}

.field-alert {
	position: absolute;
	left: 50%;
	bottom: 100%;
	margin-bottom: 14px;
	margin-left: -135px;
	width: 270px;
	background: var(--input-error);
	border-radius: 4px;
	padding: 3px 5px;
	color: var(--bg-color);
	font-size: 14px;
	animation: shake 5s ease-in-out 5 both;
	display: none;
}

.field-alert:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	width: 0;
	height: 0;
	margin-left: -10px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid var(--input-error);
}

.field-alert.active {
	display: block;
}

.field-input:focus,
.field-input.focus {
	border-color: var(--input-label-focus);
}

.field-input:focus~.field-input__prefix .field-icon,
.focus .field-icon {
	fill: var(--input-icon-focus);
}

.field-input:focus~.field-label,
.focus~.field-label {
	top: -9px;
	left: 32px;
	background: var(--bg-color);
	padding: 2px 8px;
	color: var(--input-label-focus);
	font-size: 14px;
}

.rtl-text .field-input:focus~.field-label,
.rtl-text .focus~.field-label {
	left: auto;
	right: 32px;
}

.field-input.has-error {
	border-color: var(--input-error);
}

.has-error~.field-icon {
	fill: var(--input-error) !important;
}

.has-error~.field-label {
	top: -9px;
	left: 32px;
	background: var(--bg-color);
	padding: 2px 8px;
	font-size: 14px;
	color: var(--input-error) !important;
}

.rtl-text .has-error~.field-label {
	left: auto;
	right: 32px;
}

.has-error~.field-error,
.has-error~.field-alert {
	display: block;
}

.btn {
	display: block;
	width: 100%;
	height: 60px;
	background: var(--btn-bg);
	border: none;
	border-radius: 8px;
	color: var(--btn-text);
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	box-shadow: 0 0 8px var(--btn-shadow);
	margin: 0 auto 20px;
}

.btn span {
	display: block;
	font-size: 11px;
	font-weight: 400;
	opacity: 0.6;
}

.btn[disabled],
.btn.disabled {
	background: var(--btn-bg-disabled);
	color: var(--btn-text-disabled);
	box-shadow: none;
}

.btn-exit {
	color: rgb(0, 0, 0);
	display: inline-block;
	font-size: 16px;
	margin-top: 10px;

}


.button_top_text {
	display: none;
	font-size: 14px;
	margin-bottom: 10px;
}

.button_top_text img {
	width: 12px;
}

.button_bottom_text {
	font-size: 14px;
}

.button_bottom_text img {
	width: 12px;
}

.form-bottom {
	margin-top: 24px;
	/*	color: var(--form-bottom);*/
	color: var(--text-color);
}

.form-bottom a {
	color: inherit;
	text-decoration: underline;
}

.rtl-text .form-bottom {
	text-align: right;
}

.langs {
	direction: ltr;
}

.lang {
	display: inline-block;
	border: 2px solid transparent;
	border-radius: 4px;
	margin: 10px 4px;
	padding: 2px 4px;
	font-size: 18px;
	line-height: 28px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
}

.lang.active {
	border-color: var(--text-color);
}

.btn-exit {
	display: inline-block;
	font-size: 16px;
	margin-top: 10px;
}

.txts {
	font-size: 12px;
	margin: 8px auto;
	padding-bottom: 10px;
}

section {
	display: block;
	position: relative;
	padding: 24px 0;
	margin: 0 auto;
}

section h1 {
	margin-bottom: 16px;
	font-size: 32px;
	text-align: left;
}

.how_works_blocks_all {
	display: flex;
	flex-direction: column;
}

.how_works_blocks {
	display: flex;
	flex-direction: row;
}

.how_works_block {
	width: 45%;
	border: 1px solid #00c7b1;
	border-radius: 24px;
	padding: 24px 12px;
	margin: 8px auto;
	background-color: #ffffff;
}

.how_works_block_title {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: 12px;
}

.how_works_block_title span {
	border-radius: 50px;
	width: 25px;
	height: 25px;
	font-size: 14px;
	background-color: #00c7b1;
	color: #ffffff;
	margin-right: 6px;
	line-height: 25px;
}

.how_works_block_title h2 {
	font-size: 18px;
}

.how_works_block_text {
	font-size: 14px;
	text-align: left;
	line-height: 1.5;
	color: #7E8189;
}

.how_works_help {
	margin-top: 36px;
}

.how_works_help h2 {
	font-size: 22px;
	font-style: oblique;
	line-height: 1.5;
	margin-bottom: 24px;
}

.how_works_help p {
	font-size: 14px;
	line-height: 1.2;
}

.how_works_help img {
	width: 80%;
	margin-top: 24px
}


.popular_feat_blocks_all {
	display: flex;
	flex-direction: column;
}

.popular_feat_blocks {
	display: flex;
	flex-direction: row;
}

.popular_feat_block {
	width: 45%;
	border: 1px solid #00c7b1;
	border-radius: 24px;
	padding: 24px 12px;
	margin: 8px auto;
	background-color: #ffffff;
}

.popular_feat_block_title {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 14px 0;
	text-align: left;
	background: #ffffff;
	border-radius: 16px;
	margin: 0 auto 14px;
	justify-content: center;
}

.popular_feat_block_title img {
	border-radius: 50px;
	width: 30px;
	height: 30px;
	margin-right: 6px;
}

.popular_feat_block_title h2 {
	font-size: 16px;
	color: #00c7b1;
	line-height: 1.25;
}

.popular_feat_block_text {
	font-size: 14px;
	text-align: left;
	line-height: 1.5;
	color: #7E8189;
	margin-bottom: 14px;
}

.popular_feat_block_btn {
	display: block;
	text-align: left;
	text-decoration: none;
	color: #00c7b1;
	font-size: 16px;
}

.popular_feat_block_btn:hover {
	color: #00c7b179;
}

.fit_sup_block {
	position: relative;
	text-align: left;
	display: flex;
	flex-direction: column;
	padding: 14px 28px;
	background: #ffffff;
	border: 2px solid #00c7b1;
	border-radius: 18px;
	margin: 20px auto;
}

.fit_sup_block img {
	position: absolute;
	left: 0;
	height: 100%;
	top: 0;
}

.fit_sup_block_title {
	font-size: 20px;
	color: #000000;
	line-height: 1.25;
	margin-bottom: 14px;
}

.fit_sup_block_text {
	font-size: 14px;
	text-align: left;
	line-height: 1.5;
	color: #7E8189;
}

.easy_us_block img {
	width: 20px;
	height: auto;
}

.easy_us_blocks {
	position: relative;
	display: flex;
	flex-direction: column;
	margin: 10px auto;
	text-align: left;
}

.easy_us_block h2 {
	font-size: 20px;
	color: #000000;
	line-height: 1.25;
}

.easy_us_block p {
	font-size: 20px;
	text-align: left;
	color: #00c7b1;
	margin-bottom: 21px;
}

.every_sub_blocks {
	position: relative;
	text-align: left;
	display: flex;
	flex-direction: row;
	padding: 14px 7px;
	background: #ffffff;
	border: 2px solid #00c7b1;
	border-radius: 18px;
	margin: 20px auto;
	justify-content: space-around;
}

.every_sub_block {
	width: 45%;
	display: flex;
	flex-direction: column;
	text-align: left;
	justify-content: space-between;
}

.every_sub_block_content {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	margin: 7px 0;
	font-size: 16px;
	line-height: 1.25;
}

.every_sub_block_content img {
	width: 21px;
	height: 21px;
	margin-right: 7px;
}

.simple_sub_subtitle {
	font-size: 20px;
	color: #000000;
	margin-bottom: 10px;
}

.simple_sub_blocks {
	display: flex;
	flex-direction: column;
}

.simple_sub_block {
	width: 100%;
	position: relative;
	text-align: left;
	display: flex;
	flex-direction: column;
	padding: 14px 28px;
	background: #ffffff;
	border: 2px solid #00c7b1;
	border-radius: 18px;
	margin: 10px auto;
}

.simple_sub_block_title {
	font-size: 20px;
	color: #000000;
	line-height: 1.25;
	margin-bottom: 7px;
}

.simple_sub_block_subtitle {
	font-size: 18px;
	color: #00c7b1;
	line-height: 1.25;
	margin-bottom: 14px;
}

.simple_sub_block_text {
	font-size: 14px;
	color: #8C8F96;
	margin-bottom: 10px;
}

.faq h3 {
	font-weight: 300;
	letter-spacing: 1px;
	display: block;
	font-size: 18px;
	background: #ffffff;
	margin: 0;
	cursor: pointer;
	border-radius: 8px;
	padding: 20px 80px 20px 30px;
	color: #000000;
	font-weight: 700;
	border: 2px solid #00c7b1;
	border-radius: 18px;
}

.faq p {
	color: #000000;
	background: #ffffff;
	font-size: 14px;
	line-height: 26px;
	letter-spacing: 1px;
	position: relative;
	overflow: hidden;
	max-height: 800px;
	opacity: 1;
	transform: translate(0, -16px);
	z-index: 2;
	border-radius: 0 0 18px 18px;
	padding: 20px 20px 20px 30px;
	border-bottom: 2px solid #00c7b1;
	border-right: 2px solid #00c7b1;
	border-left: 2px solid #00c7b1;
}

.faq ul {
	list-style: none;
	perspective: 900;
	padding: 0;
	margin: 0;
	width: 90%;
	margin: 0 auto;
}

.faq ul li {
	position: relative;
	padding: 0;
	margin: 0;
	padding-bottom: 4px;
	text-align: left;
}

.faq ul li:nth-of-type(1) {
	animation-delay: 0.5s;
}

.faq ul li:nth-of-type(2) {
	animation-delay: 0.75s;
}

.faq ul li:nth-of-type(3) {
	animation-delay: 1s;
}

.faq ul li:last-of-type {
	padding-bottom: 0;
}

.faq ul li i {
	position: absolute;
	margin-top: 25px;
	right: 40px;
}

.faq ul li i:before,
ul li i:after {
	content: "";
	position: absolute;
	background-color: #00c7b1;
	width: 3px;
	height: 15px;
}

.faq ul li i:before {
	transform: translate(4px, 0) rotate(270deg);
}

.faq ul li i:after {
	transform: translate(4px, 0) rotate(270deg);
}

.faq ul li input[type=checkbox] {
	position: absolute;
	cursor: pointer;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
}

.faq ul li input[type=checkbox]:checked~p {
	margin-top: 0;
	max-height: 0;
	opacity: 0;
	transform: translate(0, 50%);
}

.faq ul li input[type=checkbox]:checked~i:before {
	transform: translate(4px, 0) rotate(0deg);
}

.faq ul li input[type=checkbox]:checked~i:after {
	transform: translate(4px, 0) rotate(270deg);
}

.faq_price .modal-window {
	bottom: 0;
}

.ready_block {
	display: flex;
	flex-direction: column;
	position: relative;
	border-radius: 18px;
	background: #ffffff;
	color: #000000;
	text-align: center;
	padding: 20px 30px;
}

.ready_block_title {
	text-align: center;
}

.ready_block_subtitle {
	font-size: 16px;
	margin-bottom: 16px;
}

.ready_block_button {
	width: 100%;
	display: block;
	padding: 14px 0;
	background: #00c7b1;
	color: #ffffff;
	text-decoration: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 700;
	border-width: 0;
}

.ready_block_button:hover {
	background: #00c7b1a4;
	cursor: pointer;
}


.footer {
	color: var(--footer);
	font-size: 14px;
	max-width: 480px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 90%;
	position: relative;
	bottom: 0;
}

.footer.hidden {
	padding-top: 50vh;
}

.footer a {
	color: inherit;
}

.footer-content {
	max-width: 400px;
	margin: 0 auto;
	padding: 6px;
}

.footer-content:after {
	content: '';
	clear: both;
	display: block;
}

.foot_links {
	display: flex;
	flex-direction: row;
	position: relative;
	font-size: 10px;
	margin: 5px auto;
	padding-bottom: 10px;
	justify-content: space-evenly;
	max-width: 400px;
}

.content-link {
	display: block;
	float: left;
	width: 33.33%;
	padding: 0 3px;
}

.content-link img {
	display: block;
	margin: 0 auto;
	max-width: 90px;
}

.footer-content__preview {
	display: none;
	border-radius: 4px;
	padding-bottom: 8px;
	overflow: hidden;
}

.footer-content__preview iframe {
	display: block;
	width: 300px;
	height: 200px;
	border: 0;
	margin: 0 auto;
}

/*.d-none {
	display: none;
}*/

.loading {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('../images/loading.svg') center center no-repeat rgba(0, 0, 0, 0.8);
	display: none;
}

.loading.show {
	display: block;
}

.error {
	padding-top: 15px;
	color: red;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
	border: 2px solid var(--input-border);
	-webkit-text-fill-color: #fcfcfc;
	-webkit-box-shadow: 0 0 0px 1000px #000 inset;
	transition: background-color 5000s ease-in-out 0s;
}

span.bold-price {
	font-size: 12px;
	color: #fff;
}

.menu-btn div {
	height: 4px;
	background: #00c7b1;
	border-radius: 2px;
}

.menu-btn div+div {
	margin-top: 4px;
}

.popup {
	display: none;
}

.menu>li>a {
	text-decoration: none;
}

.hamb {
	display: flex;
	align-items: center;
	z-index: 999;
	position: absolute;
	top: 10px;
	left: 25px;
}

.hamb__field {
	cursor: pointer;
}

.bar {
	display: block;
	width: 30px;
	height: 3px;
	margin: 5px auto;
	background-color: #d9d9d9;
	transition: 0.2s;
}

.popup {
	position: fixed;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background-color: #121212;
	z-index: 100;
	display: flex;
	flex-direction: column;
	transition: 0.3s;
}

.popup.open {
	left: 0;
}

.popup .menu {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
	padding: 100px 0 0;
	overflow: auto;
}

.popup .menu>li {
	width: 100%;
	z-index: 999;
}

.popup .menu>li>a {
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 20px 0;
	font-size: 20px;
	font-weight: bold;
	color: #d9d9d9;
}

.popup .menu>li>a:hover {
	background-color: #00c7b133;
}

.hamb__field.active .bar:nth-child(2) {
	opacity: 0;
}

.hamb__field.active .bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.hamb__field.active .bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.closeBtnWrapper {
	max-width: 400px;
	width: 100%;
	display: flex;
	margin: 0 auto;
	position: relative;
}

.close-btn {
	font-size: 45px;
	color: #d9d9d9;
	cursor: pointer;
	z-index: 1000;
	position: absolute;
	top: 5px;
	left: 30px;
	width: 32px;
	height: 30px;
	cursor: pointer;
}

.close-btn:hover {
	color: #00c7b1;
}

@media (orientation: portrait) and (max-width: 420px) {
	section h1 {
		font-size: 28px;
	}

	.how_works_help h2 {
		font-size: 20px;
	}

	.fit_sup_block_title,
	.easy_us_block h2,
	.simple_sub_subtitle,
	.simple_sub_block_title {
		font-size: 18px;
	}

	.how_works_block_title h2,
	.easy_us_block p,
	.faq h3,
	.title {
		font-size: 16px;
	}

	.popular_feat_block_title h2,
	.popular_feat_block_btn,
	.every_sub_block_content,
	.simple_sub_block_subtitle,
	.ready_block_subtitle,
	.ready_block_button,
	.label,
	.btn-exit {
		font-size: 14px;
	}

	.how_works_block_text,
	.how_works_help p,
	.popular_feat_block_text,
	.fit_sup_block_text,
	.simple_sub_block_text,
	.faq p,
	.footer h5,
	.subtitle,
	.button_bottom_text,
	.foot_links {
		font-size: 12px;
	}

}

@media (orientation: portrait) and (max-width: 380px) {
	section h1 {
		font-size: 24px;
	}

	.how_works_help h2 {
		font-size: 18px;
	}

	.fit_sup_block_title,
	.easy_us_block h2,
	.simple_sub_subtitle,
	.simple_sub_block_title {
		font-size: 16px;
	}
}

@media (orientation: landscape) and (min-width: 1280px) {

	.main,
	.footer,
	.foot_links {
		max-width: 640px;
	}

	.main_img {
		display: block;
		opacity: 1;
	}
}

@media (orientation: landscape) and (min-width: 1600px) {

	.main,
	.footer,
	.foot_links {
		max-width: 960px;
	}

	#subConfirm {
		max-width: 640px;
		margin: 0 auto;
	}

	section h1 {
		font-size: 38px;
	}

	.how_works_help h2 {
		font-size: 30px;
	}

	.fit_sup_block_title,
	.easy_us_block h2,
	.simple_sub_subtitle,
	.simple_sub_block_title {
		font-size: 28px;
	}

	.how_works_block_title h2,
	.easy_us_block p,
	.faq h3,
	.title {
		font-size: 26px;
	}

	.lang {
		font-size: 22px;
		padding: 4px 8px;
	}

	.popular_feat_block_title h2,
	.popular_feat_block_btn,
	.every_sub_block_content,
	.simple_sub_block_subtitle,
	.ready_block_subtitle,
	.ready_block_button,
	.label {
		font-size: 22px;
	}

	.how_works_block_text,
	.how_works_help p,
	.popular_feat_block_text,
	.fit_sup_block_text,
	.simple_sub_block_text,
	.faq p,
	.footer h5,
	.subtitle,
	.button_bottom_text,
	.foot_links,
	.btn-exit {
		font-size: 18px;
	}
}

@media (orientation: landscape) and (min-width: 2400px) {

	.main,
	.footer,
	.foot_links {
		max-width: 1200px;
	}
}

@media (min-width: 640px) {
	.button_bottom_text {
		display: none;
	}

	.button_top_text {
		display: block;
	}
}