

/* Start:/local/templates/direkt2026/assets/css/index.css?178834586113946*/
main {
	position: relative;
}
main:before {
	content: "";
	background: url("/include/info/section-gradient.svg") no-repeat right top;
	background-size: auto;
	background-size: cover;
	position: absolute;
	right: 0;
	top: -175px;
	display: block;
	width: 37vw;
	height: 30vw;
}
.banner + header {
	margin: 0;
	padding: 0;
}
.banner {
    width: 100vw;
    background-size: cover;
}
@media (min-width: 845px) {
    .banner {
        background: url('/local/templates/direkt2026/assets/img/Banner.webp') repeat 0 0 transparent;
        background-repeat: no-repeat;
        background-size: cover;
    }
}
@media (max-width: 844px) {
    .banner {
        background-image: url('/local/templates/direkt2026/assets/img/Banner-mobile.webp');
        background-position: 0 0;
        background-color: transparent;
        background-repeat: no-repeat;
        background-size: cover;
    }
}
.banner__img {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	
	display: none;
}
.banner .container {
	z-index: 2;
	position: relative;
}
.main_banner {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 12vh 0 4vh;
	min-height: 100vh;
	justify-content: space-between;
}
.banner-text {
	font-size: 64px;
	text-transform: uppercase;
	line-height: 84px;
	padding: 0;
	margin: 0;
}
.banner-text__purple {
	display: inline-block;
	position: relative;
	font-family: 'GeologicaMedium';
	font-style: italic;
	white-space: nowrap;
	font-size: 96px;
	height: 81px;
	margin: 0;
}
.banner-text__purple span{
	background: linear-gradient(90deg, rgba(132, 59, 245, 0.6) 0%, rgba(160, 153, 255, 0.6) 100%);
	background-size: 200%; /* Увеличиваем размер фона для плавного переливания */
	background-clip: text;
	-webkit-background-clip: text; /* Для поддержки в WebKit-браузерах (например, Chrome, Safari) */
	color: transparent; /* Делаем текст прозрачным, чтобы был виден только градиент */
	animation: gradient-animation 3s ease infinite;
	line-height: 94px;	
	display: inline-block;
	width: auto;
	padding-right: 15px;
	margin-left: -15px;
}
.banner-text__purple span:first-child {
	margin-left: -10px;
}
@keyframes gradient-animation {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 100% 50%;
	}
}
@keyframes gradient-animation {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 100% 50%;
	}
}
.letter {
	display: inline-block;
	opacity: 0;
	position: relative;
	transition: opacity 0.3s ease;
}
.letter--static {
	opacity: 1;
}
.cursor {
	display: inline-block;
	width: 2px;
	height: 80px;
	background-color: var(--color-text);
	position: absolute;
	animation: blink 0.7s steps(1) infinite;
	bottom: -30px;
	top: -30px;
}
@keyframes blink {
	50% {
		opacity: 0;
	}
}

.main_banner__center {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 12.5vh;
}
.banner-skills {
	display: flex;
	gap: 48px;
	position: relative;
}
.banner-skills__descr {
	display: block;
	position: absolute;
	left: 0;
	top: calc(100% + 10px);
	width: calc(100% + 40px);
	max-width: calc(100vw - 40px);
	transition: all 0.5s ease;
	opacity: 0;
	visibility: hidden;
}
.banner-skills__item:hover .banner-skills__descr {
	opacity: 1;
	visibility: visible;
}
.banner-skills a.btn {
	font-size: 36px;
	transition: all 0.3s ease-in-out;
	text-transform: uppercase;
	border-radius: var(--border-radius);
	padding: 20px 63px;
	display: block;
}
.banner-skills p:hover {
  color: var(--index-hover-text);
}

.banner-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.banner-info .chats {
  align-items: flex-start;
  transition: all 0.3s ease-in-out;
}
.banner-info .chats svg {
	transform: scale(1.8);
}
.chat-arrow {
	display: flex;
	align-items: center;
	width: auto;
	height: auto;
	flex: 1 0;
}
.banner-info a {
  transition: all 0.3s ease-in-out;
}

