/* - Footer */
footer {
	font-size: 0.9rem;
	padding: 0;
	position: fixed;
	bottom: 50px;
	left: 50px;
	right: 50px;
	width: auto;
	height: 1px;
	z-index: 12;
	transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
}

footer .copy {
	position: absolute;
	left: 0;
	bottom: 0;
	line-height: 2;
	color: #bbb;
}

footer .social-media {
	position: absolute;
	right: 0;
	bottom: 0;
	float: right;
	width: 24px;
	transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
}

footer .social-media.hidden {
	opacity: 0;
	visibility: hidden;
}

footer .follow-links a {
	display: block;
	padding: 10px 0;
	text-align: center;
	color: #bbb;
	transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
}

footer .follow-links a:first-child {
	padding-top: 0;
}

footer .follow-links a:last-child {
	padding-bottom: 0;
}

footer .follow-links a .icon::before {
	width: 1.5rem;
	height: 1.5rem;
}

footer .follow-links a:last-child {
	margin-bottom: 0;
}

footer .follow-links a:hover {
	color: #FFF;
	opacity: 1;
}

footer .icon {
	position: relative;
	display: flex;
	align-items: center;
	text-decoration: none;
	gap: 8px;
}

footer .icon:before {
	width: 0.9rem;
	height: 0.9rem;
	background-color: #bbb;
}

footer .icon:hover:before,
footer a:hover .icon:before {
	background-color: #fff;
}

.follow-label {
	padding-right: 75px;
	position: absolute;
	bottom: 100%;
	right: 0;
	color: #bbb;
	line-height: 1.5rem;
	height: 1.5rem;
	white-space: nowrap;
	transform-origin: 100% 0;
	text-align: right;
	transform: rotate(90deg);
}

.follow-label:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 50px;
	height: 1px;
	background: #FFF;
}


/* section footer tablet */
@media (max-width: 1199px) {
	footer {
		padding: 0;
		position: absolute;
		bottom: 50px;
		top: auto;
		left: 50px;
		right: 50px;
		height: 1px;
	}

	footer .follow-label {
		display: none;
	}

	footer .social-media {
		text-align: center;
		position: absolute;
		left: auto;
		right: 0;
		top: auto;
		bottom: 0;
		float: right;
		width: 20px;
	}

	footer .follow-links a {
		display: block;
	}
}

/* section footer mobile */
@media (max-width: 720px) {
	footer {
		position: absolute;
		bottom: 30px;
		top: auto;
		left: 30px;
		right: 30px;
	}
}
