*,::after,::before{box-sizing:border-box;outline: none;}ol[class],ul[class]{padding:0}blockquote,body,dd,dl,figcaption,figure,h1,h2,h3,h4,li,ol[class],p,ul[class]{margin:0}body{min-height:100vh;scroll-behavior:smooth;text-rendering:optimizeSpeed;line-height:1.5}ol[class],ul[class]{list-style:none}a:not([class]){text-decoration-skip-ink:auto}img{max-width:100%;display:block}article>*+*{margin-top:1em}button,input,select,textarea{font:inherit}@media (prefers-reduced-motion:reduce){*{animation-duration:0s!important;animation-iteration-count:1!important;transition-duration:0s!important;scroll-behavior:auto!important}}

@font-face {
    font-family: 'ib';
    font-style: normal;
    font-weight: 700;
    src: local('ib'), url('../fonts/inter/Inter-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'ir';
    font-style: normal;
    font-weight: 400;
    src: local('ir'), url('../fonts/inter/Inter-Regular.ttf') format('truetype');
}

:root {
  --black: #000000;
  --white: #ffffff;
  --beige: #FEFFFA;
  --beige-dark: #FFE7C1;
  --yellow: #FFAD29;
  --yellow-2: #EFA329;
  --yellow-transparent: #FFEDD0;
  --orange: #FF8A00;
  --gray: #B4B6CB;
  --gray-default: #C4C4C4;
  --gray-dark: #423F3F;
  --gray-light: #BDBDBD;
  --gray-normal: #48433A;
  --blue-dark: #263238;
  --green: #15BC1C;
  --red: #EB001B;

  --container-width: 1320px;
}

body,html {
	margin: 0;
	padding: 0;
	min-height: 100vh;
	font-family: "Open Sans", sans-serif;
	color: var(--gray-dark);
	background-color: var(--beige);
	overflow-x: hidden;
}

p {
	font-size: 16px;
	line-height: 19px;
}

b, strong {
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
}

svg.polygon-down {
	width: 5px;
	height: 5px;
	margin-left: 3px;
}
svg.polygon-down path {
	transition: fill .3s;
}

h1,h2,h3,h4 {
	color: var(--black);
}

h1 {
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	font-size: 64px;
	line-height: 72px;
}

h2 {
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	font-size: 48px;
	line-height: 54px;
}

h3 {
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	font-size: 22px;
	line-height: 26px;
}

h4 {
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
}

.faq-h1 {
	font-size: 34px;
	line-height: 39px;
	margin: 0 0 15px;
}

.faq-h2 {
	font-size: 22px;
	line-height: 26px;
	margin: 10px 0;
	color: var(--gray-dark);
}

.faq-h3 {
	font-size: 16px;
	line-height: 21px;
	margin: 10px 0;
	color: var(--gray-dark);
}

.if-block-2 {
	margin-top: 60px;
}

.if-block-2 img {
	margin-bottom: 30px;
}

.with-num ,
.with-icon {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	margin: 10px 0;
}

.with-icon {
	align-items: center;
	padding-left: 15px;
}

.with-num .num ,
.with-num .sub {
	font-size: 16px;
	line-height: 19px;
	color: var(--yellow);
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	display: block;
	width: 30px;
	min-width: 30px;
	text-align: right;
	padding-right: 8px;
}

.with-num .sub {
	display: inline-block;
}

.with-icon .icon {
	height: 30px;
	width: 30px;
	margin-right: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.with-icon .icon img {
	margin: 0 !important;
}

.video-info p {
	margin: 0 0 8px;
}

.video-info ul {
	margin: 6px 0 12px 20px;
	padding-left: 20px;
}

.video-info li {
	margin: 4px 0;
}

.video-info .with-num {
	align-items: flex-start;
}

.video-info .with-num p {
	margin: 0 0 6px;
}

.btn {
	display: block;
	border-radius: 63px;
	height: 35px;
	width: auto;
	padding: 0 30px;
	white-space: nowrap;
	text-align: center;
	text-transform: uppercase;
	color: var(--black);
	background-color: var(--yellow);
	cursor: pointer;
	font-family: "Open Sans", sans-serif;
	font-size: 14px;
	line-height: 32px;
	transition: background-color .3s, border-color .3s;
	text-decoration: none !important;
	border: 2px solid var(--yellow);
	overflow: hidden;
}

.btn-secondary {
	background-color: transparent;
}

.btn:hover {
	background-color: var(--orange);
	border-color: var(--orange);
}

.btn-big {
	height: 51px;
	line-height: 50px;
	font-size: 18px;
	letter-spacing: 0.05em;
}


.header {
	display: block;
	position: absolute;
	width: 100%;
	height: 75px;
	z-index: 50;
}

.header-light {
	background-color: var(--white);
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.07);
}

.header .header-container {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	width: var(--container-width);
	padding: 0 20px;
	max-width: 100%;
	margin: 0 auto;
}

.header .logo-link {
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	height: 100%;
	width: auto;
}

.header .logo-link img {
	height: 46px;
	width: auto;
}

.header .right {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
	width: auto;
}

.header .nav {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
	width: auto;
	margin-right: 30px;
}

.header .nav .link {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: auto;
	font-size: 14px;
	line-height: 17px;
	text-decoration: none;
	color: var(--gray-dark);
	transition: color .3s;
	position: relative;
	cursor: pointer;
	padding: 0 30px;
}

.header .nav .link:hover {
	color: var(--yellow);
}

.header .nav .link:hover .polygon-down path {
	fill: var(--yellow);
}

.lang-list {
	display: none;
	position: absolute;
	top: 75%;
	left: 50%;
	transform: translateX(-50%);
	height: auto;
	width: auto;
	background-color: var(--white);
	padding: 8px 0 11px;
	border-radius: 7px;
	overflow: hidden;
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.07);
}

