/* USER VARIABLES SECTION */

html {
	--black: #101010;
	--white: #fff;
	--white-grey: #FBF5EF;
	--grey: #9D9D9D;
	--grey-400: #252525;
	--grey-300: #414040;
	--grey-200: #373737;
	--green: #31BA96;
	--orange: #FF8700;
	--blue: #1C31EC;
	

	--preview-box-shadow: 3px 2px 5px var(--orange);
}

/* theme-сhina  */
.theme-сhina {
	--orange: #FF4741;
}

.theme-сhina .bot-trigger {
	background-color: var(--black);
}

.theme-сhina .bot-trigger__wrapper {
	background-position: 10px center;
	background-image: url("/images/bot/chine.webp");
}

.checked{
	color: var(--orange) !important;
}

html{
	overflow-x: hidden;
}
@-moz-document url-prefix(){
	.scroll-container {
		scrollbar-width: thin;
		scrollbar-color: var(--orange) transparent
	}
}
.scroll-container::-webkit-scrollbar{
	background-color: transparent;
	width: 8px;
	height: 8px;
}
.scroll-container::-webkit-scrollbar-thumb{
	background-color: var(--orange);
	border-radius: 20px;
}

/* RESET CSSS */
*,*::before,*::after {box-sizing:border-box}
ul,ol {padding:0; list-style:none}
a{text-decoration: none;}
body,h1,h2,h3,h4,p,ul,ol,li,figure,figcaption,blockquote,dl,dd {margin:0}
body {scroll-behavior:smooth; line-height:1}
img {max-width:100%; height:auto; display:block}
button {background:none; border:none; cursor:pointer; outline:none}
input,button,textarea,select {font:inherit; -webkit-appearance:none; padding:0}
@media (prefers-reduced-motion:reduce) {* {animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important}}

/* RESET CSS */

/* FONTS LOAD SECTION */

/* @font-face { src: url("../fonts/ffName.woff2") format("woff2"); font-family: ff; font-weight: 400; font-style: normal; } */

/* GENERAL CSS SETTINGS */

.invite-link{
	display: flex;
	align-items: center;
	width: fit-content;
	padding: 8px 8px 8px 24px;
	grid-gap: 20px;
	color: var(--black);
	font-size: 18px;
	font-weight: 500;
	line-height: 0;
	letter-spacing: -0.38px;
	text-transform: uppercase;
	border-radius: 83px;
	background: var(--white);
	text-decoration: none;
}
.invite-link svg{
	width: 40px;
}

.invite-link span{
	--bg: var(--black);
	color: var(--white);
	transition: var(--transition) color, var(--transition) transform;
}

.invite-link:hover span{
	color: var(--orange);
	transform: rotate(360deg);
}

.name-section{
	color: var(--grey);
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
}

body{
	font-variant-numeric: lining-nums proportional-nums; 
	background-color: var(--black);
	font-family: "Raleway", sans-serif;
	--transition: 0.3s
}

.wrapper{
	max-width: 1368px;
	margin: 0 auto;
	padding: 0 15px;
}

.container {
	padding: 0 30px;
	margin: 0 auto;
}


/* tooltip-content */
.tooltip_active svg {
    transform: rotate(180deg);
    transition: var(--transition);
}

.tippy-box[data-theme~='baseTooltip']{
	background-color: var(--white);
	color: var(--black);
	min-width: 250px;
	border-radius: 20px;
}

.tippy-box[data-theme~='baseTooltip'] .tippy-content {
	padding: 0;
}

.tippy-box[data-theme~='baseTooltip'] ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	padding: 16px;
}

.tippy-box[data-theme~='baseTooltip'] li {
	padding: 0 !important;
	border-radius: 0 !important;
}

.tippy-box[data-theme~='baseTooltip'] li:hover{
	background-color: transparent !important;
}

.tippy-box[data-theme~='baseTooltip'] a {
	color: var(--black);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: -0.38px;
	transition: color var(--transition);
}

.tippy-box[data-theme~='baseTooltip'] a:hover {
	color: var(--orange) !important;
}
/* header */
.header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	grid-gap: 15px;
	padding: 20px 0;
}

.header__group {
	display: flex;
	align-items: center;
	gap: 10px;
}

.header-wrap {
	position: sticky;
	background: var(--black);
	z-index: 100;
	top: 0;
	left: 0;
}


.header-bottom{
	flex-shrink: 0;
}

.header-bottom__inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
		gap: 20px;
}

.header-bottom__group a{
	display: flex;
	align-items: center;
	color: var(--main-color);
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.306px;
	text-decoration: none;
	gap: 14px;
	opacity: 0.7;
	transition: 0.3s opacity;
}

.header-bottom__group a:hover {
	opacity: 1;
}

.header-bottom__title{
	color: var(--main-color);
	font-size: clamp(30px, 3.5vw, 50px);
	font-weight: 600;
	letter-spacing: -2px;
	text-transform: uppercase;
}

.allModules-header .header-bottom__inner {
	align-items: flex-start;
}
.header-burger_wrap{
	display: none;
}	

.cases-card_head img {
	width: 60px;
	height: 60px;
}
.header-bottom__text{
	color: var(--main-color);
	font-size: 18px;
	font-weight: 500;
	line-height: 150%;
	max-width: 680px;
	margin-bottom: 24px;

}
/* select */
.custom-select {
	z-index: 110;
	position: relative;
}

.selected-option {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.options-list {
	display: none;
	position: absolute;
	flex-direction: column;
	background-color: var(--white);
	z-index: 100;
}

.options-list li{
	padding: 10px 12px;
	cursor: pointer;
}

.options-list li:hover a{
	color: var(--orange);
}

.options-list a{
	text-decoration: none;
	color: var(--black);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -0.38px;
}

.custom-select.active .options-list {
	display: flex;
}

.active svg {
	transition: var(--transition);
	transform: rotate(180deg);
}

.current-value {
	color: var(--white);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -0.38px;
	text-transform: uppercase;
	transition: var(--transition);
}

.current-value:hover {
	color: var(--orange);
}

.selected-option svg{
	transition: var(--transition);
}

.selected-option svg {
	color: var(--white);
}

.selected-option svg:hover {
	color: var(--orange);
}

.selected-option__arrow svg {
	color: var(--black);
	transition: var(--transition);
}

.selected-option__arrow:hover svg {
	color: var(--orange);
}
/* .custom-select_language */
.custom-select_language .options-list {
	min-width: 100px;
	text-align: left;
	border-radius: 6px;
	right: 12px;
}

.custom-select_language .selected-option {
	gap: 8px;
	padding: 10px 12px;
}

/* custom-select_toggle*/
.custom-select_toggle .options-list {
	width: 100%;
	top: calc(100% + 10px);
	border-radius: 10px;
}

.custom-select_toggle .selected-option {
	display: flex;
	align-items: center;
	border-radius: 100px;
	background: var(--grey-400);
	gap: 20px;
	padding: 2px 2px 2px 24px;
}

.custom-select_toggle .selected-option__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background-color: var(--white);
	width: 50px;
	height: 50px;
	border-radius: 100%;
}

