@font-face {
    font-family: 'Helios';
    src: url('../fonts/HeliosC.eot');
    src: url('../fonts/HeliosC.eot?#iefix') format('embedded-opentype'),
        url('../fonts/HeliosC.woff2') format('woff2'),
        url('../fonts/HeliosC.woff') format('woff'),
        url('../fonts/HeliosC.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helios';
    src: url('../fonts/HeliosC-Bold.eot');
    src: url('../fonts/HeliosC-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/HeliosC-Bold.woff2') format('woff2'),
        url('../fonts/HeliosC-Bold.woff') format('woff'),
        url('../fonts/HeliosC-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helios';
    src: url('../fonts/HeliosLightC.eot');
    src: url('../fonts/HeliosLightC.eot?#iefix') format('embedded-opentype'),
        url('../fonts/HeliosLightC.woff2') format('woff2'),
        url('../fonts/HeliosLightC.woff') format('woff'),
        url('../fonts/HeliosLightC.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Regular.eot');
    src: url('../fonts/Manrope-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Manrope-Regular.woff2') format('woff2'),
        url('../fonts/Manrope-Regular.woff') format('woff'),
        url('../fonts/Manrope-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-ExtraBold.eot');
    src: url('../fonts/Manrope-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Manrope-ExtraBold.woff2') format('woff2'),
        url('../fonts/Manrope-ExtraBold.woff') format('woff'),
        url('../fonts/Manrope-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
:root{
	--black: #09090B;
	--white: #ffffff;
	--blue: #197DF6;

	--ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}
/************************* reset *************************/
html{
	height: 100%;
	margin: 0;
	padding: 0;width: 100%;
	background: var(--black);
	font-size: 0.052vw;
}
body{
	height: 100%;
	width: 100%;
	position: relative;
	margin: 0;
	padding: 0;
	color: var(--white);
	font-size: 16px;
	font-weight: 400;
	font-family: 'Helios', Arial, Helvetica, sans-serif;
	line-height: 145%;
	min-width: 320px;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
h1, h2, h3, h4, p, ul, li, a, span, div, input, textarea, select, form, fieldset, button, dl, dd, dt, figure, figcaption, blockquote, caption, aside, section {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	box-sizing: border-box;
}
img {
	margin: 0;
	padding: 0;
	border-style: none;
	vertical-align: bottom;
}
input, textarea, select, button {
	font-weight: 400;
	font-family: 'Helios', Arial, Helvetica, sans-serif;
	vertical-align:middle;
	border: 0;
	outline: 0;
	background: none;
}
a:hover {text-decoration: none;}
ul li {list-style: none;}
/************************* common styles *************************/
.holder {
	padding: 0 15px;
}
@media (min-width: 375px){
	.holder {
		padding: 0 20px;
	}
}
@media (min-width: 576px){
	.holder {
		max-width: 540px;
		margin: auto;
		padding: 0;
	}
}
@media (min-width: 768px){
	.holder {
		max-width: 720px;	
	}
}
@media (min-width: 1024px) {
	.holder {
		max-width: 960px;
	}
}
@media (min-width: 1300px){
	.holder {
		max-width: 1200px;
	}
}
@media (min-width: 1360px){
	.holder {
		max-width: 1290px;
	}
}
.holder:after {
	display: block;
	content: '';
	clear: both;
}
.title {
	display: block;
	margin: 0 0 60px;
	font-weight: 400;
	font-size: 72px;
	line-height: 100%
}
a {transition: all .3s linear;}
p {margin: 0 0 13px;}
p:last-child {margin: 0;}
p a, .article li a {color: #D57056;}
.center {text-align: center;}
.upper {text-transform: uppercase;}
.button-holder {text-align: center;}
.button {
	position: relative;
	display: inline-block;
	padding: 2px;
	color: var(--white);
	font-weight: 700;
	font-size: 18px;
	line-height: 160%;
	letter-spacing: 0.01em;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	background: linear-gradient(20deg, #77B5FF 22%, #197DF6 100%);
	border-radius: 50px;
	transition: all .3s linear;
}
.button-wrap {
	display: block;
	background: var(--blue);
	padding: 5px 12px;
	border-radius: 50px;
	transition: all .3s linear;
}
.button:hover .button-wrap {
	background: #0968dd;
}
.button-grey {
	color: var(--white);
	text-decoration: underline;
	background: linear-gradient(40deg, rgba(255, 255, 255, 0.2) 0%, rgba(54, 57, 59, 0.2) 100%);
}
.button-grey .button-wrap {
	background: #272729;
}
.button-grey:hover {
	text-decoration: none;
}
.button-grey:hover .button-wrap {
	background: #1f1f20;
}
/************************* form-block *************************/
.input {
	display: block;
	width: 100%;
	height: 59px;
	padding: 0 20px;
	margin: 0 0 10px;
	font-weight: 300;
	font-size: 20px;
	color: #06001e;
	border: 1px solid #ddd;
	border-radius: 10px;
	background: var(--white);
}
.textarea {
	display: block;
	width: 100%;
	height: 110px;
	padding: 17px 20px;
	margin: 0 0 10px;
	font-weight: 300;
	font-size: 20px;
	color: #06001e;
	resize: vertical;
	border: 1px solid #ddd;
	border-radius: 10px;
	background: var(--white);
}
::-webkit-input-placeholder {color: rgba(6, 0, 30, 0.6);}
:-moz-placeholder {color: rgba(6, 0, 30, 0.6); opacity: 1;}
::-moz-placeholder {color: rgba(6, 0, 30, 0.6); opacity: 1;}
:-ms-input-placeholder {color: rgba(6, 0, 30, 0.6);}
.form-button {padding: 29px 0 0;}
.form-button .button {
	width: 100%;
	padding: 1px;
	font-size: 16px;
	border-radius: 7px;
}
.form-button .button-wrap {
	padding: 6px 20px 7px;
	border-radius: 7px;
}
.check-item {
	position: relative;
	margin: 0 0 10px;
}
.check-input {
	position: absolute;
	left: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
}
.check-label {
	display: block;
	padding: 1px 0 0 38px;
	min-height: 28px;
	font-size: 20px;
	line-height: 130%;
	cursor: pointer;
}
.check-label a {color: var(--white);}
.check-label:before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	content: '';
	width: 28px;
	height: 28px;
	box-sizing: border-box;
	border: 1px solid var(--white);
	border-radius: 5px;
}
.check-label:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	content: '';
	width: 28px;
	height: 28px;
	background: url(../images/check.svg) 55% 50% no-repeat;
	opacity: 0;
}
.check-input:checked + .check-label:after {opacity: 1;}
/************************* wrapper *************************/
#wrapper {
	position: relative;
	overflow: hidden;
	background: url(../images/bg-1.png) right -69px no-repeat;
}
/************************* header *************************/
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 500;
	background: var(--black);
}
.header-block {
	display: flex;
	align-items: center;
	height: 118px;
	position: relative;
}
.header-nav {
	flex: 1;
	display: flex;
	align-items: center;
}
.header-nav-list {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}
.header-nav-list a {
	font-size: 18px;
	/*font-size: 16px;*/
	line-height: 100%;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}
.header-nav-list a:hover {
	color: var(--white);
}
.mob-nav-icon {
	position: relative;
	z-index: 250;
	padding: 1px 0;
	display: none;
}
.mob-nav-block {
    position: relative;
	display: block;
    width: 24px;
    height: 2px;
    margin: 8px 0;
	background: var(--white);
	transition: all .3s linear;
}
.mob-nav-block:after {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--white);
	transition: all .3s linear;
}
.mob-nav-block:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--white);
	transition: all .3s linear;
}
.mob-nav-icon.active .mob-nav-block {
    background: none;
}
.mob-nav-icon.active .mob-nav-block:before {
    top: 0;
    transform: rotate(45deg);
}
.mob-nav-icon.active .mob-nav-block:after {
    top: 0;
    transform: rotate(-45deg);
}
/************************* hero *************************/
.hero {
	position: relative;
    padding: 216px 0 60px;
	margin: -167px 0 0;
	background: url(../images/hero-bg.jpg) 50% 0 no-repeat;
	background-size: cover;
}
.hero-title {
	max-width: 860px;
	margin: 0 0 14px;
	font-weight: 400;
	font-size: 72px;
	line-height: 100%;
}
.hero-subtitle {
	margin: 0 0 54px;
	font-size: 32px;
	line-height: 160%;
	letter-spacing: 0.01em;
	font-style: oblique;
	opacity: 0.7;
}
.hero .button-block {
	margin: 0 0 87px;
}
.hero .button-grey {
	font-weight: 300;
	text-decoration: none;
}
.hero .button-grey .button-wrap {
	padding: 5px 19px;
}
.hero-block {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.hero-item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 257px;
	text-align: center;
	backdrop-filter: blur(25px);
	background: rgba(255, 255, 255, 0.04);
	border-radius: 40px;
}
.hero-item:nth-child(2) {
	background: #000;
}
.hero-item::before {
	position: absolute;
	top: -2px;
	left: 30px;
	right: 30px;
	content: '';
	height: 4px;
	border-radius: 100%;
	background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.2) 0%, rgba(115, 115, 115, 0) 100%);
}
.hero-item::after {
	position: absolute;
	right: -2px;
	top: 20px;
	bottom: 20px;
	content: '';
	width: 4px;
	border-radius: 100%;
	background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.2) 0%, rgba(115, 115, 115, 0) 100%);
}
.hero-num {
	font-weight: 300;
	font-size: 64px;
	line-height: 100%;
	letter-spacing: -0.01em;
}
.hero-text {
	font-weight: 300;
	font-size: 32px;
	line-height: 130%;
}