.lang-list .link {
	margin: 0 !important;
	padding: 0 15px 0 13px !important;
}

.header .auth {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
	width: auto;
}

.header .auth .btn {
	padding: 0 38px;
}
.header .auth .btn-secondary {
	padding: 0 28px;
	margin-left: 30px;
}

.header .profile {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	cursor: pointer;
	user-select: none;
	margin-left: 40px;
	height: 100%;
}

.header .profile .user-logo {
	display: block;
	min-width: 30px;
	min-height: 30px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-color: var(--yellow);
	background-image: url(./images/user-logo.jpg);
	margin-right: 9px;
}

.header .profile .user-name {
	font-size: 14px;
	line-height: 16px;
}


.container {
	width: var(--container-width);
	max-width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}


.modal-bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 60;
	cursor: pointer;
	background-color: rgba(0,0,0,.7);
}

.modal {
	display: none;
	overflow: hidden!important;;
	z-index: 1070!important;;
	position: fixed!important;;
	left: 50%!important;;
	top: 50%!important;;
	transform: translate(-50%, -50%)!important;;
	background-color: var(--white)!important;;
	border-radius: 8px!important;;
	padding: 40px 80px 44px!important;;
	width: 578px!important;;
	max-width: calc(100% - 40px)!important;;
	height: auto!important;;
	max-height: calc(100vh - 40px)!important;;
	overflow-y: auto!important;;
}

.modal-close {
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	padding: 10px;
	transition: transform .3s;
}
.modal-close:hover {
	transform: scale(1.25);
}

.modal-title {
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	font-size: 48px;
	line-height: 54px;
	margin: 0 0 30px;
	width: 100%;
	text-align: center;
	white-space: nowrap;
}

.form .label {
	display: block;
	font-size: 14px;
	line-height: 17px;
	margin: 0 0 9px;
	color: var(--gray-dark);
}

.form .input {
	display: block;
	width: 100%;
	height: 42px;
	border: 1px solid var(--gray-light);
	border-radius: 6px;
	padding: 0 20px;
	margin: 0 0 20px;
	color: var(--gray-dark);
}

.form textarea.input {
	padding: 10px 20px;
	min-height: 85px;
	resize: none;
}

.modal-line {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
}
.checkbox-container {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-start;
	cursor: pointer;
	font-size: 14px;
	line-height: 18px;
	color: var(--gray-dark);
	user-select: none;
	max-width: 70%;
}

.checkbox-container input[type=checkbox] {
	display: none;
}
.checkbox-container .checkbox-status {
	background-size: 100% 100%;
	width: 20px;
	height: 20px;
	min-width: 20px;
	min-height: 20px;
	background-image: url(../images/checkbox-no.svg);
	margin-right: 6px;
}
.checkbox-container input[type=checkbox]:checked + .checkbox-status {
	background-image: url(./images/checkbox-yes.svg);
}

.modal .btn {
	width: 100%;
	margin: 20px 0 0;
}

.modal-ask .btn {
	margin-top: 30px;
}