/* burger select*/
.menu .selected-option {
	background-color: var(--white);
} 

.menu .current-value {
	transition: var(--transition);
	color: var(--grey-400);
} 

.menu .current-value:hover, .menu .selected-option__arrow:hover svg{
	color: var(--orange);
}

.menu .selected-option__arrow {
	background-color: var(--grey-400)
}

.menu .options-list {
	bottom: calc(100% + 10px);
	top: unset;
}

.menu .selected-option__arrow svg {
	transition: var(--transition);
	color: var(--white);
}

/* menu */
.menu {
	display: none;
}

.menu .ac-header {
	display: flex;
	align-items: center;
	gap: 10px;
}

.menu .ac-trigger svg {
	transition: var(--transition);
	color: var(--white);
	flex-shrink: 0;
}

.menu .ac-trigger:hover svg {
	color: var(--orange);
}

.menu__link {
	transition: var(--transition);
}

.menu__link:hover {
	color: var(--orange);
}

.menu .ac-panel {
	display: grid;
	gap: 10px;
}

.menu .ac-panel .menu__item {
	padding-top: 0px;
	padding-bottom: 0px;
}
.menu .ac-panel .menu__item:first-child {
	padding-top: 10px;
}

.active-tab {
	border-radius: 50px;
	background: var(--orange);
}

.hidden-scroll {
	height: 100vh;
	overflow: hidden;
}

/* .header-nav */
.header-nav ul {
	display: flex;
	align-items: center;
}

.header-nav li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--white);
	padding: 10px 16px;
	border-radius: 50px;
	transition: var(--transition);
}

.header-nav li:hover {
	color: var(--orange);
	background: #1F1F1F;
}

.header-nav a {
	display: flex;
	align-items: center;
	color: currentColor;
	font-size: 16px;
	font-weight: 600;
	line-height: 22px;
	letter-spacing: -0.38px;
	text-transform: uppercase; 
	text-decoration: none;
}

.header-nav svg {
	color: var(--white);
	transition: var(--transition);
}

.header-nav svg:hover {
	color: var(--orange);
}

.header-nav button {
	display: flex;
	align-items: center;
}


/* tabds */
.links__wrapper{
	max-width: 100%;
	overflow: auto;
	display: flex;
	gap: 15px;
}
.links__wrapper::-webkit-scrollbar{
	display: none;
}

.content-list , .module-list{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 24px;
}

.links__item {
	color: var(--grey);
	font-size: 18px;
	font-weight: 600;
	line-height: 18px; 
	letter-spacing: 0.306px;
	border-radius: 40px;
	text-decoration: none;
	background-color: #333232;
	padding: 10px 15px;
}
.links__active {
	background-color: var(--white);
	color: var(--black);
}

.baner-tg-package{
	margin-bottom: clamp(15px, 12vw, 36px);
}

.main-swiper {
	margin-bottom: 100px;
}
/* content */
.content {
	margin-top: 50px;
}

.baner-tg_page {
	margin-top: 120px;
}

.content__list {
	display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 24px;
}

.header-link{
	display: flex;
	align-items: center;
	padding: 2px 2px 2px 24px;
	grid-gap: 20px;
	color: var(--black);
	font-size: 16px;
	font-weight: 500;
	line-height: 0;
	letter-spacing: -0.38px;
	text-transform: uppercase;
	border-radius: 83px;
	background: var(--white);
	text-decoration: none;
	flex-shrink: 0;
}
.header-link svg {
	width: 50px;
	height: 50px;
}

.header-link span{
	--bg: var(--black);
	color: var(--white);
	transition: var(--transition) color, var(--transition) transform;
}

.header-link:hover span{
	color: var(--orange);
	transform: rotate(360deg);
}

/* block-img */

.block-img img{
	width: 100%;
	border-radius: 50px;
	margin-bottom: 35px;
}

.block-article {
	margin-bottom: clamp(15px, 12vw, 36px);
}

.block-article__text{
	color: var(--white);
	font-size: clamp(16px, 5vw, 18px);
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0.42px;
	max-width: 1120px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}

/* block-swiper */

.block-swiper {
	margin-bottom: clamp(40px, 12vw, 60px);
}

.block-swiper img {
	max-height: clamp(360px, 40vw, 720px);
	width: 100%;
	object-fit: contain;
	border-radius: 50px;
}

.swiper-img {
	position: relative;
}

.block-swiper__btn{
	color: var(--white);
		transition: var(--transition) color;
	position: absolute;
	top: 50%;
	z-index: 3;
}

#block-swiper__next {
	right: 48px;
}

#block-swiper__prev {
	left: 48px;
}
/* main */
.main__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	grid-gap: 15px;
}
.main__container a{
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--black);
	font-size: 18px;
	font-weight: 500;
	padding: 20px 32px;
	background-color: var(--orange);
	border-radius: 76px;
}

.main__group {
	display: flex;
	align-items: center;
	gap: 14px;
	color: var(--white);
}

.main__month, .main__number {
	border-radius: 69px;
	padding: 10px 20px; 
	white-space: nowrap;
	font-size: clamp(14px, 1.5vw, 16px);
	font-weight: 600;
}

.main__month {
	background: rgba(255, 255, 255, 0.20);
}

.main__number {
	background-color: var(--blue);
}
.preview{
	margin-bottom: clamp(80px, 14vw, 160px);
}
.preview-list_icon{
	width: 30px;
	height: 30px;
	flex-shrink: 0;
	color: var(--orange);
}
.preview-bg {
	width: 100%;
}
/* efficiency */
.efficiency{
	margin-top: 100px;
}

.efficiency-content{
	border-radius: 50px;
	background: var(--white-grey);
	padding: 60px 48px;
}

.efficiency__top {
	display: inline-flex;
	justify-content: center;
	flex-direction: column;
	gap: 24px;	
	margin-bottom: 60px;
}

.efficiency__title {
	text-align: left;
}

.efficiency h2 {
	color: var(--white);
	font-size: clamp(36px, 6vw, 50px);
	font-weight: 600;
	letter-spacing: -2px;
	text-transform: uppercase;
}

.control-terminal {
	margin-bottom: clamp(80px, 14vw, 250px);
}

.control-terminal__wrapper {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.control-terminal__hint {
	display: none;
	align-items: center;
	gap: 5px;
	color: var(--white);
	font-size: 16px;
	font-weight: 500;
	line-height: 140%; /* 19.6px */
	letter-spacing: 0.28px;
}

.control-terminal__hint > svg {
	flex-shrink: 0;
	color: var(--grey);
}
/* 1 */
.control-terminal__column {
	display: none;
}

.control-terminal__row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	background-color: var(--black-bg);
	border-radius: 50px;
} 

.control-terminal__tabds {
	display: grid;
	gap: 32px;
}

.control-terminal__tab {
	display: grid;
	gap: 14px;
}

.control-terminal__tab[data-tabby-active] .control-terminal__tab-title, .tab-active .control-terminal__tab-title {
	color: var(--black);
}

.control-terminal__tab[data-tabby-active] .control-terminal__tab-text, 
	.tab-active .control-terminal__tab-text, 
	.control-terminal__tab[data-tabby-active] .progress {
	display: block;
}

