@charset "utf-8";
@media only screen and (max-width: 1023px) {}

@media only screen and (min-width: 1024px) {}

:root {
	--font: "Space Grotesk", -apple-system, "Open Sans", system-ui, "sans-serif";
	--font-title: "Nunito", -apple-system, "Open Sans", system-ui, "sans-serif";
	--white: #fff;
	--black: #000;
	--dark: #191A23;
	--green: #B9FF66;
	--gray: #707070;
	--lightGray: #F3F3F3;
	--side: 15px;
	--header: 60px;
}

@media only screen and (min-width: 640px) {
	:root {
		--side: 24px;
	}
}

@media only screen and (min-width: 768px) {
	:root {
		--side: 32px;
	}
}

@media only screen and (min-width: 1024px) {
	:root {
		--side: 48px;
		--header: 104px;
	}
}

@media only screen and (min-width: 1280px) {
	:root {
		--side: 64px;
	}
}

@media only screen and (min-width: 1440px) {
	:root {
		--side: calc((100vw - 1312px) / 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(--white);
	font: normal 20px/1.3 var(--font);
	color: var(--black);
	-webkit-text-size-adjust: none;
	display: flex;
	flex-direction: column;
}

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

form,
fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}

input::-ms-clear {
	display: none;
}

button::-moz-focus-inner {
	border: 0;
}

textarea {
	resize: none;
}

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: #009;
	text-decoration: underline;
	outline: none;
	cursor: pointer;
}

a:hover {
	text-decoration: none;
}

a[href^=tel] {
	color: inherit !important;
	cursor: inherit;
	text-decoration: none !important;
}

.btn {
	appearance: none;
	display: flex;
	flex: 0 0 auto;
	max-width: 100%;
	align-items: center;
	justify-content: center;
	font: 500 20px/1.3 var(--font);
	text-decoration: none;
	cursor: pointer;
	user-select: none;
	gap: 2px;
	outline: none;
	border-style: solid;
	border-width: 2px;
	border-color: transparent;
	height: 66px;
	margin: 0;
	padding: 0 16px;
	border-radius: 16px;
	transition-property: color, background, border;
	transition-duration: 0.4s;
	transition-timing-function: ease;
}

.btn img,
.btn svg {
	flex: 0 0 auto;
	width: auto;
	height: auto;
	max-height: 29px;
}

@media only screen and (min-width: 1024px) {
	.btn {
		height: 71px;
		padding: 0 30px;
		font-size: 24px;
	}

	.btn img,
	.btn svg {
		max-height: 25px;
	}
}

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

@media (pointer:fine) {
	.btn-primary:hover {
		background-color: var(--white);
	}
}

.btn-secondary {
	background-color: var(--dark);
	color: var(--white);
}

@media (pointer:fine) {
	.btn-secondary:hover {
		color: var(--green);
	}
}

.input {
	text-align: left;
	appearance: none;
	display: block;
	width: 100%;
	border: 1px solid var(--dark);
	outline: none;
	box-shadow: none;
	font: normal 16px var(--font);
	padding: 0 20px;
	height: 40px;
	border-radius: 8px;
}

@media only screen and (min-width: 1024px) {
	.input {
		font-size: 20px;
		height: 46px;
	}
}

.input::-webkit-input-placeholder {
	opacity: 1;
	color: var(--gray);
}

.input::-moz-placeholder {
	opacity: 1;
	color: var(--gray);
}

.input:-ms-input-placeholder {
	opacity: 1;
	color: var(--gray);
}

.mainwrap {
	flex: 0 0 auto;
	width: 100%;
	min-height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	background-image: url(../img/bg-top.webp), url(../img/bg-bottom.webp);
	background-repeat: no-repeat;
	background-position: 50% 0, 50% 100%;
	background-size: max(1440px, 100%) auto;
}

.header {
	position: fixed;
	top: 40px;
	left: var(--side);
	right: var(--side);
	z-index: 100;
	background: var(--dark);
	color: var(--white);
	border-radius: 16px;
	height: var(--header);
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 0 clamp(20px, var(--side), 60px);
}

.header .logo {
	flex: 0 0 auto;
	position: relative;
	z-index: 10;
}

.header .logo img {
	display: block;
	width: auto;
	height: 26px;
}

@media only screen and (min-width: 1024px) {
	.header .logo img {
		height: 33px;
	}
}

.menu {
	font: 500 20px/1.3 var(--font);
}