.modal .link {
	font-size: 14px;
	line-height: 17px;
	color: var(--yellow);
	text-decoration: underline;
	text-align: right;
}

.modal-footer {
	margin: 32px 0 0;
	text-align: center;
	font-size: 14px;
	line-height: 17px;
	color: var(--gray-dark);
}

.modal-footer .link {
	color: var(--yellow);
	text-decoration: underline;
	margin: 0 3px;
	cursor: pointer;
}

.modal, textarea.input {
	scrollbar-width: auto;
	scrollbar-color: #bdbdbd transparent;
}
.modal::-webkit-scrollbar, textarea.input::-webkit-scrollbar {
	width: 16px;
}
.modal::-webkit-scrollbar-track, textarea.input::-webkit-scrollbar-track {
	background: transparent;
}
.modal::-webkit-scrollbar-thumb, textarea.input::-webkit-scrollbar-thumb {
	background-color: #bdbdbd;
	border-radius: 16px;
	border: 5px solid #ffffff;
}


.section-welcome {
	width: 100%;
	height: auto;
	padding: 134px 0 0;
}

.section-welcome .container {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}

.section-welcome .left {
	width: 55%;
	position: relative;
	z-index: 3;
}

.section-welcome .right {
	width: 45%;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: flex-start;
	position: relative;
	z-index: 2;
}

.section-welcome img {
	width: 652px;
	max-width: 115%;
}

.section-welcome .btn {
	width: 236px;
	margin: 20px 0 0;
}

.section-welcome .text {
	font-size: 18px;
	line-height: 22px;
	margin: 22px 0 0;
	color: var(--gray-dark);
}

.section-welcome .circle {
	width: 677px;
	height: auto;
	display: block;
	user-select: none;
	pointer-events: none;
	position: absolute;
	left: 0;
	top: 0;
	transform: translate(-50%, -45%);
}

.section-welcome .total {
	white-space: nowrap;
	font-size: 18px;
	line-height: 21px;
	margin: 90px 0 0;
	padding: 16px 32px 16px 12px;
	border-radius: 0 6px 6px 0;
	border: 1px solid var(--yellow);
	border-left: none;
	display: inline-flex;
	position: relative;
	color: var(--gray-dark);
}

.section-welcome .total:before {
	content: "";
	display: block;
	position: absolute;
	left: 1px;
	top: -1px;
	transform: translateX(-100%);
	height: calc(100% + 2px);
	width: 50vw;
	border: 1px solid var(--yellow);
	border-right: none;
	border-left: none;
}

.section-welcome .total span {
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	color: var(--yellow-2);
	margin-left: 7px;
}


.section-signup {
	width: 100%;
	height: auto;
	margin: 100px 0;
	position: relative;
}

.section-signup .inner {
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.07);
	background-color: var(--white);
	border-radius: 15px;
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	overflow: hidden;
}

.section-signup .circle {
	width: 677px;
	height: auto;
	display: block;
	user-select: none;
	pointer-events: none;
	position: absolute;
	left: calc(50vw);
	top: 0;
	transform: translate(50%, -40%);
	z-index: 1;
}

.section-signup .right {
	width: 48%;
	position: relative;
	z-index: 3;
	padding: 0 20px 0 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.section-signup .right h2 {
	width: 100%;
}

.section-signup .left {
	width: 52%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-end;
	position: relative;
	z-index: 2;
}

.section-signup .left img {
	width: 100%;
	height: auto;
}

.section-signup .text {
	font-size: 18px;
	line-height: 22px;
	margin: 10px 0 20px;
}

.section-signup .buttons {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
}

.section-signup .buttons .btn {
	min-width: 40%;
	margin-right: 30px;
	margin-bottom: 20px;
}


.section-bonuses .container {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: space-between;
}

.section-bonuses .bonus-one {
	overflow: hidden;
	border-radius: 15px;
	background-color: var(--white);
	width: calc(25% - (90px / 4));
	padding-top: 10px;
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.07);
}

.section-bonuses .bonus-one .image {
	width: 100%;
	min-height: 212px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.section-bonuses .bonus-one .image img {
	width: auto;
	height: auto;
	max-width: 100%;
}

.section-bonuses .bonus-one h3 {
	max-width: 80%;
	padding: 0 0 30px 30px;
	margin: 10px 0 0;
}


.section-goal {
	margin: 100px 0;
	position: relative;
	z-index: 2;
}

.section-goal h2 {
	max-width: 750px;
}

.section-goal .inner {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: space-between;
	margin: 20px 0 0;
}

.section-goal .inner > div {
	width: calc(50% - 15px);
	padding: 5px 30px 30px;
	background-color: var(--white);
	border-radius: 15px;
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.07);
}

