*, *:before, *:after {
	box-sizing: border-box;
}

body, html {
	margin: 0;
	padding: 0;
	font-family: 'Oswald', Trebuchet MS, Comic Sans MS, sans-serif;
	line-height: 1.6;
    overflow-x: hidden;
}

body img, html img {
	width: auto;
	height: auto;
}

h1, h2, h3, h4, h5, h6, p {
	margin: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

/* Header
====================*/
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;

	width: 100%;
	height: 60px;
	
	background-color: #000;

	position: fixed;
	z-index: 1000;
}

.header__logo {
	padding: 14px 20px 14px 40px;

	font-size: 20px;
	font-weight: 500;
	color: #fff;
	
	text-decoration: none;
}

/* Nav
====================*/
.nav {
	display: flex;
	
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
}

.nav__link {
	padding: 18px 40px 18px 20px;

	color: #fff;
	text-decoration: none;

	transition: color 0.1s linear;
}

.nav__link:hover {
	color: #ffb300;
}

/* Menu__Toggle
====================*/
.menu__toggle {
	display: none;
	padding: 29px 20px 29px 40px;

	background: none;
	border: 0;
}

.toggle__item {
	display: block;

	width: 25px;
	height: 2px;

	background-color: #fff;

	position: relative;
}

.toggle__item:before,
.toggle__item:after {
	content: "";
	width: 100%;
	height: 100%;

	background-color: #fff;

	position: absolute;
	left: 0;
	z-index: 1;
}

.toggle__item:before {
	top: -8px;
}

.toggle__item:after {
	bottom: -8px;
}

/* Intro
====================*/
.intro {
  	height: calc(var(--vh, 1vh) * 100);
    margin-bottom: -3px;

    background-color: #dce6ff;

	display: flex;
	flex-direction: column;
	justify-content: space-between;

	text-transform: uppercase;
	text-align: center;
}

.intro__logo {
	margin: 120px auto 0;

	width: 100%;
	max-width: 400px;
}

.intro__text {
	margin-bottom: 30px;
}

.intro__title {
	color: #002850;
	font-size: 40px;
	font-weight: 500;
}

.intro__subtitle {
	color: #002850;
	font-size: 30px;
	font-weight: 400;
}

/* Section
====================*/
.section {
	padding: 200px 0 80px;
	
	background-color: #002850;
	border-top: 3px solid #ffb300;
}

.section__header {
	margin-bottom: 30px;
    padding: 0 40px;

	width: 100%;

	text-align: center;
}

.section__suptitle {
	font-size: 35px;
	font-weight: 500;
	color: #ffb300;
	text-transform: uppercase;
}

.section__suptitle:after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	margin: 20px auto;

	background-color: #fff;
}

.section__title {
	margin-bottom: 20px;

	font-size: 22px;
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
}

.section__text {
	margin: 0 auto;
	
	max-width: 400px;
	
	font-size: 18px;
	font-weight: 400;
	color: #fff;
}

/* Game__icon
====================*/
.game__icon {
	margin: 40px auto 30px;

	width: 100%;
	max-width: 220px;
	
	border: 4px solid orange;
	border-radius: 60px;
}

/* Market__section
====================*/
.section__img {
	justify-content: center;
	align-items: center;
}

.appstore {
	margin-right: 10px;

	width: 100%;
	max-width: 135px;
}

.googleplay {
	width: 100%;
	max-width: 150px;
}

/* News
====================*/
.news__inner {   
    margin: 0 auto;
    padding: 0 40px;
	display: flex;
	flex-wrap: wrap;	
	width: 100%;
    max-width: 800px;

	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	text-align: left;
}

.news__item {
	margin-bottom: 30px;

	width: 48%;

	background-color: #fff;
	border: 3px solid #000;
}

.news__item.odd {
	margin-right: 4%;
}

.news__item.even {
	margin-right: 0;
}

/* News__img
====================*/
.news__img {
	margin: 0 auto;

	width: 100%;

	border-bottom: 3px solid #000;
}

.news__img.h {
	height: 100%;
	max-height: 165px;
}

/* News__text
====================*/
.news__title {
	padding: 5px 10px;

	display: flex;

	color: #000;
}

.news__data {		
	padding-left: 10px;
	color: #b43232;
}

.news__text {
	padding: 0 10px 10px;

	width: 100%;
	max-width: 220px;

	color: #000;
}