.menu a:not(.btn) {
	cursor: pointer;
	user-select: none;
	color: inherit;
	text-decoration: none;
	transition: color 0.4s ease;
}

@media (pointer:fine) {
	.menu a:not(.btn):hover {
		color: var(--green);
	}
}

.menu ul,
.menu li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu .btn {
	height: 58px;
	border-radius: 16px;
	font: inherit;
}

.menu .btn-secondary {
	border-color: var(--green);
}

@media only screen and (max-width: 1023px) {

	.header .menu-trigger {
		flex: 0 0 auto;
		cursor: pointer;
		user-select: none;
		width: 32px;
		height: 32px;
		position: relative;
		z-index: 10;
		margin-left: auto;
	}

	.header .menu-trigger:before,
	.header .menu-trigger:after {
		content: '';
	}

	.header .menu-trigger:before,
	.header .menu-trigger:after,
	.header .menu-trigger>* {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 100%;
		height: 2px;
		background: var(--green);
		transform: translate3d(-50%, -50%, 0);
		transition-property: transform, opacity;
		transition-duration: 0.4s;
		transition-timing-function: ease;
		border-radius: 1px;

	}

	.header .menu-trigger:before {
		transform: translate3d(-50%, calc(-50% - 9px), 0);
	}

	.header .menu-trigger:after {
		transform: translate3d(-50%, calc(-50% + 9px), 0);
	}

	html.open-menu {
		overflow: hidden;
	}

	html.open-menu .header .menu-trigger>* {
		opacity: 0;
	}

	html.open-menu .header .menu-trigger:before {
		transform: translate3d(-50%, -50%, 0) rotate(-135deg);
	}

	html.open-menu .header .menu-trigger:after {
		transform: translate3d(-50%, -50%, 0) rotate(135deg);
	}

	.menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: var(--dark);
		padding-bottom: 80px;
		overflow-y: auto;
		display: flex;
		flex-direction: column;
		transition: opacity 0.4s ease;
	}

	html:not(.open-menu) .menu {
		opacity: 0;
		pointer-events: none;
	}

	.menu:before {
		content: '';
		flex: 0 0 auto;
		width: 100%;
		top: 0;
		display: block;
		height: calc(40px + var(--header));
		margin-bottom: 80px;
		/*
		position: sticky;
		z-index: 5;
		background-color: var(--dark);
		*/
	}

	.menu ul {
		flex: 1 0 auto;
		display: flex;
		flex-direction: column;
		gap: 30px;
		width: 100%;
		padding: 0 var(--side);
		text-align: center;
	}

	.menu li:not(:has(.btn))+li:has(.btn) {
		margin-top: auto;
	}
}

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

	.menu {
		flex: 1 1 auto;
	}

	.menu ul {
		display: flex;
		align-items: center;
		gap: 30px;
	}

	.menu li {
		flex: 0 0 auto;
	}

	.menu li:nth-child(1) {
		margin-left: auto;
	}

	.menu li:not(:has(.btn))+li:has(.btn) {
		margin-left: auto;
	}
}

.content {
	flex: 1 0 auto;
	width: 100%;
}

.hero {
	text-align: center;
	padding: 0 var(--side);
	line-height: 1.25;
	text-wrap: balance;
}

.hero .title {
	font-weight: bold;
	line-height: 1.375;
	font-family: var(--font-title);
	margin: 0;
}

.hero .btn {
	display: inline-flex;
	vertical-align: top;
	min-width: 345px;
}

.hero .stat,
.hero .stat li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hero .stat {
	display: grid;
	gap: 20px;
	position: relative;
	text-align: center;
}

.hero .stat li {
	border: 1px solid var(--dark);
	border-radius: 24px;
}

.hero .stat strong {
	display: block;
	line-height: 1;
	font-weight: bold;
	font-family: var(--font-title);
}

@media only screen and (max-width: 1023px) {
	.hero {
		font-size: 16px;
		padding-top: calc(40px + var(--header) + 60px);
	}

	.hero .title {
		font-size: 32px;
		margin-bottom: 8px;
	}

	.hero .text {
		margin-bottom: 60px;
	}

	.hero .stat {
		grid-template-columns: repeat(2, 1fr);
		margin-top: 60px;
	}

	.hero .stat li {
		padding: 8px 6px 11px 6px;
	}

	.hero .stat li:nth-child(2) {
		grid-area: 1/1/2/-1;
	}

	.hero .stat strong {
		font-size: 28px;
		margin-bottom: 5px;
	}
}

