.site-footer {
	background-color: var(--bg-2b);
	padding: 8rem 0;
}

/* ==========================================================================
   Logo
   ========================================================================== */

.site-footer__logo {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
	gap: 4rem;
}

.site-footer__logo .site-branding img {
	height: 9.6rem;
	object-fit: contain;
}

.site-footer__logo .socials {
	display: flex;
	flex-wrap: wrap;
	gap: .8rem;
}

.site-footer__logo .socials .box {
	height: 4.8rem;
	width: 4.8rem;
	border-radius: 50%;
	background-color: var(--white-1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s ease;
}
.site-footer__logo .socials .box:first-of-type {
	background-color: var(--bg-1b);
}
.site-footer__logo .socials .box:hover {
	background-color: var(--color-1b);
}


.site-footer__logo .socials .box svg {
	fill: none;
	height: 2.4rem;
}

.site-footer__logo .socials .box svg path {
	stroke: var(--font-color-1b);
	stroke-width: 1.6px;
}

@media (max-width: 1199.98px) {
	.site-footer__logo {
		align-items: center;
	}
}

/* ==========================================================================
   Links
   ========================================================================== */

.site-footer__links {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
	gap: 4rem;
}

.footer-links-list {
	list-style: none;
	padding: 0;
	display: flex;
	gap: 1.6rem 4rem;
	flex-wrap: wrap;
	justify-content: start;
}

.site-footer__links .menu-item {
	margin-bottom: 1rem;
}
.site-footer__links .menu-item:last-child {
	margin-bottom: 0;
}

.site-footer__links .menu-item a {
	color: var(--white-1);
	display: inline-block;
	background-repeat: no-repeat;
	transition: all .2s;
	background-position: bottom left;
	background-size: 0% 1.2px;
	background-image: linear-gradient( var(--bg-1b), var(--bg-1b) );
	padding-bottom: 1px;
	font-family: var(--font-text);
	font-size: 1.6rem;
}
.site-footer__links .menu-item a:hover {
	background-size: 100% 1.2px;
}

.site-footer__links .menu-item.current_page_item a {
	color: var(--bg-1b);
}

.site-footer__links .text-s {
	color: var(--white-5);
}

.site-footer__links .link {
	color: var(--bg-1b);
	background-image: linear-gradient( var(--bg-1b), var(--bg-1b) );
}

/* ==========================================================================
   About
   ========================================================================== */

.site-footer__about .text {
	color: var(--white-5);
	margin-bottom: 3.2rem;
	font-size: 1.6rem;
}

.site-footer__about .text strong {
	color: var(--white-1);
}

.site-footer__about .flex {
	display: flex;
	gap: 1.2rem;
}

.site-footer__about .flex img {
	object-fit: contain;
	height: 4.2rem;
	min-width: 0;
	border-radius: var(--radius-2);
}

/* ==========================================================================
   Responisive
   ========================================================================== */

@media (max-width: 992px) {
	
	.footer-links-list {
		justify-content: start;
	}
	
	
	.site-footer__info {
		flex-direction: column-reverse;
		justify-content: start;
		gap: 1.6rem;
		padding-top: 2.4rem;
	}
	
	.site-footer__info > * {
		width: 100%;
	}
}


