.app-footer {
	background: #1f4544;
	padding: 45px 20px;
}

.app-footer-nav-box {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: 85px;
}

.app-footer-nav-box__item {
	color: #fff;
	flex: 1;
}

.app-footer-list-name {
	font-family: Rubik;
	font-weight: 600;
	font-style: SemiBold;
	font-size: 20px;
	margin-bottom: 20px;
}

.app-footer-list {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.app-footer-list__item {
	padding: 3px;
}

.app-footer-list__link {
	font-family: Rubik;
	font-size: 16px;
	color: #fff;
	text-decoration: none;
	transition: 0.3s;
}

.app-footer-list__link:hover {
	text-decoration: underline;
}

.app-footer-info {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
}

.app-footer-info-about {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.app-footer-logo {
	max-width: 100px;
}

.app-footer-info__copyright {
	font-size: 15px;
	color: #fff;
}

.app-footer-info__store {
}

.app-footer-info__store-text {
	font-weight: 300;
	font-style: Light;
	font-size: 26px;
	margin-bottom: 16px;
	color: #fff;
}

.app-footer-store-box {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 10px;
}

[dir="rtl"] .app-footer-list-name,
[dir="rtl"] .app-footer-info__store-text,
[dir="rtl"] .app-store-link__name,
[dir="rtl"] .app-footer-list__item {
    text-align: right;
}

/* @media (max-width: 769px) {
} */
@media (max-width: 1200px) {
	.app-footer-info__store-text {
		font-size: 20px;
	}
}

@media (max-width: 768px) {
	.app-footer-nav-box {
		flex-direction: column;
		text-align: center;

		gap: 30px;
	}

	.app-footer-logo {
		margin-bottom: 20px;
	}

	.app-footer-info {
		flex-direction: column;
		gap: 20px;
	}

	.app-footer-info-about {
		order: 2;
		text-align: center;
		align-items: center;
		justify-content: center;
	}

	.app-footer-info__store-text {
		text-align: center;
	}

	.app-footer-store-box {
		flex-direction: column;
	}
}