@media only screen and (min-width: 1024px) {
	.hero {
		font-size: 20px;
		padding-top: calc(40px + var(--header) + 180px);
	}

	.hero .title {
		font-size: 60px;
		margin-bottom: 24px;
	}

	.hero .text {
		margin-bottom: 100px;
	}

	.hero .stat {
		grid-template-columns: repeat(3, 1fr);
		margin-top: 115px;
	}

	@media only screen and (min-width: 1280px) {

		.hero .stat:before {
			content: '';
			position: absolute;
			pointer-events: none;
			background: url(../img/coder.svg) no-repeat 50% 100%/contain;
			width: 512px;
			height: 512px;
			top: -434px;
			left: -50px;
		}

		.hero .stat:after {
			content: '';
			position: absolute;
			pointer-events: none;
			background: url(../img/gears.png) no-repeat 50% 50%/contain;
			width: 279px;
			height: 292px;
			top: -315px;
			right: -4px;
		}

	}

	.hero .stat li {
		padding: 20px 20px 26px 20px;
	}

	.hero .stat strong {
		font-size: 40px;
		margin-bottom: 10px;
	}
}

.section {
	padding: 0 var(--side);
}

@media only screen and (max-width: 1023px) {
	.section {
		margin-top: 80px;
	}
}

@media only screen and (min-width: 1024px) {
	.section {
		margin-top: 140px;
	}
}

.main-title {
	display: flex;
	align-items: center;
}

.main-title .title {
	flex: 0 0 auto;
	margin: 0;
	color: var(--white);
	background: var(--dark);
	border-radius: 16px;
	font-weight: 500;
	font-family: var(--font-title);
	line-height: 1.35;
	padding: 4px 16px;
	align-self: flex-start;
}

.main-title .text {
	flex: 1 1 auto;
	max-width: 18em;
	margin-right: auto;
}

@media only screen and (max-width: 1023px) {
	.main-title {
		margin-bottom: 20px;
		font-size: 12px;
		gap: 8px;
	}

	.main-title .title {
		font-size: 20px;
	}

	.main-title .arrows {
		display: none;
	}
}

@media only screen and (min-width: 1024px) {
	.main-title {
		margin-bottom: 80px;
		font-size: 20px;
		gap: 16px;
	}

	.main-title .title {
		font-size: 36px;
	}

	.main-title .arrows {
		flex: 0 0 auto;
		display: flex;
		align-items: center;
		gap: 18px;
	}

	.main-title .arrows img {
		flex: 0 0 auto;
		height: 34px;
		width: auto;
	}
}

.about .text {
	text-align: center;
	border-radius: 24px;
	background-color: var(--lightGray);
}

.about .list,
.about .list li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.about .list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	color: var(--gray);
	font-size: 16px;
}

.about .list li {
	flex: 0 0 auto;
	max-width: 100%;
	display: flex;
	align-items: center;
	gap: 16px;
}

.about .list img {
	flex: 0 0 auto;
	height: auto;
	width: 48px;
}

.about .list .title {
	font-weight: normal;
	font-size: 20px;
	margin: 0 0 4px 0;
	color: var(--black);
}

@media only screen and (max-width: 1023px) {
	.about .text {
		padding: 30px 4px;
		font-size: 16px;
	}

	.about .list:not(:first-child) {
		margin-top: 40px;
	}
}

@media only screen and (min-width: 1024px) {
	.about .text {
		padding: 30px 40px;
		font-size: 20px;
	}

	.about .list:not(:first-child) {
		margin-top: 80px;
	}

	.about .list img {
		width: 80px;
	}
}

.what-master,
.what-master li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.what-master {
	display: flex;
	flex-wrap: wrap;
	--gap: 20px;
	gap: var(--gap);
	font-size: 16px;
}

.what-master li {
	flex: 0 0 auto;
	position: relative;
	border: 1px solid var(--dark);
	border-radius: 24px;
	box-shadow: 0 5px 0 var(--dark);
	padding: 20px 160px 20px 28px;
	min-height: 171px;
}

.what-master li:nth-child(odd) {
	background-color: var(--green);
}

.what-master li:nth-child(even) {
	background-color: var(--lightGray);
}

.what-master .title {
	display: inline-block;
	vertical-align: top;
	font-weight: 500;
	border-radius: 8px;
	margin: 0;
	margin: 0 0 12px -8px;
	padding: 0 8px;
}