.control-terminal__tab-title {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 10px;
	color: var(--grey);
	text-align: left;
	font-size: 24px;
	font-weight: 600;
	line-height: 130%;
	letter-spacing: 0.24px;
}

.control-terminal__tab-title svg {
	color: #ADA7A0;
	flex-shrink: 0;
}
.progress {
	display: none;
	width: 100%;
	height: 6px;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.10);
}

.control-terminal__tab[data-tabby-active] .progress  span {
	display: block;
	height: 100%;
	width: 0;
	background-color: var(--orange);
	transition: 0.5s width;
}


.control-terminal__tab-text {
	color: var(--black);
	font-size: 18px;
	font-weight: 500;
	line-height: 160%; /* 32px */
	letter-spacing: 0.4px;
	text-align: left;
	opacity: 0.7;
	display: none;
}

.control-terminal__row .control-terminal__img {
	position: sticky;
	top: 0;
	max-width: 100%;
	border-radius: 20px;
}

.control-terminal__img img{
	height: clamp(293px, 40vw, 692px);
	width: 100%;
	border-radius: 20px;
	object-fit: cover;
}

.control-terminal__group {
	display: flex;
	flex-direction: column-reverse;
	gap: 24px;
	padding: 30px;
	border-radius: 25px;
	background: var(--black-bg);
	cursor: pointer;
}

.control-terminal__img video{
	width: 100%;
	height: clamp(293px, 40vw, 600px);
}







/* 
.efficiency__content{
	padding-bottom: clamp(20px, 6vw, 60px);
	padding-top: clamp(20px, 6vw, 60px);
	background-color: var(--white-grey);
	text-align: center;
	border-radius: 50px
}

.efficiency__top {
	margin-bottom: 60px;
	display: inline-flex;
	padding: 0 20px;
		justify-content: center;
		flex-direction: column;
}

.efficiency__title {
	text-align: left;
}

.efficiency__content h2 {
	color: var(--black);
		font-size: clamp(36px, 6vw, 50px);
		font-weight: 600;
		margin-top: 24px;
	letter-spacing: -2px;
		text-transform: uppercase;
}
.efficiency__body{
	display: grid;
	grid-template-columns: 340px 1fr;
	grid-gap: 30px;
	margin: 0px 5%;
	position: relative;
}
.efficiency__body .swiper{
	width: 100%;
}

.efficiency__menu {
	display: flex;
	flex-direction: column;
	grid-gap: 15px;
}
.efficiency__poiner{
	display: none;
	align-items: center;
	grid-gap: 15px;
	color: #ADA7A0;
font-size: 14px;
font-weight: 500;
line-height: 140%;
}
.efficiency__item svg{
	display: none;
	flex-shrink: 0;
}

.efficiency__active-slide svg{
	display: inline-block;
}

.efficiency-card-video {
	height: clamp(300px, 35vw, 600px);
}

.efficiency__item {
	display: flex;
	white-space: nowrap;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	color: #ADA7A0;
	font-size: clamp(18px, 2vw, 25px);
	font-weight: 500;
	letter-spacing: -0.38px;
	text-align: left;
	white-space: normal;
	line-height: 1.5;
}

.efficiency__active-slide{
	color: var(--black);
}

.efficiency-slide {
	display: grid;
  grid-template-columns: auto 1fr;
	gap: 80px;
}
.efficiency-slide__video{
	width: 100%;
}
.efficiency-slide video {
	border-radius: 50px;
} *

.efficiency__text{
	color: var(--black);
	font-size: clamp(18px , 2.2vw, 20px);
	font-weight: 500;
	line-height: 170%; 
	letter-spacing: -0.38px;
	max-width: 513px;
	text-align: left;
	padding-top: 31px;
	overflow: hidden;
	flex-shrink: 0;
} */

/* preview */
.preview{
	display: grid;
	grid-template-columns: 1fr minmax(300px, 530px);
	grid-gap: 15px;
	margin-top: 45px;
}

.preview-bg{
	/* box-shadow: var(--preview-box-shadow) */
	filter: drop-shadow(var(--preview-box-shadow)) ;
}

.preview-title{
	color: var(--white);
	font-size: clamp(32px, 6vw, 54px);
	font-weight: 600;
}

.preview-title span{
	color: var(--orange);
}

.preview-subtitle{
	color: rgba(255,255,255, 0.7);
	font-size: 18px;
	font-weight: 500;
	line-height: 170%;
	letter-spacing: -0.38px;
}

.preview-left{
	display: flex;
	flex-direction: column;
	grid-gap: 35px;
	align-items: flex-start;
}
.preview-list{
	display: flex;
	grid-gap: 35px;
	margin-top: auto;
}

.preview-list_item{
	display: flex;
	align-items: center;
	grid-gap: 12px;
	color: var(--white);
font-size: clamp(18px, 2.5vw, 32px);
font-weight: 600;
}

/* preview */
.originality {
	margin-top: clamp(80px, 14vw, 160px);
}

.originality-title{
	font-size: 64px;
	font-size: clamp(34px, 6vw, 50px);
	font-weight: 600;
	letter-spacing: -2px;
	color: var(--white);
	line-height: 125%;
	margin-bottom: 60px;
	margin-top: 24px;
}

.originality__list{
	grid-gap: 20px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
} 

.originality-card{
	border-radius: 50px;
	background: var(--grey-400);
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 370px;
	gap: 50px;
}

.originality-card__top {
	display: flex;
	justify-content: space-between;
	gap: 10px;

}

.originality-card__top svg, .automation-widget-header svg ,
.cases-icon > svg, .cases-icon ,.mechanics-card svg{
	flex-shrink: 0;
	width: 50px;
	height: 50px;
}

.originality-card__title {
	font-size: clamp(24px, 2.5vw, 30px);
	font-weight: 600;
	color: var(--white);
	line-height: 140%;
}

.originality-card__footer{
	color: var(--white);
	font-size: clamp(16px , 2.2vw, 18px);
	font-weight: 500;
	line-height: 150%;
}
.originality-card__footer_canvas{
	width: 100%;
	min-height: 120px;
}
canvas {
	width: 100%;
	height: 100%;
}
/* originality */

/* widget */

.widget {
	position: relative;
	border-radius: 50px;
	background: var(--grey-400);
	overflow: hidden;
	height: 534px;
}

.widget-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	grid-gap: 30px;
	padding: 40px 40px 60px 40px;
}
.widget-title {
	color: var(--white);
	font-size: clamp(15px, 2.4vw, 42px);
	font-weight: 600;
	line-height: 140%;
}

.widget-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white);
	background-color: var(--black);
	border-radius: 100%;
	flex-shrink: 0;
	transition: var(--transition) color;
}

.widget-btn svg {
	color: var(--white);
}

.widget-btn:hover{
	color: var(--orange);
}
.widget-toggle > svg{
	pointer-events: none;
}
.widget-card {
	display: flex;
	justify-content: center;
	position: absolute;
	width: 100%;
	height:  calc(100% - 248px);
	transition: all 0.75s ease;
	transform-style: preserve-3d;
}

