﻿
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
*, *::before, *::after {
	box-sizing: border-box;
}
img {
	max-width: 100%;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
	text-decoration: none;
}
.container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0px 80px;
}
@media screen and (max-width: 1280px) {
.container {
		padding: 0px 60px;
	}
}
@media screen and (max-width: 1024px) {
.container {
		padding: 0px 40px;
	}
}
@media screen and (max-width: 425px) {
.container {
		padding: 0px 20px;
	}
}
.wrapper {
	min-height: 100%;
	overflow: hidden;
}
.d-f {
	display: flex;
}
.d-g {
	display: grid;
}
.jc-sb {
	justify-content: space-between;
}
.jc-c {
	justify-content: center;
}
.jc-e {
	justify-content: end;
}
.ai-c {
	align-items: center;
}
.ai-e {
	align-items: end;
}
.fd-c {
	flex-direction: column;
}
.fw-w {
	flex-wrap: wrap;
}
.ta-c {
	text-align: center;
}
.ta-e {
	text-align: end;
}
.z2 {
	z-index: 2;
}
.z-1 {
	z-index: -1;
}
.title__text {
	display: block;
	font-weight: 700;
	line-height: 100%;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: #000000;
	font-size: calc(32px + 16 * ((100vw - 375px) / 1545));
	vertical-align: middle;
	margin-bottom: 5px;
}
.title__text span {
	vertical-align: middle;
}
.title__text--highlight {
	background: linear-gradient(32deg, #0ca571 0%, #0fafb8 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.title__text--highlight::before {
	content: '';
	display: inline-block;
	border-radius: 12px;
	border: 1px solid #0da675;
	margin-right: calc(8px + 8 * ((100vw - 375px) / 1545));
	background-image: url('/assets/images/arrow.png');
	background-size: 24px;
	background-repeat: no-repeat;
	background-position: center;
	width: calc(60px + 20 * ((100vw - 375px) / 1545));
	height: calc(36px + 20 * ((100vw - 375px) / 1545));
	vertical-align: middle;
}
.title__text--arrow-none::before {
	display: none;
}
.button {
	display: inline-block;
	box-shadow: 10px 10px 20px -5px rgba(2, 90, 78, 0.4);

	background-image: linear-gradient(49deg, #0db17a 0%, #009aa3 100%);
	border-radius: 12px;
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	padding: 23px 32px;
	border: none;
	background-size: 300% 100%;
	transition: all 0.3s ease;
	cursor: pointer;
}
.button:hover {
	background-position: 100% 0;
}
@media screen and (max-width: 1024px) {
.button {
		width: 100%;
	}
}
.logo__wrapper {
	display: flex;
	align-items: center;
}
.logo__icon {
	padding-right: 16px;
	margin-right: 16px;
	border-right: 1px solid #dfe7e2;
}
.logo__icon img {
	width: calc(117px + 52 * ((100vw - 375px) / 1545));
	height: calc(14px + 6 * ((100vw - 375px) / 1545));
}
.logo p {
	font-size: calc(10px + 2 * ((100vw - 375px) / 1545));
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #656c6c;
}
@media screen and (max-width: 1024px) {
.logo p {
		letter-spacing: 0.04em;
	}
}
.logo p span {
	line-height: 120%;
	display: block;
}
.section {
	padding-top: calc(105px + 23 * ((100vw - 375px) / 1545));
	padding-bottom: calc(105px + 23 * ((100vw - 375px) / 1545));
}
.burger {
	display: none;
}
@media screen and (max-width: 1024px) {
.burger {
		display: flex;
	}
}
.burger > span {
	margin-right: 20px;
}
.burger__button {
	position: relative;
	width: 20px;
	height: 10px;
	background: transparent;
	border: none;
}
.burger__button span {
	position: absolute;
	display: block;
	width: 100%;
	height: 3px;
	background: #313232;
	transition: 0.3s;
}
.burger__button--open span:first-child {
	top: 0;
}
.burger__button--open span:last-child {
	bottom: 0;
}
.burger__button--close span {
	top: 50%;
}
.burger__button--close span:first-child {
	transform: translateY(-50%) rotate(45deg);
}
.burger__button--close span:last-child {
	transform: translateY(-50%) rotate(-45deg);
}
.overflow-hidden {
	overflow: hidden;
}
.burger-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #fff;
	text-align: center;
	opacity: 0;
	transition: 0.7s opacity;
}
.burger-menu--open {
	opacity: 1;
}
.burger-menu__container {
	height: 100%;
	width: 100%;
	padding-top: 112px;
	padding-right: 40px;
	padding-bottom: 80px;
	padding-left: 40px;
}
.burger-menu__row {
	height: 100%;
	width: 100%;
	display: grid;
	gap: 20px;
	grid-template-rows: 1fr auto;
}
.burger-menu__row > ul > li {
	margin-bottom: 40px;
}
.burger-menu__row > ul > li:last-child {
	margin-bottom: 0px;
}
.burger-menu__row > ul > li a {
	font-weight: 700;
	font-size: 24px;
	color: #313232;
}
.burger-menu__dropdown {
	width: fit-content;
	margin: 0 auto;
}
.burger-menu__dropdown summary {
	list-style: none;
	cursor: pointer;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
	color: #313232;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.burger-menu__dropdown summary::-webkit-details-marker {
	display: none;
}
.burger-menu__dropdown summary::after {
	content: '';
	width: 8px;
	height: 8px;
	border-right: 2px solid #313232;
	border-bottom: 2px solid #313232;
	transform: rotate(45deg) translateY(-1px);
	transition: transform 0.2s ease;
}
.burger-menu__dropdown[open] summary::after {
	transform: rotate(225deg) translateY(-1px);
}
.burger-menu__dropdown ul {
	margin-top: 20px;
}
.burger-menu__dropdown ul li {
	margin-bottom: 20px;
}
.burger-menu__dropdown ul li:last-child {
	margin-bottom: 0;
}
.burger-menu__dropdown ul li a {
	font-size: 20px;
}
@media screen and (max-width: 768px) {
.burger-menu__row > ul > li a, .burger-menu__dropdown summary {
		font-size: 20px;
	}
.burger-menu__dropdown ul li a {
		font-size: 18px;
	}
}
@media screen and (max-width: 425px) {
.burger-menu__row > ul > li a, .burger-menu__dropdown summary {
		font-size: 18px;
	}
.burger-menu__dropdown ul li a {
		font-size: 16px;
	}
}
html {
	/* scroll-behavior: smooth; */
}
body {
	font-family: 'Manrope', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 171%;
	color: #313232;
	background: linear-gradient(224deg, #f3f7f4 0%, #eff5f4 100%);
}
.content {
	position: relative;
}
.header {
	position: fixed;
	width: 100%;
	z-index: 3;
	height: 72px;
	align-items: center;
}
.header::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(24px);
	background: rgba(241, 246, 244, 0.84);
}
.header .container {
	position: relative;
	z-index: 2;
	height: 100%;
}
@media screen and (max-width: 768px) {
.header .logo span {
		display: inline;
	}
}
@media screen and (max-width: 575px) {
.header .logo__wrapper {
		display: block;
	}
}
@media screen and (max-width: 575px) {
.header .logo__icon {
		border-right: none;
		margin-right: 0;
		padding-right: 0;
	}
}
.header__row {
	height: 100%;
}
@media screen and (max-width: 1024px) {
.header-menu {
		display: none;
	}
}
.header-menu > li {
	position: relative;
	font-weight: 600;
	margin-right: calc(30px + 18 * ((100vw - 375px) / 1545));
}
.header-menu > li:last-child {
	margin-right: 0px;
}
.header-menu > li:not(.header-menu__dropdown):hover > a, .header-menu > li:not(.header-menu__dropdown):focus-within > a {
	color: #0da675;
}
.header-menu > li > a, .header-menu__dropdown-link, .header-menu__dropdown-button {
	transition: 0.2s;
	color: #313232;
}
.header-menu__dropdown {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.header-menu__dropdown-link {
	display: inline-flex;
	align-items: center;
}
.header-menu__dropdown-link:hover, .header-menu__dropdown-link:focus-visible {
	color: #0da675;
}
.header-menu__dropdown-button {
	width: 22px;
	height: 22px;
	padding: 0;
	border: 1px solid #d5dfda;
	border-radius: 999px;
	background: #f7faf8;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.header-menu__dropdown-button::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	display: block;
	width: 7px;
	height: 7px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translate(-50%, -58%) rotate(45deg);
	transform-origin: center;
	transition: transform 0.2s ease;
}
.header-menu__dropdown-button:hover, .header-menu__dropdown-button:focus-visible, .header-menu__dropdown.is-open > .header-menu__dropdown-link, .header-menu__dropdown.is-open > .header-menu__dropdown-button {
	color: #0da675;
}
.header-menu__dropdown-button:hover, .header-menu__dropdown-button:focus-visible, .header-menu__dropdown.is-open > .header-menu__dropdown-button {
	border-color: #0da675;
	background: #eefaf4;
}
.header-menu__dropdown-list {
	position: absolute;
	top: 100%;
	left: auto;
	right: 0;
	min-width: 220px;
	max-width: calc(100vw - 24px);
	padding: 12px 16px;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 16px 40px -24px rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	z-index: 4;
}
.header-menu__dropdown-list li {
	margin-right: 0;
}
.header-menu__dropdown-list li + li {
	margin-top: 12px;
}
.header-menu__dropdown-list li a {
	display: block;
	white-space: nowrap;
}
.header-menu__dropdown-list li:hover a {
	color: #0da675;
}
.header-menu__dropdown.is-open > .header-menu__dropdown-list {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}
.header-menu__dropdown.is-open > .header-menu__dropdown-button::before {
	transform: translate(-50%, -58%) rotate(225deg);
}
.footer {
	position: relative;
	padding-top: calc(100px + 32 * ((100vw - 375px) / 1545));
	padding-bottom: calc(24px + 8 * ((100vw - 375px) / 1545));
	background: linear-gradient(202deg, #1a201d 0%, #000 100%);
}
.footer__gradient {
	position: absolute;
	z-index: 1;
	top: 205px;
	left: 230px;
	width: 650px;
}
.footer h2 span {
	color: #fff;
}
.footer .title__text {
	font-size: 32px;
}
.footer .title__text--highlight::before {
	width: 64px;
	height: 40px;
}
.footer__top, .footer__middle, .footer__bottom {
	position: relative;
	z-index: 1;
}
.footer__top {
	margin-bottom: calc(90px + 76 * ((100vw - 375px) / 1545));
}
.footer .logo__icon {
	border-right: none;
	margin-right: 0px;
}
.footer__top-row {
	grid-template-columns: repeat(2, 1fr);
	gap: calc(32px + 48 * ((100vw - 375px) / 1545));
}
@media screen and (max-width: 1024px) {
.footer__top-row {
		grid-template-columns: 1fr;
	}
}
.footer__top-column h2 {
	margin-bottom: calc(24px + 40 * ((100vw - 375px) / 1545));
}
.footer__top-column > p {
	font-weight: 500;
	font-size: calc(16px + 2 * ((100vw - 375px) / 1545));
	line-height: 156%;
	color: #99a5a3;
}
@media screen and (max-width: 1024px) {
.footer__top-column form button {
		width: 100%;
	}
}
.footer__top-column form input {
	display: block;
	width: 100%;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid #252927;
	border-radius: 12px;
	padding: calc(20px + 4 * ((100vw - 375px) / 1545));
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	color: #99a5a3;
	margin-bottom: calc(12px + 12 * ((100vw - 375px) / 1545));
}
.footer__top-column form input:focus {
	outline: none;
}
.footer__top-column form p {
	margin-bottom: calc(24px + 24 * ((100vw - 375px) / 1545));
	font-weight: 500;
	font-size: 12px;
	letter-spacing: -0.02em;
	color: #99a5a3;
}
.footer__top-column form p a {
	text-decoration-skip-ink: none;
	color: #0da675;
}
.footer__top-column form p a:hover {
	text-decoration: underline;
}
.footer__middle {
	padding-bottom: calc(48px + 16 * ((100vw - 375px) / 1545));
	border-bottom: 1px solid #313232;
}
.footer__middle-row {
	justify-content: space-between;
	grid-template-columns: repeat(4, auto);
	gap: calc(32px + 32 * ((100vw - 375px) / 1545));
}
@media screen and (max-width: 1024px) {
.footer__middle-row {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (max-width: 575px) {
.footer__middle-row {
		grid-template-columns: 1fr;
	}
}
.footer__middle-column:first-child {
	grid-template-rows: 1fr auto;
}
@media screen and (max-width: 1024px) {
.footer__middle-column:first-child {
		grid-column: 1/4;
		grid-template-columns: 1fr auto;
	}
}
@media screen and (max-width: 575px) {
.footer__middle-column:first-child {
		grid-column: auto;
		grid-template-columns: 1fr;
		gap: 24px;
	}
}
.footer__middle-column:last-child ul:first-of-type {
	margin-bottom: calc(24px + 32 * ((100vw - 375px) / 1545));
}
.footer__middle-column h5 {
	font-weight: 600;
	font-size: 16px;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: calc(16px + 8 * ((100vw - 375px) / 1545));
}
.footer__middle-column ul li {
	margin-bottom: calc(16px + 8 * ((100vw - 375px) / 1545));
}
.footer__middle-column ul li:last-child {
	margin-bottom: 0px;
}
.footer__middle-column ul li:hover a {
	color: #fff;
}
.footer__middle-column ul li:hover u {
	opacity: 0.8;
}
.footer__middle-column ul li a {
	font-weight: 600;
	color: #99a5a3;
	transition: 0.2s;
}
.footer__middle-column ul li u {
	color: #0da675;
	transition: 0.2s;
}
@media screen and (max-width: 575px) {
.footer__socials {
		display: flex;
		justify-content: space-between;
	}
}
.footer__socials a {
	margin-right: 16px;
	transition: 0.2s;
}
.footer__socials a:hover {
	opacity: 0.8;
}
.footer__socials a:last-child {
	margin-right: 0px;
}
.footer__bottom {
	margin-top: calc(24px + 8 * ((100vw - 375px) / 1545));
}
@media screen and (max-width: 1024px) {
.footer__bottom-row {
		display: block;
	}
}
.footer__bottom-row p {
	max-width: 600px;
	font-weight: 500;
	font-size: calc(10px + 2 * ((100vw - 375px) / 1545));
	line-height: 167%;
	letter-spacing: -0.04em;
	color: #656c6c;
}
@media screen and (max-width: 1024px) {
.footer__bottom-row p:first-child {
		margin-bottom: 16px;
	}
}


