
/* Footer */

footer {
	position: relative;
	width: 100vw;
	background: var(--main-color);
	padding-bottom: var(--header-padding);
}

.footer__wrapper {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.footer__wrapper--inner {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.wrapper__inner--element {
	margin-top: 35px;
	width: 340px;
}

#footer__logo {
	width: 260px;
	margin-bottom: 40px;
}

.footer__block--title {
	display: block;
	color: white;
	margin-bottom: 40px;
	text-transform: uppercase;
	font-weight: 400;
}

.footer__logo--text {
	font-weight: 300;
	color: white;
}

.footer__location--text {
	font-weight: 300;
	color: white;
	width: 250px;
	font-size: 14px;
	margin-left: 10px;
}

.footer__item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	font-weight: 300;
	color: white;
}

.footer__item--text {
	color: white;
	margin-left: 15px;
	font-weight: 300;
}

.footer__item--text-small {
	font-weight: 300;
	color: white;
	width: 50px;
	font-size: 14px;
	margin-left: 15px;
}

.footer__link:hover {
	color: var(--accent-color);
	transition: 0.4s;
}

.footer__icon {
	width: 50px;
}

#footer__copyright {
	display: flex;
	justify-content: center;
	margin-top: 30px;
	color: white;
}

#footer__separator--line {
	height: 1px;
	background-color: white;
	width: 100%;
	margin-top: 30px;
	margin-bottom: 30px;
}


@media only screen and (max-width: 1930px) {
	footer {
		padding-left: 35px;
		padding-right: 35px;
		font-size: 17px;
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.footer__wrapper--inner {
		max-width: var(--container-max-width);
	}
	
	#footer__logo {
		width: 260px;
		margin-bottom: 40px;
	}

	.footer__icon {
		width: 40px;
	}

	.footer__item--text-small {
		width: 45px;
		font-size: 12px;
		margin-left: 15px;
	}
}

@media only screen and (max-width: 900px) {
	footer {
		font-size: 15px;
	}

	#footer__logo {
		width: 220px;
	}

	.footer__item--text-small {
		font-size: 12px;
	}

	.footer__icon {
		width: 30px;
	}

	.footer__block--title {
		margin-bottom: 20px;
	}

	.footer__location--text {
		width: 100%;
	}
}