.widget-card-video{
	max-width: 100%;
	max-height: 100%;
	cursor: pointer;
}

.widget-card-video_hidden {
	transition: opacity 500ms ease-in;
	opacity: 0;
}

.widget-rotate .widget-card {
	transform: rotateY(180deg);
}
.widget-rotate .widget-back{
	overflow: auto;
}
.widget-front, .widget-back {
	backface-visibility: hidden;
	position: absolute;
	width: 100%;
	height: 100%;
}

.widget-front {
	background-color: var(--grey-400);
}

.widget-back {
	transform: rotateY(180deg) translateX(50%);
	background-color: var(--grey-400);
	overflow: hidden;
	padding: 0 20px 20px 20px;
	top: 0;
	left: 50%;
	color: var(--white);
	font-size: clamp(14px, 2.7vw, 20px);
	line-height: 130%;
	width: calc(100% - 40px);
}


/* marketplaces */

.marketplaces{
	padding: 160px 0;
}

.marketplaces-title{
	text-align: center;
	margin-bottom: 0;
}

.marketplaces .no-active-img{
	filter: brightness(0.3) contrast(1.2); 
}

/* experience */

.experience{
	margin-bottom: 160px;
	margin-top: 160px;
}

.experience-title{
	color: var(--white);
	font-size: clamp(36px, 6vw, 50px);
	font-weight: 600;
	margin-top: 24px;
	line-height: 140%;
	margin-bottom: 60px;
	text-transform: uppercase;
}

.experience-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	grid-gap: 15px;
}
.experience-subtitle {
	color: var(--white);
	font-size: clamp(18px, 2vw, 36px);
	font-style: italic;
	font-weight: 500;
	line-height: 140%;
}
.experience-btns {
	display: flex;
	padding: 18px 24px;
	align-items: flex-start;
	gap: 24px;
	border-radius: 69px;
	background: var(--grey-400); 
}
.experience-btn {
	color: var(--white);
	font-size: 18px;
	font-weight: 500;
	letter-spacing: -0.38px;
	text-transform: uppercase;
	padding: 20px 40px;
	border-radius: 100px;
	white-space: nowrap;
	transition: var(--transition) color, var(--transition) background;
}
.experience-btn--active, .experience-btn:hover {
	background: var(--white);
	color: var(--black);
}

.experience-content{
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	align-items: flex-end;
	grid-gap: 24px;
	height: 530px;
	border-top: 1px solid;
	border-bottom: 1px solid;
	border-image: url("../images/line.svg") 1;
	margin-top: 40px;
  padding: 15px;
	margin-bottom: clamp(34px, 6vw, 48px);

}
.experience-content::before{
	position: absolute;
	content: '';
	left: 0;
	top: 48%;
	transform: translateY(-50%);
	background-image: url("../images/line.svg");
	height: 1px;
	width: 100%;
}

.experience-old, .experience-item{
	position: relative;
	padding: 20px; 
	border-radius: 25px;
	z-index: 10;
}
.experience-old{
	display: flex;
	align-items: center;
	background: var(--orange);
	height: 22%;
	color: var(--black);
	font-size: 24px;
	font-weight: 500;
	line-height:  125%;
}
.experience-item{
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 135px;
	background: var(--grey-400);
	transition: var(--transition)
}

.experience-result-hidden .experience-item_link, .experience-result-hidden  .experience-item_title, .experience-result-hidden .experience-upp{
	display: none;
}
.experience-item_empty{
	display: none;
}

.experience-result-hidden .experience-item_empty{
	display: block;
}

.experience-item_link{
	display: flex;
  align-items: center;
	justify-content: space-between;
  grid-gap: 20px;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 0;
  letter-spacing: -0.38px;
	padding: 8px 8px 8px 24px;
	border-radius: 83px;
  text-transform: uppercase;
  background: var(--white);
  text-decoration: none;
	margin-top: auto;
}


.experience-item_arrow{
	--bg: var(--black);
  color: var(--white);
  transition: var(--transition) color, var(--transition) transform;
}
.experience-item_arrow svg{
	width: 40px;
	height: 40px;
}

.experience-item_link:hover span {
  color: var(--orange);
  transform: rotate(360deg);
}
.experience-new{
	display: flex;
	flex-direction: column;
	grid-gap: 24px;
}

.experience-upp{
	position: relative;
	border-radius: 20px;
	background: #31BA96; 
	padding: 20px; 
	color: var(--white);
	font-size: 18px;
	font-weight: 500;
	line-height: 125%;
	white-space: nowrap;
	text-transform: uppercase;
	z-index: 10;
}

.experience-upp_icon{
	width: 104px;
	height: 104px;
}

.experience-new .experience-item{
	color: var(--white);
	font-size: 24px;
	font-weight: 500;
	line-height: 125%;
}

.experience-badges {
	display: flex;
	align-items: center;
	justify-content: space-between;
	grid-gap: 30px;
}

.experience-badge {
	display: flex;
	padding: 10px 20px;
	justify-content: center;
	align-items: center; 
	color: var(--white);
	font-size: 18px;
	font-weight: 500;
	line-height: 150%;
	text-transform: uppercase;
	border-radius: 69px;
	background: var(--grey-400); 
}
.experience-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.experience-card {
	padding: 60px 10px;
	text-align: center;
	
}
.experience-card:not(:last-of-type){
	border-right: 1px solid var(--grey-300);
}
.experience-card-title {
	color: var(--white);
	font-size: clamp(38px, 6vw, 100px);
	font-weight: 600;
	line-height: 100%;
	letter-spacing: -0.384px;
	text-transform: uppercase
}
.experience-card-subtitle {
	color: var(--grey);
font-size: 24px;
font-weight: 400;
line-height: 125%;
letter-spacing: -0.384px; 
}

/* automation */
.automation{
	margin-top: 160px;
}
.automation-mini-title{
	color: var(--white);
	font-size: clamp(36px, 6vw, 50px);
	font-weight: 600;
	line-height: 125%;
	letter-spacing: -2px;
	text-transform: uppercase;
	margin: 24px 0 60px 0;
}

.automation-mini-pretitle{
	color: var(--white);
  font-size: clamp(18px, 2vw, 36px);
  font-style: italic;
  font-weight: 500;
  line-height: 140%;
	margin-bottom: 30px;
}

.automation-widgets {
	display: grid;
	grid-gap: 24px;
	grid-template-columns: repeat(3, 1fr);
}

.automation-widget {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 40px;
	border-radius: 25px;
	background: var(--grey-400);
	background-size: cover;
	color: var(--white);
	font-size: 18px;
	font-weight: 500;
	line-height:  115.385%;
	position: relative;
}

.automation-widget::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	border-radius: 25px;
	border: transparent;
	transition: border 500ms ease-out;
	transform-origin: top right; 
}

.automation-widget:hover::before {
	border: 1px solid var(--orange);
}

.automation-widget-header{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 40px;
}
.automation-widget-icon{
	width: 104px;
	height: 104px;
}

/* experience */