.banner-info a p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 20px;
  cursor: pointer;
}

.banner-links {
  float: right;
}

.banner-links span {
  font-family: "Geologica", sans-serif;
  font-size: 36px;
  font-weight: 100;
  color: var(--color-text);
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.banner-links span:hover {
  text-decoration: underline;
}

.cursor-animation {
  width: 30px;
  min-height: 46px;
  height: 6vh;
  border-radius: 12px;
  background-color: transparent;
  border: 2px solid var(--color-text);

  transform: translateX(-50%);
  margin: 32px auto 0;

  display: flex;
  justify-content: center;
  padding: 6px;
}

.cursor-animation .pink {
  width: 6px;
  height: 6px;
  background-color: var(--color-text);
  border-radius: 50%;
  animation: pink 2.5s linear infinite;
  position: absolute;
}

@keyframes pink  {
  0% {
    bottom: 75%;
  }
  50% {
    bottom: 3px;
  }
  100% {
    bottom: 75%;
  }
}

.header__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  opacity: 1;
  max-width: 100%;
  width: 100%;
}
.header__bottom--contact {
  display: none;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.header__bottom--contact p {
  font-size: 14px;
  line-height: 16px;
}
.header__bottom--contact a {
  font-size: 14px;
  line-height: 16px;
}
.banner-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  font-size: 16px;
}

.banner-info .chats {
  align-items: flex-start;
}

.banner-info a {
  transition: all 0.3s ease-in-out;
}


.banner-info .chats__icons svg {
	width: 10px;
	height: 16px;
}
.banner-info .chats__icons,
.banner-info a:not([href^="mailto:"]):not([href^="tel:"]) {
	border-radius: 30px;
	border: 1px solid var(--border-light-color);
	background: rgba(0, 0, 0, 0.01);
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	padding: 5.5px 19px;
}
.banner-info .chats__icons:hover,
.banner-info a:hover:not([href^="mailto:"]):not([href^="tel:"]) {
	text-decoration: none;
	opacity: 1;
	border-color: var(--color-link);
	color: var(--color-link);
}
.banner-info .chats .chats__wrapper {
	bottom: auto;
	top: auto;
	padding: 0;
	margin: 0;
	left: 127px;
}
.banner-info .chats .chats__wrapper ul {
	padding: 0;
	margin: 0;
}
.banner-info .chats .chats__wrapper ul a {
	width: 57px;
	height: 32px;
}
.index__socials {
	display: flex;
	align-items: center;
	gap: 20px;
}
.index__socials a {
	border: 1px solid transparent;
	border-radius: 20px;
	width: 50px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border-light-color);
	background: rgba(0, 0, 0, 0.01);
}
.chats__wrapper > a:after,
.index__socials a:after {
	display: none;
}
.index__socials a:hover {
	border-color: var(--color-link);
	color: var(--color-link);
}
.index__socials a svg {
	width: auto;
	max-height: 30px;
	transition: all 0.5s ease;
}
.index__socials a.social__sitemap {
	display: none;
}
.index__socials a[href^="https://rutube.ru/"] {
	order: 0;
}
.index__socials a[href^="https://vk.com/"] {
	order: 1;
}
.index__socials a[href^="https://max.ru/"] {
	order: 3;
}
.index__socials a[href^="https://t.me/"] {
	order: 4;
}

.banner-info a p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 20px;
  cursor: pointer;
}
.banner-links {
  font-family: "Geologica", sans-serif;
  font-size: 36px;
  font-weight: 100;
  color: var(--color-text);
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.banner-links:hover {
	text-decoration: none;
}

.banner-links span:hover {
  text-decoration: underline;
}


.overlay-promotion {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(7, 17, 27, 0.60);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  z-index: 100000;
}
.overlay-promotion.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}





