:root {
	--color-black--rgb: 0, 0, 0;
	--color-black: #000000;
	--color-white--rgb: 255, 255, 255;
	--color-white: #ffffff;
	--color-green--rgb: 216, 248, 78;
	--color-green: #D8F84E;
	--color-grey-100--rgb: 176, 184, 198;
	--color-grey-100: #B0B8C6;
	--color-grey-200--rgb: 181, 177, 177;
	--color-grey-200: #B5B1B1;
}

:root {
	--wrap: calc((100vw - 1730px) / 2);
}
@media (max-width: 1770px) {
	:root {
		--wrap: 95px;
	}
}
@media (max-width: 1359px) {
	:root {
		--wrap: 20px;
	}
}

* {
	-webkit-tap-highlight-color: transparent;
}

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

* {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
@media (max-width: 899px) {
	* {
		outline: none;
	}
}

body,
input,
textarea,
button,
select {
	font-family: "Inter", sans-serif;
}

body {
	--header: 0;
	--footer: 0;
	overflow-x: hidden;
}
body._lock {
	overflow: hidden;
}

a {
	text-decoration: none;
}

p {
	margin: 0;
}

ol,
ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

strong {
	font-weight: 500;
}

html,
body {
	position: relative;
	color: var(--color-white);
	background-color: var(--color-black);
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 125%;
	letter-spacing: 0;
	margin: 0;
	padding: 0;
}

._container {
	width: 100%;
	padding: 0 var(--wrap);
}

section {
	padding: 75px 0;
}
@media (max-width: 999px) {
	section {
		padding: 60px 0;
	}
}
@media (max-width: 479px) {
	section {
		padding: 50px 0;
	}
}

h1,
.h1 {
	margin: 0;
	font-family: "Oswald", sans-serif;
	font-weight: 800;
	font-size: 48px;
	line-height: 100%;
	text-transform: uppercase;
	color: var(--color-green);
}
@media (max-width: 1279px) {
	h1,
	.h1 {
		font-size: 32px;
	}
}
@media (max-width: 999px) {
	h1,
	.h1 {
		font-size: 24px;
	}
}

h2,
.h2 {
	font-family: "Oswald", sans-serif;
	margin: 0;
	font-weight: 800;
	line-height: 130%;
	color: var(--color-green);
	font-size: 64px;
}
@media (max-width: 1279px) {
	h2,
	.h2 {
		font-size: 36px;
	}
}
@media (max-width: 999px) {
	h2,
	.h2 {
		font-size: 30px;
	}
}

h3,
.h3 {
	font-family: "Oswald", sans-serif;
	margin: 0;
	font-weight: 800;
	line-height: 130%;
	color: var(--color-green);
	font-size: 40px;
}
@media (max-width: 1279px) {
	h3,
	.h3 {
		font-size: 28px;
	}
}
@media (max-width: 999px) {
	h3,
	.h3 {
		font-size: 22px;
	}
}

.btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px 44px;
	gap: 10px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	background: var(--color-green);
	border: 1px solid var(--color-green);
	border-radius: 100px;
	-webkit-transition: 0.2s ease;
	transition: 0.2s ease;
	font-size: 16px;
	font-weight: 700;
	color: var(--color-black);
	text-align: center;
	line-height: 125%;
	cursor: pointer;
}
html:not(.v-mobile) .btn:hover {
	background: transparent;
	color: var(--color-green);
}
html:not(.v-mobile) .btn:focus-visible {
	background: transparent;
	color: var(--color-green);
}

@media (max-width: 999px) {
	.btn {
		font-size: 20px;
		padding: 12px 24px;
	}
}
.btn.btn-reverse {
	background: var(--color-black);
	border: 1px solid var(--color-black);
	color: var(--color-green);
}
html:not(.v-mobile) .btn.btn-reverse:hover {
	background: var(--color-green);
	color: var(--color-black);
}
html:not(.v-mobile) .btn.btn-reverse:focus-visible {
	background: var(--color-green);
	color: var(--color-black);
}

img {
	width: 100%;
	height: auto;
}

