@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,700;1,400&display=swap');

body {
	width: 100%;
	height: auto;
	min-height: 100vh;
	background: #000 url('../img/bg.jpg') no-repeat center right / cover;
	font-family: 'Exo', sans-serif, Helvetica;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	word-wrap: break-word;
	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: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

body:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 25.7%, rgba(0, 0, 0, 0.7) 68.65%);
	background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 25.7%, rgba(0, 0, 0, 0.7) 68.65%);
	background: -o-linear-gradient(180deg, rgba(0, 0, 0, 0) 25.7%, rgba(0, 0, 0, 0.7) 68.65%);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 25.7%, rgba(0, 0, 0, 0.7) 68.65%);
}

body * {
	position: relative;
	z-index: 1;
}

.header {
	text-align: center;
	padding-top: 4vh;
}

.logo {
	display: block;
	max-width: 381px;
	max-height: 181px;
	margin: auto;
}

.logo img {
	display: block;
}

.main {
	padding: 4.5vh 0 2vh;
}

.main ul li {
	font-size: 3.1vw;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	position: relative;
	padding: .8vw 20px .8vw 193px;
	line-height: 1.2;
	letter-spacing: 1.8px;
}

.text-yellow {
	color: #FFD14A;
}

.main ul li:before {
	content: '';
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 0;
	width: 193px;
	background: url('../img/li.svg') no-repeat center / cover;
}

.footer {
	text-align: center;
	padding-bottom: 2.5vh;
}

.footer__payment {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.footer__payment img {
	display: inline-block;
	vertical-align: middle;
	margin: 5px 1.1vw;
}

.footer__copy {
	margin-top: 1vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.footer__copy img {
	margin-right: 5px;
}

.footer__copy p {
	font-weight: 400;
	font-style: italic;
	font-size: 16px;
}