/* begin new style for info content */
.index-direction {
	position: relative;
	min-height: 100vh;
}
.index-direction__inner {
	z-index: 2;
	position: relative;
	height: 100vh;
	overflow-x: hidden;
	overflow-y: auto;
}
.index-direction__list {}
.index-direction__list-item {
	font-weight: 400;
	font-size: 36px;
	font-family: "GeologicaRegular", sans-serif;
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
	letter-spacing: 4px;
	margin-bottom: 20px;
	position: relative;
	color: var(--color-text);
	cursor: pointer;
}
.index-direction__list-item.active::before {
	content: '';
	position: absolute;
	right: 100%;
	top: 50%;
	width: 40vw;
	height: 6px;
	background: linear-gradient(270deg, var(--color-main-bg), var(--index-hover-text));
	transform: translateY(-50%);
}
.index-direction__list-item:hover,
.index-direction__list-item.active {
	color: var(--index-hover-text);
}
.index-direction__content {}
.index-direction__item {
	min-height: 100vh;
	display: flex;
	align-items: center;
}
.index-direction__item-inner {
	row-gap: 100px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	align-items: center;
}
.index-direction__footer {
	grid-column: span 2 / span 2;
}

.index-direction__header {
	margin-bottom: 40px;
}
.index-direction__header a {
	display: flex;
	flex-direction: row;
	gap:4px;
	text-decoration: none;
}
.index-direction__header a:hover {
	text-decoration: none;
	color: var(--color-link);
}
.index-direction__header a:hover,
.index-direction__header a:hover h2 {
	text-decoration: none;
	color: var(--color-link);
}
.index-direction__header h2 {
	font-family: "GeologicaRegular", sans-serif;
	font-size: var(--size-h1);
	letter-spacing: 4px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	padding: 0;
	margin: 0;
}
.index-direction__header svg {
	width: 29px;
	height: 30px;
}
.index-direction__header img {
	margin-top: -32px;
}
/* end new style for info content */

h2:has(+.banner-container) {
	margin-bottom: 32px;
}
.cases .cases-all,
.cases .cases-item {
	transition: all 1s ease-out;
	opacity: 0;
}
.cases .cases-item.left {
    transform: translateX(-200px);
}
.cases .cases-all.right,
.cases .cases-item.right {
    transform: translateX(200px);
}
.cases .cases-all.show,
.cases .cases-item.show {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1440px) {
	.banner-skills {
		gap: 32px;
	}
	.banner-skills a.btn {
		font-size: 30px;
		padding: 16px 48px;
	}
	.info-content {
		max-width: 591px;
	}
}
@media (max-width: 1300px) {
	.banner-text {
		font-size: 64px;
	}
	.banner-text__purple {
		font-size: 70px;
		line-height: 74px;
		height: 72px;
	}
}
@media (max-width: 1167px) {
	.banner-skills__descr {
		background: rgba(255, 255, 255, 0.3);
		border-radius: 20px;
		padding: 15px;
		top: auto;
		bottom: calc(100% + 10px);
	}
}
@media (max-width: 1024px) {
	.banner-container {
		width: 95%;
		height: 328px;
	}
	.main_banner__center {
		flex-direction: column;
		align-items: start;
	}
	.banner-text {
		font-size: 52px;
		line-height: 60px;
	}
	.banner-text__purple {
		font-size: 64px;
		height: 69px;
	}
	.main_banner .header__bottom {
		flex-direction: column;
		justify-content: space-between;
		align-items: stretch;
		row-gap: 35px;
		margin-top: 9vh;
	}
	.banner-info {
		justify-content: space-between;
	}
	.index__socials {
		justify-content: space-between;
	}
	.banner-info .chats .chats__wrapper {
		left: auto;
		bottom: auto;
		top: calc(-100% - 10px);
		right: 0;
		width: auto;
	}
	.index__socials a {
		width: 57px;
		height: 43px;
		background: linear-gradient(rgba(42, 43, 110, 0.1) aliceblue, rgba(42, 43, 110, 0.1) aliceblue) padding-box, 
					linear-gradient(-127.99deg, rgba(255, 255, 255, 0.6), var(--color-main-bg)) border-box, linear-gradient(127.99deg, rgba(255, 255, 255, 0.6), var(--color-main-bg)) border-box;
	}
	.cursor-animation {
		display: none;
	}
}
@media (max-width: 844px) {
	.banner-text {
		font-size: 28px;
		line-height: 1.5;
	}
	.banner-text br {
		line-height: 1;
		height: 0px;
	}
	.banner-text__purple {
		font-size: 28px;
		height: auto;
		line-height: 1;
		margin-left: 5px;
	}
	.banner-text__purple span {
		line-height: 1;
	}
	.banner-skills {
		gap: 20px;
	}
	.banner-skills a.btn {
		font-size: 19px;
		padding: 11px 48px;
	}
	.main_banner__center {
		flex-direction: row;
		column-gap: 20px;
		row-gap: 18px;
		margin-top: 8.4vh;
	}
	.banner-links.btn svg {
		max-height: 15px;
	}
}
@media (max-width: 768px) {
	.blog-index {
		margin-bottom: 80px;
	}
	.banner-container.swiper {
		margin-bottom: 80px;
	}
	.main_banner .header__bottom {
		margin-top: 6vh;
	}
	.banner {
		background-position: center;
	}
	.banner-skills {
		flex-wrap: wrap;
	}
}
@media (max-width: 500px) {
	.main_banner {
		padding-bottom: 34px;
		min-height: 95vh;
	}
	.banner-skills a.btn {
		padding: 18px 25px;
	}
	.banner-skills {
		gap: 14px;
		justify-content: space-between;
		width: 100%;
	}
	.main_banner__center {
		margin-top: 30px;
	}
	.banner-skills__item {
		width: 100%;
		position: relative;
	}
	.banner-skills__item:hover .btn {
		opacity: 0;
	}
	.banner-skills__descr {
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		max-width: unset;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		padding: 10px;
		font-size: 16px;
	}
}