/* work */
.work {
	margin-bottom: 120px;
	margin-top: 100px;
}

.work-title{
	color: var(--white);
	font-size: clamp(36px, 6vw, 50px);
	font-weight: 600;
	margin-top: 24px;
	margin-bottom: 60px;
	text-transform: uppercase;
}
.work-list{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 24px;
}
.work-card{
	position: relative;
	height: clamp(360px, 50vw, 600px);
	padding: 40px;
	border-radius: 50px;
	background-repeat: no-repeat;
	background-image: var(--bg-pk); 
	background-position: var(--position);
	background-color: var(--bg-color);
}

.work-card-head{
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	grid-gap: 15px;
}

.work-card-no-active .work-card-badge{
	background-color: #f7f7f738;
}
.work-card-no-active .work-card-badge {
	color: rgba(226, 226, 226, 0.569);
}
.work-card-title{
	color: var(--white);
	font-size: 36px;
	font-weight: 600;
	line-height: 140%;
}

.work-card-badge{
	color: var(--white);
	font-size: 24px;
	font-weight: 600;
	line-height: 125%;
	padding: 10px 15px;
	border-radius: 69px; 
	letter-spacing: -0.48px
}

.work-card--free{
	background-color: var(--green);
}
.work-card--vip{
	background-color: var(--blue);
}

.work-card-vip {
	position: absolute;
	right: 40px;
	bottom: 60px;
	display: flex;
	align-items: center;
	border-radius: 25px;
	grid-gap: 20px;
	width: fit-content;
	background: var(--white);
	box-shadow: 0px 10px 10.8px 0px rgba(0, 0, 0, 0.20);
	padding: 20px 20px 20px 25px;
}
.work-card-vip_number {
	color: var(--black);
	font-size: 30px;
	font-weight: 600;
}
.work-card-vip_icon {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--blue);
	width: 60px;
	height: 60px;
	border-radius: 15px; 
}
/* baner */
.baner{
	/* margin-top: 120px; */
}
.baner-content{
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #71C6AF;
	background-image: url('../images/static.svg');
	background-size: contain;
	background-repeat: no-repeat;
	color: var(--black);
	font-size: clamp(24px, 4vw, 40px);
	font-weight: 500;
	line-height: 106.25%;
	letter-spacing: -0.384px; 
	padding: 20px 25px; 
	border-radius: 50px; 
	gap: 20px;
}
.baner_link{
	--bg: var(--white);
	display: flex;
	align-items: center;
	grid-gap: 20px;
	color: var(--white);
	border-radius: 83px;
	background: var(--black); 
	font-size: 18px;
	font-weight: 500;
	line-height: 111.111%;
	letter-spacing: -0.384px;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	padding: 14px 14px 14px 24px;
}
.baner_link svg{
	color: var(--black);
	transition: var(--transition) transform, var(--transition) color ;
}

.baner_link:hover svg{
	transform: rotate(360deg);
	color: var(--orange);
}
/* work */


/* cases */
.cases{
	margin: 100px 0;
}
.cases-title{
	color: var(--white);
	font-size: clamp(36px, 6vw, 50px);
	font-weight: 600;
	margin-top: 24px;
	margin-bottom: 60px;
	text-transform: uppercase;
}

.cases-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 48px;
}
.cases-group {
	display: flex;
	align-items: center;
	grid-gap: 48px;
}

.cases-group:nth-of-type(2){
	justify-content: center;
}

.cases-card {
	display: grid;
	grid-gap: 10px;
	background-color: var(--card);
	padding: 24px;
	border-radius: 25px; 
}
.cases-card--light{
	color: var(--black);
	--bg: var(--black)
}

.cases-card--light  svg{
	color: var(--white);
}


.cases-icon > svg, .cases-icon {
	border-radius: 100%;
}

.cases-card--light .cases-icon{
	background: #101010;
	color: #fff;
}
.cases-icon svg{
	transition: var(--transition) transform;
}

.cases-icon:hover svg{
	color: var(--orange);
  transform: rotate(360deg);
}

.cases-card--dark .cases-icon{
	background: #fff;
	color: #101010;
}

.cases-card--dark{
	color: var(--white);
	--bg: var(--white)
}

.cases-card--dark  svg{
	color: var(--black);
}
.cases-card  svg{
	flex-shrink: 0;
}
.cases-card_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	grid-gap: clamp(20px , 3.2vw, 70px);
}
.cases-card_title {
	display: inline;
	font-size: clamp(18px , 2.5vw, 36px);
	font-weight: 500;
	line-height: 103.846%;
	letter-spacing: -0.38px;
}
.cases-card_title__wrap{
	position: relative;
	padding-right: 30px;
}
.cases-card_title__wrap > span{
	position: absolute;
	right: 0;
	top: 0;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -0.384px;  
}

.cases-card_text {
	font-size: clamp(14px , 2.2vw, 18px);
	font-weight: 400;
	line-height: 133.333%;
	letter-spacing: -0.38px; 
}
/* cases */

/* mechanics */
.mechanics{
	margin-top: clamp(80px, 14vw, 160px);
}

.mechanics .wrapper{
	display: flex;
	flex-direction: column;
}

.mechanics__btn{
	display: inline-flex;
	text-decoration: none;
	border-radius: 100px;
	background: var(--orange);
	padding: 28px 40px;
	color: var(--black);
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -0.38px;
	align-self: center;
	text-transform: uppercase;
	align-self: center;
	margin-top: 80px;
} 



.mechanics-swiper{
	margin-left: 15px;
}

.mechanics-title{
	color: var(--white);
	font-size: clamp(36px, 6vw, 50px);;
	font-weight: 600;
	margin-top: 24px;
	margin-bottom: 60px;
	text-transform: uppercase;
}

.mechanics-card{
	position: relative;
	display: flex;
	flex-direction: column;
	height: clamp(300px, 35vw, 490px);
	border-radius: 50px;
	background: var(--grey-400);
	background-image: var(--bg);
	background-repeat: no-repeat;
	background-position: center bottom;
	padding: 40px;
	overflow: hidden;
	background-size: 92%;
}

