* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

@font-face {
	font-family: 'Magistral';
	src: local('Magistral ExtraBold'), local('Magistral-ExtraBold'),
		url('Magistral-ExtraBold.woff2') format('woff2'),
		url('Magistral-ExtraBold.woff') format('woff'),
		url('Magistral-ExtraBold.ttf') format('truetype');
	font-weight: 800;
	font-style: normal;
}
:root {
	--color-background: #00142d;
	--color-icon-secondary: #b6b8c8;
	--color-text-secondary: #b6b8c8;
	--color-surface-secondary: #232a43;
	--color-outline-secondary: #363f63;
	--color-icon-accent: #c5e900;
	--color-surface-primary: #1b223c;
	--color-on-accent-secondary: #434915;
	--color-outline-primary: #454a6d;
	--color-surface-accent-secondary: #c5e900;
	--color-surface-accent-secondary-hovered: #b5d502;
	--color-text-primary: #f3f3f3;
}

body {
	font-family: 'Poppins', sans-serif;
	background: var(--color-background);
	padding: 32px 16px 54px 16px;
	color: var(--color-text-primary);
}
@media (min-width: 1024px) and (max-width: 1440px) {
	body {
		padding-top: 0;
		margin-top: 0;
	}
}

.container {
	max-width: 1138px;
	width: 100%;
	margin: 0 auto;
	padding: 0 16px;
}

.btn {
	color: var(--color-on-accent-secondary);
	text-align: center;
	font-feature-settings: 'liga' off, 'clig' off;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 100%;
	border-radius: 8px;
	background: var(--color-surface-accent-secondary);
	padding: 14px 36px;
	line-height: 1;
	display: flex;
	justify-content: center;
	max-width: -moz-fit-content;
	max-width: fit-content;
	transition: 0.3s color;
}
.btn:hover {
	background: var(--color-surface-accent-secondary-hovered);
}

.list {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
}
.list__item {
	display: flex;
	justify-content: center;
	align-items: center;
}

.header {
	padding: 22px 0;
}
@media (width <= 768px) {
	.header {
		padding: 0;
	}
}

.logo {
	display: flex;
	justify-content: center;
}
@media (min-width: 1024px) and (max-width: 1440px) {
	.logo img {
		width: 140px;
	}
}

.section__hero {
	background: url('hero-bg.png') center/cover no-repeat;
	margin-top: 32px;
	border-top-right-radius: 16px;
	border-top-left-radius: 16px;
	overflow: hidden;
	padding-top: 80px;
	padding-bottom: 52px;
}
@media (min-width: 1024px) and (max-width: 1440px) {
	.section__hero {
		padding: 30px 0;
		margin-top: 0;
	}
}
@media (width <= 992px) {
	.section__hero {
		padding: 54px 0;
	}
}
@media (width <= 768px) {
	.section__hero {
		padding: 32px 0;
	}
}

.hero__image {
	border: 2px solid var(--color-outline-secondary);
	border-radius: 16px;
	overflow: hidden;
	max-width: 1000px;
	margin: 0 auto;
}
@media (min-width: 1024px) and (max-width: 1440px) {
	.hero__image {
		max-width: 600px;
		margin: 0 auto;
	}
}
.hero__image img {
	max-width: 100%;
	width: 100%;
	height: auto;
	display: block;
}
.hero__title {
	text-align: center;
	font-weight: 800;
	line-height: 120%;
	text-transform: uppercase;
	font-size: 36px;
	color: #fff;
	font-family: 'Magistral';
	margin-top: 32px;
}
@media (min-width: 1024px) and (max-width: 1440px) {
	.hero__title {
		font-size: 30px;
	}
}
.hero__title span {
	color: var(--color-surface-accent-secondary);
}
@media (width <= 768px) {
	.hero__title {
		font-size: 24px;
	}
}
.hero__text {
	text-align: center;
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
	margin-top: 6px;
	font-size: 18px;
	color: #f3f3f3;
}
@media (width <= 768px) {
	.hero__text {
		font-size: 16px;
	}
}
.hero__btn {
	max-width: 446px;
	width: 100%;
	margin: 0 auto;
	margin-top: 24px;
}

.section__how {
	padding: 64px 0;
}
@media (width <= 992px) {
	.section__how {
		padding: 32px 0;
	}
}
.section__how.section__how-1 {
	background: linear-gradient(180deg, #232a43 0%, #1b223c 100%);
}
.section__how.section__how-2 {
	background: linear-gradient(
		180deg,
		#232a43 0%,
		#1b223c 39.9%,
		#1f2640 92.79%
	);
}

.how {
	padding: 32px 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
@media (width <= 768px) {
	.how {
		grid-template-columns: repeat(1, 1fr);
		gap: 24px;
	}
}
.how__item {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.how__image {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--color-outline-secondary);
}
.how__image-inner {
	max-width: 100%;
	width: 100%;
	height: auto;
}
.how__image-gradient {
	position: absolute;
	left: 0;
	bottom: 0;
	max-width: 100%;
	width: 100%;
	height: auto;
}
.how__title {
	font-size: 21px;
	font-style: normal;
	font-weight: 700;
	line-height: 130%;
}
.how__text {
	color: var(--color-text-secondary);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%; /* 18.2px */
}

footer {
	padding-top: 54px;
	background: var(--color-surface-primary);
	border-bottom-right-radius: 16px;
	border-bottom-left-radius: 16px;
}

.footer__container {
	padding: 8px 32px;
}
@media (width <= 768px) {
	.footer__container {
		padding: 8px 16px;
	}
}

.footer {
	border-top: 1px solid var(--color-outline-primary);
	padding: 16px 0;
}

.footer__list-partners-1 {
	display: flex;
	justify-content: center;
	padding: 16px 0;
	gap: 32px;
}
@media (width <= 480px) {
	.footer__list-partners-1 {
		flex-wrap: wrap;
		-moz-column-gap: 16px;
		column-gap: 16px;
		row-gap: 0;
	}
}

.footer__list-partners-2 {
	display: flex;
	justify-content: center;
	gap: 16px;
	padding: 16px 0;
}
@media (width <= 480px) {
	.footer__list-partners-2 {
		flex-wrap: wrap;
		gap: 16px;
	}
}

.footer__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	padding: 16px 0;
}
@media (width <= 992px) {
	.footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (width <= 560px) {
	.footer__grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 24px;
	}
}
.footer__item {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.footer__item-title {
	color: var(--color-text-secondary);
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 135%; /* 16.2px */
}
.footer__copy {
	color: var(--color-text-secondary);
	margin-top: auto;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 135%; /* 16.2px */
}

.povered__logo {
	max-width: 144px;
}

.brands__list {
	gap: 16px;
}

.social__list {
	gap: 8px;
}
.social__list li {
	transition: 0.3s scale;
}
.social__list li:hover {
	scale: 0.9;
} /*# sourceMappingURL=main.css.map */