/************************* main *************************/
.main {
	position: relative;
	padding: 167px 0 0;
}
.section {
	padding: 40px 0 70px;
}
.section:last-child {
	padding-bottom: 60px; 
}
.section:first-child {
	padding-top: 0;
}
.section.blue-bg {
	padding: 70px 0;
	margin: 0 0 30px;
	background: var(--blue);
}
.bg-2 {
	background: url(../images/bg-2.png) right center no-repeat;
}

/************************* breadcrumbs *************************/
.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	padding: 0;
	margin: 0 0 33px;
}
.breadcrumbs li {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 0;
	margin: 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 16px;
	line-height: 125%; 
	list-style: none;
}
.breadcrumbs li:before {
	display: block;
	content: '';
	width: 15px;
	height: 13px;
	background: url(../images/crumb-arrow.svg) 50% 50% no-repeat;
}
.breadcrumbs li:first-child:before {display: none;}
.breadcrumbs a {
	color: rgba(255, 255, 255, 0.35);
	text-decoration: none;
}
.breadcrumbs a:hover {
	color: var(--white);
}

/************************* car *************************/
.car {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}
.car-item {
	overflow: hidden;
	height: 375px;
	color: var(--white);
	text-decoration: none;
	border-radius: 40px;
	background: url(../images/car-bg.png) -55px 110% no-repeat;
}
.car-wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-end;
	height: 100%;
	backdrop-filter: blur(20px);
	background: rgba(217, 217, 217, 0.09);
	border: 1px solid #3b3b3d;
	border-radius: 40px;
}
.car-title {
	position: absolute;
	top: 41px;
	left: 44px;
	z-index: 10;
	font-weight: 400;
	font-size: 32px;
	line-height: 130%;
}
.car-img {
	display: flex;
	justify-content: center;
	width: 436px;
}
.car-img img {
	max-width: 100%;
	transform: translateY(60px);
	transition: all 0.4s ease-out;
}
.car-item:hover .car-img img  {
	transform: translateY(1px);
}
.car-truck img {
	transform: translateY(35px);
}
.car-item:hover .car-truck img  {
	transform: translateY(1px);
}
.car-item .button {
	position: absolute;
	bottom: 34px;
	left: 44px;
	z-index: 10;
	transform: translateY(160px);
	transition: all 0.4s ease-out;
}
.car-item:hover .button {
	transform: translateY(0px);
}

