/*8.63988*/
@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat-Black.woff2') format('woff2'),
	url('fonts/Montserrat-Black.woff') format('woff');
	font-weight: 900;
	font-style: normal;
}

/* Montserrat-Thin */
@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat-Thin.woff2') format('woff2'),
	url('fonts/Montserrat-Thin.woff') format('woff');
	font-weight: 100;
	font-style: normal;
}

/* Montserrat-SemiBold */
@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat-SemiBold.woff2') format('woff2'),
	url('fonts/Montserrat-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
}

/* Montserrat-Bold */
@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat-Bold.woff2') format('woff2'),
	url('fonts/Montserrat-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
}

/* Montserrat-ExtraBold */
@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat-ExtraBold.woff2') format('woff2'),
	url('fonts/Montserrat-ExtraBold.woff') format('woff');
	font-weight: 800;
	font-style: normal;
}

/* Montserrat-ExtraLight */
@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat-ExtraLight.woff2') format('woff2'),
	url('fonts/Montserrat-ExtraLight.woff') format('woff');
	font-weight: 200;
	font-style: normal;
}

/* Montserrat-Light */
@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat-Light.woff2') format('woff2'),
	url('fonts/Montserrat-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}

/* Montserrat-Medium */
@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat-Medium.woff2') format('woff2'),
	url('fonts/Montserrat-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
}

/* Montserrat-Regular */
@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat-Regular.woff2') format('woff2'),
	url('fonts/Montserrat-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}


body::-webkit-scrollbar {
	height: 0;
	width: 0;
}
body::-webkit-scrollbar-track {
	background-color: transparent;
	opacity: 0.48;
}
body::-webkit-scrollbar-thumb {
	background-color: transparent;

	/* Если нужно - добавьте :hover и:active */
}
body::-webkit-scrollbar-thumb:vertical {
	max-height: 0;
}
body::-webkit-scrollbar-thumb:horizontal {
	min-width:0;
}

body{
	--blue: #15358a;
	--blue-light:#0095D5;
	--black: rgb(30, 30, 30);
	--bg-white:#FCFDFE;
	--lime:#98DE25;
	--dark-blue:#1D2F3C;
}

*{

	color:var(--dark-blue);
	font-weight: 600;
	margin:0;
	padding:0;
	list-style-type: none;
	text-decoration: none;
}

html{
	overflow-x: hidden;
	scroll-behavior: smooth;
}
html, body {
	background-color:#fff;
	font-family: Montserrat, Roboto, serif;
	font-weight:400;
	font-size: 0.54vw;
	color: var(--black);
}

a, :after, :before, button[type="submit"], input[type="submit"], svg{
	transition: all 0.5s ease;
	/**
     * Для эксплорера
     */
    -ms-user-select: none;

    /**
     * Для мозилы
     */
    -moz-user-select: none;

    /**
     * Для конкверора
     */
    -khtml-user-select: none;

    /**
     * Для Сафари и Хрома
     */
    -webkit-user-select: none;
    user-select:none;
}

/*svg{
	fill:#7B73AE;
}*/

input{
	border: none;
	background: transparent;
	resize: none;
}

input:focus{
	background: transparent;
	outline:none;
	border:none;
	box-shadow: none;
}

input::placeholder{
	color: var(--black);
	font-family: Montserrat, Roboto, serif;
	font-weight: normal;
	font-size: 1.258rem  /* 13.0003/10.333 */;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.left {
	float:left;
}

.right {
	float:right;
}
.clear{
	clear:both;
}
.border-rad{
    border-radius: 0.968rem;
}

.flex{
	display: flex;
}

.flex-y-center{
	align-items: center;
}
.flex-x-center{
	justify-content: center;
}

.flex-xy-center{
	align-items: center;
	justify-content: center;
}

.flex-column{
	flex-direction: column;
}
.btn-blue{
	font-family: Roboto, serif;
	font-size: 2.08rem;
	font-weight: 500;
	border: none;
	border-radius: 1.16rem;
	color: #fff;
	padding: 0.93rem 3.7rem;
	background-color: var(--blue);
	box-shadow:inset 0 0 0.06rem rgba(0, 0, 0, 0.06),
	0 0.12rem 0.35rem rgba(45, 127, 249, 0.28),
	0 0 0.23rem rgba(0, 0, 0, 0.08),
	0 0 0.12rem rgba(0, 0, 0, 0.32);
	cursor: pointer;
	opacity:1;
	transition: transform 0.4s, background-color 0.4s, box-shadow 0.4s, border-color 0.4s, opacity 0.25s ease;
}
.btn-blue:hover {
	transform: translateY(-0.35rem);
	background-color: #213C81; /* Более тёмный оттенок синего */
	box-shadow: inset 0 0 0.06rem rgba(0, 0, 0, 0.06), 0 0.2rem 0.5rem rgba(45, 127, 249, 0.5), 0 0 0.3rem rgba(0, 0, 0, 0.1), 0 0 0.15rem rgba(0, 0, 0, 0.4);
	border-color: #2c4b9a;
}
.btn-send-calc,
.btn-white{
	font-family: Roboto, serif;
	font-size: 2.08rem;
	font-weight: 500;
	border-radius: 1.16rem;
	color: var(--black);
	padding: 0.93rem 3.7rem;
	background-color: rgba(255, 255, 255, 0.24);
	border: 0.23rem solid #e0e0e1;
	cursor: pointer;
	transition: transform 0.4s, background-color 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.btn-send-calc:hover,
.btn-white:hover {
	transform: translateY(-0.35rem);
	background-color: rgba(255, 255, 255, 0.4);

	border: 0.23rem solid rgba(198, 219, 251, 0.5);
}
.quest-block.final-thanks .products-text{
	height: 35%;
	width: 45rem;
	text-align: center;
	margin-left:calc(50% - 25.5rem);
	margin-top:13.98rem;
}
header{
	width:100%;
	height: 11.69rem;
	display: flex;
	align-items: center;
	padding: 0 21.99rem;
	box-sizing: border-box;
	justify-content: space-between;
	border-bottom: solid 0.097rem rgba(30, 30, 30, 0.08);
}
.wrapper {
	width:100%;
	height: 11.69rem;
}
header a.logo img{
	width: 100%;
	height: 100%;
}
header a.logo:hover{
	transform: scale(1.05);
}
header a.logo{
	width: 15.63rem;
	height: 4.98rem;
	cursor:pointer;
	transition: transform 0.25s ease;
}
.wrapper-content{
	width: 100%;
	padding: 0 21.99rem;
	box-sizing: border-box;
	overflow-x:hidden;
}
.menu-nav {
	height: 100%;
	gap: 2.839rem;
	font-family: Montserrat, Roboto, serif;
	font-size: 1.85rem;
	font-weight: 400;
	color: var(--black);
}
.burger{
	display: none;
}
.menu-nav a {
	height: 100%;
	cursor: pointer;
	padding:0 1.0rem;
	border-bottom: solid 0.23rem transparent;
	transition: border-bottom 0.125s ease;
	box-sizing: border-box;
}
.menu-nav a:hover,.menu-nav a.active {
	border-bottom: solid 0.23rem var(--blue);
	color: var(--blue);
}
.info-block{
	width:100%;
	position: relative;
	background-color: #FCFDFE;
	border-bottom: solid 0.12rem #1E1E1E14;
}
.left-info-block{
	width: 67.01rem;
	margin:11.904rem 0 17.48rem 21.99rem;
}
.heading-info{
	color: var(--blue);
	font-family: Montserrat, Roboto, serif;
	font-size: 7.41rem;
	font-weight: 600;
}
.description-info{
	font-family: Roboto, serif;
	font-size: 2.08rem;
	font-weight: 500;
	color: var(--black);
	margin-top: 5.79rem;
}
.info-btn{
	margin-top: 2.89rem;
	display: flex;
	gap: 1.85rem;
}
.info-block img{
	width: 89.12rem;
	height: auto;
	position: absolute;
	top: 15.28rem;
	right: 1.54rem;
}
.mission-values {
	width: 100%;
	display: flex;
}
.heading-mv {
	font-size: 5.56rem;
	font-weight: 600;
	margin-top: 5.79rem;
	color: var(--blue);
}
.description-mv{
	width: 92.94rem;
	font-family: Roboto, serif;
	font-size: 2.08rem;
	font-weight: 500;
	text-align: center;
	margin-top: 4.17rem;
}
.description-mv:last-child{
	margin-top: 8.1rem;
}
.content-mv{
	width: 100%;
}
.container-up{
	width: 100%;
	margin-top: 5.79rem;
	gap:2.05rem;
}
.innovation{
	width: calc(50% - (2.05rem / 2));
	height: 46.3rem;
	border: solid 0.12rem rgba(30, 30, 30, 0.08);
	box-sizing: border-box;
	border-radius: 0.58rem;
	position: relative;
	overflow: hidden;
}
.innovation img{
	width: 100%;
	height: auto;
	position: absolute;
	z-index: 1;
	object-fit: cover;
}
.white-block{
	width: 100%;
	height: 15.47rem;
	position: absolute;
	z-index: 2;
	bottom: 0;
	background-color: white;
}
.gradient-white-block {
	width: 100%;
	height: 26.86rem;
	position: absolute;
	z-index: 3;
	bottom: 14.47rem;
	transition: height 0.25s ease;
	background: linear-gradient(0deg, rgba(252,253,254,1) 45%, rgba(252,253,254,0) 100%);
}
.content-mv .gradient-white-block{
	bottom: 15.47rem;
	background: linear-gradient(0deg, rgba(252, 253, 254, 1) 1%, rgba(252, 253, 254, 0) 100%);
}
.info-img-500,
.info-img-1024{
	display: none;
}
.img-container img{
	width:100%;
	height: 100%;
}
.white-block-mini{
	width: 100%;
	height: 14.47rem;
	position: absolute;
	z-index: 2;
	bottom: 0;
	background-color: white;
}
.gradient-white-block-mini{
	width: 100%;
	height: 15.86rem;
	position: absolute;
	z-index: 3;
	bottom: 14.47rem;
	transition: height 0.25s ease;
	background: linear-gradient(0deg, rgba(252,253,254,1) 0%, rgba(252,253,254,0) 100%);
}

.cd-block:hover .gradient-white-block-mini{
	height: 12rem;
}

.clients:hover .gradient-white-block,
.innovation:hover .gradient-white-block {
	height: 10rem;
}
.innovation svg{
	width: 11.0rem;
	height: 11.0rem;
	position: absolute;
	z-index: 4;
	top: 14.24rem;
	left: 2.66rem;
}
.innovation span{
	position: absolute;
	z-index: 4;
	left: 2.66rem
}
.heading-content{
	font-size: 2.55rem;
	font-weight: 700;
	color: var(--blue);
	top: 32.99rem;
}
.description-content{
	font-size: 1.85rem;
	font-weight: 400;
	top: 38.08rem;
}
.clients {
	width: calc(50% - (1.85rem / 2));
	height: 46.3rem;
	border: solid 0.12rem rgba(30, 30, 30, 0.08);
	box-sizing: border-box;
	border-radius: 0.58rem;
	position: relative;
	overflow: hidden;
}
.clients img{
	width: 100%;
	height: auto;
	position: absolute;
	z-index: 1;
	object-fit: cover;
}
.clients svg{
	width: 11.0rem;
	height: 11.0rem;
	position: absolute;
	z-index: 4;
	top: 14.24rem;
	left: 2.66rem;
}
.clients span{
	position: absolute;
	z-index: 4;
	left: 2.66rem;
}
.container-down{
	width:100%;
	gap: 2.43rem;
	margin-top: 2.05rem;
}

.cd-block{
	width: calc(100% / 3 - (1.85rem / 2));
	height: 46.3rem;
	border: solid 0.12rem rgba(30, 30, 30, 0.08);
	box-sizing: border-box;
	border-radius: 0.58rem;
	position: relative;
	overflow: hidden;
}
.cd-block img{
	width: 100%;
	height: auto;
	position: absolute;
	z-index: 1;
	object-fit: cover;
}
.cd-block svg{
	width: 11.0rem;
	height: 11.0rem;
	position: absolute;
	z-index: 4;
	top: 9.24rem;
	left: 2.66rem;
}
.cd-block span{
	width: 38.19rem;
	position: absolute;
	z-index: 4;
	left: 2.66rem;
}
.heading-content-cd{
	font-size: 2.55rem;
	font-weight: 700;
	color: var(--blue);
	top: 26.5rem;
}
.description-content-cd{
	font-size: 1.85rem;
	font-weight: 400;
	top: 31.6rem;
}
.team-prof {
	width: 100%;
	height: 46.36rem;
	margin-top: 11.57rem;
	align-items: flex-end;
	position: relative;
	background: #0E2B76;
	border-radius: 2rem;
}
.team-prof svg {
	width: calc(100%  - (16.9rem / 2));
	height: auto;

}
.team-prof .circle:nth-child(1){
	top:-11rem;
	left:12rem;
}
.team-prof .circle:nth-child(2){
	width: 30rem;
	height: 30rem;
	bottom: -19rem;
	left: -12rem;
}
.team-prof .circle:nth-child(3){
	width: 50rem;
	height: 50rem;
	top: 0;
	right: -5rem;

	border:8rem solid #FFFFFF14;
}
.team-prof .circle{
	width: 10rem;
	height: 10rem;
	position: absolute;
	border-radius: 100%;
	border:5rem solid #FFFFFF14;
}
.team-prof img {
	width: 40%;
	height: auto;
	position: absolute;
	z-index: 5;
	right: -1.64rem;
	bottom:0;
	transition: transform 0.25s ease;
}

.team-prof:hover img{
	transform: scale(1.04) translateY(-2%);
}
.team-prof span{
	color: #fff;
	position: absolute;
	z-index: 5;
	left: 14.7rem;
}
.head-tf{
	font-size: 5.56rem;
	font-weight: 600;
	top: 8.55rem;
}

footer .lead-email input{
	border-radius: 1.16rem 0 0 1.16rem;

}
.desc-tf{
	width: 68.79rem;
	font-size: 1.85rem;
	font-weight: 300;
	top: 18.13rem;
	line-height: 2.81rem;
	letter-spacing: 0.06rem;
}
.tittle {
	font-size: 5.56rem;
	font-weight: 600;
	color: var(--blue);
}
.text{
	font-family: Roboto, serif;
	font-size: 2.08rem;
	font-weight: 500;
	color: var(--black);
	margin-top: 3.47rem;
}
.services-products{
	width: 100%;
	margin-top: 11.57rem;
}
.services-products-blocks {
	width: 100%;
	gap: 2.55rem;
	margin-top: 5.79rem;
}
.sp-cards {
	gap: 2.55rem;
}
.sp-block:hover .gradient-white-block{
	height: 24.26rem;
}
.sp-block{
	width: calc(50% - (2.55rem / 2));
	height: 46.3rem;
	border: solid 0.12rem rgba(30, 30, 30, 0.08);
	box-sizing: border-box;
	border-radius: 0.58rem;
	position: relative;
	overflow: hidden;
}
.sp-block img.ux{
	transform:scale(1) translateY(-5rem);
}
.sp-block img.web{
	transform:scale(1) translateY(-3rem);
}
.sp-block img.phone{
	transform:scale(1) translateY(-2rem);
}
.sp-block img.user{
	transform:scale(1) translateY(-1rem);
}
.sp-block img.crm{
	transform:scale(1) translateY(-3rem);
}
.sp-block img.support{
	transform:scale(1) translateY(-2rem);
}
.sp-block img.test{
	transform:scale(1.2) translateY(-5rem);
}
.sp-block img.e-comm{
	transform:scale(1.2) translateY(-5rem);
}
.sp-block img.po{
	transform:scale(1.2) translateY(-5rem);
}
.sp-block img{
	height: 53%;
	min-width: 100%;
	transition: transform 0.25s ease-out;
	position: absolute;
	transform:scale(1.2) translateY(2rem);
	z-index: 1;
	object-fit: cover;
}
.btn-sp:hover ~ img{
	transform:scale(1.2) translateY(0rem);
}
.sp-block span{
	width:calc(100% - 7.63rem);
	position: absolute;
	z-index: 4;
	left: 4.63rem;
}
.sp-gradient{
	bottom: 15.47rem;
}
.sp-head{
	width: 49.82rem;
	top: 22.07rem;
}
.sp-des{
	width: 59.38rem;
	top: 29.86rem;
}
.btn-sp{
	position: absolute;
	z-index: 6;
	bottom: 2.31rem;
	left: 4.63rem;
}
.head-text{
	width: 100%;
	text-align: center;
	font-family: Roboto, serif;
	font-size: 2.55rem;
	font-weight: 500;
	margin-top: 5.79rem;
}
.technology{
	width: 100%;
	margin-top: 8.56rem;
	margin-left: -21.99rem;
	padding: 0 21.99rem;
	background-color: var(--bg-white);
	border-top: solid 0.12rem rgba(30, 30, 30, 0.08);
	border-bottom: solid 0.12rem rgba(30, 30, 30, 0.08);
}
.tech-text{
	width: 100%;
	margin-top: 11.57rem;
}
.content-web{
	width: 10030%;
	padding-left: 2rem;
	transform: translatex(-2rem);
	transition: margin-left 0.25s ease;
}
.content-phone {
	width: 100%;
	padding-left: 2rem;
	padding-right: 2rem;
	transform: translateX(-2rem);
}
.content-phone, .content-web{
	gap: 1.97rem;
	padding-top:3rem;
	padding-bottom:3rem;
	margin-top: 0.47rem;
	overflow-x: hidden;
	flex-wrap: nowrap;
}
.web-backend-text{
	width: 100%;
}
.it-card:hover{
	transform:scale(1.04);
	filter:drop-shadow(0 0 0.74rem rgba(0, 123, 175, 0.25))
}
.it-card{
	padding: 5.79rem 3.13rem 5.44rem 3.24rem;
	border: solid 0.12rem rgba(30, 30, 30, 0.08);
	border-radius: 0.58rem;
	background-color: #fff;
	transition: transform 0.25s ease, filter 0.25s ease;
}
.it-card svg {
	width: 8.1rem;
	height: 8.1rem;
}
.it-head{
	margin-top: 1.74rem ;
}
.it-des{
	width: 27.55rem;
	margin-top: 1.39rem;
}
.nav-btn {
	width: 100%;
	justify-content: space-between;
	margin-top: 3.47rem;
}
.nav-lists {
	gap: 1.04rem;
}
.nav-circle{
	width: 1.04rem;
	height: 1.04rem;
	background-color: #DDE0E4;
	border: none;
	border-radius: 100%;
	transition: width 0.25s ease, height 0.25s ease, background-color 0.25s ease, border-radius 0.25s ease;
}
.nav-circle.active{
	width: 3.13rem;
	height: 1.04rem;
	background-color: var(--blue);
	border: none;
	border-radius: 4rem;
}
.nav-btn:last-child{
	margin-bottom: 8.56rem;
}

.left-right-btn svg{
	width: 2.2rem;
	height: 2.2rem;
	fill:var(--blue);
}

.left-right-btn .left-arrow-btn{
	margin-right:1.39rem;
}

.left-right-btn .right-arrow-btn svg{
	transform: rotate(180deg);
}
.left-right-btn .left-arrow-btn:hover,
.left-right-btn .right-arrow-btn:hover {
	background: var(--blue);
}
.left-right-btn .left-arrow-btn:hover svg,
.left-right-btn .right-arrow-btn:hover svg {
	fill: #fff;
}
.left-right-btn .left-arrow-btn,
.left-right-btn .right-arrow-btn{
		width: 4.28rem;
		height: 4.28rem;
		background-color: transparent;
		border: solid 0.23rem var(--blue);
		border-radius: 100%;
		cursor:pointer;
		transition: background-color 0.25s ease;
}
.noty_theme__mint.noty_bar .noty_body{
	color:#fff;
}
.mfp-title{
	font-size:2rem !important;
	text-align: center !important;
	padding-right: 0 !important;
}
.right-btn, .left-btn{
	width: 4.05rem;
	height: 4.05rem;
}
.web-backend-block{
	width: 100%;
	flex-wrap: wrap;
	justify-content: initial;
}
.content-blocks-web {
	margin-top: 3.47rem;
	gap: 1.97rem;
	transition: margin-left 0.25s ease;
}
.block-web {
	width: 69.79rem;
	height: 33.8rem;
	border: solid 0.12rem rgba(30, 30, 30, 0.08);
	border-radius: 0.58rem;
	background-color: #fff;

}
.block-web svg {
	width: 8.1rem;
	height: 8.1rem;
}
.svg-name-web{
	margin:1.74rem 0 0 3.13rem;
}
.description-web {
	margin-top: 1.74rem;
	gap: 2.74rem;
}
.web-head{
	margin-left: 2.89rem;
}
.web-des{
	width: 63.54rem;
	margin-left: 3.13rem;
}
.gallary-project{
	height: 121.27rem;
	margin-top: 11.57rem;
}
.gallary-photos.next{
	left:calc(100% + (22rem * 2));
}
.gallary-photos{
	width: 141.44rem;
	top: 5.79rem;
	position: relative;
	left:0;
	transition: left 0.5s ease;
}

.gallary-photos a img{
	height: 100%;
}
.gallary-photos a{
	position: absolute;
	transition: transform 0.25s ease, filter 0.25s ease;
	overflow: hidden;
	border-radius: 0.5rem;
}

.gallary-photos a:hover{
	transform:scale(1.01);
	filter:drop-shadow(0 0 1.31rem rgba(7, 12, 33, 0.25));
}
.ph-left-1{
	width: 43.4rem;
	height: 39.01rem;
	top: 0;
}
.ph-left-2{
	width: 25.46rem;
	height: 26.62rem;
	left: 44.21rem;
}
.ph-left-3{
	width: 43.4rem;
	height: 26.97rem;
	top: 40.16rem;
}
.next .ph-left-3{
	width: calc(43.4rem / 2);
	height: 26.97rem;
	top: 40.16rem;
}
.next .ph-left-7{
	width: calc(41.4rem / 2);
	height: 26.97rem;
	top: 40.16rem;
	left: 23rem;
}
.ph-left-4{
	width: 25.46rem;
	height: 39.35rem;
	top: 27.78rem;
	left: 44.56rem;
}
.ph-left-5 img{
	height: initial;
	width: 100%;
}
.ph-left-5{
	width: 70.02rem;
	height: 40.51rem;
	top: 67.94rem;
}

.next .ph-left-5{
	width: calc(70.02rem / 2);
	height: 40.51rem;
	top: 67.94rem;
}
.next .ph-left-6{
	width: calc(68.02rem / 2);
	height: 40.51rem;
	top: 67.94rem;
	left: 36rem;
}
.ph-right-1 img{
	height: initial;
	width: 100%;
}
.ph-right-1{
	width: 70.26rem;
	height: 32.06rem;
	right: 0;
	top: 0;
}

.next .ph-right-1{
	width: calc(78.26rem / 2);
	height: 32.06rem;
	right: 0;
	top: 0;
}
.next .ph-right-6{
	width: calc(61.06rem / 2);
	height: 32.06rem;
	right: 40rem;
	top: 0;
}
.ph-right-2{
	width: 30.09rem;
	height: 51.16rem;
	left: 71.18rem;
	top: 33.22rem;
}
.ph-right-3{
	width: 39.01rem;
	height: 41.32rem;
	left: 102.43rem;
	top: 33.22rem;
}
.ph-right-4{
	width: 30.09rem;
	height: 23.15rem;
	left: 71.18rem;
	top: 85.42rem;
}
.ph-right-5{
	width: 39.01rem;
	height: 32.99rem;
	left: 102.43rem;
	top: 75.46rem;
}
.nav-btn-3{
	position: relative;
}
.customer-reviews{
	width: 100%;
	margin-top: 8.56rem;
	margin-left: -21.99rem;
	padding: 0 21.99rem;
	background-color: var(--bg-white);
	border-top: solid 0.12rem rgba(30, 30, 30, 0.08);
	border-bottom: solid 0.12rem rgba(30, 30, 30, 0.08);
}
.cr-tittle{
	margin-top: 4.4rem;
}
.cr-card{
	width: 84.72rem;
	height: 37.85rem;
	border: solid 0.12rem rgba(30, 30, 30, 0.08);
	border-radius: 0.58rem;
	background-color: #fff;
}
.cr-blocks{
	width: 1000%;
	margin-top: 5.79rem;
	gap: 3.7rem;
	transition: margin-left 0.25s ease;
}
.img-container{
	width: 20.83rem;
	height: 20.83rem;
	border-radius: 50%;
	overflow: hidden;

}
.cr-content{
	width: 100%;
}
.img-container img{
	width: 20.83rem;
	height: 20.83rem;
}
.cr-content-user {
	width: 49.19rem;
	height: 25.93rem;
	margin-top: 6.02rem;
	margin-left: 5.56rem;
}
.cr-content-user svg{
	width: 16.2rem;
}
.cr-des {
	margin-top: 3.24rem;
}
.user-name {
	margin-top: 2.78rem;
}
.cr-app{
	margin-top: 0.93rem;
}
.calculator{
	width: 100%;
	margin-top: 11.57rem;
}
.calculator-blocks{
	width: 100%;
	margin-top: 5.79rem;
	gap: 3.13rem;
}
.calculator-blocks .price{
	height: 46.3rem;
}
.price {
	width: 46.3rem;
	height: 54.3rem;
	background-color: var(--bg-white);
	border: solid 0.12rem rgba(30, 30, 30, 0.08);
	border-radius: 0.58rem;
}
.mobile-menu{
	display:none;
}
.price-content{
	width: 33.33rem;
	position: relative;
	margin-top: 5.21rem;
	margin-left: 5.09rem;

}
.price-des-2{
	margin-top: 5.21rem;
}
form#contact-len{
	gap:3.41rem;
	align-items: flex-end;
}
.lead-form .btn-white{
	width: 18rem;
}
.rub{
	font-size: 4.63rem;
	font-weight: 700;
	color: var(--blue);
	margin-top: 1.74rem;
	border-bottom: solid 0.12rem rgba(30, 30, 30, 0.08);
	padding-bottom: 1.74rem;
}
.price button{
	width: 19.44rem;
	position: absolute;
	bottom:3rem;
}
.products{
	width: 92.02rem;
	height: 46.3rem;
	position: relative;
	overflow: hidden;
	background-color: var(--bg-white);
	border: solid 0.12rem rgba(30, 30, 30, 0.08);
	border-radius: 0.58rem;
}
.products .calc-block.quest-block{
	flex-direction: column;
}
.products .calc-block{
	left:-100%;
	top:0;
	width: 100%;
	height: 100%;
	transition: left 0.35s ease, opacity 0.35s ease;
	opacity: 0;
	position: absolute;
}
.products .calc-block.next{
	left:100%;
	opacity:0;
}
.products .calc-block.active{
	left:0;
	opacity:1;
}
.products-block{
	width: 100%;
	padding: 0 2.24rem 0 3.13rem;
	box-sizing: border-box;
}

.quest-item.active .active-circle:after{
	opacity:1;
}
.quest-item .active-circle:after{
	content: '';
	width: 1.323rem;
	height: 1.323rem;
	background:#0E2B76;
	border-radius: 100%;
	opacity:0;
	transition: opacity 0.25s ease;
}
.quest-item .active-circle{
	content: '';
	width: 2.323rem;
	height: 2.323rem;
	position: absolute;
	left:-5rem;
	top:-0.2rem;
	border: 2px #0E2B76 solid;
	border-radius: 100%;
	display:flex;
	justify-content: center;
	align-items: center;

}
.quest-block-content{
	gap:3rem;
}
.quest-block.material .quest-block-content .quest-item{
	width: calc(50% - 14rem);
	height: 6rem;
}
.quest-block.category-app .quest-block-content .quest-item{
	width: calc(30% - 14rem);
	height: 3rem;
}
div.quest-block.logo .quest-block-content{
	height: 8rem;
}
.quest-block.logo .quest-block-content .quest-item{
	width: 100%;
	height: 3rem;
}
.quest-block.logo .quest-block-content,
.quest-block.category-app .quest-block-content{
	flex-wrap: wrap;
	height: 20rem;
	display: flex;
}
.quest-item{
	color:#0E2B76;
	font-size:2.08rem  /* 18/8.63988 */;
	font-weight: 600;
	position: relative;
	margin-left:8.097rem;
	cursor: pointer;
}
.quest-block-content{
	margin-top:6.774rem;
}
.btn-product{
	background-color: #fff;
	border: solid 0.12rem rgba(30, 30, 30, 0.08);
	border-radius: 0.58rem;
	padding: 0.23rem 1.16rem;
}
.products-text{
	width: 100%;
	height: 3rem;
	margin-top:4.98rem  /* 43/8.63988 */;
	justify-content: space-between;
}
.products-text .heading-content{
	margin-left:3.13rem  /* 27/8.63988 */;
}
.quest-block-content{
	width: 100%;
	height: 44rem;
}
.btn-product{
	margin-right: 2.24rem;
}
.products-cards{
	margin-top: 4.05rem;
	gap: 2.31rem;
}
.product-block{
	width: 19.68rem;
	height: 19.68rem;
	border: solid 0.12rem rgba(30, 30, 30, 0.08);
	border-radius: 0.58rem;
	background-color: #fff;
	overflow: hidden;
	position: relative;
	transition: border 0.25s ease;
}
.product-block:hover{
	border:0.12rem solid var(--blue);
}
.product-block:hover .img-container-product img{
	transform: scale(1.04);
}
.img-container-product{
	position: absolute;
	z-index: 12;
	top: 2.08rem;
	left: 2.43rem;
}
.img-container-product img{
		position: absolute;
		z-index: 8;
	transition: transform 0.25s ease;
}
.mob-app{
	width: 19.75rem;
	height: auto;
	left: -2.66rem;
	top: 1.23rem;
}
.create-site {
	width: 21.61rem;
	height: auto;
	left: -2.66rem;
	top: -3.77rem;
}
.web-app{
	width: 20.61rem;
	height: auto;
	left: -3.80rem;
	top: 4.23rem;
}
.brand{
	width: 20.66rem;
	height: auto;
	left: -2.8rem;
	top: 2.23rem;
}
.btn-back-further {
	width: 100%;
	margin-top: 4.05rem;
	justify-content: flex-end;
	gap: 1.74rem;
	position: absolute;
	right:2rem;
	bottom:2rem;
}
.contacts {
	width: 100%;
	margin-top: 11.57rem;
}
.lead-magnit{
	width: 100%;
	display: contents;
}
.lead-form{
	width: 124.54rem;
	height: 40.97rem;
	margin-top: 9.49rem;
	background-color: var(--blue);
	background-size: 100% 100%;
	position: relative;
	border: none;
	border-radius: 1.1rem;
}
.bg-form{
	position: absolute;
}
.ok{
	width: 55.9rem;
	height: auto;
	bottom: 0;
	position: absolute;
	z-index: 15;
	left: 0.79rem;
	transition: transform 0.25s ease;
}
.lead-form:hover .ok{
	transform: scale(1.04) translateY(-2%);
}
.form{
	width: 100%;
	z-index: 16;
	align-items: flex-end;
	gap: 3.47rem;
}
.form-text{
	font-size: 2.78rem;
	font-weight: 700;
	color: #ffffff;
	margin-right: 5.79rem;
	margin-top: 5.32rem;
}
.lead-form .btn-white{
	background: #FCFDFE;
	margin-right: 5.76rem  /* 49.77/8.63988 */;
}
.input-form.user-name{
	margin-top:-0.53rem;
}

.input-form::placeholder{
	font-size: 1.85rem;
	font-weight: 400;
	color:#fff;
}
.input-form {
	width: 46.3rem;
	height: 5.79rem;
	font-size: 1.85rem;
	font-weight: 400;
	color: #fff;
	background-color: #213C81;
	border: solid 0.12rem rgba(255, 255, 255, 0.18);
	border-radius: 1.16rem;
	padding: 0.46rem 2.2rem;
	margin-right: 5.79rem;
	transition: border 0.25s ease;
}
.input-form:focus {
	background-color: #213C81;
	border: solid 0.12rem rgba(255, 255, 255, 0.68);
	border-radius: 1.16rem;
}
.form-number{
	width: 124.54rem;
	height: 6.48rem;
	margin-top: 2.31rem;
	background-color: var(--blue);
	background-size: 100% 100%;
	justify-content: space-between;
	border: none;
	border-radius: 1.1rem;
}
.circle-contacts .circle-1{
	width: 20rem;
	height: 20rem;
	position: absolute;
	top:-10rem;
	left:-10rem;
	border:8rem solid #FFFFFF14;
	border-radius: 100%;
	pointer-events: none;
}
.circle-contacts .circle-2{
	width: 44rem;
	height: 44rem;
	position: absolute;
	top: 11rem;
	left: 17rem;
	border: 6rem solid #FFFFFF14;
	border-radius: 100%;
	pointer-events: none;
}
.circle-contacts .circle-3{
	width: 15rem;
	height: 15rem;
	position: absolute;
	top: -12rem;
	right: -12rem;
	border: 3rem solid #FFFFFF14;
	border-radius: 100%;
	pointer-events: none;
}
.img-container-product img.mobile{
	display: none;
}
.circle-contacts .circle-4{
	width: 20rem;
	height: 20rem;
	position: absolute;
	bottom: -12rem;
	right: -6rem;
	border: 3rem solid #FFFFFF14;
	border-radius: 100%;
	pointer-events: none;
}
.form-contacts-svg a{
	display: flex;
	justify-content: center;
	align-items: center;
}
.form-contacts-svg{
	gap: 4.63rem;
	margin-left: 2.78rem;
}
.form-contacts-svg svg:hover{
	transform: scale(1.08);
	fill:var(--blue-light);
}
.form-contacts-svg svg{
	width: 3.24rem;
	height: auto;
	cursor: pointer;
	fill:white;
	transition: transform 0.25s ease, fill 0.25s ease;
}
.form-number-text:hover{
	transform:translateX(-1rem);
	color: #00b0fc;
}
.form-number-text{
	font-size: 2.55rem;
	font-weight: 400;
	color: #fff;
	margin-right: 2.78rem;
	transition: transform 0.25s ease,color 0.25s ease;
}
.career{
	width: 100%;
	margin-top: 8.56rem;
	background-color: var(--bg-white);
	border-top: solid 0.12rem rgba(30, 30, 30, 0.08);
	border-bottom: solid 0.12rem rgba(30, 30, 30, 0.08);
	text-align: center;
	padding: 0 21.99rem 7.29rem 21.99rem;
}
.career-tittle{
	margin-top: 7.41rem;
}
.career-text{
	width: 92.36rem;
}
.career-blocks{
	margin-top: 5.79rem;
	gap: 2.31rem;
	flex-wrap: wrap;
}
.career-card:hover{
	border-radius: 2.8rem;
	font-size:2.18rem;
}
.career-card{
	padding: 4.17rem 0;
	width: calc((100% / 3) - (2.31rem * 2));
	background-color: #fff;
	border: solid 0.12rem rgba(30, 30, 30, 0.08);
	border-radius: 0.58rem;
	font-size: 2.08rem;
	transition: border-radius 0.25s ease, font-size 0.25s ease;
}
.career-card span{
	width: 90%;
	font-weight: 500;
	color: var(--blue);
}
.career-text-email{
	margin-top: 5.79rem;
}
.career-email{
	font-family: Roboto, serif;
	font-size: 2.08rem;
	font-weight: 500;
	color: var(--blue);
	text-decoration: underline;

}
.faq{
	width: 100%;
	margin-top: 4.28rem;
}
.questions{
	width: 100%;
	cursor:pointer;
}
.faq-list{
	margin-top: 5.79rem;
}
.text-faq{
	font-size: 2.78rem;
	font-weight: 700;
	color: var(--blue);
}
.faq-question:hover{
	background-color: #FCFDFE;
}

.faq-question{
	width: 100%;
	height: 11.92rem;
	border-top: solid 0.12rem rgba(30, 30, 30, 0.08);
	border-bottom: solid 0.12rem rgba(30, 30, 30, 0.08);
	overflow: hidden;
	transition: background-color 0.25s ease, height 0.25s ease;
}
.face-question{
	width: 100%;
	justify-content: space-between;
	margin-top: 2.5rem;
}
.faq-question span{
	margin-left: 2.55rem;
}
.plus-faq {
	width: 7.06rem;
	height: 7.06rem;
	background-color: #F7F7F7;
	border: none;
	border-radius: 100%;
	cursor: pointer;
	transition: background-color 0.25s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.faq-question.active .plus-faq{
	background-color: #1668E8;
}
.faq-question:active .plus-faq{
	background-color: var(--blue);
}

.plus-faq svg {
	width: 1.645rem;
	height: 1.645rem;
	transition: transform 0.125s ease;
	stroke: #786F77;
	stroke-width: 0.23rem;
}
.faq-question.active .plus-faq svg,
.faq-question:active .plus-faq svg {
	transform: rotate(45deg);
}
.faq-question.active .plus-faq svg,
.faq-question:active .plus-faq svg{
	stroke: #fff;
}
.hidden-text{
	margin-top: 3.94rem;
}
footer{
	width: 100%;
	margin-left: -21.99rem;
	padding: 0 21.99rem;
	border-top: solid 0.12rem rgba(30, 30, 30, 0.08);
	margin-top: 17.36rem;
	background-color: var(--bg-white);
}
.logo-footer{
	width: 15.51rem;
	height: 4.86rem;
	margin-top: 5.9rem;
}
.company{
	white-space: nowrap;
	text-align: start;
}
.footer-content{
	width: 100%;
	margin-top: 8.1rem;
	gap: 18.87rem;
}
.footer-tittle{
	font-size: 1.62rem;
	font-weight: 600;
	color: var(--blue);
}
.footer-content ul{
	margin-top: 4.4rem;
	margin-bottom: 9.26rem;
}
.footer-content li a{
	font-weight: 500;
}
.footer-content li {
	height: 3.2rem;
	font-size: 1.62rem;
	list-style-type: none;
	margin-bottom: 2.89rem;
	cursor: pointer;
	position: relative;
	display: flex;
	justify-content: start;
	align-items: center;
}

.footer-content li::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -0.2rem;
	width: 0;
	height: 0.12rem;
	background-color: currentColor;
	transition: width 0.25s ease;
}

.footer-content li:hover::after {
	width: 100%;
}
.lead-ques{
	font-size: 1.5rem;
	font-weight: 700;
}
.lead-email{
	width: 44.68rem;
}
.input-email{
	width: 100%;
	margin-top: 4.28rem;
}
.input-email input:focus {
	border: solid 0.12rem var(--blue);
	border-radius: 1.16rem 0 0 1.16rem;
}
.btn-begin{
	width: 20rem;
}
.input-email input{
	width: 44.68rem;
	height: 6.37rem;
	font-size: 1.62rem;
	font-weight: 400;
	color: #64748B;
	border: solid 0.12rem rgb(212, 212, 216);
	border-radius: 1.16rem ;
	padding-left: 2.31rem;
	box-sizing: border-box;
	transition: border-color 0.25s ease;
}

.quest-block.final .quest-block-content {
	align-items: center;
}
.quest-block.final input:focus {
	border: solid 0.12rem var(--blue);
}
.quest-block.final input{
	width: 44.68rem;
	height: 6.37rem;
	font-size: 2.00rem;
	font-weight: 400;
	color: #64748B;
	border: solid 0.12rem rgb(212, 212, 216);
	border-radius: 1.16rem;
	padding-left: 2.31rem;
	box-sizing: border-box;
	transition: border-color 0.25s ease;
}

.quest-block.final input::placeholder {
	font-size:2rem;
}
.input-email::placeholder {
	border: solid 0.12rem rgba(255, 255, 255, 0.18);
	border-radius: 1.16rem;
}


.input-email-btn{
	width: 16.09rem;
	height: 6.37rem;
	background-color: var(--blue);
	border: none;
	border-radius:  0 1.16rem 1.16rem 0;
	font-size: 1.85rem;
	font-weight: 700;
	color: #fff;
	padding: 1.5rem 2.55rem;
	cursor: pointer;
	transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease, transform 0.5s ease;
}
.input-email-btn:hover {
	background-color: var(--bg-white);
	border: solid 0.12rem var(--blue);
	border-radius: 0 1.16rem 1.16rem 0;
	color: var(--blue);
}
.input-email-btn:active {
	transform: scale(0.99);
}
.tittle-phone-num{
	font-size: 1.39rem;
	font-weight: 700;
	color: #64748B;
	text-transform: uppercase;
}
.text-phone-num{
	font-size: 2.08rem;
	font-weight: 700;
	color: var(--black);
	margin-top: 1.04rem;
	transition: transform 0.25s ease;
}
.text-phone-num:hover {
	transform: translateX(-0.3rem);
}
.phone-num{
	margin-top: 3.94rem;
}
.contacts-company{
	gap: 7.52rem;
}
.legal-info{
	width: 100%;
	padding-top: 2.55rem;
	border-top: solid 0.12rem rgba(30, 30, 30, 0.08);
}
.legal-info-up{
	width: 100%;
	justify-content: space-between;
}
.legal-svg{
	gap: 3.47rem;
}
.legal-svg svg{
	width: 2.31rem;
	height: auto;
	cursor: pointer;
	transition: transform 0.25s ease, fill 0.25s ease;
	fill:#1E1E1E;
}
.legal-svg svg:hover{
	transform: scale(1.08);
	fill:#0E2B76;
}
.legal-text{
	font-size: 1.62rem;
	font-weight: 400;
}
.legal-info-down{
	margin-top: 4.63rem;
	gap: 11.57rem;
	margin-bottom: 7.29rem;
}