.header {
	width: 100%;
	padding-top: 50px;
	z-index: 2;
}
@media (max-width: 999px) {
	.header {
		padding-top: 0;
	}
}
.header__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 58px;
}
.header__bordered {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 18px 54px;
	gap: 42px;
}
@media (max-width: 999px) {
	.header__bordered {
		width: 100%;
		padding: 30px 23px;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}
@media (max-width: 767px) {
	.header__bordered {
		padding: 20px 0;
	}
}
.header__bordered:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml,%3Csvg width='621' height='65' viewBox='0 0 621 65' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_g_37_3902)'%3E%3Cmask id='path-1-inside-1_37_3902' fill='white'%3E%3Cpath d='M32 4.74078C16.536 4.74078 4 17.2768 4 32.7408C4 48.2048 16.536 60.7408 32 60.7408H589C604.464 60.7408 617 48.2048 617 32.7408C617 17.2768 604.464 4.74078 589 4.74078H32Z'/%3E%3C/mask%3E%3Cpath d='M32 60.7408V59.7408H589V60.7408V61.7408H32V60.7408ZM589 4.74078V5.74078H32V4.74078V3.74078H589V4.74078ZM617 32.7408H616C616 17.8291 603.912 5.74078 589 5.74078V4.74078V3.74078C605.016 3.74078 618 16.7245 618 32.7408H617ZM589 60.7408V59.7408C603.912 59.7408 616 47.6525 616 32.7408H617H618C618 48.757 605.016 61.7408 589 61.7408V60.7408ZM4 32.7408H5C5 47.6525 17.0883 59.7408 32 59.7408V60.7408V61.7408C15.9838 61.7408 3 48.757 3 32.7408H4ZM4 32.7408H3C3 16.7245 15.9838 3.74078 32 3.74078V4.74078V5.74078C17.0883 5.74078 5 17.8291 5 32.7408H4Z' fill='%23565555' mask='url(%23path-1-inside-1_37_3902)'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_g_37_3902' x='0' y='0.740784' width='621' height='64' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2 2' numOctaves='3' seed='7189' /%3E%3CfeDisplacementMap in='shape' scale='8' xChannelSelector='R' yChannelSelector='G' result='displacedImage' width='100%25' height='100%25' /%3E%3CfeMerge result='effect1_texture_37_3902'%3E%3CfeMergeNode in='displacedImage'/%3E%3C/feMerge%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E%0A");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 0;
}
@media (max-width: 767px) {
	.header__bordered:before {
		content: none;
	}
}
.header__logo {
	position: relative;
	width: 100%;
	max-width: 83px;
}
.header__logo a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header__logo svg {
	width: 100%;
	height: auto;
}
.header__menu {
	width: 100%;
}
@media (max-width: 999px) {
	.header__menu {
		position: fixed;
		top: 0;
		left: 100%;
		width: 100%;
		height: 100%;
		background-color: var(--color-black);
		-webkit-transition: 0.2s ease;
		transition: 0.2s ease;
		z-index: 10;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 40px;
	}
}
@media (max-width: 999px) {
	.header__menu._active {
		left: 0;
	}
}
.header__menu > ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 42px;
}
@media (max-width: 999px) {
	.header__menu > ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 30px;
	}
}
.header__menu > ul a {
	position: relative;
	font-size: 14px;
	font-weight: 400;
	color: var(--color-white);
	line-height: 100%;
	-webkit-transition: 0.2s ease;
	transition: 0.2s ease;
}
@media (max-width: 1279px) {
	.header__menu > ul a {
		font-size: 15px;
	}
}
@media (max-width: 999px) {
	.header__menu > ul a {
		font-size: 30px;
	}
}
.header__menu > ul a:before {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 50%;
	width: 0;
	height: 1px;
	background-color: var(--color-black);
	-webkit-transition: 0.2s ease;
	transition: 0.2s ease;
}
html:not(.v-mobile) .header__menu > ul a:hover {
	color: var(--color-green);
}
html:not(.v-mobile) .header__menu > ul a:hover:before {
	width: 100%;
	left: 0;
	background-color: var(--color-green);
}
html:not(.v-mobile) .header__menu > ul a:focus-visible {
	color: var(--color-green);
}
html:not(.v-mobile) .header__menu > ul a:focus-visible:before {
	width: 100%;
	left: 0;
	background-color: var(--color-green);
}

.header__menu > ul .dot {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 9px;
}
.header__menu > ul .dot:before {
	content: "";
	position: absolute;
	top: calc(50% - 4px);
	left: 0;
	width: 8px;
	height: 8px;
	background-color: var(--color-green);
	border-radius: 100%;
}
@media (max-width: 999px) {
	.header__menu > ul .dot {
		display: none;
	}
}
.header__menu-close {
	position: absolute;
	top: 20px;
	right: 20px;
}
@media (min-width: 1000px) {
	.header__menu-close {
		display: none;
	}
}
.header__burger {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	z-index: 1;
}
@media (min-width: 1000px) {
	.header__burger {
		display: none;
	}
}
.header__socials {
	margin-left: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 26px;
}
@media (max-width: 999px) {
	.header__socials {
		margin-left: unset;
	}
}
@media (min-width: 1000px) {
	.header__socials._mob {
		display: none;
	}
}
@media (max-width: 999px) {
	.header__socials:not(._mob) {
		display: none;
	}
}
.header__socials a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header__lang {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 60px;
	font-size: 20px;
	font-weight: 700;
	color: var(--color-green);
	text-transform: capitalize;
}
@media (min-width: 1000px) {
	.header__lang {
		height: 60px;
	}
}

@media (min-width: 1000px) {
	.header__lang._mob {
		display: none;
	}
}
@media (max-width: 999px) {
	.header__lang:not(._mob) {
		display: none;
	}
}
.header__lang span {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 2px;
	cursor: pointer;
}
.header__lang span svg {
	margin-top: 2px;
}
.header__lang:not(._mob):before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_g_37_3931)'%3E%3Ccircle cx='32' cy='32' r='27.5' stroke='%235B5B59'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_g_37_3931' x='0' y='0' width='64' height='64' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2 2' numOctaves='3' seed='9616' /%3E%3CfeDisplacementMap in='shape' scale='8' xChannelSelector='R' yChannelSelector='G' result='displacedImage' width='100%25' height='100%25' /%3E%3CfeMerge result='effect1_texture_37_3931'%3E%3CfeMergeNode in='displacedImage'/%3E%3C/feMerge%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E%0A");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 0;
}

