@font-face {
	font-family: 'CoFoSans-Regular';
	src: url('../fonts/cofosans-regular.eot'); /* IE 9 Compatibility Mode */
	src: url('../fonts/cofosans-regular.eot?#iefix') format('embedded-opentype'),
		/* IE < 9 */ url('../fonts/cofosans-regular.woff2') format('woff2'),
		/* Super Modern Browsers */ url('../fonts/cofosans-regular.woff')
			format('woff'),
		/* Firefox >= 3.6, any other modern browser */
			url('../fonts/cofosans-regular.ttf') format('truetype'),
		/* Safari, Android, iOS */
			url('../fonts/cofosans-regular.svg#cofosans-regular') format('svg'); /* Chrome < 4, Legacy iOS */
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'CoFoSans-Regular';
}
body {
	background: #360b0b;
	color: #fff;
}
.container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 20px;
}
.header {
	padding: 25px 0;
	background: #2b0000;
	position: sticky;
	top: 0;
	z-index: 100;
}
.header__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}
.header__item {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.header__btn {
	border-radius: 4px;
	padding: 10px 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: #fff;
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	border: 1px solid #ff2400;
	transition: all 0.3s ease;
}

.header__btn.border {
	background: linear-gradient(180deg, #fecaca 0%, #fe8181 100%);
	border-width: 2px, 2px, 6px, 2px;
	border-style: solid;
	border-color: #323232;
	box-shadow: 0px 1px 6px 0px #fe8181;
}

.header__btn.fill {
	background: linear-gradient(180deg, #d6cafe 0%, #9e81fe 100%);
	border-width: 2px, 2px, 6px, 2px;
	border-style: solid;
	border-color: #323232;
	box-shadow: 0px 1px 6px 0px #9e81fe;
}

.main {
	padding: 60px 0;
}
.main h1 {
	font-weight: 600;
	font-size: 32px;
	line-height: 44px;
	margin: 0 0 20px 0;
	text-align: center;
}
.main h2 {
	font-weight: 600;
	font-size: 26px;
	line-height: 38px;
	margin: 0 0 20px 0;
}
.main h3 {
	font-weight: 600;
	font-size: 20px;
	line-height: 32px;
	margin: 0 0 20px 0;
}
.table {
	max-width: 100%;
	overflow: auto;
	margin: 0 0 30px 0;
}
.table table {
	width: 100%;
	border-collapse: collapse;
}
.table table tr {
	display: flex;
	background: #2b0000;
	border-radius: 8px;
}
.table table tr:nth-child(2n) {
	background: none;
}
.table table td {
	width: 50%;
	padding: 10px 15px;
}
.img-cov {
	max-width: 100%;
	margin: 0 0 20px 0;
}
.img-cov img {
	width: 100%;
}
.main p {
	font-size: 16px;
	font-weight: 300;
	line-height: 24px;
	margin: 0 0 15px 0;
}
.main ul {
	margin: 0 0 20px 0;
	padding: 0 0 0 30px;
}
.footer {
	padding: 30px 0;
	background: #2b0000;
}
.footer__wrapper {
	padding: 20px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
	border-bottom: 1px solid #5c5b5e;
}

.footer__info {
	padding: 20px 0;
	display: flex;
	align-items: center;
	gap: 20px;
}

@media (max-width: 768px) {
	.header__wrapper {
		flex-direction: column;
	}
	.footer__wrapper {
		flex-wrap: wrap;
	}
	.footer__info {
		flex-direction: column;
	}
}

.main .cards {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	padding: 30px 0;
}
.main .cards .card {
	flex: 1;
	border-radius: 1.25vw;
	padding: 7vh 2.7083333333vw;
	color: #fff;
	position: relative;
}
.main .cards .card::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 300px;
	height: 300px;
}
.main .cards .card:nth-child(1) {
	background: url('/assets/images/main/card-1.webp') center/cover no-repeat;
}
.main .cards .card:nth-child(1)::before {
	content: '';
	background: linear-gradient(110.74deg, #000000, rgba(255, 34, 0, 0.67));
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	border-radius: 1.25vw;
}
/* .main .cards .card:nth-child(1)::after {
	background: url("/assets/images/main/card-1.png") center/cover no-repeat;
  } */
.main .cards .card:nth-child(2) {
	background: url('/assets/images/main/card-2.webp') center/cover no-repeat;
	border-radius: 1.25vw;
}
/* .main .cards .card:nth-child(2)::before {
	content: "";
	background: linear-gradient(110.74deg, rgba(0, 207, 166, 0), rgba(0, 207, 166, 0.79));
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
	border-radius: 1.25vw;
  } */
/* .main .cards .card:nth-child(2)::after {
	background: url("/assets/images/main/card-2.webp") center/cover no-repeat;
  } */
.main .cards .card__content {
	max-width: 50%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	position: relative;
	z-index: 1;
}
.main .cards .card__title {
	font-size: 30px;
	font-weight: 600;
}
.main .cards .card__title .bold {
	font-weight: 800;
	font-size: 40px;
}
.main .cards .card__title .gold {
	background: #ff00dd;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 45px;
	font-weight: 800;
}
.main .cards .card__btn {
	background: linear-gradient(180deg, #d6cafe 0%, #9e81fe 100%);
	border-radius: 4px;
	border-width: 2px, 2px, 6px, 2px;
	border-style: solid;
	border-color: #323232;
	box-shadow: 0px 1px 6px 0px #9e81fe;
	padding: 15px 55px;
	color: #fff;
	animation: glowing 1300ms infinite;
	text-decoration: none;
	text-align: center;
}
.main .cards .card__btn-right {
	background-color: #ff2400;
}
.main .cards .card__btn:hover {
	background-color: #ff4c00;
}
.main .cards .card__btn-right:hover {
	background-color: #04cfaa;
}
@media screen and (max-width: 1024px) {
	.main .cards {
		flex-direction: column;
	}
}
.footer__wrapper nav ul {
	list-style: none;
	display: flex;
	justify-content: center;
	gap:15px;
	flex-wrap: wrap;
}
.footer__wrapper nav ul a {
	color:#fff;
	text-decoration: none;
}