.section-goal p {
	font-size: 18px;
	line-height: 22px;
	margin: 22px 0 0;
	color: var(--gray-dark);
	margin: 0;
}

.section-goal .image {
	height: 206px;
	width: 100%;
	overflow: hidden;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	margin-bottom: 25px;
}

.section-goal .image img {
	height: auto;
	width: auto;
}

.section-goal .btn {
	margin-top: 15px;
	width: 236px;
	max-width: 100%;
}


.section-example {
	margin: 100px 0;
}

.section-example .container {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: space-between;
}

.section-example .left {
	width: 50%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	position: relative;
	z-index: 3;
}

.section-example .right {
	width: 50%;
	position: relative;
}

.section-example .right * {
	position: relative;
	z-index: 2;
	color: var(--gray-dark);
}

.section-example h2 {
	margin-bottom: 60px;
	width: 100%;
}

.section-example .left p {
	display: block;
	width: 50%;
	margin: 0 0 70px;
	padding: 0 15px 0 53px;
	position: relative;
	font-size: 18px;
	line-height: 25px;
	color: var(--gray-dark);
}

.section-example .left p span {
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	color: var(--yellow);
}

.section-example .left p:before {
	content: "1";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	font-size: 22px;
	line-height: 40px;
	color: var(--black);
	background-color: var(--yellow);
	text-align: center;
}

.section-example .left p:nth-child(3):before {
	content: "2";
}
.section-example .left p:nth-child(4):before {
	content: "3";
}
.section-example .left p:nth-child(5):before {
	content: "4";
}

.section-example .circle {
	width: 677px;
	max-width: 150%;
	height: auto;
	display: block;
	user-select: none;
	pointer-events: none;
	position: absolute;
	left: 0;
	top: 50%;
	z-index: 1 !important;
	transform: translate(0, -50%);
}

.section-example .image {
	width: 100%;
	height: 100%;
}

.section-example .image:before {
	content: "";
	display: block;
	position: absolute;
	min-height: 1px;
	height: 1px;
	width: 80%;
	position: absolute;
	left: 10%;
	bottom: calc(10% - 1px);
	background-color: #97A6B7;
	z-index: 2;
}

.section-example .image-top {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-70%);
}

.section-example .image-top p {
	font-size: 14px;
	line-height: 18px;
	display: block;
	padding: 9px 50px 8px 25px;
	background-color: var(--beige-dark);
	border-radius: 63px;
	position: relative;
	z-index: 1;
	max-width: 175px;
	max-height: 53px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.section-example .image-top span {
	font-size: 18px;
	line-height: 74px;
	text-align: center;
	border-radius: 50%;
	width: 74px;
	min-width: 74px;
	height: 74px;
	background-color: var(--yellow);
	position: relative;
	z-index: 2;
	transform: translateX(-50%);
}

.section-example .image-left {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 10%;
	left: 25%;
	width: 60px;
}

.section-example .image-left .up,
.section-example .image-right .up {
	font-size: 18px;
	line-height: 29px;
	padding: 0 14px;
	text-align: center;
	border-radius: 63px;
	background-color: var(--yellow);
	margin-bottom: 9px;
	width: 100%;
}

.section-example .image-left .down,
.section-example .image-right .down {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	border-radius: 5px 5px 0 0;
	background-color: var(--yellow);
	padding: 5px;
	width: 100%;
	position: relative;
	height: 55px;
}

.section-example .image-right .down {
	height: 144px;
}

.section-example .image-left .down p,
.section-example .image-right .down p {
	font-size: 12px;
	line-height: 18px;
}

.section-example .image-left .down span,
.section-example .image-right .down span {
	font-size: 18px;
	line-height: 24px;
}

.section-example .image-left label,
.section-example .image-right label {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 110%);
	text-align: center;
}

.section-example .image-right {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 10%;
	right: 25%;
	width: 60px;
}

.section-example .arrow-left {
	position: absolute;
	width: auto;
	height: auto;
    left: 28%;
    top: 22%;
}

.section-example .arrow-right {
	position: absolute;
	width: auto;
	height: auto;
	left: 58%;
	top: 19%;
}



.main {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	margin-top: 75px;
	min-height: calc(100vh - 75px);
	position: relative;
}

