.footer {
	background: var(--mono-white, #FFF);
	border-top: 1px solid var(--mono-E2E2E2, #E2E2E2);
	padding: 30px 30px 50px;
}

.footer__inner {
	display: flex;
	flex-direction: column;
	gap: 48px;
	margin-inline: auto;
	max-width: 1000px;
	width: 100%;
}

.footer__head {
	align-items: center;
	display: flex;
	flex-direction: row;
	gap: 20px;
	justify-content: space-between;
}

.footer__nav {
	color: var(--mono-333333, #333);
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	font-weight: 500;
	gap: 10px 20px;
	line-height: 120%;
}

.footer__nav a {
	transition: 0.3s;
}

.footer__nav a:hover {
	cursor: pointer;
	opacity: 0.7;
}

.footer__logos {
	align-items: center;
	display: flex;
	gap: 10px;
}

.footer__logos a {
	display: block;
	transition: 0.3s;
	width: 130px;
}

.footer__logos a:hover {
	cursor: pointer;
	opacity: 0.7;
}

.footer__copyright {
	color: var(--mono-333333, #333);
	font-size: 10px;
	font-weight: 500;
	line-height: 120%;
}

.footer__copyright small {
	font-size: 100%;
}

.gototop {
	background: rgba(51, 51, 51, 0.8);
	border-radius: 100px;
	bottom: 15px;
	display: grid;
	height: 45px;
	place-items: center;
	position: fixed;
	right: 15px;
	transition: 0.3s;
	width: 45px;
	z-index: 10;
}

.gototop:hover {
	cursor: pointer;
	opacity: 0.7;
}

.gototop img {
	display: block;
	width: 12px;
}

@media screen and (max-width: 767px) {

.footer {
	padding: 39px 15px 30px;
}

.footer__inner {
	gap: 30px;
	margin: 0 auto;
	max-width: 500px;
	width: 100%;
}

.footer__head {
	align-items: flex-start;
	flex-direction: column;
	gap: 30px;
	justify-content: flex-start;
}

.footer__nav {
	gap: 20px 30px;
	justify-content: center;
}

.footer__logos a {
	width: 108px;
}

}