@media (min-width: 1000px) {
	.header__lang ul {
		position: absolute;
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 10px;
		top: 100%;
		left: 0;
		-webkit-transition: 0.2s ease;
		transition: 0.2s ease;
		opacity: 0;
		visibility: hidden;
	}
	.header__lang:hover ul {
		opacity: 1;
		visibility: visible;
	}
}
@media (max-width: 999px) {
	.header__lang ul {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 20px;
	}
}
.header__lang ul a {
	font-size: 20px;
	font-weight: 700;
	color: var(--color-green);
	-webkit-transition: 0.2s ease;
	transition: 0.2s ease;
}
html:not(.v-mobile) .header__lang ul a:hover {
	color: var(--color-white);
}
html:not(.v-mobile) .header__lang ul a:focus-visible {
	color: var(--color-white);
}

@media (max-width: 767px) {
	.banner {
		padding: 30px 0;
	}
}
.banner__wrapper {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 50px;
}
@media (max-width: 999px) {
	.banner__wrapper {
		gap: 40px;
	}
}
@media (min-width: 768px) {
	.banner__wrapper {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
@media (max-width: 767px) {
	.banner__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
@media (min-width: 768px) {
	.banner__title {
		width: 68vw;
		max-width: 1300px;
	}
}
.banner__title svg {
	width: 100%;
	height: auto;
}
.banner__text {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-family: "Oswald", sans-serif;
	font-style: normal;
	font-weight: 300;
	text-transform: uppercase;
	font-size: 107px;
	line-height: 95%;
	letter-spacing: -0.05em;
	z-index: 2;
	color: var(--color-green);
}
@media (max-width: 1920px) {
	.banner__text {
		font-size: calc(1em + 4.9vw);
	}
}
@media (max-width: 1279px) {
	.banner__text {
		font-size: calc(1em + 4vw);
	}
}
@media (max-width: 479px) {
	.banner__text {
		font-size: 38px;
	}
}
.banner__text span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	white-space: nowrap;
}
.banner__text > span > span {
	-webkit-transform: translateY(100%) rotateX(-80deg);
	transform: translateY(100%) rotateX(-80deg);
	opacity: 0;
	-webkit-transform-origin: center top;
	transform-origin: center top;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transition: opacity 0s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: opacity 0s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: opacity 0s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: opacity 0s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.banner__text strong {
	color: var(--color-green);
	font-weight: 800;
}
.banner__icon {
	position: absolute;
}
@media (min-width: 768px) {
	.banner__icon {
		top: calc(100% + 50px);
		left: 0;
	}
}
@media (max-width: 767px) {
	.banner__icon {
		top: 16px;
		right: 90px;
		left: unset;
	}
}
.banner__icon-wrapper {
	position: relative;
}
.banner__icon-wrapper svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 123px;
	height: auto;
	-webkit-transform: scale(0);
	transform: scale(0);
}
.banner__icon-wrapper svg:nth-child(1) {
	-webkit-animation: portal-animation 4s linear 1s infinite;
	animation: portal-animation 4s linear 1s infinite;
}
.banner__icon-wrapper svg:nth-child(2) {
	-webkit-animation: portal-animation 4s linear 2s infinite;
	animation: portal-animation 4s linear 2s infinite;
}
.banner__icon-wrapper svg:nth-child(3) {
	-webkit-animation: portal-animation 4s linear 3s infinite;
	animation: portal-animation 4s linear 3s infinite;
}
.banner__icon-wrapper svg:nth-child(4) {
	-webkit-animation: portal-animation 4s linear 4s infinite;
	animation: portal-animation 4s linear 4s infinite;
}
@media (max-width: 1279px) {
	.banner__icon-wrapper svg {
		width: 110px;
	}
}
@media (max-width: 999px) {
	.banner__icon-wrapper svg {
		width: 90px;
	}
}
@-webkit-keyframes portal-animation {
	0% {
		-webkit-transform: scale(0.1);
		transform: scale(0.1);
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
	}
}
@keyframes portal-animation {
	0% {
		-webkit-transform: scale(0.1);
		transform: scale(0.1);
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
	}
}

.banner_about {
  padding: 102px 0;
}
@media (max-width: 479px) {
  .banner_about {
    padding: 60px 0;
  }
}
.banner_about .banner__wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.banner_about .banner__title {
  width: 70vw;
  margin-bottom: 20px;
}
@media (max-width: 479px) {
  .banner_about .banner__title {
    margin-bottom: 60px;
  }
}
.banner_about .banner__photo {
  top: 70px;
  right: 61px;
  width: 42%;
  position: absolute;
  pointer-events: none;
}
@media (max-width: 767px) {
  .banner_about .banner__photo {
    right: 0;
    width: 55%;
    top: 35px;
  }
}
@media (max-width: 479px) {
  .banner_about .banner__photo {
    right: -38px;
    width: 55%;
    top: 14px;
  }
}
.banner_about .banner__photo::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0%;
  height: 3%;
  background: var(--color-green);
  pointer-events: none;
  z-index: 3;
  -webkit-animation: line-anim 0.4s ease-in-out forwards;
          animation: line-anim 0.4s ease-in-out forwards;
}
.banner_about .banner__photo::after {
  content: "";
  position: absolute;
  bottom: -500px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 500px;
  background: #000;
  pointer-events: none;
  z-index: 1;
}
.banner_about .banner__photo img {
  position: relative;
  -webkit-animation: raccoon-peek 3s cubic-bezier(0.22, 0.9, 0.28, 1) forwards, raccoon-swing 3000ms ease-in-out 1s infinite;
          animation: raccoon-peek 3s cubic-bezier(0.22, 0.9, 0.28, 1) forwards, raccoon-swing 3000ms ease-in-out 1s infinite;
}
.banner_about .banner__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media (max-width: 767px) {
  .banner_about .banner__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.banner_about .banner__points {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 37.5%;
  right: 120px;
  top: 190px;
  z-index: 2;
}
@media (max-width: 999px) {
  .banner_about .banner__points {
    width: 45%;
    right: 40px;
    top: 140px;
  }
}
@media (max-width: 767px) {
  .banner_about .banner__points {
    right: unset;
    top: unset;
    margin-top: 60px;
    left: 0;
    width: 100%;
  }
}
@media (max-width: 479px) {
  .banner_about .banner__points {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 60px;
    margin-left: 20px;
    width: auto;
  }
}
.banner_about .banner__point {
  position: relative;
  color: #fff;
  width: 125px;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .banner_about .banner__point {
    width: 32%;
  }
}
@media (max-width: 479px) {
  .banner_about .banner__point {
    width: 100%;
    margin-bottom: 30px;
  }
}
.banner_about .banner__point span {
  font-weight: 700;
  color: var(--color-green);
}
.banner_about .banner__point::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  background: var(--color-green);
  width: 11px;
  height: 11px;
  pointer-events: none;
}
.banner_about .banner__point:nth-child(2) {
  position: absolute;
  left: 39%;
  top: 208px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 479px) {
  .banner_about .banner__point:nth-child(2) {
    position: relative;
    top: unset;
    left: unset;
    -webkit-transform: unset;
            transform: unset;
  }
}

@-webkit-keyframes raccoon-peek {
  0% {
    opacity: 0.5;
    bottom: -400px;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}

@keyframes raccoon-peek {
  0% {
    opacity: 0.5;
    bottom: -400px;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
@-webkit-keyframes raccoon-swing {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes raccoon-swing {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@-webkit-keyframes line-anim {
  0% {
    width: 0%;
  }
  100% {
    width: 103%;
  }
}
@keyframes line-anim {
  0% {
    width: 0%;
  }
  100% {
    width: 103%;
  }
}
.services__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 250px;
}
@media (max-width: 1520px) {
	.services__wrapper {
		gap: 120px;
	}
}
@media (max-width: 1359px) {
	.services__wrapper {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		gap: 90px;
	}
}
@media (max-width: 999px) {
	.services__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
@media (max-width: 767px) {
	.services__wrapper {
		gap: 50px;
	}
}
.services__box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 108px;
}
@media (max-width: 999px) {
	.services__box {
		gap: 52px;
	}
}
@media (max-width: 767px) {
	.services__box {
		gap: 36px;
	}
}
.services__title {
	position: relative;
	font-family: "Oswald", sans-serif;
	font-weight: 700;
	font-size: 180px;
	line-height: 95%;
	letter-spacing: -0.05em;
	text-transform: uppercase;
	color: var(--color-green);
}
@media (max-width: 1359px) {
	.services__title {
		font-size: 128px;
	}
}
@media (max-width: 999px) {
	.services__title {
		font-size: 110px;
	}
}
@media (max-width: 767px) {
	.services__title {
		font-size: 64px;
	}
}
@media (max-width: 479px) {
	.services__title {
		font-size: 54px;
	}
}
.services__title span {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	white-space: nowrap;
	z-index: 1;
}
.services__title > span > span {
	-webkit-transform: translateY(100%) rotateX(-80deg);
	transform: translateY(100%) rotateX(-80deg);
	opacity: 0;
	-webkit-transform-origin: center top;
	transform-origin: center top;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transition: opacity 0s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: opacity 0s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: opacity 0s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: opacity 0s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0s cubic-bezier(0.215, 0.61, 0.355, 1);
	white-space: break-spaces;
}
.services__title-icons {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.services__title-icon {
	position: absolute;
	overflow: hidden;
	width: 120px;
	z-index: 0;
}
@media (max-width: 1359px) {
	.services__title-icon {
		width: 89px;
	}
}
@media (max-width: 999px) {
	.services__title-icon {
		width: 70px;
	}
}
.services__title-icon:nth-child(1) {
	top: 0;
	right: 0;
}
@media (max-width: 999px) {
	.services__title-icon:nth-child(1) {
		top: 70px;
	}
}
@media (max-width: 767px) {
	.services__title-icon:nth-child(1) {
		top: 0;
	}
}
@media (max-width: 479px) {
	.services__title-icon:nth-child(1) {
		top: 30px;
		right: 30px;
	}
}
.services__title-icon:nth-child(3) {
	top: -30px;
	right: 140px;
}
@media (max-width: 767px) {
	.services__title-icon:nth-child(3) {
		top: -30px;
		right: 130px;
	}
}
@media (max-width: 479px) {
	.services__title-icon:nth-child(3) {
		top: -50px;
		right: 130px;
	}
}
.services__title-icon:nth-child(2) {
	top: -130px;
	right: 300px;
}
@media (max-width: 999px) {
	.services__title-icon:nth-child(2) {
		right: 350px;
	}
}
@media (max-width: 767px) {
	.services__title-icon:nth-child(2) {
		right: 250px;
	}
}
@media (max-width: 479px) {
	.services__title-icon:nth-child(2) {
		top: -90px;
		right: 220px;
	}
}
.services__title-icon:nth-child(4) {
	top: 100px;
	right: -150px;
}
@media (max-width: 1520px) {
	.services__title-icon:nth-child(4) {
		top: 300px;
	}
}
@media (max-width: 767px) {
	.services__title-icon:nth-child(4) {
		top: 150px;
		right: -50px;
	}
}
@media (max-width: 479px) {
	.services__title-icon:nth-child(4) {
		top: 150px;
		right: 50px;
		display: none;
	}
}
.services__title-icon svg {
	width: 100%;
	height: auto;
	-webkit-transform: translateY(110%);
	transform: translateY(110%);
}
.services__subtitle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 52px;
}
.services__subtitle-number {
	font-family: "Oswald", sans-serif;
	font-weight: 700;
	font-size: 285px;
	line-height: 95%;
	letter-spacing: -0.05em;
	text-transform: uppercase;
	-webkit-text-stroke: 2px #272F05;
	color: transparent;
}
@media (max-width: 1359px) {
	.services__subtitle-number {
		font-size: 225px;
	}
}
@media (max-width: 999px) {
	.services__subtitle-number {
		font-size: 225px;
	}
}
@media (max-width: 767px) {
	.services__subtitle-number {
		font-size: 180px;
	}
}
@media (max-width: 479px) {
	.services__subtitle-number {
		font-size: 160px;
		margin-top: -14px;
	}
}
.services__subtitle-text {
	font-weight: 400;
	font-size: 52px;
	line-height: 95%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-transform: uppercase;
	color: var(--color-white);
	max-width: 320px;
}
@media (max-width: 1359px) {
	.services__subtitle-text {
		font-size: 40px;
		max-width: 280px;
	}
}
@media (max-width: 999px) {
	.services__subtitle-text {
		font-size: 36px;
		max-width: 260px;
	}
}
@media (max-width: 767px) {
	.services__subtitle-text {
		font-size: 28px;
		max-width: 200px;
	}
}
@media (max-width: 479px) {
	.services__subtitle-text {
		font-size: 24px;
		max-width: 200px;
	}
}
.services__list {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 52px 1fr 52px 1fr;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px 52px;
	margin-top: 110px;
}
@media (max-width: 1279px) {
	.services__list {
		width: 100%;
		padding-left: 30px;
		margin-top: unset;
	}
}
@media (max-width: 767px) {
	.services__list {
		margin-top: 20px;
	}
}
@media (max-width: 479px) {
	.services__list {
		-ms-grid-columns: (1fr)[2];
		grid-template-columns: repeat(2, 1fr);
	}
}
.services__item {
	position: relative;
}
.services__item:not(._btn):before {
	content: url("data:image/svg+xml,%3Csvg width='27' height='30' viewBox='0 0 27 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_g_37_3859)'%3E%3Cpath d='M19.9463 4.17844C20.2851 4.12512 20.74 4.10682 21.2202 4.2435C21.5879 4.34815 22.0684 4.57399 22.4538 5.04491C22.855 5.53515 23.0022 6.10663 23.0022 6.61878V25.3265H18.9758V8.20265C16.9293 8.19793 14.2997 8.19281 11.9901 8.19122C10.6032 8.19026 9.33298 8.19057 8.37443 8.19265C8.25664 8.1929 8.14369 8.1934 8.03592 8.19372V25.3265H4.00957V6.75282C3.95685 6.17514 4.11721 5.52563 4.61152 4.99451C5.20529 4.3566 5.98571 4.20534 6.52211 4.18094L6.73479 4.17594C8.21795 4.15409 15.9368 4.16833 19.9463 4.17844Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_g_37_3859' x='0' y='0.138611' width='27.0022' height='29.1879' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2 2' numOctaves='3' seed='451' /%3E%3CfeDisplacementMap in='shape' scale='8' xChannelSelector='R' yChannelSelector='G' result='displacedImage' width='100%25' height='100%25' /%3E%3CfeMerge result='effect1_texture_37_3859'%3E%3CfeMergeNode in='displacedImage'/%3E%3C/feMerge%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E%0A");
	position: absolute;
	top: -16px;
	left: -34px;
}
@media (max-width: 999px) {
	.services__item._btn {
		display: none;
	}
}
.services__item._btn a {
	position: absolute;
	bottom: 0;
	left: -108px;
	width: 237px;
}
.services__item p {
	font-size: 24px;
	font-weight: 400;
	line-height: 135%;
	color: var(--color-grey-200);
}
@media (max-width: 1359px) {
	.services__item p {
		font-size: 20px;
	}
}
.services__item p strong {
	font-weight: 700;
	color: var(--color-green);
}
.services__button {
	margin: 0 auto;
}
@media (min-width: 1000px) {
	.services__button {
		display: none;
	}
}

.brands {
	padding: 0 0 10px;
}
.brands__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 46px;
}
@media (max-width: 767px) {
	.brands__wrapper {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 16px;
	}
}
.brands__title {
	position: relative;
	font-weight: 700;
	font-size: 20px;
	line-height: 135%;
	color: var(--color-green);
}
@media (min-width: 1360px) {
	.brands__title:before {
		content: "";
		position: absolute;
		left: calc(-1 * var(--wrap) - 50px);
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		width: 114px;
		height: 2px;
		background-color: var(--color-green);
	}
}
.brands__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 50px;
}
@media (max-width: 767px) {
	.brands__list {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 20px;
	}
}


.team {
  padding: 190px 0 0;
}
@media (max-width: 767px) {
  .team {
    padding: 120px 0 0;
  }
}
@media (max-width: 479px) {
  .team {
    padding: 0;
  }
}
.team .title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media (max-width: 767px) {
  .team .title-wrap {
    gap: 30px;
  }
}
@media (max-width: 374px) {
  .team .title-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.team .title-wrap__line {
  width: 2px;
  height: 78px;
  background-color: var(--color-green);
}
@media (max-width: 767px) {
  .team .title-wrap__line {
    height: 60px;
  }
}
@media (max-width: 374px) {
  .team .title-wrap__line {
    display: none;
  }
}
.team .title-wrap .title {
  letter-spacing: 5px;
  position: relative;
  left: 12px;
}
@media (max-width: 767px) {
  .team .title-wrap .title {
    font-size: 60px;
  }
}
@media (max-width: 479px) {
  .team .title-wrap .title {
    left: 5px;
  }
}
.team .title-wrap__text {
  color: #b3b3b3;
  font-size: 16px;
  max-width: 256px;
}
@media (max-width: 479px) {
  .team .title-wrap__text {
    font-size: 13px;
  }
}
.team__members {
  margin: 82px auto 0;
  width: 73%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 96px;
}
@media (max-width: 999px) {
  .team__members {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .team__members {
    row-gap: 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 479px) {
  .team__members {
    margin-top: 40px;
  }
}


.member {
  width: 31%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .member {
    width: 48%;
  }
}
.member__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background: var(--color-green);
  color: #000;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  border-radius: 20px;
  padding: 10px 30px;
  min-width: 214px;
  border: 1px solid var(--color-green);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.member__btn:hover {
  background: transparent;
  color: var(--color-green);
}
.member__photo {
  background: var(--color-green);
  width: 98px;
  min-width: 98px;
  height: 98px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 27px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 479px) {
  .member__photo {
    width: 70px;
    height: 70px;
    min-width: 70px;
    margin-right: 15px;
  }
}
@media (max-width: 374px) {
  .member__photo {
    width: 60px;
    height: 60px;
    min-width: 60px;
    margin-right: 10px;
  }
}
.member__photo img {
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
	width: 100%;
	height: auto;
}
.member__photo:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.member__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.member__info p {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 10px;
}
@media (max-width: 479px) {
  .member__info p {
    font-size: 17px;
  }
}
.member__info span {
  font-size: 14px;
  color: #fff;
  line-height: 1.1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 25px;
  margin-bottom: 3px;
}
@media (max-width: 374px) {
  .member__info span {
    font-size: 12px;
  }
}
.member__info a {
  display: inline-block;
  font-size: 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  border-bottom: 0.7px solid #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 374px) {
  .member__info a {
    font-size: 12px;
  }
}
.member__info a:hover {
  color: var(--color-green);
  border-color: transparent;
}

.partners {
  padding: 135px 0 30px;
}
@media (max-width: 479px) {
  .partners {
    position: relative;
    padding: 90px 0 30px;
  }
}
.partners__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 479px) {
  .partners__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.partners__title {
  font-size: 130px;
}
@media (max-width: 1279px) {
  .partners__title {
    font-size: 90px;
  }
}
@media (max-width: 767px) {
  .partners__title {
    font-size: 60px;
  }
}
.partners__number {
  position: relative;
  margin-top: 45px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: calc(30.5em + 2vw);
  line-height: 95%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  -webkit-text-stroke: 2px #494a48;
  color: transparent;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--color-green)), to(var(--color-green)));
  background: linear-gradient(to bottom, var(--color-green) 0%, var(--color-green) 100%);
  background-repeat: no-repeat;
  background-size: 100% 0%;
  background-position: top;
  -webkit-background-clip: text;
  background-clip: text;
  padding: 0 20px;
  -webkit-transition: background-size 1s ease;
  transition: background-size 1s ease;
}
.partners__number:hover {
  background-size: 100% 100%;
}
@media (max-width: 1279px) {
  .partners__number {
    font-size: calc(20.5em + 2vw);
  }
}
@media (max-width: 999px) {
  .partners__number {
    font-size: calc(16.5em + 2vw);
  }
}
@media (max-width: 767px) {
  .partners__number {
    margin: 0;
    width: 45%;
    display: none;
  }
}
.partners__info {
  width: 48%;
}
@media (max-width: 1279px) {
  .partners__info {
    width: 57%;
  }
}
@media (max-width: 767px) {
  .partners__info {
    width: 90%;
  }
}
@media (max-width: 479px) {
  .partners__info {
    width: 100%;
  }
}
.partners__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.partners__column {
  width: 26%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 78px;
}
@media (max-width: 479px) {
  .partners__column {
    margin-top: 50px;
  }
}
.partners__column a {
  display: inline-block;
  margin-bottom: 15px;
}
@media (max-width: 999px) {
  .partners__column a svg {
    max-width: 100%;
  }
}



.footer {
	padding: 50px 0;
	color: var(--color-grey-200);
}
@media (max-width: 767px) {
	.footer {
		padding: 30px 0;
	}
}
.footer__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 66px;
	padding-left: 158px;
}
@media (max-width: 999px) {
	.footer__wrapper {
		padding-left: 0;
	}
}
@media (max-width: 999px) {
	.footer__wrapper {
		gap: 24px;
	}
}
.footer__top {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 70px 2fr 70px 3fr 70px 1fr;
	grid-template-columns: 1fr 2fr 3fr 1fr;
	gap: 70px;
}
@media (max-width: 767px) {
	.footer__top {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 24px;
	}
}
.footer__menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 22px;
}
@media (max-width: 767px) {
	.footer__menu {
		gap: 10px;
	}
}
.footer__menu a {
	color: var(--color-grey-200);
	font-size: 16px;
	font-weight: 500;
	-webkit-transition: 0.2s ease;
	transition: 0.2s ease;
}
@media (max-width: 1359px) {
	.footer__menu a {
		font-size: 14px;
	}
}
html:not(.v-mobile) .footer__menu a:hover {
	color: var(--color-green);
}
html:not(.v-mobile) .footer__menu a:focus-visible {
	color: var(--color-green);
}

.footer__contacts {
	color: var(--color-grey-200);
	font-size: 16px;
	font-weight: 300;
}
@media (max-width: 1359px) {
	.footer__contacts {
		font-size: 14px;
	}
}
.footer__contacts a {
	color: var(--color-grey-200);
	-webkit-transition: 0.2s ease;
	transition: 0.2s ease;
}
html:not(.v-mobile) .footer__contacts a:hover {
	color: var(--color-green);
}
html:not(.v-mobile) .footer__contacts a:focus-visible {
	color: var(--color-green);
}

.footer__about {
	color: var(--color-grey-200);
	font-size: 12px;
	font-weight: 300;
	line-height: 125%;
}
@media (max-width: 1359px) {
	.footer__about {
		font-size: 10px;
	}
}
.footer__about a {
	color: var(--color-grey-200);
	-webkit-transition: 0.2s ease;
	transition: 0.2s ease;
}
html:not(.v-mobile) .footer__about a:hover {
	color: var(--color-green);
}
html:not(.v-mobile) .footer__about a:focus-visible {
	color: var(--color-green);
}

.footer__about-links {
	margin-top: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
}
@media (max-width: 767px) {
	.footer__about-links {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 16px;
	}
}
.footer__about-links a {
	color: var(--color-grey-200);
	font-size: 16px;
	font-weight: 400;
	-webkit-transition: 0.2s ease;
	transition: 0.2s ease;
}
html:not(.v-mobile) .footer__about-links a:hover {
	color: var(--color-green);
}
html:not(.v-mobile) .footer__about-links a:focus-visible {
	color: var(--color-green);
}

.footer__bottom {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 70px 2fr 70px 3fr 70px 1fr;
	grid-template-columns: 1fr 2fr 3fr 1fr;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 70px;
}
@media (max-width: 767px) {
	.footer__bottom {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 16px;
	}
}
@media (max-width: 767px) {
	.footer__bottom ._desk {
		display: none;
	}
}
.footer__socials {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 26px;
}
.footer__socials svg {
	width: 38px;
	height: 38px;
}
.footer__copyright {
	font-size: 16px;
	font-weight: 400;
}
@media (max-width: 1359px) {
	.footer__copyright {
		font-size: 14px;
	}
}

.wow {
	opacity: 0;
}
.wow.fadeInLeft {
	-webkit-transform: translateX(-150px);
	transform: translateX(-150px);
}
.wow.fadeInRight {
	-webkit-transform: translateX(150px);
	transform: translateX(150px);
}
.wow.fadeInUp {
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
}
.wow.slideInUp {
	opacity: 1;
	overflow: hidden;
	display: block;
}
.wow.slideInUp span {
	display: block;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}
.wow.slideInDown {
	opacity: 1;
	-webkit-transform: translateY(-30px);
	transform: translateY(-30px);
}
.wow.bounceInUp {
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
}
.wow.zoomIn {
	opacity: 1;
	-webkit-transform: scale(0);
	transform: scale(0);
}
.wow.zoomInKangaroo {
	opacity: 1;
	-webkit-transform: translateX(-600px) scale(0);
	transform: translateX(-600px) scale(0);
}
@media (max-width: 1199px) {
	.wow.zoomInKangaroo {
		-webkit-transform: translateX(0) scale(0);
		transform: translateX(0) scale(0);
	}
}

@-webkit-keyframes icon-rotate {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes icon-rotate {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@-webkit-keyframes icon-rotate-reverse {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}
@keyframes icon-rotate-reverse {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}
.popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	display: none;
}
.popup.active {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.popup__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 1;
}
.popup__wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	z-index: 2;
}
.popup__content {
	position: relative;
	width: 100%;
	max-width: 463px;
	padding: 54px;
	background-color: var(--color-green);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	z-index: 2;
}
.popup__close {
	position: absolute;
	top: 17px;
	right: 21px;
	cursor: pointer;
}
.popup__title {
	font-family: "Oswald", sans-serif;
	font-weight: 700;
	font-size: 36px;
	line-height: 115%;
	text-align: center;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: var(--color-black);
}
.popup__subtitle {
	font-family: "Oswald", sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 95%;
	text-align: center;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: var(--color-black);
	margin-top: 8px;
}
.popup__form {
	margin-top: 32px;
}
.popup__form-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 22px;
}
.popup__form-wrapper input {
	font-size: 16px;
	line-height: 95%;
	letter-spacing: -0.03em;
	color: var(--color-black);
	border: none;
	border-bottom: 1px solid var(--color-black);
	padding: 4px 0;
	background: none;
	outline: none;
	width: 100%;
}
.popup__form-wrapper input::-webkit-input-placeholder {
	color: var(--color-black);
}
.popup__form-wrapper input::-moz-placeholder {
	color: var(--color-black);
}
.popup__form-wrapper input:-ms-input-placeholder {
	color: var(--color-black);
}
.popup__form-wrapper input::-ms-input-placeholder {
	color: var(--color-black);
}
.popup__form-wrapper input::placeholder {
	color: var(--color-black);
}
.popup__form-wrapper input[type=submit] {
	padding: 10px;
	max-width: 213px;
	font-size: 16px;
}
.popup__form-wrapper input[type=file] {
	margin-top: 10px;
	font-size: 14px;
}
.popup__form-wrapper label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 6px;
	width: 100%;
}
.popup__form-wrapper label span {
	font-size: 16px;
	line-height: 95%;
	letter-spacing: -0.03em;
	color: var(--color-black);
	font-weight: 400;
}
.popup__form-wrapper .confirm label{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
}
.popup__form-wrapper .confirm input {
	width: 22px;
	height: 22px;
	margin: 0;
	accent-color: var(--color-green);
	border: 1px solid var(--color-black);
}
.popup__form-wrapper .confirm span.wpcf7-list-item-label {
	font-size: 10px;
	line-height: 115%;
	letter-spacing: -0.03em;
	color: var(--color-black);
	font-weight: 400;
}
.popup__form-wrapper .confirm a {
	font-weight: 400;
	text-decoration: underline;
	color: var(--color-black);
}
.popup__form-wrapper textarea {
	background-color: #B2D810;
	border: none;
	resize: none;
	height: 81px;
	padding: 10px;
	color: #46483C;
	font-size: 12px;
	outline: none;
	width: 100%;
}
.popup__form-wrapper p {
	width: 100%;
	font-weight: 300;
	font-size: 12px;
	line-height: 115%;
	color: var(--color-black);
}
.popup__form-wrapper p a {
	font-weight: 600;
	text-decoration: underline;
	color: var(--color-black);
}
.wpcf7-list-item {
	margin-left: 0;
}
.wpcf7-response-output {
	margin: 0!important;
	font-size: 14px;
	line-height: 110%;
	color: var(--color-black);
}
.wpcf7-not-valid-tip {
	font-size: 14px!important;
	line-height: 110%;
	color: red!important;
}