.aside {
	width: calc(50vw - (1320px / 2) + 248px);
	min-width: 238px;
	background-color: var(--white);
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.07);
	min-height: calc(100vh - 75px);
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	padding: 50px 0 0;
}

.aside .inner {
	width: 218px;
}

.aside .help {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
}

.aside .help img {
	width: 20px;
	height: auto;
	margin-right: 7px;
	position: relative;
	top: -2px;
}

.aside .help .help-img-close {
	display: none;
}

.aside .buttons {
	display: none;
}

.mob-help-open {
	display: none;
}

.aside .help p {
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
}

.aside .aside-list {
	display: flex;
	flex-direction: column;
	margin: 20px 0 0;
	padding-left: 50px;
}

.aside .aside-list a {
	text-decoration: none;
	color: var(--gray-dark);
	font-size: 14px;
	line-height: 21px;
	display: block;
	position: relative;
	white-space: nowrap;
	text-overflow: ellipsis;
	position: relative;
}

.aside .aside-list a.active {
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
}
.aside .aside-list a.active:after {
	content: "";
	display: block;
	position: absolute;
	left: -35px;
	top: 0;
	height: 100%;
	width: calc(100% + 35px);
	background-color: var(--yellow-transparent);
	z-index: 1;
	border-radius: 15px 0 0 15px;
	border-right: 3px solid var(--yellow);
}

.aside .aside-list a span {
	position: relative;
	z-index: 2;
}

.aside .aside-list a:before {
	content: "";
	display: block;
	width: 12px;
	height: 3px;
	position: absolute;
	left: -19px;
	top: calc(50% - 2px);
	background-image: url(../images/help-minus.svg);
	background-size: 100% 100%;
	background-position: center;
	z-index: 2;
}

.aside .aside-list a:not(.active):hover {
	text-decoration: underline;
}

.main .content {
	width: calc(50vw + (1320px / 2) - 218px);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 20px 20px 0;
}

.container-2 {
	width: 100%;
	max-width: 1042px;
	margin: 0;
	padding: 40px;
	position: relative;
	background-color: var(--white);
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.07);
	border-radius: 15px;
	overflow: hidden;
	margin-bottom: 20px;
}

.container-2 > .text {
	font-size: 14px;
	line-height: 19px;
}

#faq-1 .image {
	margin: 20px 0;
	height: 405px;
	width: 100%;
	position: relative;
}

#faq-1 .image-left {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-70%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	z-index: 3;
}

#faq-1 .image-left p {
	background-color: var(--beige-dark);
	font-size: 14px;
    line-height: 18px;
	display: block;
	border-radius: 63px;
	position: relative;
	z-index: 1;
	width: 51px;
	height: 81px;
	padding: 15px 0 0;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
}

#faq-1 .image-left span {
	font-size: 14px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    width: 71px;
    min-width: 71px;
    height: 71px;
    background-color: var(--yellow);
    position: relative;
    z-index: 2;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

#faq-1 .image-big {
	position: absolute;
	left: 60px;
	top: 50%;
	transform: translateY(-50%);
	width: auto;
	height: 100%;
	z-index: 2;
	pointer-events: none;
	max-width: 65%;
}

#faq-1 .image-mob {
	display: none;
}

#faq-1 .image-right {
	position: absolute;
	font-size: 14px;
	line-height: 17px;
	background-color: var(--beige-dark);
	border-radius: 63px;
	padding: 13px 23px 14px 50px;
	max-width: 190px;
	z-index: 1;
	left: 344px;
	top: 50%;
    transform: translateY(-93%);
}



#faq-2 .row {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: space-around;
	position: relative;
	padding: 75px 0 20px;
	border-bottom: 1px solid var(--gray-default);
}

#faq-2 .row:last-child {
	border: none !important;
}

#faq-2 .table {
	position: relative;
	margin-bottom: 60px;
}

#faq-2 .table:before {
	content: "";
	display: block;
	min-width: 1px;
	width: 1px;
	height: 100%;
	background-color: var(--gray-default);
	position: absolute;
	left: 50%;
}

#faq-2 .table .title {
	font-size: 22px;
	line-height: 25px;
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	color: var(--black);
}

#faq-2 .table .table-header {
	padding: 0 0 7px;
}

#faq-2 .table p a {
	color: var(--yellow);
	text-decoration: underline;
}
#faq-2 .table p a:hover {
	color: var(--orange);
}