/************************* steps *************************/
.steps {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 0;
	margin: 0 -10px;
}
.steps-col {
	width: 42%;
	padding: 0 10px;
}
.steps-col-big {
	width: 58%;
}
.steps-item {
	height: 100%;
	padding: 30px 45px;
	backdrop-filter: blur(30px);
	background: rgba(254, 254, 254, 0.67);
	border-radius: 30px;
}
.steps-num {
	margin: 0 0 36px;
	font-weight: 700;
	font-size: 64px;
	line-height: 120%;
	color: var(--blue);
}
.steps-text {
	max-width: 560px;
	font-weight: 400;
	font-size: 32px;
	line-height: 130%;
	color: #09090b;
}

/************************* about *************************/
.about-top {
	display: flex;
	gap: 50px;
	margin: 0 0 35px;
}
.about-side {
	flex: 1;
}
.about-title {
	margin: 0 0 20px;
	font-weight: 700;
	font-size: 36px;
	line-height: 130%;
}
.about-subtitle {
	font-weight: 300;
	font-size: 32px;
	line-height: 130%;
}
.about-img {
	width: 468px;
	min-width: 468px;
}
.about-img img {
	width: 100%;
	border-radius: 30px;
}
.about-text {
	font-weight: 300;
	font-size: 24px;
	line-height: 145%;
}
.about-text p {
	margin: 0 0 30px;
}
.about-text p:last-child {margin: 0;}

/************************* faq-block *************************/
.faq-block {
	display: flex;
}
.faq-side {
	width: 43%;
}
.faq-side-title {
	max-width: 470px;
	margin: 0 0 20px;
	font-weight: 400;
	font-size: 40px;
	line-height: 120%;
}
.faq-side-text {
	max-width: 470px;
	margin: 0 0 40px;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0.01em;
	opacity: 0.7;
}
.faq-side-block {
	padding: 1px;
	background: linear-gradient(40deg, rgba(153, 153, 153, 0.4) 22%, rgba(255, 255, 255, 0.1) 100%);
	border-radius: 10px;
}
.faq-side-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 12px 15px;
	background: #131315;
	border-radius: 10px;
}
.faq-side-subtitle {
	font-weight: 500;
	font-size: 20px;
	line-height: 160%;
}
.faq-content {
	flex: 1;
	padding: 0 0 0 40px;
}