.mechanics-card::before{
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	width: 100%;
	height: 30%;
	background: linear-gradient(180deg, rgba(37, 37, 37, 0.00) 0%, #252525 70.99%);
}

.mechanics-card_head{
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.mechanics-card_title{
	color: var(--white);
	font-size: clamp(22px, 2.2vw, 36px);
	font-weight: 600;
	line-height: 140%; 
	overflow: hidden;
	/* white-space: nowrap; */
	text-overflow: ellipsis;
}

.mechanics-card_right {
	display: flex;
	align-items: center;
	grid-gap: 10px;
	color: var(--white);
	font-size: clamp(16px, 1.8vw, 18px);
	font-weight: 600;
	line-height: 125%;
	letter-spacing: -0.48px;

}
.mechanics-card_month, .mechanics-card_number{
	border-radius: 69px;
	padding: 10px 20px; 
	white-space: nowrap;
}
.mechanics-card_month {
	background-color: var(--grey-200);
}
.mechanics-card_number {
	background-color: var(--blue);
}
.mechanics-card_footer {
	position: relative;
	display: flex;
	align-items: center;
	grid-gap: 40px;
	justify-content: space-between;
	margin-top: auto;
}
.mechanics-card_footer_text {
	color: var(--white);
	font-size: clamp(16px, 1.8vw, 18px);
	font-weight: 600;
	line-height: 140%;
}

.mechanics-card svg {
	--bg: var(--white);
	color: var(--orange);
	transition: var(--transition) transform;
}

.mechanics-card:hover svg{
	transform: rotate(360deg);
}


.mechanics-list{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 24px;
}

.mechanics-feedback_wrap {
	margin-top: clamp(80px, 10vw, 120px);
}

.mechanics-feedback {
	display: grid;
	grid-gap: 48px;
	border-radius: 50px;
	padding: 48px; 
	background: var(--orange); 
}

.mechanics-feedback_title {
	color: var(--black);
	font-size: clamp(48px, 3vw, 80px);
	font-weight: 500;
	line-height: 106.25% ;
	letter-spacing: -0.384px; 
	word-wrap: anywhere;
}

.mechanics-feedback_form {
	display: grid;
	align-items: center;
	grid-template-columns: repeat(4, 1fr);
	height: 79px;
	grid-gap: 24px;
}

.mechanics-feedback_item {
	border-radius: 100px;
	border: 1px solid var(--black);
	padding: 0 40px;
	height: 100%;
	background: transparent;
	outline: none;
	color: var(--black);
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -0.38px;
	width: 100%;
}

.mechanics-feedback_btn {
	border-radius: 100px; 
	padding: 0 40px;
	height: 100%;
	background: var(--black);
	color: var(--white);
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -0.38px;
	text-transform: uppercase;
	border: none;
	transition: var(--transition) color;
}

.mechanics-feedback_btn:hover{
	color: var(--orange);
}
/* mechanics */


/* reviews */
.reviews{
	margin-top: clamp(80px, 14vw, 160px);
}

.reviews-title{
	color: var(--white);
	font-size: clamp(36px, 6vw, 50px);
	font-weight: 600;
	margin-top: 24px;
	margin-bottom: 60px;
	text-transform: uppercase;
	word-wrap: break-word;
}

 .reviews-content{
	display: grid;
	justify-content: space-between;
	align-items: center;
	grid-template-columns: 80px 1fr 80px;
	grid-gap: 30px;
}

.reviews-swiper_wrap{ 
	max-width: calc(1368px - 335px);
	margin: 0 auto;
}

.reviews-card{
	display: flex;
	background-color: var(--white-grey);
	padding: 48px;
	border-radius: 35px;
	grid-gap: 40px;
}
.reviews-card_right{
	display: flex;
	flex-direction: column;
	grid-gap: 24px;
	width: 100%;
}
.reviews-card_img, .reviews-card_img > img {
	position: relative;
	border-radius: 35px; 
	width: 100%;
	height: 100%; 
	max-width: 344px;
	max-height: 458px;
	object-fit: cover;
}

.reviews-card_img_play{
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	--size: 60px;
	--scale: 0.5;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: var(--orange);
	color: var(--black);
	border-radius: 100%;
	width: var(--size);
	height: var(--size);
	animation: double-pulse 2s infinite;
}

.reviews-card_img_play::before, .reviews-card_img_play:after{
	position: absolute;
	content: '';
	width: var(--size);
	height: var(--size);
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 100%;
	background-color: var(--orange);
	animation: wave-pulse 4s infinite;
}

.reviews-card_img_play:after{
	animation-delay: 2s;
}

.reviews-card_img_icon{
	position: relative;
	left: 3px;
	z-index: 10;
}

.reviews-card_info {
	display: flex;
	align-items: center;
	grid-gap: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--grey);
}

.reviews-card_photo {
	width: 80px;
	height: 80px; 
	border-radius: 100%; 
}

.reviews-card_name {
	display: grid;
}

.reviews-card_fio {
	color: var(--black);
	font-size: clamp(18px, 1.8vw, 24px);
	font-weight: 600;
	line-height: 150%;
	letter-spacing: -0.38px;
}

.reviews-card_position {
	color: var(--grey);
	font-size: 18px;
	font-weight: 500;
	line-height: 170%;
	letter-spacing: -0.38px
}
.reviews-right_text {
	color: var(--black);
	font-size: clamp(16px , 2.2vw, 18px);
	font-weight: 500;
	line-height: 170%;
	letter-spacing: -0.38px; 
}
.reviews-right_img__group{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 9px;
}
.reviews-right_img{
	height: 96px;
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 0.20);
}
.reviews-btn{
	color: var(--white);
	transition: var(--transition) color;
}

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

/* reviews */

/* tariffs */
.tariffs{
	margin-top: clamp(80px, 14vw, 160px);
	margin-bottom: 150px;
}
.tariffs-swiper {
	padding: 0 2px;
	padding-bottom: 2px;
}


.tariffs-slider_btn{
/* 	position: absolute;
	top: 50%;
	transform: translateY(-50%); */
	color: var(--white);
	transition: var(--transition) color;
	z-index: 30;
}
.tariffs-slider_btn:hover{
	color: var(--orange);
}
.tariffs-prev{
/* 	left: 15px; */
}
.tariffs-next{
/* 	right: 15px; */
}
.tariffs-title{
	color: var(--white);
	font-size: clamp(36px, 6vw, 50px);
	font-weight: 600;
	margin-top: 24px;
	margin-bottom: 60px;
	text-transform: uppercase;
	word-wrap: break-word;
}
.tariffs-content{
	position: relative;
	display: flex;
	align-items: center;
	grid-gap: 10px;
	margin-bottom: clamp(80px, 10vw, 120px);
}

.tariffs-card {
	border-radius: 50px;
	padding: 48px;
	border: 1px solid var(--color);
/* 	background-image: url('../images/tariffs/bg.png');  */
	background-position: top center;
	background-size: cover;
}
.tariffs-card-title {
	color: var(--white);
	font-size: 20px;
	font-weight: 600;
	line-height: 120%;
	letter-spacing: -0.076px;
	margin-bottom: 48px;
}
.tariffs-list {
	display: grid;
	grid-template-columns: 1fr;
	margin-bottom: 60px;
	margin-right: 40px;
}
.tariffs-item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	grid-gap: 64px;
	padding: 24px;
	background-color: var(--color);
	border-radius: 20px; 
	min-height: 345px;
	box-shadow: 30px 20px 0px -4px #2F2F2F, 60px 40px 0px -4px rgba(47, 47, 47, 0.2);
	background-repeat: no-repeat;
	background-position: right -55px top 10px;
	background-size: contain;
}

.tariffs-item span{
	color: var(--white);
	font-size: 16px;
	font-weight: 600;
	line-height: 150%;
	letter-spacing: -0.076px;
}
.tariffs-info_user {
	display: grid;
	color: var(--white);
	font-size: 20px;
	font-weight: 600;
	line-height: 150%;
	letter-spacing: -0.076px;
}
.tariffs-item_group {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 10px 8px;
	max-width: 300px;
}
.tariffs-item_group_card {
	color: var(--white);
	font-size: 18px;
	font-weight: 500;
	line-height: 111.111%;
	letter-spacing: 0.18px;
	border-radius: 46px;
	padding: 7px 12px; 
	background: rgba(26, 25, 25, 0.60);
}
.tariffs-price{
	display: flex;
	align-items: center;
	justify-content: space-between;
	grid-gap: 15px;
}