.policy {
	background-color: #000;
	color: #fff;
	font-family: Arial, sans-serif;
	padding: 100px 0;
	line-height: 1.5;
	margin: auto;
}
@media (max-width: 1279px) {
	.policy {
		padding: 50px 0;
	}
}
@media (max-width: 767px) {
	.policy {
		padding: 30px 0;
	}
}
@media (min-width: 1000px) {
	.policy__wrapper {
		padding: 0 158px;
	}
}
.policy__wrapper > * + * {
	margin-bottom: 20px;
}
.policy h1 {
	color: var(--color-green);
	font-size: 96px;
	line-height: 103%;
	text-align: center;
	margin-bottom: 100px;
}
@media (max-width: 1279px) {
	.policy h1 {
		margin-bottom: 50px;
		font-size: 64px;
	}
}
@media (max-width: 767px) {
	.policy h1 {
		margin-bottom: 30px;
		font-size: 48px;
	}
}
.policy h2 {
	color: var(--color-green);
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 400;
}
.policy h3 {
	color: var(--color-green);
	font-size: 18px;
}
.policy p {
	font-size: 14px;
}
.policy ul {
	padding-left: 50px;
}
.policy li {
	position: relative;
	font-size: 14px;
	margin-bottom: 10px;
	padding-left: 24px;
}
.policy li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	width: 12px;
	height: 12px;
	background-color: var(--color-green);
}
.policy a {
	color: #fff;
	text-decoration: underline;
	font-weight: 500;
}
.policy strong {
	font-weight: bold;
}
.policy table {
	margin-left: 75px;
	/* 	margin-right: auto; */
}
@media (max-width: 767px) {
	.policy table {
		margin-left: 0;
	}
}
.policy table th {
	font-weight: 400;
	color: var(--color-green);
	text-align: left;
	padding: 4px 40px 4px 0;
}
.policy table td {
	padding: 4px 40px 4px 0;
}