/************************* prog *************************/
.prog {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 30px;
	margin: 0 0 40px;
}
.prog:last-child {margin: 0;}
.prog-item {
	padding: 1px;
	color: var(--white);
	text-decoration: none;
	background: linear-gradient(260deg, rgba(54, 57, 59, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
	border-radius: 16px;
}
.prog-wrap {
	height: 100%;
	padding: 20px;
	background: #131315;
	border-radius: 16px;
}
.prog-top {
	position: relative;
	display: flex;
	gap: 16px;
	margin: 0 0 20px;
}
/*.prog-top::after {
	position: absolute;
	top: 0;
	right: 0;
	content: '';
	width: 24px;
	height: 24px;
	background: url(../images/arrow-right.svg) 50% 50% no-repeat;
	background-size: contain;
	transform: rotate(-45deg);
	transition: all 0.3s linear;
}*/
.prog-item:hover .prog-top::after {
	transform: rotate(-45deg) translate(10px);
}
.prog-icon {
	width: 48px;
	min-width: 48px;
	height: 48px;
	padding: 1px;
	background: linear-gradient(0deg, rgba(54, 57, 59, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
	border-radius: 10px;
}
.prog-icon-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: #262627;
	border-radius: 10px;
}
.prog-title {
	padding: 8px 0;
	font-weight: 700;
	font-size: 20px;
	line-height: 160%;
}
.prog-text {
	font-weight: 300;
	font-size: 18px;
	line-height: 160%;
	letter-spacing: 0.01em;
	color: #c5c5c9;
}

/************************* calc *************************/
.calc-block {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}
.calc-box {
	display: flex;
	flex-direction: column;
	padding: 40px;
	backdrop-filter: blur(20px);
	background: rgba(217, 217, 217, 0.09);
	border: 1px solid #2c2c2e;
	border-radius: 40px;
}
.calc-result {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px 0;
	margin: 0 0 40px;
}
.calc-result-item {
	width: calc(50% - 15px);
}
.calc-result-save {
	width: 100%;
}
.calc-title {
	margin: 0 0 16px;
	font-size: 24px;
	line-height: 110%;
	opacity: 0.6;
}
.calc-result-num {
	font-weight: 700;
	font-size: 32px;
	line-height: 120%;
}
.calc-result-save .calc-result-num {
	color: var(--blue);
}
.calc-box .button {
	margin: auto auto 0 0;
}
.calc-item {
	margin: 0 0 30px;
}
.calc-item:last-child {margin: 0;}
.calc-ruler {
	display: flex;
	justify-content: space-between;
}
.calc-ruler-item {
	font-weight: 300;
	font-size: 18px;
	line-height: 120%;
	color: rgba(255, 255, 255, 0.65);
	opacity: 0.6;
}
.calc-range {
	margin: 0 0 21px;
}
.calc-range.noUi-target {
	background: #e4e4e4;
	border-radius: 5px;
	border: 0;
	box-shadow: none;
}
.calc-range.noUi-horizontal {
	height: 10px;
}
.calc-range .noUi-connect {
	background: #197df6;
	border-radius: 5px;
}  
.calc-range.noUi-horizontal .noUi-handle {
	width: 20px;
	height: 20px;
	right: -10px;
	top: -5px;
	cursor: pointer;
}
.calc-range .noUi-handle {
	background: #197df6;
	border: 0;
	box-sizing: border-box;
	border-radius: 50%;
	box-shadow: -1px 0 2px 0 rgba(0, 71, 31, 0.1), -3px 0 3px 0 rgba(0, 71, 31, 0.09), -7px 0 4px 0 rgba(0, 71, 31, 0.05), -13px 0 5px 0 rgba(0, 71, 31, 0.01), -21px 0 6px 0 rgba(0, 71, 31, 0);
}
.calc-range .noUi-handle:after, .calc-range .noUi-handle:before {
	display: none;
}
.calc-num {
	display: flex;
	gap: 21px;
	margin: 0 0 21px;
}
.calc-num-item {
	display: flex;
	align-items: center;
	gap: 13px;
}
.calc-value {
	font-weight: 700;
	font-size: 32px;
	line-height: 90%
}
.calc-edit {
	width: 20px;
	height: 20px;
	background: url(../images/edit.svg) 50% 50% no-repeat;
}

/************************* info *************************/
.info-section h1 {
	margin: 0 0 76px;
	text-align: center;
}
.info-section .title-min {
	margin: 0 0 33px;
}
.info-section .faq-list {
	margin: 0 0 85px;
}
.info-section .faq-list:last-child {margin: 0;}
.tab-content {
	display: none;
}
.tab-content.vis {
	display: block;
}
.info-list {
	margin: 0 0 70px;
}
.info-list:last-child {
	margin: 0;
}
.info-item {
	padding: 30px;
	margin: 0 -30px;
	border-top: 1px solid rgba(255, 255, 255, 0.26);
}
.info-item:first-child {
	border-top: 0;
}
.info-text {
	max-width: 650px;
	font-weight: 400;
	font-size: 24px;
	line-height: 100%;
}
.info-about {
	margin: 0 0 60px;
	font-weight: 400;
	font-size: 24px;
	line-height: 100%;
}
.info-about p {
	margin: 0 0 24px;
}
.info-about p:last-child {margin: 0;}
.info-line {
	display: flex;
	padding: 27px 41px;
	margin: 0 -42px;
	backdrop-filter: blur(53px);
	background: rgba(217, 217, 217, 0.11);
	border: 1px solid #3b3b3d;
	border-radius: 8px;
}
.info-line-item {
	width: 33.33%;
	font-weight: 400;
	font-size: 24px;
	line-height: 100%;
}

/************************* pros *************************/
.title-min {
	margin: 0 0 44px;
	font-weight: 400;
	font-size: 36px;
	line-height: 100%;
}
.pros {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}
.pros-item {
	padding: 1px;
	background: linear-gradient(40deg, rgba(153, 153, 153, 0.4) 22%, rgba(255, 255, 255, 0.1) 100%);
	border-radius: 23px;
}
.pros-wrap {
	height: 100%;
	padding: 27px 30px 35px;
	background: #222;
	border-radius: 23px;
}
.pros-top {
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 0 0 12px;
}
.pros-icon {
	width: 70px;
	min-width: 70px;
}
.pros-icon img {
	width: 100%;
}
.pros-title {
	font-weight: 400;
	font-size: 32px;
	line-height: 130%;
}
.pros-text {
	font-weight: 300;
	font-size: 20px;
	line-height: 140%;
}

/************************* partners *************************/
.partners-top .title {
	max-width: 1000px;
	margin: 0 0 36px;
}
.partners-top-text {
	margin: 0 0 49px;
	font-size: 24px;
	line-height: 150%;
}
.partners-block {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.partners-item {
	padding: 1px;
	background: linear-gradient(40deg, rgba(153, 153, 153, 0.4) 22%, rgba(255, 255, 255, 0.1) 100%);
	border-radius: 40px;
}
.partners-wrap {
	display: flex;
	padding: 30px;
	background: #1b1b1d;
	border-radius: 40px;
}
.partners-side {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25%;
	padding: 0 30px 0 10px;
}
.partners-side img {
	max-width: 100%;
	max-height: 100%;
}
.partners-content {
	width: 75%;
}
.partners-name {
	margin: 0 0 10px;
	font-weight: 700;
	font-size: 24px;
	line-height: 130%;
}
.partners-text {
	max-width: 900px;
	margin: 0 0 35px;
	font-weight: 300;
	font-size: 16px;
	line-height: 150%;
}
.partners-text b {
	display: block;
	font-weight: 400;
}
.button-block {
	display: flex;
	gap: 30px;
}
.partners-all-title {
	margin: 0 0 80px;
	font-weight: 400;
	font-size: 36px;
	line-height: 100%;
	text-align: center;
}
.partners-all .button-block {
	justify-content: center;
}
.tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin: 0 0 80px;
}
.tabs-link {
	font-weight: 300;
	font-size: 24px;
	line-height: 120%;
	color: #000;
	text-decoration: none;
	padding: 1px;
	background: #fcfcfc;
	border-radius: 15px;
}
.tabs-link-wrap {
	display: block;
	padding: 15px 29px;
	background: #fcfcfc;
	border-radius: 15px;
}
.tabs-link:hover {
	color: var(--blue);
}
.tabs-link.active {
	color: var(--white);
	background: linear-gradient(40deg, rgba(153, 153, 153, 0.4) 22%, rgba(255, 255, 255, 0.1) 100%);
}
.tabs-link.active .tabs-link-wrap {
	background: #242426;
}
.partners-tab {
	display: none;
	margin: 0 0 65px;
}
.partners-tab.vis {
	display: block;
}
.partners-logo {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 60px 0;
	margin: 0 0 60px;
}
.partners-logo-item {
	width: 33.33%;
	padding: 0 20px;
	text-align: center;
}
.partners-2col .partners-logo-item {
	width: 50%;
}
.partners-logo-item img {
	max-width: 100%;
}

/************************* faq *************************/
.faq-top .title {
	margin: 0 0 36px;
}
.faq-text {
	margin: 0 0 80px;
	font-size: 20px;
	line-height: 145%;
}
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.faq-item {
	padding: 1px;
	background: linear-gradient(40deg, rgba(153, 153, 153, 0.4) 22%, rgba(255, 255, 255, 0.1) 100%);
	border-radius: 16px;
}
.faq-wrap {
	background: #131315;
	border-radius: 16px;
}
.faq-link {
	display: block;
	position: relative;
	padding: 20px 60px 20px 20px;
	font-weight: 700;
	font-size: 20px;
	line-height: 160%;
	color: var(--white);
	text-decoration: none;
}
.faq-link::after {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	content: '';
	background: url(../images/plus.svg) 50% 50% no-repeat;
}
.faq-link.active::after {
	height: 2px;
}
.faq-hidden {
	display: none;
	padding: 20px 0;
	margin: 0 20px;
	font-weight: 300;
	font-size: 16px;
	line-height: 145%;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.faq-hidden.vis {
	display: block;
}

/************************* contacts *************************/
.article {
	font-family: 'Manrope';
	font-size: 20px;
	line-height: 145%;
}
.article h4 {
	margin: 0 0 16px;
	padding: 23px 0 0;
	font-weight: 800;
	font-size: 24px;
	line-height: 130%;
}
.article h4:first-child {padding: 0;}
.article ol {
	display: flex;
	flex-direction: column;
	gap: 13px;
	padding: 0 0 0 24px;
	margin: 0 0 13px;
}

/************************* contacts *************************/
.contacts-block {
	padding: 1px;
	background: linear-gradient(40deg, rgba(153, 153, 153, 0.4) 22%, rgba(255, 255, 255, 0.1) 100%);
	border-radius: 30px;
}
.contacts-wrap {
	overflow: hidden;
	display: flex;
	background: #1e1e1e;
	border-radius: 30px;
}
.contacts-content {
	width: 55.4%;
	padding: 45px;
	display: flex;
	flex-direction: column;
}
.contacts-address {
	margin: 0 0 60px;
	font-weight: 400;
	font-size: 36px;
	line-height: 120%;
}
.contacts-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: auto 0 0;
}
.contacts-item {
	display: flex;
	align-items: center;
	gap: 10px;
}
.contacts-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	min-width: 34px;
	height: 34px;
}
.contacts-icon img {
	width: 100%;
}
.contacts-text {
	font-weight: 300;
	font-size: 27px;
	line-height: 120%;
}
.contacts-text a {
	color: var(--white);
	text-decoration: none;
}
.contacts-map {
	width: 44.6%;
	min-height: 415px;
}
.contacts-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}
.contacts-title {
	margin: 0 0 69px;
	font-weight: 400;
	font-size: 36px;
	line-height: 100%;
}

/************************* order *************************/
.order-block {
	padding: 1px;
	background: linear-gradient(40deg, rgba(153, 153, 153, 0.4) 22%, rgba(255, 255, 255, 0.1) 100%);
	border-radius: 45px;
}
.order-wrap {
	padding: 65px 70px 60px;
	background: #222;
	border-radius: 45px;
}
.order-title {
	max-width: 700px;
	margin: 0 0 26px;
	font-weight: 400;
	font-size: 40px;
	line-height: 100%;
}
.order-text {
	margin: 0 0 39px;
	font-weight: 300;
	font-size: 24px;
	line-height: 140%;
}

/************************* footer *************************/
.footer {
	padding: 58px 0 83px;
}
.footer-block {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 0 0 39px;
}
.footer-col {
	/*margin: 0 168px 0 0;*/
}
.footer-logo {
	margin: 0 0 38px;
}
.footer-logo img {
	width: 171px;
}
.footer-city {
	position: relative;
}
.footer-city-link {
	position: relative;
	padding: 0 0 0 30px;
	font-weight: 300;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0.01em;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
}
.footer-city-link::before {
	position: absolute;
	top: 50%;
	left: 0;
	content: '';
	margin-top: -6px;
	width: 12px;
	height: 12px;
	background: url(../images/arrow-down.svg) 50% 50% no-repeat;
}
.footer-nav {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	/*grid-template-columns: repeat(2, 1fr);*/
	gap: 28px 100px;
	padding: 10px 0 0;
}
.footer-nav li {
	font-size: 20px;
	line-height: 110%;
}
.footer-nav a {
	color: var(--white);
	text-decoration: none;
	opacity: 0.7;
}
.footer-nav a:hover {
	opacity: 1;
}
.footer-nav2 {
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px 31px;
    padding: 0;
    text-transform: uppercase;
}
.footer-nav2 li {
	font-size: 16px;
	line-height: 110%;
}
.footer-nav2 a {
	color: var(--white);
	text-decoration: none;
	opacity: 0.7;
}
.footer-nav2 a:hover {
	opacity: 1;
}
.footer-info {
	display: flex;
	flex-direction: column;
	gap: 30px;
	/*margin: 0 0 0 auto;*/
}
.footer-info-item {
	display: flex;
	align-items: center;
	gap: 14px;
}
.footer-info-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
}
.footer-info-text {
	font-size: 20px;
	line-height: 110%;
}
.footer-info-text a {
	color: var(--white);
	text-decoration: none;
}
.footer-rekviz {
    display: flex;
    flex-direction: column;
    gap: 11px;
    /*margin: 0 0 0 auto;*/
}
.footer-rekviz-item {
	display: flex;
	align-items: center;
	gap: 14px;
}
.footer-rekviz-item:first-child {
	margin: 0 0 26px;
}
.footer-bottom {
	display: flex;
	gap: 20px 70px;
}
.footer-copy, .footer-link {
	font-weight: 300;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0.01em;
	color: #fff;
	text-decoration: none;
	opacity: 0.7;
}
.footer-link:hover {
	opacity: 1;
}

