:root {
	--padding-x: 50px;
	--padding-y: 30px;
}

@font-face {
	font-family: 'Abdo Master';
	src: url('../fonts/AbdoMaster-Bold.woff') format('woff2'),
		url('../fonts/AbdoMaster-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Abdo Master';
	src: url('../fonts/AbdoMaster-Regular.woff2') format('woff2'),
		url('../fonts/AbdoMaster-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}



* {
	box-sizing: border-box;
}

body {
	background: #130c24;
	font-family: 'Abdo Master';
}

.wrapper {
	padding: 130px 0 93px;
	/*background: url(../img/bottom-bg.png) no-repeat bottom center;*/
}

.container {
	max-width: 515px;
	margin: auto;
	position: relative;
	text-align: center;
}

.moon-bg {
	position: absolute;
	top: -84px;
	left: -85%;
	width: 367px;
	height: 365px;
	z-index: -1;
}

#m1 {
	position: absolute;
	top: 14%;
	left: 37%;
}

#m2 {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -50%;
	margin-left: -50%;
}

.logo {
	margin-bottom: 24px;
}

.logo img {
	max-width: 371px;
	width: 100%;
}

h1 {
	margin-bottom: 24px;
	font-size: 31px;
	color: #ff001d;
	font-weight: bold;
}

p {
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 50px;
	color: #e9e9e9;
	padding: 0px 40px;
}

.cards {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 58px;
}



.card a {
	display: inline-block;
	border: 4px solid transparent;
	transition: 300ms all ease;
}
.card.selected a,
.card a:hover {
	border: 4px solid #ff001d;
	transition: 300ms all ease;
}

.card img {
	max-width: 100%;
	display: block;
}

.buttons {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.button--white {
	width: 345px;
	height: 52px;
	display: flex;
	margin: auto;
	align-items: center;
	justify-content: center;
	color: #989898;
	background: #e9e9e9;
	transition: 300ms all ease;
	border-radius: 30px;
	font-size: 32px;
	font-weight: normal;
	text-decoration: none;
}

.button--red {
	width: 142px;
	height: 40px;
	display: flex;
	margin: auto;
	align-items: center;
	justify-content: center;
	background: #ff001d;
	color: #ffffff;
	transition: 300ms all ease;
	border-radius: 30px;
	font-size: 18px;
	font-weight: normal;
	text-decoration: none;
}

.button--white:hover,
.button--red:hover {
	opacity: .8;
	transition: 300ms all ease;
}

@media (max-width: 767px) {
	.wrapper {
		padding: 60px 0;
	}

	.container {
		padding: 0 48px;
	}

	.moon-bg {
		position: absolute;
		top: -42px;
		left: -40%;
		width: 367px;
		height: 365px;
	}

	.moon-bg img {
		width: 270px;
	}

	.logo img {
		width: 200px;
	}

	h1 {
		font-size: 20px;
		width: 76%;
		margin: 0 auto 20px;
	}

	p {
		font-size: 16px;
		line-height: 22px;
		padding: 0;
	}

	.cards {
		flex-direction: column;
		gap: 32px;
	}

	.button--white {
		width: 270px;
		font-size: 18px;
		height: 40px;
	}

}