html[data-theme="light"] .banner {
	background: none;
}
html[data-theme="light"] main::before {
	background: none;
	display: none;
}
html[data-theme="light"] .directions-item__list-el {
	color: var(--color-main-bg);
}
/* End */


/* Start:/local/templates/direkt2026/assets/css/cases.css?17883458615292*/
.decor_wave ~ .container .cases-tabs {
	z-index: 101;
	position: relative;
}
.cases-tabs {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 160px;
	font-family: 'GeologicaRegular';
}
.cases-tabs.fixed {
	position: fixed !important;
	width: 100%;
	background: var(--color-main-bg);
	left: 0;
	right: 0;
	top: 62px;
	max-width: 1840px;
	margin: 0 auto;
	padding: 10px 20px;
}
@media (max-width: 1440px) {
	.cases-tabs.fixed {
		padding-left: 60px;
		padding-right: 60px;
	}
}
@media (max-width: 991px) {
	.cases-tabs.fixed {
		padding-left: 10px;
		padding-right: 10px;
	}
}
.cases-tabs a {
	font-size: 36px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0 60px;
}
.cases-tabs a:hover,
.cases-tabs a.selected {
	color: var(--index-hover-text);
	text-decoration: none;
}
.cases {
	display: grid;
	grid-template-columns: repeat(2, calc(50% - 16px));
	column-gap: 32px;
	row-gap: 32px;
	margin-bottom: 48px;
}
.cases-item {
    border-radius: var(--border-radius);
	border: 1px solid transparent;
	background: linear-gradient(var(--color-second-bg), var(--color-second-bg) 0) padding-box,
				linear-gradient(127.99deg, var(--color-text), rgba(7, 17, 27, 0)) border-box;
	position: relative;
	height: 500px;
}
a.cases-item:after {
	display:none;
}
.cases-item:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
	z-index: 1;
	border-radius: 36px;
	pointer-events: none;
	z-index: 1;
}
.cases-item img {
	border-radius: var(--border-radius);
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.cases-item__content {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 1;
	height: 100%;
	transition: opacity 0.5s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-radius: var(--border-radius);
	width: 100%;
	padding: 16px;
	z-index: 2;
}
.cases-item__title {
	font-family: 'GeologicaBold';
	font-size: 24px;
	line-height: 1.3;
	margin: 0;
}
.cases-item__categories {
	display: flex;
	align-items: center;
	gap: 7px;
	flex-wrap: wrap;
}
.cases-item__categories span:first-letter {
	text-transform: uppercase;
}
.cases-item__categories span {
	padding: 4.5px 9px;
	font-size: 24px;
	font-family: 'GeologicaRegular';
	border-radius: 1000px; 
}
.cases-item__categories span.btn-main:hover {
	background: var(--color-link);
	color: var(--color-text);
}
.cases-item__categories span.btn-border_gradient {
	position: relative;
	border: 0px;
}
.cases-item__categories span.btn-border_gradient:before {
	content: "";
	border: 0px;
	background: linear-gradient(127.99deg, var(--color-text), var(--color-gradient-end)) border-box;
	position: absolute;
	inset: 0;
	border-radius: 1000px; 
	padding: 1px; 
	mask: 
	    linear-gradient(#000 0 0) content-box, 
	    linear-gradient(#000 0 0);
	mask-composite: exclude; 
}
.cases-item__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.6s ease-in-out;
	object-fit: cover;
	z-index: 1;
	border-radius: var(--border-radius);
}
.cases-item:hover .cases-item__video {
	opacity: 1;
}
#info ~ .cases {
	gap: 32px;
}
#info ~ .cases .cases-item .cases-item__content {
	padding: 40px;
}
#info ~ .cases .cases-item .cases-item__categories span.btn-border_gradient::before {
	border: 0px;
}