.what-master li:nth-child(odd) .title {
	background-color: var(--white);
}

.what-master li:nth-child(even) .title {
	background-color: var(--green);
}

.what-master li img {
	position: absolute;
	right: 20px;
	top: 50%;
	width: 140px;
	height: auto;
	transform: translateY(-50%);
}

@media only screen and (max-width: 1023px) {
	.what-master li {
		width: 100%;

	}

}

@media only screen and (min-width: 1024px) {

	.what-master li {
		width: calc((100% - var(--gap) * 2) / 3);
		padding-right: 150px;
	}

	.what-master li:nth-child(-n + 2) {
		width: calc((100% - var(--gap)) / 2);
	}

	.what-master li img {
		width: 130px;
		right: 12px;
	}
}

@media only screen and (min-width: 1280px) {
	.what-master {
		--gap: 30px;
	}

	.what-master li {
		padding-top: 50px;
		padding-bottom: 50px;
		min-height: 211px;
	}

	.what-master li:nth-child(-n + 2) {
		padding-right: 232px;
	}

	.what-master li:nth-child(-n + 2) img {
		width: 170px;
		right: 20px;
	}

	.what-master .title {
		font-size: 30px;
		margin-bottom: 26px;
	}

}

.cta {
	margin: 0 var(--side);
	background-color: var(--dark);
	color: var(--white);
	font-weight: 500;
	text-wrap: balance;
}

.cta img {
	height: auto;
}

.cta .btn {
	display: inline-flex;
	vertical-align: top;
}

@media only screen and (max-width: 1023px) {
	.cta {
		margin-top: 80px;
		text-align: center;

		font-size: 20px;
		border-radius: 24px;
		padding: 30px 20px;
	}

	.cta .btn {

		margin-top: 20px;
		min-width: 305px;
	}

	.cta img {
		display: block;
		width: 100%;
		max-width: 200px;
		margin: 0 auto 20px auto;
	}
}

@media only screen and (min-width: 1024px) {
	.cta {
		margin-top: 140px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-direction: row-reverse;
		gap: 30px;
		padding: 60px 60px;
		border-radius: 45px;
		font-size: 30px;
	}

	.cta img {
		flex: 0 0 auto;
		width: 34%;
		max-width: 395px;
		margin-right: 20px;
	}

	.cta .btn {
		margin-top: 40px;
	}
}

.our-tech,
.our-tech li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.our-tech {
	display: grid;

	gap: 6px;
	position: relative;
}

@media only screen and (max-width: 639px) {
	.our-tech {
		grid-template-columns: repeat(5, 1fr);
	}

	.our-tech li.text {
		grid-column: 1/-1;
		margin-bottom: 34px;
	}

	.our-tech li.li-node,
	.our-tech li.li-aws {
		grid-column: 1/-1;
		aspect-ratio: 345/64;
	}
}

@media only screen and (min-width: 640px) {
	.our-tech {

		grid-template-columns: repeat(10, 1fr);

	}

	.our-tech li.text {
		grid-column: span 5;
		padding-top: 0;
		padding-bottom: 0;
	}

	.our-tech li.li-node {
		grid-column: span 5;
		aspect-ratio: auto;
	}

	.our-tech li.li-aws {

		aspect-ratio: auto;

	}

	@media only screen and (max-width: 1023px) {
		.our-tech li.text {
			grid-row: 1/4;
		}

		.our-tech li.li-node {
			grid-row: 4/5;
		}

		.our-tech li.li-aws {
			grid-column: span 5;


			grid-row: 5/6;
		}
	}

	@media only screen and (min-width: 1024px) {
		.our-tech {
			padding-bottom: 78px;
			margin-bottom: -78px;
		}

		.our-tech:before {
			content: '';
			position: absolute;
			bottom: 0;
			left: 7px;
			background: url(../img/rocket.svg) no-repeat 50% 100%/contain;
			aspect-ratio: 320/258;
			width: 24.39%;
			max-width: 320px;
			pointer-events: none;
		}


		.our-tech li.text {
			grid-row: 1/3;
		}

		.our-tech li.li-node {
			grid-row: 3/4;
		}

		.our-tech li.li-aws {


			grid-column: 8/11;
			grid-row: 4/5;
		}

		.our-tech li.li-vue {
			grid-column-start: 4;
		}

		.our-tech li.li-vue+li+li+li+li {
			grid-column-start: 5;
		}
	}

}

