footer {
	width: 100%;
	height: auto;
	background: var(--darkColor);
	padding: 25px 50px;

	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.topPart {
	width: 100%;
	height: auto;
	padding: 20px;
}

.topPart ul {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;

	list-style: none;
}

.topPart ul li {
	margin: 5px 15px;
}

.topPart ul a {
	text-decoration: none;
	color: var(--white);
	font-size: 14.5px;
	font-weight: 700;
	/*font-family: mainFontBold;*/
	transition: .1s;
}

.topPart ul a:hover {
	color: var(--mainYellow);
}

.topPart p {
	color: var(--greyText);
	font-size: 15px;
	text-align: center;
	width: 600px;
	margin: 0 auto;
	margin-top: 15px;
}

.bottomPart {
	width: 100%;
	height: auto;
	padding: 20px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.nowadise {
	color: var(--white);
}

.nowadise a {
	font-size: 18px;
	text-decoration: none;
}

.nowadise a:hover {
	color: var(--mainYellow);
}

.socialWrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}

.socialWrapper a {
	text-decoration: none;
}

.socialWrapper a img {
	height: 20px;
	margin: 0 15px;
}

.otherInfo h6 {
	margin: 10px 0;
	color: var(--white);
	font-size: 15px;

	display: flex;
	align-items: center;
}

.otherInfo h6 img {
	height: 20px;
	margin-right: 7px;
}

/*media*/

@media (max-width: 828px) {

	.bottomPart {
		flex-direction: column-reverse;
		justify-content: center;
	}

	.socialWrapper {
		margin: 30px 0;
	}

}

@media (max-width: 768px) {

	footer {
		padding: 15px;
	}

	.topPart p {
		width: auto;
	}

}