*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	height: 100%;
	font-family: "Manrope", sans-serif;
	margin: 0;
}

img {
	display: block;
}

.no-scroll {
	overflow-y: hidden;
}

.main-page {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* Header */

.header {
	height: 73px;
	border-bottom: 1px solid #e5e9f2;
}

.header-container {
	max-width: 1110px;
	margin: 22.5px auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0px 15px;
}

.logo {
	margin-right: 40px;
}

.nav {
	font-weight: bold;
	font-size: 14px;
	line-height: 1;
	color: #18191f;
}

.nav-link {
	text-decoration: none;
	color: #18191f;
	margin-right: 32px;
}

.nav-link:hover {
	color: #8c30f5;
}

.nav-button {
	position: relative;
	z-index: 9;
	display: none;
	background: none;
	height: 25px;
	border: none;
	padding: 0;
	cursor: pointer;
	padding-left: 15px;
}

.nav-button-icon {
	position: relative;
	display: block;
	border: none;
	background-color: #000;
	width: 40px;
	height: 5px;
}

.nav-button:focus .nav-button:active {
	outline: none;
}

.nav-button-icon::before {
	position: absolute;
	left: 0;
	top: -10px;
	content: "";
	display: block;
	width: 40px;
	height: 5px;
	background-color: #000;
}

.nav-button-icon::after {
	position: absolute;
	left: 0;
	bottom: -10px;
	content: "";
	display: block;
	width: 40px;
	height: 5px;
	background-color: #000;
}

.nav-button-close .nav-button-icon {
	background-color: transparent;
}

.nav-button-close .nav-button-icon::before {
	transform: rotate(45deg);
	top: 0;
}

.nav-button-close .nav-button-icon::after {
	transform: rotate(-45deg);
	top: 0;
}

.mobile-nav {
	position: fixed;
	z-index: 8;
	top: 0;
	right: 0;

	/* display: flex; */
	display: none;
	flex-direction: column;
	justify-content: space-between;

	width: 320px;
	height: 100%;
	padding: 70px 70px 50px 30px;
	background-color: rgba(10, 30, 40, 0.8);
}

.mobile-nav .nav{
	display: block;
}

.mobile-nav .nav ul {
	flex-direction: column;
}

.mobile-nav .nav ul li {
	margin: 0;
	margin-bottom: 25px;
	list-style-type: none;
}

.mobile-nav .nav ul li a {
	text-decoration: none;
	color: #ffffff;
	font-size: 18px;
}

.appstore {
	margin-left: auto;
	display: flex;
}

.appstore-item {
	margin-left: 12px;
}

.appstore-item:first-child {
	margin-left: 0px;
}

.appstore-mobile {
	display: flex;
}

/* Main */

.main {
	/* main */
}

.main-container {
	max-width: 1110px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;

	padding-top: 197px;
	padding-bottom: 197px;
	padding-right: 15px;
	padding-left: 15px;
}

.main-content {
	max-width: 540px;
}

.main-img img {
	width: 100%;
    height: auto;
}

.main-title {
	margin: 0;
	color: #18191f;
	font-weight: 800;
	font-size: 72px;
	line-height: 1.36;
}

.main-text {
	margin-bottom: 32px;
}
.main-text p {
	margin-bottom: 16px;
	line-height: 1.78;
	font-size: 18px;
}

.btn {
	display: inline-block;
	height: 62px;
	background: #8c30f5;
	border-radius: 8px;

	padding-left: 35px;
	padding-right: 35px;

	font-weight: bold;
	line-height: 62px;
	color: #ffffff;
	text-decoration: none;
}

btn:hover {
	opacity: 0.8;
}

/* Footer */

.footer {
	height: 72px;
	background: #0b0d17;
	color: #d9dbe1;

	display: flex;
	align-items: center;
	padding-bottom: 20px;
}

.foter-container {
	max-width: 1110px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 15px;
}

.footer-copyright {
	font-size: 14px;
}

.footer-socials {
	display: flex;
}

.footer-socials-item {
	margin-left: 16px;
}