@media only screen and (min-width: 1024px) {
	.our-tech {
		gap: 20px;
	}

	.our-tech li {
		border-width: 2px !important;
	}
}

.our-tech li {
	width: 100%;
	aspect-ratio: 1/1;
	position: relative;
	border: 1px solid #C7C7C7;
	border-radius: 8px;
}

.our-tech li.bg-green {
	border-color: transparent;
	background-color: var(--green);
}

.our-tech li.bg-gray {
	border-color: transparent;
	background-color: var(--lightGray);
}

.our-tech li img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
	width: auto;
	height: auto;
	max-height: 52%;

}

.our-tech li.text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	aspect-ratio: auto;
	padding: 30px 4px;
}

@media only screen and (max-width: 1023px) {
	.our-tech li.text {
		font-size: 16px;
	}
}

@media only screen and (min-width: 1024px) {
	.our-tech li.text {
		font-size: 20px;
		padding-left: 20px;
		padding-right: 20px;
	}
}

.vacancies,
.vacancies .col {
	display: flex;
	flex-direction: column;
	flex: 0 0 auto;
	width: 100%;
}

.vacancies .el {
	flex: 0 0 auto;
	width: 100%;
	border: 1px solid var(--dark);
	background: var(--lightGray);
	border-radius: 24px;
	box-shadow: 0 5px 0 var(--dark);
	transition: background 0.4s ease;
	--height: 0;
}

.vacancies .el.open {
	background-color: var(--green);
}

.vacancies .title {
	position: relative;
	cursor: pointer;
	margin: 0;
	font-weight: 500;
	font-size: 20px;
	padding: 30px;
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 96px;
}

.vacancies .title .num {
	flex: 0 0 auto;
	width: 1.666em;
	margin-right: -10px;
	font-size: 30px;

}

.vacancies .title .plus {
	flex: 0 0 auto;
	margin-left: auto;
	position: relative;

	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--dark);
	background-color: var(--lightGray);
}

.vacancies .title .plus:before,
.vacancies .title .plus:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: var(--dark);
	transition: transform 0.4s ease;
	width: 32.411%;
	height: 10.29%;
	transform: translate3d(-50%, -50%, 0);
}

.vacancies .el:not(.open) .title .plus:after {
	transform: translate3d(-50%, -50%, 0) rotate(-90deg);
}

.vacancies .inner {
	position: relative;
	top: -15px;
	padding: 0 30px;
	font-size: 16px;
	line-height: 1.25;
	transition: height 0.4s ease;
	height: 0;
	overflow: hidden;
}

.vacancies .el.open .inner {
	height: var(--height);
}

.vacancies .inner>* {
	padding: 15px 0;
	border-top: 1px solid var(--black);
}

.vacancies .btn {
	align-self: flex-end;
	border-radius: 8px;
	height: 64px;
}

@media only screen and (max-width: 639px) {
	.vacancies .btn {
		align-self: stretch;
	}
}

@media only screen and (max-width: 1023px) {

	.vacancies,
	.vacancies .col {
		gap: 20px;
	}

	.vacancies .btn img,
	.vacancies .btn svg {
		max-height: 24px;
	}
}

@media only screen and (min-width: 1024px) {

	.vacancies,
	.vacancies .col {
		gap: 32px;
	}

	.vacancies {
		flex-direction: row;
		justify-content: space-between;
	}

	.vacancies .col {

		width: calc((100% - 32px)/2);
	}

	.vacancies .btn {
		margin-top: 24px;
	}

	.vacancies .btn img,
	.vacancies .btn svg {
		max-height: 32px;
	}

}

@media only screen and (min-width: 1280px) {
	.vacancies .title {
		font-size: 30px;
		min-height: 157px;
		padding: 40px 60px;
	}

	.vacancies .title .plus {
		width: 58px;
		height: 58px;
	}

	.vacancies .title .num {
		font-size: 60px;
		width: 1.5em;
	}

	.vacancies .inner {
		top: -10px;
		padding: 0 60px;
	}

	.vacancies .inner>* {
		padding: 30px 0 20px 0;
	}
}

.subscr {
	position: relative;
	padding: 30px 20px;
	background-color: var(--dark);
	color: var(--white);
	text-align: center;
	border-radius: 24px;
	margin: 0 auto;
	max-width: 760px;
}

.subscr .max {
	margin: 0 auto;
	max-width: 520px;
}