@media (max-width: 1280px) {
	.cases-item {
		height: 350px;
	}
}
@media (max-width: 1024px) {
	.cases,
	#info ~ .cases {
		gap: 20px;
	}
	#info ~ .cases .cases-item .cases-item__content,
	.cases .cases-item .cases-item__content {
		padding: 20px;
	}
	.cases-item__categories span {
		font-size: 18px;
		padding: 6px 20px;
	}
	.cases-item__title {
		font-size: 20px;
	}
	
}
@media (max-width: 844px) {
	.cases {
		grid-template-columns: 100%;
		gap: 20px;
	}
	#info ~ .cases .cases-item .cases-item__content,
	.cases .cases-item .cases-item__content {
		padding: 16px;
	}
	.cases-item__title {
		font-size: 16px;
	}
	.cases-item__categories span {
		font-size: 16px;
		padding: 4px 8px;
	}
	.cases .cases-all .cases-all__link {
		font-size: 16px;
	}
	.cases .cases-all .cases-all__link svg {
		max-width: 18px;
		max-height: 15px;
	}
	.cases-item {
		height: 240px;
		border-radius: 20px;
	}
	.cases-item::before,
	.cases-item__content,
	.cases-item img {
		border-radius: 20px;
	}
}
@media (max-width: 768px) {
	.cases-tabs {
		margin-bottom: 40px;
		column-gap: 10px;
		justify-content: space-around;
	}
	.cases-tabs a {
		font-size: 24px;
		padding: 0 15px;
	}
	.cases-tabs .line-image {
		display: none;
	}
	.cases {
		grid-template-columns: 100%;
		margin-bottom: 40px;
	}
	.cases-item__categories span,
	.cases-item__title {
		font-size: 16px;
	}
}
@media (max-width: 575px) {
	.cases-item {
		height: 240px;
	}
}

html[data-theme="light"] .cases-item:before {
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.40) 0%, rgba(255, 255, 255, 0.40) 100%);
}
html[data-theme="light"] .cases-item .cases-item__title {
	transition: all 0.5s ease;
}
html[data-theme="light"] .cases-item:hover .cases-item__title {
	color: #fff;
}
html[data-theme="light"] .cases-item:hover .cases-item__title:after {
	background-color: #fff;
}
/* End */
/* /local/templates/direkt2026/assets/css/index.css?178834586113946 */
/* /local/templates/direkt2026/assets/css/cases.css?17883458615292 */