#faq-2 .table p {
	display: block;
    width: 50%;
    text-align: center;
    font-size: 14px;
    line-height: 22px;
    padding: 0 10px;
}

#faq-2 .table .centered {
	width: auto;
	height: 45px;
	max-width: 100%;
	overflow: hidden;
	position: absolute;
	padding: 13px 31px;
	border-radius: 63px;
	background-color: var(--beige-dark);
	color: var(--black);
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	text-align: center;
	white-space: nowrap;
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

#faq-2 > .title {
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
	margin: 0 0 15px;
	color: var(--black);
}

#faq-2 .images .title {
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	color: var(--black);
}

#faq-2 .images {
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	height: 378px;
	padding-bottom: 48px;
}

#faq-2 .image {
	position: relative;
	width: 40%;
	height: 100%;
	border-bottom: 1px solid #97A6B7;
}

#faq-2 .image-2 {
	margin-left: 10%;
}

#faq-2 .image-top {
	font-size: 16px;
	line-height: 19px;
	height: 61px;
	padding: 0 29px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	white-space: nowrap;
	border-radius: 63px;
	text-align: center;
	position: absolute;
	left: 50%;
	top: 36px;
	transform: translateX(-50%);
	background-color: var(--beige-dark);
	min-width: 50%;
}

#faq-2 .image-graph {
	position: absolute;
	bottom: 0;
	left: 15%;
	width: 60px;
}

#faq-2 .image-right {
	left: auto;
	right: 15%;
}

#faq-2 .up {
	font-size: 18px;
	line-height: 24px;
	margin: 0 0 10px;
	white-space: nowrap;
	text-align: center;
}

#faq-2 .down {
	border-radius: 5px 5px 0 0;
	background-color: var(--yellow);
	text-align: center;
	padding: 10px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
}

#faq-2 .down p {
	font-size: 12px;
	line-height: 16px;
	display: block;
}

#faq-2 .down span {
	font-size: 18px;
	line-height: 22px;
	white-space: nowrap;
	display: block;
}

#faq-2 .image-graph label {
	position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 110%);
    text-align: center;
    font-size: 14px;
    line-height: 19px;
}

#faq-2 .image-1 .arrows {
	position: absolute;
	top: calc(61px + 36px + 11px);
	left: 50%;
	transform: translateX(-50%);
}

#faq-2 .image-1 .image-left .down {
	height: 58px;
}

#faq-2 .image-1 .image-right .down {
	height: 135px;
	background-color: var(--orange);
}

#faq-2 .image-2 .image-left .down,
#faq-2 .image-2 .image-right .down {
	height: 90px;
}
#faq-2 .image-2 .image-right .down {
	background-color: var(--orange);
}

#faq-2 .image-2 .arrows {
	display: block;
	position: absolute;
	top: calc(61px + 36px + 11px);
	left: 50%;
	transform: translateX(-50%);
}

#faq-2 .text {
	margin: 40px 0 60px;
}

#faq-2 .description {
	margin: 0;
}

#faq-2 .text a {
	text-decoration: underline;
	color: var(--yellow);
}

#faq-2 .images-2 {
	margin: 20px 0 0;
}

#faq-2 .images-2 .image {
	width: 384px;
	max-width: 100%;
}

#faq-2 .image-3 .arrows {
	position: absolute;
    top: calc(61px + 11px);
    left: 50%;
    transform: translateX(-50%);
}

#faq-2 .image-3 .image-top {
	top: 0;
}

#faq-2 .image-3 {
	height: 298px !important;
}

#faq-2 .image-3 .image-right .down {
	height: 135px !important;
	background-color: var(--orange);
}


#faq-3 .image {
	position: relative;
	width: 100%;
	height: auto;
}

#faq-3 .image-1 {
	margin: 25px 0 35px;
	padding-bottom: 30px;
}

#faq-3 > .title {
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
	margin: 0 0 15px;
	color: var(--black);
}

#faq-3 .image-mob {
	display: none;
	position: relative;
	width: 100%;
	height: auto;
	padding-top: 45px;
}

#faq-3 .image-big {
	display: block;
	position: relative;
	width: 100%;
	height: auto;
}

#faq-3 .image p {
	font-size: 14px;
	line-height: 17px;
	display: block;
	position: absolute;
}

#faq-3 .image p span {
	display: none;
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	color: var(--yellow);
}

#faq-3 .image-1 .text-1 {
    left: 3%;
    top: 0%;
    max-width: calc(10% - 5px);
}