.subscr .input {
	border-color: transparent;
}

.subscr .input:not(:first-child) {
	margin-top: 16px;
}

.subscr .btn {
	margin-top: 36px;
	width: 100%;
	height: 64px;
	border-radius: 8px;
}

@media only screen and (min-width: 1024px) {
	.subscr {
		padding: 64px 75px;
	}

	.subscr .input:not(:first-child) {
		margin-top: 32px;
	}

	.subscr .btn {
		margin-top: 60px;
	}

}

@media only screen and (min-width: 1280px) and (max-width: 1399px) {
	.subscr:before {
		content: '';
		position: absolute;
		left: -294px;
		bottom: -71px;
		width: 276px;
		height: 411px;
		background: url(../img/manager.svg) no-repeat 50% 50%/contain;
		pointer-events: none;
		transform: scale(-1, 1);
	}
}

@media only screen and (min-width: 1400px) {
	.subscr:before {
		content: '';
		position: absolute;
		right: -294px;
		bottom: -71px;
		width: 276px;
		height: 411px;
		background: url(../img/manager.svg) no-repeat 50% 50%/contain;
		pointer-events: none;
	}
}

.footer {
	flex: 0 0 auto;
	width: 100%;
	padding: 0 var(--side) 40px var(--side);
}

.footer .bg {
	background-color: var(--dark);
	color: var(--white);
	padding: clamp(20px, var(--side), 60px);
	border-radius: 24px;
	display: grid;
	align-items: center;
	grid-template-columns: auto 1fr;
}

.footer ul,
.footer li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer a:not(.btn) {
	text-decoration: none;
	color: inherit;
	transition: color 0.4s ease;
}

.footer .logo {
	margin-right: auto;
}

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

@media (pointer:fine) {
	.footer a:not(.btn):hover {
		color: var(--green);
	}
}

.footer .foot-menu ul {
	display: flex;
	justify-content: end;
	flex-wrap: wrap;
	gap: 10px 30px;
}

.footer .foot-menu .up {
	display: inline-block;
	vertical-align: top;
	color: var(--green);
	position: relative;
}

.footer .foot-menu .up:after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url(../img/icons/up.svg) no-repeat 50% 50%/contain;
}

.footer .bottom {
	grid-column: 1/-1;
	color: var(--gray);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-top: 1px solid color-mix(in srgb, var(--gray) 30%, transparent);
}

.footer .bottom ul {
	display: flex;
	flex: 0 0 auto;
	max-width: 100%;
	align-items: center;
	flex-wrap: wrap;
}

@media only screen and (max-width: 1023px) {
	.footer {
		padding-top: 40px;
	}

	.footer .bg {
		gap: 16px;
	}

	.footer .foot-menu {
		font-size: 16px;
	}

	.footer .foot-menu .up {
		padding-right: 28px;
	}

	.footer .foot-menu .up:after {
		width: 24px;
		height: 24px;
	}

	.footer .foot-menu li:not(:has(.up)) {
		display: none;
	}

	.footer .bottom {
		padding-top: 4px;
		gap: 4px;
		flex-direction: column-reverse;
		font-size: 14px;
		line-height: 21px;
		text-align: center;
	}

	.footer .bottom ul {
		gap: 4px;
		width: 100%;
		justify-content: space-between;
		text-align: left;
	}
}

@media only screen and (min-width: 1024px) {
	.footer {
		padding-top: 80px;
	}

	.footer .bg {
		gap: 52px;
		padding-bottom: 16px;
	}

	.footer .logo img {
		height: 47px;
	}

	.footer .foot-menu {
		font-size: 20px;
	}

	.footer .foot-menu .up {
		padding-right: 36px;
	}

	.footer .foot-menu .up:after {
		width: 32px;
		height: 32px;
	}

	.footer .bottom {
		padding-top: 16px;
		gap: 10px 50px;
		font-size: 16px;
		line-height: 21px;
	}

	.footer .bottom ul {
		flex-wrap: nowrap;
		gap: 4px 50px;
	}

	.footer .bottom ul li {
		position: relative;
	}

	.footer .bottom ul li:not(:first-child):before {
		content: '';
		position: absolute;
		top: 0;
		left: -25px;
		width: 1px;
		height: 1lh;
		background-color: var(--gray);
		opacity: 0.3;

	}
}

.anchor {
	display: block;
	position: relative;
	top: calc((var(--header) + 80px)*-1);
}