.tariffs-price_number {
	color: var(--white);
	font-size: 49px;
	font-weight: 600;
	letter-spacing: -1.2px; 
}

.tariffs-price_group {
	display: flex;
	align-items: center;
	grid-gap: 14px;
}
.tariffs-price_details{

}
.tariffs-price_date{
	color: var(--grey);
	font-size: 18px;
	font-weight: 500;
	line-height: 111.111%;
	letter-spacing: -0.36px; 
}
.tariffs-price_old{
	color: var(--grey);
	font-size: 24px;
	font-weight: 500;
	letter-spacing: -0.48px;
	text-decoration-line: line-through;
}
.tariffs-price_percent{
	color: var(--white);
	font-size: clamp(18px, 3vw, 36px);
	font-weight: 600;
	line-height: 71.429%;
	letter-spacing: -0.84px;
	border-radius: 69px;
	background: var(--green);
	padding: 20px 24px; 
}
.tariffs-info{
	margin-top: 7.5px;
	color: var(--white);
	font-size: 16px;
	font-weight: 500;
	line-height: 140%; 
	letter-spacing: 0.16px;
	margin-bottom: 60px;
}
.tariffs-btns{
	display: flex;
	gap: 24px;

}
.tariffs-btn{
	display: inline-flex;
	border-radius: 100px;
	background: var(--white);
	padding: 20px 30px; 
	color: var(--black);
	font-size: 18px;
	font-weight: 500;
	justify-content: center;
	text-transform: uppercase;
	flex-grow: 1;
}

.tariffs--btn-description {
	text-align: center;
	text-decoration: none;
	color: var(--white);
	padding: 20px 30px;
	border-radius: 100px;
	font-size: 18px;
	font-weight: 500;
	background: #797979;
	text-transform: uppercase;
	flex-grow: 1;
}
.tariffs-callback {
	display: flex;
	grid-gap: 48px;
	justify-content: space-between;
	background-color: var(--blue);
	border-radius: 50px;
	padding: 48px;
}
.tariffs-callback_title {
	color: var(--white);
	font-size: clamp(30px, 4vw, 80px);
	font-weight: 500;
	letter-spacing: -2px; 
	word-wrap: break-word;
}
.tariffs-callback_form {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	grid-gap: 24px;
	width: 100%;
}
.tariffs-callback_input {
	border-radius: 100px;
	background: transparent;
	border: 1px solid var(--white);
	padding: 28px 40px;
	color: var(--white);
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -0.38px;
	width: 100%;
	resize: none;
	outline: none;
}
.tariffs-callback_form textarea{
	height: 138px;
	border-radius: 50px; 
}
.tariffs-callback_btn {
	color: var(--white);
	padding: 28px 40px; 
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -0.38px;
	text-transform: uppercase; 
	border-radius: 100px;
	background: var(--black); 
	width: 100%;
}
.baner-tg__container{
	display: grid;
	grid-template-columns: max-content repeat(2, auto);
	align-items: center;
	grid-gap: 45px;
	background-color: var(--white);
	border-radius: 50px;
	padding: 20px 35px;
}
.baner-tg__text{
	color: var(--black);
	font-size: clamp(14px , 2.2vw, 18px);
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -0.384px;
	max-width: 900px;
}
.baner-tg__link{
	--bg: var(--white);
	display: flex;
	align-items: center;
	grid-gap: 20px;
	color: var(--white);
	border-radius: 83px;
	background: var(--black); 
	font-size: 18px;
	font-weight: 500;
	line-height: 111.111%;
	letter-spacing: -0.384px;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	padding: 14px 14px 14px 24px;
	margin-left: auto;
}
.baner-tg__link svg{
	color: var(--black);
	transition: var(--transition) transform, var(--transition) color ;
	width: 40px;
}

.baner-tg__link:hover svg{
	transform: rotate(360deg);
	color: var(--orange);
}
/* tariffs */


/* faq */
.faq{
	margin-top: clamp(80px, 14vw, 160px);
	text-align: left;
}


.faq-title {
	color: var(--white);
	font-size: clamp(36px, 6vw, 50px);
	font-weight: 600;
	margin-top: 24px;
	margin-bottom: 60px;
	text-transform: uppercase;
	word-wrap: break-word;
}

.accordion-container{
	display: grid;
	grid-gap: 32px;
}

.wrapper-faq .ac {
	border-bottom: 1px solid var(--grey-300);
}

.is-active {
	border-color: transparent;
}

.wrapper-faq .is-active .ac-trigger{
	padding-bottom: 10px;
}

.wrapper-faq .ac-trigger {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: left;
	grid-gap: 10px;
	padding: 0 24px 24px 32px;
	width: 100%;
	color: var(--white);
	font-size: 24px;
	font-weight: 500;
	line-height: 150%;
	letter-spacing: -0.38px;
	text-transform: uppercase;
	transition: var(--transition) color, var(--transition) padding;
}

.ac-trigger > svg{
	color: var(--white);
	flex-shrink: 0;
}
.ac-trigger:hover{
	color: var(--orange);
}
.ac-panel {
	transition: var(--transition) height;
	overflow: hidden;
}
.ac-text {
	padding: 0 24px; 
	width: 100%;
	color: var(--white);
	font-size: 16px;
	font-weight: 500;
	line-height: 150%;
	letter-spacing: -0.38px;
}
/* faq */

/* footer */

.footer{
	margin-top: 120px;
}

.footer img {
	max-width: 75vw;
}

.footer-content{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 80px;
}
.footer-content_title {
	color: var(--white);
	font-size: 36px;
	font-weight: 600;
	line-height: 103.333%;
	letter-spacing: -0.38px;
	margin-bottom: 24px;
}
.footer-content_subtitle {
	color: var(--white);
	font-size: 18px;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: -0.38px; 
}
.footer-content_list_wrap{
	width: fit-content;
}
.footer-content_list {
	display: grid;
	width: max-content;
	margin: 0 auto;
	grid-gap: 10px;
	font-size: 18px;
	font-weight: 500;
	line-height: 125%;
	letter-spacing: -0.38px;
	text-transform: uppercase;
}
.footer-content_link {
	color: var(--white);
	transition: var(--transition) color;
	text-decoration: none;
}
.footer-content_link[href]:hover{
	color: var(--orange);
}
.footer-content_name{
	color: var(--grey);
	font-size: 20px;
	font-weight: 500;
	line-height: 124.8%;
	letter-spacing: -0.38px;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.footer-content_email{
	color: var(--white);
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 98.979%;
letter-spacing: -0.38px;
text-decoration: none;
transition: var(--transition) color;
margin-top: 60px;
}

.footer-content_email:hover{
	color: var(--orange);
}

.footer-bot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	grid-gap: 30px;
	margin-top: clamp(48px, 8vw, 120px);
	margin-bottom: clamp(48px, 6vw, 80px);
}
.footer-bot_item {
	color: var(--white);
	font-size: 18px;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: -0.38px;
	text-transform: uppercase;
	transition: var(--transition) color;
	text-decoration: none;
}
.footer-bot_item[href]:hover{
	color: var(--orange);
}
/* footer */