#faq-3 .image-1 .text-2 {
    left: 3%;
    top: 23%;
    max-width: calc(10% - 5px);
}

#faq-3 .image-1 .text-3 {
    left: 50%;
    bottom: calc(39% + 30px);;
    max-width: 115px;
}

#faq-3 .image-1 .text-4 {
    left: 50%;
    bottom: calc(16% + 30px);
    max-width: 123px;
}

#faq-3 .image-1 .text-5 {
    left: 14%;
    transform: translateX(-50%);
    text-align: center;
    bottom: 0%;
    max-width: 102px;
    height: 51px;
}

#faq-3 .image-1 .text-6 {
    left: 46.7%;
    transform: translateX(-50%);
    text-align: center;
    bottom: 0%;
    max-width: 116px;
    min-height: 51px;
}

#faq-3 .description {
	margin: 25px 0 80px;
	max-width: 720px;
}

#faq-3 .image-2 {
	margin-bottom: 50px;
}

#faq-3 .image-2 .text-1 {
	left: 3%;
	top: -1%;
	max-width: calc(10% - 5px);
}

#faq-3 .image-2 .text-2 {
    left: 3%;
    top: 22%;
    max-width: calc(10% - 5px);
}

#faq-3 .image-2 .text-3 {
    left: 49%;
    top: 50%;
    max-width: 115px;
}

#faq-3 .image-2 .text-4 {
	left: 49%;
	top: 74%;
	max-width: 115px;
}

#faq-3 .image-2 .text-5 {
	left: 13.7%;
	bottom: -50px;
	max-width: 102px;
	text-align: center;
	transform: translateX(-50%);
	min-height: 51px;
}

#faq-3 .image-2 .text-6 {
	left: 30%;
	bottom: -50px;
	max-width: 95px;
	text-align: center;
	transform: translateX(-50%);
	min-height: 51px;
}

#faq-3 .image-2 .text-7 {
	left: 46%;
	bottom: -50px;
	max-width: 95px;
	text-align: center;
	transform: translateX(-50%);
	min-height: 51px;
}

#faq-3 .image-2 .text-8 {
	left: 63%;
	bottom: -50px;
	max-width: 95px;
	text-align: center;
	transform: translateX(-50%);
	min-height: 51px;
}

#faq-3 .image-2 .text-9 {
	left: 78.7%;
	bottom: -50px;
	max-width: 95px;
	text-align: center;
	transform: translateX(-50%);
	min-height: 51px;
}

#faq-3 .title-margin {
	margin-bottom: 30px;
}

#faq-3 .image-2 .text-10 {
	right: 23%;
	top: 1%;
	max-width: 82px;
}

#faq-3 .image-2 .text-11 {
	right: 23%;
	top: 26%;
	max-width: 84px;
}




.footer {
	background-color: var(--blue-dark);
	width: 100%;
	height: auto;
	padding: 32px 0 20px;
	margin: 100px 0 0;
}

.footer-columns {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: space-between;
}

.footer-columns .col-logo {
	width: 20%;
}

.footer-columns .logo-link img {
	height: 46px;
	width: auto;
}

.footer-columns .col-nav {
	width: 30%;
	display: flex;
	flex-direction: row;
}

.footer-columns .col-nav div {
	width: 50%;
	overflow: hidden;
	text-overflow: ellipsis;
	display: flex;
	flex-direction: column;
}

.footer-columns .col-nav h4 {
	color: var(--white);
	margin: 0 0 8px;
}

.footer-columns .col-nav a {
	text-decoration: none;
	color: var(--gray);
	font-size: 14px;
	line-height: 20px;
	white-space: nowrap;
	width: fit-content;
}

.footer-columns .col-nav a:hover {
	text-decoration: underline;
}

.footer-columns .col-payment {
	width: 22%;
	user-select: none;
	pointer-events: none;
}

.footer-columns .col-payment div {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 17px;
}

.footer-columns .col-payment img {
	width: auto;
	height: auto;
	max-width: 30%;
}

.footer-columns .col-ask {
	width: 28%;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}

.footer hr {
	margin: 42px 0 17px 0;
	display: block;
	width: 100%;
	border: none;
	height: 1px;
	background-color: #696C81;
}