/* Privacy__Policy 
====================*/
.content {
	margin: 0 auto;
	padding-top: 90px;
	padding-bottom: 30px;
	
	width: 40%;

	font-weight: 400;
	color: #000;
	text-align: left;
}

/* Media
====================*/
@media (max-width: 1600px) {
	/* Privacy__Policy 
	====================*/
	.content {
		width: 40%;
	}
}

@media (max-width: 1024px) {
	/* Privacy__Policy 
	====================*/
	.content {
		width: 60%;
	}
}

@media (max-width: 767px) {
	/* Header
	====================*/
	.header__logo {
		padding-left: 20px;
	}

	/* Nav
	====================*/
	.nav {
		display: none;
		width: 100%;
		height: 100vh;
		flex-direction: column;

		background-color: #000;
		
		font-size: 25px;
		text-align: left;

		position: absolute;
		top: 100%;
		right: 0;
	}
	
	.nav.show {
		display: flex;
	}

	.no-scroll {
		overflow: hidden;
	}

	.nav__link {
		padding: 30px 40px;
	}

	/* Menu__Toggle
	====================*/
	.menu__toggle {
		display: block;
	}
	
	/* Intro
	====================*/
	.intro__logo { 		
		height: 190px;
		width: auto;
	}

	.intro__title {
		font-size: 35px;
	}

	.intro__subtitle {
		font-size: 25px;
	}
	
	/* Section
	====================*/
	.section {
		padding: 100px 0 30px;
	}

	.section__text {		
		font-size: 15px;
	}

	/* News
	====================*/
	.news {
		padding: 100px 0 30px;
	}

	.news__item {
		width: 100%;
	}
	
	.news__item.odd {
		margin-right: 0;
	}
	
	/* Privacy__Policy 
	====================*/
	.content {
		width: 80%;
	}
}


/* Footer
====================*/
.footer {	
	padding: 30px 20px 180px;
    display: flex;
    flex-direction: column;
	border-top: 3px solid #ffb300;
	background-color: #000;
	line-height: 1;
    color: #fff;
}

.footer_content {
	margin: 0 40px;
}

.footer_socialMediaMenu {
    margin-bottom: 30px;
    display: flex;
    align-content: space-between;
}

.footer_socialMediaMenu h5 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 400;
}

/* Social
====================*/
.footer_socialMediaLinks {
    flex-grow: 1;
}

.footer_socialMediaList {
	display: flex;
    flex-wrap: wrap;    
    gap: 15px;
    width: 100%;
    justify-items: center;
    align-items: center;
}

.social_item {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;

	background-color: transparent;
	border: 1px solid #fff;

	transition: background .1s linear;
}

.social_item:last-child {
	margin-right: 0;
}

.social_item:hover {
	background-color: #fff;
}

.social_item svg {
	display: block;
	height: 25px;
	fill: rgb(255 255 255 / 80%);

	transition: fill .1s linear;
}

.social_item:hover svg {
	fill: #000;
}

.footer_storeLinks {
    line-height: 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer_storeLinks img {
    width: revert-layer;
	max-width: 100%;
}

/* Footer__menu
====================*/
.footer_menu {
	padding: 20px 0;
	border-top: 1px solid #fff;
}

.footer_menuItems {
    margin: 0 10px;
	display: flex;
    gap: 30px;
    font-size: 17px;
    font-weight: 400;
}

/* Footer__end
====================*/
.footer_end {
    display: flex;
    align-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
	border-top: 1px solid #ffffff80;
}

.footer_address {
    margin: 10px 0 0 10px;
    flex-grow: 1;
    font-style: normal;
    color: #ffffff80;
}

.footer_address span {
    margin-bottom: 10px;
    display: block;
}

.footer_address span:last-child {
    margin-bottom: 0;
}

.footer_logo {
	margin-top: -1px;
	height: 90px;
	background-color: #fff;
}

.footer_end a {
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 789px) {
	/* Footer
	====================*/
    .footer {
        padding-bottom: 40px;
    }

    .footer_content {
        margin: 0 10px;
    }

	.footer_socialMediaMenu {
		flex-direction: column;
        gap: 20px;
	}

    .footer_storeMenu {
        padding-top: 24px;
        border-top: 1px solid #ffffff;
    }

	/* Footer__menu
	====================*/
	.footer_menuItems {
        flex-direction: column;
        gap: 25px;
    }
    
	/* Footer__end
	====================*/
	.footer_logo {
		height: 65px;
	}
}