/* cookies */

.cookies{
	display: none;
	align-items: center;
	position: fixed;
	left: 50%;
	transform: translateX(calc(-50% + -15px));
	bottom: 30px;
	width: 90vw;
	background-color: var(--white);
	max-width: 1368px;
	margin: 0 15px;
	padding: 15px 0;
	min-height: 107px;
	background-image: url('../images/luna.svg');
	background-repeat: no-repeat;
	background-position: -6px 25px;
	z-index: 50;
	padding-left: 120px;
	padding-right: 90px;
	border-radius: 30px;
	box-shadow: 0px 4px 18.5px 3px #000;
}

.cookies-title{
	color: var(--black);
	font-size: clamp(18px, 3vw, 24px);
	font-weight: 600;
	margin-right: 10px;
}

.cookies-btn{
	color: var(--white);
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
	border-radius: 100px;
	background: var(--orange);
	padding: 20px 30px;
	min-width: 220px;
	margin-left: auto;
}


/* interface */
.interface{
	margin-top: 160px;
}
.interface-wrapper{
	display: flex;
	justify-content: space-between;
	grid-gap: 10px;
	border-radius: 30px;
	background: radial-gradient(147.11% 75.34% at 75.29% 47.41%, #6A6A71 0%, #47484E 37.28%, #1F2028 100%);
	padding: 40px;

}

.interface-title{
	color: #FFF;
	font-size: clamp(24px, 6vw, 54px);
	font-weight: 600;
	text-transform: uppercase;
}

.interface-subtitle{
	color: #FFF;
font-size: clamp(18px, 4vw, 24px);
font-weight: 500;
line-height: 131%;
letter-spacing: -0.38px;
max-width: 420px;
}

.interface-left{
	display: flex;
	flex-direction: column;
	grid-gap: 15px;
	justify-content: space-between;
}

.interface-img{
	max-height: 250px;
	object-fit: contain;
}

/* interface */


/* cases */

.header-cases{
	--dark: #101010;
	--light: #fff;
	display: flex;
	justify-content: space-between;
	padding: 40px;
	grid-gap: 80px;
	border-radius: 50px;
	background: var(--bg);
	min-height: 230px;
}

.header-cases .header-bottom__text {
	margin-bottom: 0;
}

.header-cases .main__info {
	display: flex;
	flex-direction: column;
	gap: 37px;
	min-width: 360px;
}

.header-cases .module-info__links {
	margin-top: auto;
}
/* .header-cases .header-bottom__title, .header-cases .header-bottom__group a, .header-cases .header-bottom__text{
	color: var(--black);
} */
/* cases */

.header-modelue{
	--main-color: var(--white);
	display: flex;
	justify-content: space-between;
	grid-gap: 30px;
	border-radius: 50px;
	background: #1F2028;
	padding: 60px;
}

.header-modelue_title_wrap{
	display: flex;
	align-items: center;
	grid-gap: 24px;
	margin-top: 16px;
}

.header-package{
	--main-color: var(--white);
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	grid-gap: 15px;
	border-radius: 50px;
	background: var(--bg-color);
	padding: 40px;
	padding-left: 290px;
	background-image: var(--bg);
	background-repeat: no-repeat;
	background-position: -50px 10px;
	background-size: 400px, cover;
	min-height: 230px;
}

.header-package .header-bottom__group a{
	color: var(--white);
	margin-bottom: 14px;
}

.header-package .header-bottom{
	margin-bottom: 0;
}

.header-package .main__container a{
	background-color: var(--white);
	color: var(--black);
}

.header-package .main__container{
	justify-content: space-between;
	margin-top: 42px;
	grid-gap: 10px;

}

.allModules-header{
	--main-color: var(--white);
	display: flex;
	flex-direction: column;
	grid-gap: 55px;
	margin-top: 40px;
}

.header-package  .main__month{
	background: #373737;
}

.allModules .tariffs-card{
	margin-left: 0 !important;
}

.swiper-button-disabled{
	opacity: 0.5;
}
.allModules-header .header-bottom__title{
	margin-top: 10px;
}

/* visualization */
.visualization{
	margin-top: clamp(80px, 14vw, 160px)
}
.visualization-title{
	color: var(--white);
  font-size: clamp(36px, 6vw, 50px);
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.visualization-info{
	display: grid;
	grid-template-columns: 700px max-content;
	align-items: flex-start;
	justify-content: space-between;
	grid-gap: 15px;
}

.visualization-info_text{
	color: var(--white);
font-size: clamp(16px, 2vw, 18px);
font-style: normal;
font-weight: 500;
line-height: 131%; 
letter-spacing: -0.38px;
}

.visualization-img img {
	border-radius: 30px;
	margin-top: 30px;
	width: 100%;
	max-height: 510px;
}

/* visualization */

[data-text] > span {
	display: inline-block;
	opacity: 0;
	transform: translateY(20px); 
	animation: slideUp 0.5s forwards;
}

@keyframes slideUp {
	to {
		opacity: 1;
		transform: translateY(0); 
	}
}

.main__info {
	max-width: 500px;
}

/* modal */

[data-large]{
	cursor: pointer;
}

  .modal {
    display: none;
  }

  .modal.is-open {
    display: block;
  }


  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }


  .modal-content {
    position: relative;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
    max-height: 90%;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.3s ease-in-out;
  }


  @keyframes scaleIn {
    from {
      transform: scale(0.8);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }


  .modal-body img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
  }


  .modal-close {
    position: absolute;
    top: 0;
    right: 10px;
    background: none;
    border: none;
    font-size: 35px;
		transform: scale(1.5);
    cursor: pointer;
  }


/* modal */

/* bot */

.bot {
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 90;
	cursor: pointer
}

.bot-trigger {
	display: flex;
	align-items: center;
	justify-content: center;
	--size: 100px;
    width: var(--size);
    height: var(--size);
    border-radius: 100%;
    background: var(--grey-400);
    border: 3px solid var(--orange);
    overflow: hidden;
    cursor: pointer;
}

.bot-trigger__wrapper {
	height: 100%;
	width: 100%;
	background-image: url("/images/bot/base.webp");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
	0%{
		transform: scale(1)
	}
	50% {
		transform: scale(1.15)
	}
	100% {
		transform: scale(1)
	}
}


.module-info__link {
	display: flex;
	align-items: center;
	gap: 14px;
	color: var(--main-color);
	font-size: 14px;
	font-weight: 600;
	line-height: 128.571%; 
	letter-spacing: 0.238px;
	opacity: 0.7;
	transition: 0.3s opacity;
}

.module-info__links {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 37px;
}

.module-info__link:hover {
	opacity: 1;
}

.module-info__link:last-child svg {
	transform: rotate(180deg);
}