/************************* media *************************/
@media screen and (max-width: 1360px) {
	.header-logo img {
		width: 140px;
	}
	.header-nav-list a {
		font-size: 14px;
	}
	.footer-col {
		margin: 0 80px 0 0;
	}
	.footer-bottom {
        display: flex;
        gap: 20px 10px;
        align-items: baseline;
        justify-content: space-between;
    }
	.footer-nav li, .footer-nav2 li,
	.footer-info-text {
		font-size: 18px;
	}
	.footer-nav {
		gap: 28px 40px;
	}
	.footer-nav2 {
		gap: 28px 10px;
	}
	.footer-nav2 li {
		font-size: 12px;
	}
	.footer-copy, .footer-link {
        font-size: 14px;
	}
	.title {
		font-size: 60px;
	}
	.contacts-address {
		font-size: 28px;
	}
	.contacts-text {
		font-size: 20px;
	}
	.order-title {
		max-width: 480px;
		font-size: 28px;
		line-height: 120%;
	}
	.order-text {
		margin: 0 0 39px;
		font-size: 18px;
	}
	.check-label {
		font-size: 16px;
		padding: 4px 0 0 38px;
	}
	.calc-block {
		grid-template-columns: repeat(1, 1fr);
	}
	.pros-icon {
		width: 50px;
		min-width: 50px;
	}
	.pros-title {
		font-size: 24px;
	}
	.pros-text {
		font-size: 18px;
	}
	.hero {
		padding: 196px 0 60px;
	}
	.hero-title {
		max-width: 760px;
		margin: 0 0 20px;
		font-size: 60px;
	}
	.hero-subtitle {
		font-size: 24px;
	}
	.hero-item {
		height: 240px;
	}
	.hero-num {
		font-size: 48px;
	}
	.hero-text {
		font-size: 24px;
	}
	.about-img {
		width: 320px;
		min-width: 320px;
	}
	.about-title {
		font-size: 30px;
	}
	.about-subtitle {
		font-size: 24px;
	}
	.about-text {
		font-size: 18px;
	}
	.about-text p {
		margin: 0 0 20px;
	}
	.faq-side-wrap {
		flex-direction: column;
	}
	.car-img {
		width: 360px;
	}
	.steps-text {
		font-size: 24px;
	}

}
@media screen and (max-width: 1024px) {
	#wrapper {
		background-position: 10% -120px;
	}
	.bg-2 {
		background: none;
	}
	.header-block {
		justify-content: space-between;
		height: 65px;
	}
	.header-logo img {
        display: block;
		width: 120px;
		margin: 0 0 -6px;
    }
	.mob-nav-icon {display: block;}
	.header-nav {
		position: fixed;
		top: 65px;
		left: -100%;
		bottom: 0;
		flex-direction: column;
		justify-content: center;
		width: 100%;
		padding: 0 0 65px;
		z-index: 540;
		gap: 30px;
		overflow-y: auto;
		box-sizing: border-box;
		background: var(--black);
		box-shadow: none;
		transition: all 0.5s ease;
	}
	.header-nav.vis {
		left: 0;
	}
	.header-nav-list {
		flex-direction: column;
		flex: none;
		justify-content: center;
		gap: 20px;
	}
	.header-nav-list a {
        font-size: 18px;
    }
	.main {
		padding: 95px 0 0;
	}
	.section {
		padding: 30px 0 40px;
	}
	.section:last-child {
		padding-bottom: 40px; 
	}
	.section.blue-bg {
		padding: 70px 0;
		margin: 30px 0 40px;
	}
	.title {
		margin: 0 0 30px;
		font-size: 36px;
		line-height: 120%;
	}
	.article {
		font-size: 14px;
		line-height: 150%;
	}
	.article h4 {
		font-size: 18px;
		line-height: 130%;
	}
	.footer {
		padding: 30px 0 40px;
	}
	.footer-block {
		flex-direction: column;
		gap: 40px;
		padding: 0 0 40px;
	}
	.footer-logo {
		margin: 0 0 20px;
	}
	.footer-nav {
		padding: 0;
        gap: 20px 30px;
    }
    .footer-nav {
		padding: 0;
        gap: 20px 10px;
    }
	.footer-info {
		gap: 20px;
		margin: 0;
	}
	.footer-rekviz {
		gap: 20px;
		margin: 0;
	}
	.footer-bottom {
		flex-direction: column;
		gap: 10px;
	}
	.contacts-block {
		border-radius: 20px;
	}
	.contacts-wrap {
		display: block;
		border-radius: 20px;
	}
	.contacts-content {
		width: auto;
		padding: 40px;
	}
	.contacts-map {
		width: auto;
		min-height: 1px;
		height: 400px;
	}
	.contacts-address {
        font-size: 24px;
    }
	.contacts-text {
        font-size: 18px;
    }
	.contacts-icon {
		width: 28px;
		min-width: 28px;
		height: 28px;
	}
	.order-block {
		border-radius: 20px;
	}
	.order-wrap {
		padding: 40px;
		border-radius: 20px;
	}
	.order-title {
        font-size: 24px;
    }
	.title-min {
		margin: 0 0 25px;
		font-size: 24px;
		line-height: 130%;
	}
	.info-about {
		margin: 0 0 40px;
		font-size: 14px;
		line-height: 150%;
	}
	.info-section .title-min {
		margin: 0 0 25px;
	}
	.info-section h1 {
		margin: 0 0 40px;
	}
	.tabs {
		flex-wrap: wrap;
		gap: 20px;
		margin: 0 0 40px;
	}
	.tabs-link {
		font-size: 16px;
		border-radius: 10px;
	}
	.tabs-link-wrap {
		padding: 10px 20px;
		border-radius: 10px;
	}
	.info-line {
		flex-direction: column;
		gap: 10px;
		padding: 15px 30px;
		margin: 0 -30px;
		border-radius: 10px;
	}
	.info-line-item {
		width: auto;
		font-size: 16px;
	}
	.info-item {
		padding: 15px 10px;
		margin: 0 -10px;
	}
	.info-item:first-child {
		border-top: 0;
	}
	.info-text {
		max-width: 400px;
		font-size: 16px;
		line-height: 130%;
	}
	.info-section .faq-list {
		margin: 0 0 40px;
	}
	.faq-link {
		padding: 15px 60px 15px 20px;
		font-size: 18px;
	}
	.faq-top .title {
		margin: 0 0 30px;
	}
	.faq-text {
		margin: 0 0 40px;
		font-size: 16px;
		line-height: 145%;
	}
	.contacts-title {
		margin: 0 0 35px;
		font-size: 24px;
		line-height: 120%;
	}
	.calc-block {
		gap: 20px;
	}
	.pros {
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
	}
	.calc-title {
		font-size: 18px;
	}
	.calc-value {
		font-size: 24px;
	}
	.calc-ruler-item {
		font-size: 14px;
	}
	.calc-item {
		margin: 0 0 40px;
	}
	.calc-box {
		border-radius: 20px;
	}
	.calc-result-num {
		font-size: 24px;
	}
	.pros-title {
        font-size: 22px;
    }
	.pros-text {
        font-size: 16px;
    }
	.hero {
		padding: 95px 0 40px;
		margin: -95px 0 0;
	}
	.hero-title {
		margin: 0 0 20px;
		font-size: 32px;
	}
	.hero-subtitle {
		margin: 0 0 40px;
		font-size: 18px;
	}
	.button-block {
		flex-direction: column;
		gap: 20px;
	}
	.button-block .button {
		width: 100%;
	}
	.hero .button-block {
		margin: 0 0 50px;
	}
	.hero-block {
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
	}
	.hero-item {
		height: 140px;
		border-radius: 20px;
	}
	.hero-num {
		font-size: 36px;
	}
	.hero-text {
		font-size: 18px;
	}
	.prog {
		grid-template-columns: repeat(1, 1fr);
	}
	.prog-title {
		font-size: 18px;
	}
	.prog-text {
		font-size: 16px;
	}
	.prog-top::after {
		top: -10px;
		right: -10px;
	}
	.about-top {
		display: block;
		margin: 0 0 35px;
	}
	.about-side {
		padding: 0 0 40px;
	}
	.about-title {
		font-size: 24px;
	}
	.about-subtitle {
		font-size: 18px;
	}
	.about-img {
        width: auto;
        min-width: 1px;
    }
	.about-img img {
		border-radius: 20px;
	}
	.faq-block {
		flex-direction: column;
		gap: 40px;
	}
	.faq-side {
		width: auto;
	}
	.faq-content {
		padding: 0;
	}
	.faq-side-title {
		margin: 0 0 20px;
		font-size: 24px;
	}
	.faq-side-subtitle {
		font-size: 18px;
	}
	.car {
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
	}
	.car-item {
		height: 280px;
		border-radius: 20px;
	}
	.car-wrap {
		border-radius: 20px;
	}
	.car-title {
		top: 30px;
		left: 20px;
		right: 20px;
		font-size: 24px;
	}
	.car-img {
        width: auto;
		padding: 0 20px;
    }
	.car-item .button {display: none;}
	.steps {
		gap: 20px 0;
	}
	.steps-col,
	.steps-col-big {
		width: 100%;
	}
	.steps-item {
		padding: 30px 20px;
		border-radius: 20px;
	}
	.steps-num {
		margin: 0 0 20px;
		font-size: 24px;
	}
	.steps-text {
		font-size: 18px;
	}
	.partners-top-text {
		font-size: 18px;
	}
	.partners-item {
		border-radius: 20px;
	}
	.partners-wrap {
		display: block;
		padding: 40px 20px 30px;
		border-radius: 20px;
	}
	.partners-side {
		width: auto;
		padding: 0 0 30px;
	}
	.partners-content {
		width: auto;
	}
	.partners-all-title {
		margin: 0 0 40px;
		font-size: 32px;
	}
	.partners-logo {
		gap: 30px 0;
		margin: 0 0 40px;
	}
	.partners-logo-item {
		width: 50%;
		padding: 0 15px;
	}
	
}
@media screen and (max-width: 767px) {
	.footer-nav2 {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: start;
        gap: 28px 10px;
        padding: 20px 0 30px;
    }
    .footer-nav2 li {
        font-size: 14px;
    }
}
@media screen and (max-width: 576px) {
	.contacts-content {
        width: auto;
        padding: 30px 20px;
    }
	.contacts-address {
		margin: 0 0 40px;
		font-size: 18px;
		line-height: 140%;
	}
	.order-wrap {
		padding: 30px 20px;
	}
	.title-min, .info-section .title-min {
        margin: 0 0 20px;
        font-size: 22px;
        line-height: 130%;
    }
	.faq-link {
		font-size: 16px;
	}
	.calc-box {
		padding: 30px 20px;
	}
	.calc-result-item {
		width: 100%;
	}
	.pros-item {
		border-radius: 20px;
	}
	.pros-wrap {
		padding: 20px 20px 30px;
		border-radius: 20px;
	}

}
@media screen and (max-width: 410px) {
	.title {
        font-size: 32px;
    }
}