.footer .footer-under {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.footer .footer-under * {
	font-size: 14px;
	line-height: 17px;
	margin: 0 20px;
	color: var(--gray);
	text-decoration: none;
}
.footer .footer-under p {
	text-transform: uppercase;
}

.footer .footer-under a:hover {
	text-decoration: underline;
}


.circle-step {
	display: block;
	z-index: 3;
	width: 20px;
	height: 20px;
	min-width: 20px;
	line-height: 20px;
	text-align: center;
	color: #000;
	font-family: "Open Sans", sans-serif;
	font-size: 12px;
	font-weight: 700;
	border-radius: 50%;
	position: absolute;
	background-color: var(--yellow);
}

.circle-step:after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 0.5px);
	height: 1px;
	min-height: 1px;
	width: 25px;
	left: 100%;
	background-color: var(--gray-normal);
}

.circle-step-right:after {
	left: auto;
	right: 100%;
}


.if-block-4 .step-1 {
	right: 0;
	top: 6.5%;
}
.if-block-4 .step-1:after {
	width: 50px;
}

.if-block-4 .step-2 {
	bottom: 5%;
	left: 0;
}
.if-block-4 .step-2:after {
	width: 25px;
}

.if-block-4 .step-3 {
	right: 0;
	bottom: 5%;
}
.if-block-4 .step-3:after {
	width: 30px;
}

.if-block-4 .step-4 {
	bottom: 46.5%;
	left: 0;
}
.if-block-4 .step-4:after {
	width: 40px;
}

.if-block-4 .step-5 {
	right: 0;
	bottom: 62.5%;
}
.if-block-4 .step-5:after {
	width: 60px;
}


.if-block-6 {
	margin-top: 20px;
}

.if-block-7 ,
.if-block-13 ,
.if-block-14 ,
.if-block-15 ,
.if-block-16 ,
.if-block-17 ,
.if-block-18 ,
.if-block-11 {
	margin-top: 60px;
}

.if-block-16 img ,
.if-block-8 img ,
.if-block-9 img ,
.if-block-10 img ,
.if-block-14 img ,
.if-block-15 img ,
.if-block-17 img ,
.if-block-18 img ,
.if-block-7 img {
	margin: 15px 0;
}


.if-block-8 ,
.if-block-9 ,
.if-block-10 {
	margin-top: 20px;
}

.if-block-11 .divide {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
}

.if-block-11 .divide .left {
	width: 193px;
}

.if-block-11 .divide .right {
	width: calc(100% - 193px);
	padding-left: 5%;
}


.if-block-12 {
	margin-top: 30px;
}
.if-block-12 img {
	margin: 26px 0 38px;
}


.if-block-13 img {
	margin: 15px 0 20px;
}


.text-green {color: var(--green);}
.text-red {color: var(--red);}


#faq-interface .circle {
	width: 307px;
	height: auto;
	display: block;
	user-select: none;
	pointer-events: none;
	position: absolute;
	max-width: 90vw;
	z-index: 1 !important;
}

#faq-interface > div ,
.if-block-4 .images {
	position: relative;
	z-index: 2;
}

.if-block-15 {
	z-index: 3 !important;
}

#faq-interface .circle-1 {
	width: 88px;
	left: 24px;
	top: 9px;
}

#faq-interface .circle-2 {
	width: 307px;
	right: -100px;
	bottom: -10px;
}

#faq-interface .circle-3 {
	width: 170px;
	right: 1%;
	bottom: 160px;
}

#faq-interface .circle-4 {
	width: 201px;
	right: -88px;
	top: 30%;
}

#faq-interface .circle-5 {
	width: 201px;
	left: 46%;
	bottom: 2%;
}

#faq-interface .circle-6 {
	width: 67px;
	left: 66%;
	bottom: 30%;
}

#faq-interface .circle-7 {
	width: 201px;
	right: -1%;
	top: -111px;
}

#faq-interface .circle-8 {
	width: 227px;
	right: -95px;
	bottom: 155px;
}

.if-block-7 > * ,
.if-block-8 > * ,
.if-block-11 > * ,
.if-block-15 > * ,
.if-block-16 > * {
	position: relative;
	z-index: 2;
}

.arrow-road-map {
	margin-bottom: 30px;
	margin-top: 30px;
}

.yelow-row {
	font-size: 18px;
	line-height: 29px;
	padding: 0 14px;
	text-align: center;
	border-radius: 63px;
	background-color: var(--yellow);
	margin-bottom: 9px;
	width: 30%;
}
.margin-16 {
	margin-left: 16%;
}

.margin-35 {
	margin-left: 35%;
}
