@charset "utf-8";

@font-face {
	font-family: 'Avenir';
	src: url('../fonts/Avenir-Roman.woff') format('woff'), url('../fonts/Avenir-Roman.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Berkeley Mono';
	src: url('../fonts/BerkeleyMono-Regular.woff') format('woff'), url('../fonts/BerkeleyMono-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Berkeley Mono';
	src: url('../fonts/BerkeleyMono-Bold.woff') format('woff'), url('../fonts/BerkeleyMono-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

:root {
	--fontMono: "Berkeley Mono", monospace;
	--fontSansSerif: "Avenir", sans-serif;
	--bodyBg: #000104;
	--white: #fff;
	--color: #F57F13;
	--side: clamp(20px, 5rem, 80px);
	font-size: min(1.111111vw, 16px);
	--header: 80px;
	--delay: 0s;
}

@media (min-width: 1440px) {
	:root {
		--side: calc((100vw - 1280px)/2);
	}
}

html,
body {
	height: 100%;
	box-sizing: border-box;
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased;
	font-optical-sizing: auto;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	background: var(--bodyBg);
	color: color-mix(in srgb, var(--white) 70%, transparent);
	font: normal clamp(16px, 1.125rem, 18px)/1.4 var(--fontSansSerif);
	-webkit-text-size-adjust: none;
	display: flex;
	flex-direction: column;
}

*,
::after,
::before,
::backdrop,
::file-selector-button {
	margin: 0;
	padding: 0;
}

*,
::after,
::before,
::backdrop,
::file-selector-button {
	box-sizing: border-box;
	border: 0 solid;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
}

ol,
ul,
menu {
	list-style: none;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
	display: block;
	vertical-align: middle;
}

img,
video {
	max-width: 100%;
	height: auto;
}

*,
*:before,
*:after {
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


header,
nav,
section,
article,
aside,
footer,
menu,
time,
figure,
figcaption,
main {
	display: block;
}

img,
svg,
picture {
	border: 0;
	outline: none;
	vertical-align: top;
}

svg {
	fill: currentColor;
}

a {
	color: inherit;
	text-decoration: underline;
	outline: none;
	cursor: pointer;
}

a:hover {
	text-decoration: none;
}

strong {
	font-weight: bold;
}

.title {
	--min: 37;
	--max: 50;
	color: var(--white);
	font: normal clamp(calc(var(--min) * 1px), calc(var(--max)/16 * 1rem), calc(var(--max) * 1px))/1.1 var(--fontMono);

}

.mainwrap {
	flex: 0 0 auto;
	width: 100%;
	min-height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
}

.content {
	flex: 1 0 auto;
}

.header,
.footer {
	flex: 0 0 auto;
}

.anim_hover {
	flex: 0 0 auto;
	display: inline-block;
	vertical-align: top;
}

.anim_hover>* {
	flex: 0 0 auto;
	backface-visibility: hidden;
	transition-property: transform, opacity;
	transition-duration: 0.5s;
	transition-timing-function: ease;
	transform-style: flat;
	display: block;
	pointer-events: none;
}

.anim_hover>*:nth-child(2) {
	margin-top: -1lh;
}

.anim_hover>*[data-text]:before {
	content: attr(data-text);
}


.anim_hover>*:nth-child(1) {
	transform-origin: 50% 0;
}

.anim_hover>*:nth-child(2) {
	transform-origin: 50% 100%;
}

.anim_hover>*:nth-child(1):not(:only-child) {
	transform: perspective(10em) rotateX(0deg) translate3d(0, 0, 0);
	opacity: 1;
}

.anim_hover>*:nth-child(2) {
	transform: perspective(10em) rotateX(-90deg) translate3d(0, 100%, 0);
	opacity: 0;
}

@media (pointer:fine) {

	a.anim_hover:hover>*:nth-child(1):not(:only-child),
	a:hover .anim_hover>*:nth-child(1):not(:only-child) {
		transform: perspective(10em) rotateX(90deg) translate3d(0, -100%, 0);
		opacity: 0;
	}

	a.anim_hover:hover>*:nth-child(2),
	a:hover .anim_hover>*:nth-child(2) {
		transform: perspective(10em) rotateX(0deg) translate3d(0, 0, 0);
		opacity: 1;
	}
}

.btn {
	appearance: none;
	outline: none;
	border: 0;
	box-shadow: none;
	text-decoration: none;
	margin: 0;
	cursor: pointer;
	height: 50px;
	border-radius: 9999px;
	flex: 0 0 auto;
	max-width: 100%;
	padding: 0 20px;
	font: bold 16px/1.4 var(--fontMono);
	color: var(--white);
	text-align: center;
	display: inline-flex;
	gap: 16px;
	vertical-align: top;
	align-items: center;
	justify-content: center;
}

.btn-primary {
	background-color: var(--color);
}

.btn-secondary {
	background-color: color-mix(in srgb, var(--white) 12%, transparent);
}

.btn-small {
	font-size: 14px;
	height: 40px;
}

.btn-small.btn-secondary {
	font-weight: normal;
}

.header {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header);
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 var(--side);
}

.header:before {
	content: '';
	position: absolute;
	inset: 0;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	backface-visibility: hidden;
}

@media (min-width: 1024px) {
	.header {
		gap: 25px;
	}
}

.header>* {
	position: relative;
	z-index: 1;
}

.menu-trigger {
	flex: 0 0 auto;
	appearance: none;
	margin: 0;
	padding: 0;
	outline: none;
	box-shadow: none;
	background: none;
	border: 0;
	width: 24px;
	height: 24px;
	position: relative;
	color: var(--white);
	cursor: pointer;
}

@media (min-width: 1024px) {
	.menu-trigger {
		display: none;
	}

}

.menu-trigger>* {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 15.5px;
	height: 1.5px;
	transition-property: transform, opacity;
	transition-duration: 0.4s;
	transition-timing-function: ease;
	backface-visibility: hidden;
	transition-delay: 0.4s;
}

.menu-trigger>*:before {
	content: '';
	position: absolute;
	inset: 0;
	backface-visibility: hidden;
	transition-property: transform, opacity;
	transition-duration: 0.4s;
	transition-timing-function: ease;
	transform: rotate(0deg);
	border-radius: 1px;
	background-color: currentColor;
}

.menu-trigger>*:nth-child(1) {
	transform: translateX(-50%) translateY(calc(-50% - 5px)) rotate(0deg);
}

.menu-trigger>*:nth-child(2) {
	transform: translateX(-50%) translateY(-50%);
}

.menu-trigger>*:nth-child(3) {
	transform: translateX(-50%) translateY(calc(-50% + 5px)) rotate(0deg);
}

.menu-trigger[aria-expanded="true"]>* {
	transition-delay: 0s;
}

.menu-trigger[aria-expanded="true"]>*:before {
	transition-delay: 0.4s;
}

.menu-trigger[aria-expanded="true"]>*:nth-child(1) {
	transform: translateX(-50%) translateY(-50%);
}

.menu-trigger[aria-expanded="true"]>*:nth-child(1):before {
	transform: rotate(45deg);
}

.menu-trigger[aria-expanded="true"]>*:nth-child(2):before {
	opacity: 0;
}

.menu-trigger[aria-expanded="true"]>*:nth-child(3) {
	transform: translateX(-50%) translateY(-50%);
}

.menu-trigger[aria-expanded="true"]>*:nth-child(3):before {
	transform: rotate(-45deg);
}

@media (min-width: 1024px) {
	.menu {
		flex: 1 0 auto;
		display: flex;
		align-items: center;
		gap: 5px;
	}

	.menu>* {
		display: flex;
		align-items: center;
		gap: 5px;
	}
}

@media not all and (min-width: 1024px) {
	.menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 0;
		backdrop-filter: blur(5px);
		-webkit-backdrop-filter: blur(5px);
		backface-visibility: hidden;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 5px;
		padding: var(--header) var(--side);
		transition: opacity 0.4s ease;
		background-color: color-mix(in srgb, var(--bodyBg) 80%, transparent);
	}

	.menu[aria-hidden="true"] {
		opacity: 0;
	}

	html:has(.menu[aria-hidden="false"]) {
		overflow: hidden;
	}

	.menu[aria-hidden="true"],
	.menu[aria-hidden="true"] * {
		pointer-events: none !important;
	}

	.menu>* {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 5px;
		margin-top: auto;
		margin-bottom: auto;
	}
}

.menu~.btn {
	margin-left: auto;
}

.js_split>* {
	backface-visibility: hidden;
	transition-property: transform, opacity;
	transition-duration: 0.8s, 0.2s;
	transition-delay: var(--delay);
	transition-timing-function: ease;
	transform: translateY(0);
	display: inline-block;
	vertical-align: top;
}

.js_watch:not(.show) .js_split>* {
	opacity: 0;
	pointer-events: none;
	transform: translateY(30px);
}

.hero {
	position: relative;

}


.hero .title {
	--min: 30;
	--max: 44;
	max-width: 13em;
	margin-bottom: clamp(10px, 0.9375rem, 15px);
}

.hero .bg:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 10%;
	background: linear-gradient(to bottom, color-mix(in srgb, var(--bodyBg) 0%, transparent) 0%, var(--bodyBg) 100%);
}

.hero .text {
	position: relative;
}

.hero .title~* {
	max-width: 27.4em;
}

@media not all and (min-width: 1024px) {
	.hero {
		padding-top: calc(var(--header) + 27px);
		padding-bottom: 32px;
	}

	.hero .bg {
		position: relative;
		overflow: hidden;
		width: 100%;
		height: auto;
		max-height: 50vh;
		aspect-ratio: 402/366;
		margin-bottom: 20px;
	}

	.hero .bg video {
		position: absolute;
		top: 50%;
		left: 50%;
		height: 100%;
		width: auto;
		max-width: none;
		transform: translateX(-50%) translateY(-50%);
	}

	.hero .text {
		text-align: center;
		padding: 0 var(--side);
	}

	.hero .title,
	.hero .title~* {
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 1024px) {
	.hero {
		min-height: 100vh;
		min-height: 100svh;
		position: relative;
		padding: calc(var(--header) + 55px) var(--side) 55px var(--side);
		display: flex;
		flex-direction: column;
		justify-content: end;
	}

	.hero .bg {
		position: absolute;
		inset: 0;
	}

	.hero .bg video {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}

}


.benefits-header {
	position: relative;

}

.benefits-header .bg {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 1210px;
	margin: 0 auto;
	max-height: 50vh;
	height: auto;

	aspect-ratio: 402/420;
}

.benefits-header .bg video {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 100%;
	width: auto;
	max-width: none;
	transform: translateX(-50%) translateY(-50%);
}

.benefits-header .text {
	position: relative;
	text-align: center;
	padding: 0 var(--side);
	position: relative;
	margin-top: calc(clamp(10px, 2rem, 32px) * -1);

}

.benefits-header .title {
	--min: 30;
	--max: 36;
	margin-bottom: clamp(10px, 0.9375rem, 15px);
}

.benefits-header .title,
.benefits-header .title~* {
	margin-left: auto;
	margin-right: auto;
}

@media not all and (min-width: 1024px) {
	.benefits-header .title~* {
		max-width: 27.4em;
	}
}

@media (min-width: 1024px) {
	.benefits-header {
		padding-top: 24px;
		padding-bottom: 82px;
	}

	.benefits-header .bg {
		width: calc(100% - var(--side)*2);
		max-height: none;
		aspect-ratio: 1210/756;
	}

}

.benefits-list {
	display: grid;
	grid-template-columns: 100%;
	gap: clamp(20px, 3.75rem, 60px);
	margin: clamp(57px, 5rem, 80px) auto clamp(25px, 5rem, 80px) auto;
	width: calc(100% - var(--side));
	max-width: 1080px;
}

@media (min-width: 768px) {
	.benefits-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

.benefits-list>* {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	backface-visibility: hidden;
	border-radius: 40px;
	border: 1px solid color-mix(in srgb, var(--white) 12%, transparent);
}

.benefits-list-image {
	flex: 0 0 auto;
	width: 100%;
	aspect-ratio: 510/420;
	position: relative;
	max-height: 420px;
	min-height: 375px;
}

.benefits-list-image img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	transform: translateX(-50%) translateY(-50%);
}

.benefits-list-text {
	flex: 1 0 auto;
	position: relative;
	width: 100%;
	padding: 50px clamp(20px, 3.125rem, 50px) clamp(50px, 4.375rem, 70px) clamp(20px, 3.125rem, 50px);
	text-align: center;
	font-size: clamp(14px, 1rem, 16px);
}

.benefits-list-text .bg {
	position: absolute;
	inset: 0;
}

.benefits-list-text .bg:before,
.benefits-list-text .bg:after {
	content: '';
	position: absolute;
	inset: 0;
}

.benefits-list-text .bg:before {
	background-image: linear-gradient(to bottom, var(--bodyBg) 0%, color-mix(in srgb, var(--bodyBg) 0%, transparent) 50%), url(../img/hover.png);
	background-repeat: no-repeat;
	background-position: 50% 100%;
	background-size: cover;
	transition: opacity 0.4s ease;
	opacity: 0;
}

.benefits-list>*:hover .benefits-list-text .bg:before {
	opacity: 1;
}

.benefits-list-text .bg:after {
	background: url(../img/pattern.png) 50% 50%/30px auto;
}

.benefits-list-text>* {
	position: relative;
}

.benefits-list .title {
	margin-bottom: 10px;
	--min: 24;
	--max: 30;
}

.lightning-header {
	padding-top: 16px;
}

.lightning-header .image {
	position: relative;
	aspect-ratio: 402/398;
	width: 100%;
	max-height: 50vh;
	overflow: hidden;
}

.lightning-header .image img {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 100%;
	width: auto;
	max-width: none;
	transform: translateX(-50%) translateY(-50%);
}

.lightning-header .text {
	position: relative;
	text-align: center;
	margin-top: 5px;
	font-size: 21px;
	padding: 0 var(--side);
}

.lightning-header .title {
	--min: 37;
	--max: 50;
	margin-bottom: 10px;
}

@media (min-width: 1024px) {
	.lightning-header {
		display: flex;
		align-items: center;
		padding-left: var(--side);
		padding-right: var(--side);
	}

	.lightning-header .image {
		flex: 0 0 auto;
		width: 51%;
	}

	.lightning-header .text {
		flex: 0 0 auto;
		width: 49%;
		padding: 80px 0 80px clamp(30px, 3.875rem, 62px);
		text-align: left;
	}
}

.lightning-list {
	margin: 40px auto 80px auto;
	width: calc(100% - var(--side) * 2);
	display: grid;
	grid-template-columns: 100%;
	gap: 30px;
	text-align: center;
	font: normal 18px/1.4 var(--fontMono);
	position: relative;
}

@media (min-width: 1024px) {
	.lightning-list {
		grid-template-columns: repeat(3, 1fr);
		margin-top: 0;
	}
}

.lightning-list>* {

	transition: color 0.4s ease;
}

.lightning-list .image {
	position: relative;
	margin: 0 0 20px 0;
	overflow: hidden;
	height: 180px;
	border-radius: 20px;
	border: 1px solid color-mix(in srgb, var(--white) 12%, transparent);
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightning-list .image>*:not(.bg) {
	position: relative;
}

.lightning-list .image .bg {
	position: absolute;
	inset: 0;
}

.lightning-list .image .bg:before,
.lightning-list .image .bg:after {
	content: '';
	position: absolute;
	inset: 0;
}

.lightning-list .image .bg:before {
	background-image: linear-gradient(to bottom, var(--bodyBg) 0%, color-mix(in srgb, var(--bodyBg) 0%, transparent) 50%), url(../img/hover.png);
	background-repeat: no-repeat;
	background-position: 50% 95%;
	background-size: cover;
	transition: opacity 0.4s ease;
	opacity: 0;
}

.lightning-list>*:hover {
	color: var(--white);
}

.lightning-list>*:hover .image .bg:before {
	opacity: 1;
}

.lightning-list .image .bg:after {
	background: url(../img/pattern.png) 50% 50%/30px auto;
}

.lightning-list .image+* {
	margin-left: auto;
	margin-right: auto;
	max-width: 20.77em;
}

.investors {
	padding: clamp(80px, 9.375rem, 150px) var(--side);
}


.investors-list .name {
	color: inherit;
}

@media not all and (min-width: 1024px) {
	.investors {
		padding-bottom: 40px;
	}

	.investors-title {
		text-align: center;
		font-size: 44px;
		margin-bottom: 40px;
	}

	.investors-list {
		display: grid;
		gap: 30px;
		grid-template-columns: 100%;
	}

	@media (min-width: 640px) {
		.investors-list {
			grid-template-columns: repeat(2, 1fr);
		}
	}

	.investors-list>* {
		padding: 0 20px;
		text-align: center;
		display: flex;
		flex-direction: column-reverse;
	}

	.investors-list .image {
		margin: 0 -20px 20px -20px;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 180px;
		border-radius: 20px;
		border: 1px solid color-mix(in srgb, var(--white) 12%, transparent);
		padding: 20px;
	}

	.investors-list .image>* {
		flex: 0 0 auto;
		width: auto;
		height: auto;
		max-width: 100%;
		max-width: 100%;
	}

	.investors-list .name {
		font-size: 18px;
		font-weight: normal;
		line-height: 1.4;
	}
}

@media (min-width: 1024px) {
	.investors {
		display: flex;
		align-items: center;
	}

	.investors-title {
		flex: 0 0 auto;
		width: 34%;
		font-size: 33px;
	}

	.investors-list {
		flex: 0 0 auto;
		width: 66%;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		position: relative;
		gap: 15px;
	}

	.investors-list>* {
		color: color-mix(in srgb, var(--white) 30%, transparent);
		transition: color 0.4s ease;
	}

	.investors-list .name {
		--min: 33;
		--max: 44;
		backface-visibility: hidden;
		transition-property: transform, opacity;
		transition-duration: 0.8s, 0.2s;
		transition-delay: var(--delay);
		transition-timing-function: ease;
		transform: translateY(0);
	}

	.investors-list>*:nth-child(1) .name {
		transition-delay: 0s;
	}

	.investors-list>*:nth-child(2) .name {
		transition-delay: 0.1s;
	}

	.investors-list>*:nth-child(3) .name {
		transition-delay: 0.2s;
	}

	.investors-list>*:nth-child(4) .name {
		transition-delay: 0.3s;
	}

	.investors-list>*:nth-child(5) .name {
		transition-delay: 0.4s;
	}

	.investors-list>*:nth-child(6) .name {
		transition-delay: 0.5s;
	}

	.investors-list>*:nth-child(7) .name {
		transition-delay: 0.6s;
	}

	.investors-list>*:nth-child(8) .name {
		transition-delay: 0.7s;
	}

	.investors-list.js_watch:not(.show) * {
		pointer-events: none;
	}

	.investors-list.js_watch:not(.show) .name {
		opacity: 0;
		pointer-events: none;
		transform: translateY(30px);
	}

	.investors-list.js_watch:not(.show) .image {
		opacity: 0 !important;
	}

	.investors-list .image {
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%) scale(1.6);
		pointer-events: none;
		transition: opacity 0.4s ease;
		opacity: 0;
		transform-origin: 100% 50%;
	}

	.investors-list .image img {
		width: auto;
		height: auto;
		max-width: 200px;
	}

	.investors-list>*.hover {
		color: var(--white);
	}

	.investors-list>*.hover .image {
		opacity: 1;
	}
}

.future .title {
	--min: 30;
	--max: 44;
	margin-bottom: 30px;
	text-wrap: initial;
}

.future .btn {
	padding-left: 33px;
	padding-right: 33px;
}

.future .js_watch .btn {
	transition-property: transform, opacity;
	transition-duration: 0.8s, 0.2s;
	transition-delay: var(--delay);
	transition-timing-function: ease;
	transform: translateY(0);

}

.future .js_watch:not(.show) .btn {
	opacity: 0;
	pointer-events: none;
	transform: translateY(30px);
}

@media not all and (min-width: 1024px) {
	.future .image {
		width: 100%;
		position: relative;
		overflow: hidden;
		aspect-ratio: 402/382;
		max-height: 50vh;
	}

	.future .image img {
		position: absolute;
		top: 50%;
		left: 50%;
		height: 100%;
		width: auto;
		max-width: none;
		transform: translateX(-50%) translateY(-50%);
	}

	.future .text {
		position: relative;
		text-align: center;
		padding: 0 var(--side);
		margin-top: 20px;
	}


}

@media not all and (min-width: 640px) {
	.future .btn {
		width: 100%;
	}
}

@media (min-width: 1024px) {
	.future {
		display: flex;
		align-items: center;
		overflow: hidden;
		padding: 0 var(--side);
	}

	.future .image {
		flex: 0 0 auto;
		width: 60%;
		position: relative;
		aspect-ratio: 760/640;
	}

	.future .image img {
		position: absolute;
		top: 50%;
		left: 50%;
		height: 100%;
		width: auto;
		max-width: none;
		transform: translateX(-55%) translateY(-52%);
	}

	.future .text {
		position: relative;
		flex: 0 0 auto;
		width: 40%;
	}

	.future .title {
		max-width: 10.22em;
	}
}

.blog {
	font-size: 16px;
}

.blog .top-title {
	font-size: clamp(16px, 1.3125rem, 21px);
	margin-bottom: clamp(5px, 0.625rem, 10px);
}

.blog .title {
	--min: 33;
	--max: 50;
	margin-bottom: 30px;
}

.blog .btns {
	margin-top: clamp(30px, 3.125rem, 50px);
	display: flex;
	gap: 10px;
}

.blog .btns .btn {
	min-width: 200px;
}

@media not all and (min-width: 640px) {
	.blog .btns .btn {
		flex: 1;
		padding-left: 0;
		padding-right: 0;
		min-width: 0;
	}
}

@media not all and (min-width: 1024px) {
	.blog {
		padding-top: 61px;
	}

	.blog .image {
		position: relative;
		overflow: hidden;
		width: 100%;
		max-height: 50vh;
		aspect-ratio: 402/416;
		margin-bottom: 13px;
	}

	.blog .image img {
		position: absolute;
		top: 50%;
		left: 50%;
		height: 100%;
		width: auto;
		max-width: none;
		transform: translateX(-50%) translateY(-50%);
	}

	.blog .text {
		text-align: center;
		padding: 0 var(--side) 40px var(--side);
	}

	.blog .btns {
		justify-content: center;
	}
}

@media (min-width: 1024px) {
	.blog {
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		overflow: hidden;
		padding: 0 var(--side);
	}

	.blog .image {
		flex: 0 0 auto;
		position: relative;
		width: 49%;
		aspect-ratio: 628/629;
	}

	.blog .image img {
		position: absolute;
		top: 50%;
		left: 50%;
		height: 100%;
		width: auto;
		max-width: none;
		transform: translateX(-50%) translateY(-55%);
	}

	.blog .text {
		position: relative;
		flex: 0 0 auto;
		width: 51%;
		padding: 80px 0;
	}

	.blog .text>* {
		float: right;
		width: 100%;
		max-width: 582px;
	}
}

.blog .js_watch .btn {
	transition-property: transform, opacity;
	transition-duration: 0.8s, 0.2s;
	transition-delay: var(--delay);
	transition-timing-function: ease;
	transform: translateY(0);
}

.blog .js_watch:not(.show) .btn {
	opacity: 0;
	pointer-events: none;
	transform: translateY(30px);
}

.footer {
	position: relative;
	padding: clamp(40px, 5.875rem, 94px) var(--side) clamp(40px, 5.625rem, 90px) var(--side);
}

.footer .bg {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(to bottom, var(--bodyBg) 40%, color-mix(in srgb, var(--bodyBg) 0%, transparent) 100%), url(../img/grid.svg), url(../img/pattern.png), url(../img/footer.png);
	background-size: auto, 75px auto, 30px auto, 1440px auto;
	background-position: 50% 100%;
	background-repeat: no-repeat, repeat, repeat, no-repeat;
}

.footer .bg~* {
	position: relative;
}

.footer-logo img {
	height: 40px;
	width: auto;
}

.footer-top {
	display: flex;
	gap: 40px 16px;
}

.footer-top .btn {
	color: color-mix(in srgb, var(--white) 50%, transparent);
}

.footer-top .btn>*>*:first-letter {
	color: var(--white);
}

.footer-info {
	font-size: clamp(14px, 1rem, 16px);
	text-wrap: initial;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-info>*:not(.title):not(.info) {
	max-width: 31.4em;
}

.footer-info .title {
	--min: 18;
	--max: 24;
	font-weight: bold;
	max-width: 22em;

}

.footer-info .info {
	position: relative;
	margin-top: auto;
	padding-left: 35px;
	font-size: clamp(10px, 0.75rem, 12px);
}

.footer-info .info:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	background: url(../img/footer-info.svg) no-repeat 50% 50%/contain;
	width: 20px;
	height: 20px;
	transform: translateY(-50%);
}

.footer-bottom {
	font: normal 12px/1.4 var(--fontMono);
	color: color-mix(in srgb, var(--white) 50%, transparent);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-bottom a {
	color: var(--white);
	text-decoration: none;
}

.footer-bottom ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px 0;
}

.footer-bottom ul>li {
	flex: 0 0 auto;
	max-width: 100%;
	position: relative;
}

.footer-bottom ul>li:not(:last-child) {
	padding-right: 28px;
}

.footer-bottom ul>li:not(:last-child):after {
	content: '·';
	position: absolute;
	top: 0;
	right: 0;
	width: 28px;
	text-align: center;
}

@media not all and (min-width: 1024px) {
	.footer-top {
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
		margin-bottom: 30px;

	}

	.footer-info {
		margin-bottom: 40px;
	}

	.footer-info .info {
		margin-top: 20px;
	}
}

@media (min-width: 1024px) {
	.footer {
		display: grid;
		gap: 25px;
		grid-template-columns: 1fr 50.7%;
	}

	.footer-info {
		grid-row: span 2;
	}

	.footer-top {
		flex-direction: column;
		align-items: flex-start;
	}
}