/************************* news *************************/
.news-block {
	display: flex;
	gap: 30px;
	overflow-x: auto;
	padding: 0 0 20px;
}
.news-block::-webkit-scrollbar-track {
	background-color: #1f1f21;
	border-radius: 16px;
}
.news-block::-webkit-scrollbar {
	height: 7px;
	background-color: #1f1f21;
}
.news-block::-webkit-scrollbar-thumb {
	border-radius: 16px;
	background-color: #737373;
}
.news-item {
	min-width: 410px;
	padding: 28px 28px 21px;
	color: var(--white);
	text-decoration: none;
	box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.25);
	background: #1f1f21;
	border: 1px solid #404040;
	border-radius: 19px;
}
.news-date {
	margin: 0 0 13px;
	font-size: 20px;
	line-height: 140%;
	letter-spacing: -0.02em;
	color: #6d7888;
}
.news-title {
	margin: 0 0 34px;
	font-weight: 500;
	font-size: 28px;
	line-height: 130%;
	letter-spacing: -0.02em;
}
.news-more {
	position: relative;
	display: inline-block;
	vertical-align: top;
	font-size: 20px;
	line-height: 140%;
	letter-spacing: -0.02em;
	color: #6d7888;
}
.news-more::after {
	position: absolute;
	right: -23px;
	top: 50%;
	margin-top: -6px;
	content: '';
	width: 17px;
	height: 13px;
	background: url(../images/more-arrow.svg) 50% 50% no-repeat;
	background-size: contain;
	transition: all 0.3s linear;
}
.news-item:hover .news-more::after {
	transform: translateX(10px);
}
@media screen and (max-width: 767px) {
	.news-block {
		gap: 20px;
		margin: 0 -20px;
		padding: 0 20px 20px;
	}
	.news-item {
		min-width: 300px;
		padding: 20px;
	}
	.news-date {
		font-size: 16px;
	}
	.news-title {
		margin: 0 0 30px;
		font-size: 22px;
	}
	.news-more {
		font-size: 16px;
	}
}