footer {
	opacity: 1;
	-webkit-border-top-left-radius: 25px;
	-webkit-border-top-right-radius: 25px;
	-moz-border-radius-topleft: 25px;
	-moz-border-radius-topright: 25px;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	margin-top: 10px;
}
footer .grid {
	grid-template-columns: 600px 1fr;
}
footer .main {
	grid-template-columns: 456px 1fr;
	grid-gap: 86px;
	margin: var(--margin) 080;
	font-size: 12px;
	line-height: 12px;
}
footer .menu {
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 39px;
	margin: var(--margin) 080;
	margin-bottom: 25px;
}
footer .main p {
	font-size: 15px;
	line-height: 20px;
	margin-bottom: 5px;
	color: white;
}
footer .menu ul {
	padding-top: 26px;
	line-height: 27px;
}
footer .menu li {
	font-size: 15px;
	opacity: 0.6;
}
footer .menu li.title {
	font-weight: 900;
	margin-top: 15px;
	color: white;
	opacity: 1;
	padding: 0;
}
footer .menu li.title:before {
	content: unset;
	display: none;
}
footer .name {
	color: white;
}
footer .name a {
	display: block;
	padding-bottom: 15px;
	-webkit-transition: padding 0.5s;
	-moz-transition: padding 0.5s;
	-ms-transition: padding 0.5s;
	-o-transition: padding 0.5s;
	transition: padding 0.5s;
	padding: 7px 0px;
	color: var(--color);
	text-transform: uppercase;
	font-weight: 700;
	font-size: 21px;
}
footer .name span {
	font-weight: 300;
	color: white;
}
footer .social ul {
	text-align: right;
	margin-bottom: 8px;
	left: 0;
	right: 0;
}
footer .social ul li {
	display: inline-block;
	margin-right: 2px;
	margin-left: 2px;
	text-align: center;
}
footer .social ul li a {
	display: block;
	position: relative;
	color: var(--color-darker);
	background: var(--dark);
	width: 36px;
	height: 36px;
	line-height: 36px;
	border-radius: var(--border-radius);
	font-size: 16px;
}
footer .social ul li img {
	height: 34px;
	opacity: 1;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	width: 34px;
	object-fit: contain;
}
footer .social ul li img:hover {
	opacity: .5
}
footer .social ul li a .tooltip {
	position: absolute;
	top: -24px;
	left: -18px;
	right: 0;
	width: 72px;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	font-size: 12px;
	color: white;
	background: black;
	border-radius: var(--border-radius);
	line-height: 20px;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s
}
footer .social ul li a:hover .tooltip {
	opacity: 1;
	visibility: visible
}
footer .copy {
	font-weight: 600;
	margin-bottom: 4px;
}
footer .note {
	font-size: 11px;
	opacity: 0.4;
	margin-bottom: 2px;
}
footer .legal {
	margin-bottom: 5px;
}
footer .legal .item {
	display: inline-block;
}
footer .legal a {
	color: var(--silver);
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	display: block;
	font-size: 11px;
	opacity: 0.4;
	margin-right: 4px;
	margin-top: 2px;
}
footer .legal a:hover {
	color: var(--color);
}
@media all and (max-width: 960px) {
	footer .grid {
		grid-template-columns: 1fr;
		text-align: center;
	}
	footer .social ul {
		text-align: center;
		margin-bottom: 15px;
	}
	footer .legal a {
		margin: 0 4px;
		padding: 5px;
		font-size: 13px;
	}
}
@media all and (max-width: 720px) {
	footer .main {
		padding: 10px 10px 5px;
	}
	footer .legal {
		margin: unset;
	}
}