.footer {
	padding: 60px 0 0;
	color: rgba(255, 255, 255, 0.8);
	background: var(--dark);
}

.footer-inner {
	display: grid;
	grid-template-columns: 1.6fr 1.2fr 1.2fr;
	gap: 60px;
}

.footer-logo-link {
	display: inline-block;
}

.footer-logo {
	width: auto;
	height: 50px;
	margin-bottom: 16px;
}

.footer-about p {
	max-width: 500px;
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.7;
}


/* Social */

.footer-social {
	display: flex;
	gap: 10px;
}

.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 38px;
	height: 38px;

	color: rgba(255, 255, 255, 0.8);
	background: rgba(255, 255, 255, 0.1);

	border-radius: 50%;
}

.footer-social a:hover {
	padding-left: 0;
	color: var(--white);
	background: var(--green);
}


/* Titles */

.footer-col h4 {
	position: relative;

	margin: 0 0 20px;
	padding-bottom: 10px;

	color: var(--white);

	font-size: 17px;
}

.footer-col h4::after {
	content: '';

	position: absolute;
	bottom: 0;
	left: 0;

	width: 30px;
	height: 2px;

	background: var(--green);
}


/* Menu */

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 10px;

	margin: 0;
	padding: 0;

	list-style: none;
}

.footer-col a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

/* Menu */

.footer-menu {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(120px, 1fr));
	column-gap: 35px;
	row-gap: 10px;

	margin: 0;
	padding: 0;

	list-style: none;
}

.footer-menu li {
	margin: 0;
}

.footer-menu a {
	display: inline-block;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

.footer-menu a:hover {
	color: var(--green-light);
}


/* Contacts */

.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 8px;

	color: rgba(255, 255, 255, 0.7);

	font-size: 14px;
	line-height: 1.6;
}

.footer-contact i {
	flex-shrink: 0;

	margin-top: 4px;

	color: var(--green);

	font-size: 14px;
}

.footer-contact a {
	font-size: 14px;
}

.footer-contact a:hover {
	color: var(--green-light);
}


/* Bottom */

.footer-bottom {
	margin-top: 40px;
	padding: 20px 0;

	border-top: 1px solid rgba(255, 255, 255, 0.1);

	font-size: 13px;
}

.footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-bottom-inner p {
	margin: 0;
}

.footer-legal-links {
	display: flex;
	align-items: center;
	gap: 14px;
}

.footer-legal-links a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
}

.footer-legal-links a:hover {
	color: var(--green-light);
}

.footer-legal-links .sep {
	color: rgba(255, 255, 255, 0.3);
}


/* Mobile */

@media (max-width: 900px) {

	.footer-inner {
		grid-template-columns: repeat(2, 1fr);
	}
}


@media (max-width: 600px) {

	.footer {
		padding-top: 45px;
	}

	.footer-inner {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.footer-bottom-inner {
		align-items: flex-start;
		flex-direction: column;
	}
}
/* ===== SCROLL TOP ===== */
.scroll-top {
	position: fixed;
	right: 25px;
	bottom: 25px;
	z-index: 9998;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 44px;
	height: 44px;

	padding: 0;

	color: #fff;
	background: var(--green);

	border: 0;
	border-radius: 50%;

	font-size: 15px;

	cursor: pointer;

	opacity: 0;
	visibility: hidden;

	transform: translateY(15px);

	transition:
		opacity 0.3s ease,
		visibility 0.3s ease,
		transform 0.3s ease,
		background 0.3s ease;

	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scroll-top:hover {
	background: var(--green-dark);
	transform: translateY(-2px);
}
@media (max-width: 768px) {

	.scroll-top {
		right: 15px;
		bottom: 20px;

		width: 42px;
		height: 42px;
	}
}