.footer-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: var(--container-max-width);
    margin: auto;
    gap: 33px;
}

.footer-3__logo {
	display: inline-block;
	line-height: 1;
}

.footer-3__logo img {
    width: 140px;
    height: auto;
}

.footer-3__menu ul {
    list-style-type: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.footer-3__menu a,
.footer-3__menu a:visited {
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    opacity: 0.7;
    transition: .3s opacity;
}

.footer-3__menu a:hover {
	opacity: 1;
}

.footer-3__social {
    display: flex;
    gap: 10px;
    align-items: center;
	margin-top: 5px
}

.footer-3__social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
	line-height: 1;
}

.footer-3__social-link,
.footer-3__social-link:visited {
    display: inline-block;
    line-height: 1;
    transition: .3 filter;
    filter: grayscale(40%);
}

.footer-3__social-link:hover {
	filter: grayscale(0);
}

.footer-3__social-link--ln {
	opacity: 0.85;
	transition: .3s opacity;
}

.footer-3__social-link--ln .footer-3__social-logo {
    height: 18px;
    width: auto;
    margin-right: 1.4rem;
    position: relative;
    top: 1px;
}

.footer-3__social-link--fb .footer-3__social-logo {
    height: 25px;
    width: auto;
}

.footer-3 .menu-item-has-children > a::after {
	content: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' focusable='false' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 448 448' style='enable-background:new 0 0 448 448;' xml:space='preserve' fill='%23000000B2'%3E%3Cpath d='M207,349.5L12.7,155.1c-9.4-9.4-9.4-24.6,0-33.9l12.7-12.7c9.4-9.4,24.5-9.4,33.9,0l164.7,164l164.7-164c9.4-9.3,24.5-9.3,33.9,0l12.7,12.7c9.4,9.4,9.4,24.6,0,33.9L241,349.5C231.6,358.8,216.4,358.8,207,349.5L207,349.5z'/%3E%3C/svg%3E");
	margin-left: 0.35em;
	display: inline-block;
	width: 8px;
	height: 8px;
	position: relative;
	top: -1px;
}

.footer-3 .sub-menu {
	display: none;
	position: absolute;
	background-color: #fff;
	text-align: left;
	box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 30%);
	z-index: 20;
	padding: 5px 12px!important;
	border-radius: 10px;
	left: 12px;
	top: 23px;
	width: 150px;
	font-size: 11px;
}

.footer-3 .sub-menu-active {
    display: inline-block;
}

.footer-3 .sub-menu li {
	padding: 4px 0;
	margin: 0;
	display: block;
}

.footer-3 .sub-menu a,
.footer-3 .sub-menu a:visited {
	font-weight: normal;
	font-size: 1em;
	padding: 2px 0;
	line-height: 1.3;
	color: #000000;
}

@media (min-width: 600px) {
	.footer-3 {
		align-items: flex-start;
	}

	.footer-3__menu ul {
	    text-align: left;
	}
}

@media (min-width: 1024px) {
    .footer-3 {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

	.footer-3__logo img {
		width: 19.2rem;
	}

    .footer-3__menu ul {
        flex-direction: row;
        gap: 2.5rem;
    }

	.footer-3__social {
		margin-top: 0;
	}

	.footer-3__social-link--ln:hover {
		opacity: 1;
	}
}

@media (min-width: 1300px) {
    .footer-3 {
        padding: 0 var(--container-padding-horizontal);
    }  
}

@media (min-width: 1400px) {
	.footer-3__social-link--ln .footer-3__social-logo {
	    height: 20px;
	    margin-right: 1.6rem;
	}
	
	.footer-3__social-link--fb .footer-3__social-logo {
	    height: 26px;
	}
}

@media (min-width: 1600px) {
	.footer-3__social-link--ln .footer-3__social-logo {
	    height: 21px;
	    margin-right: 1.85rem;
	}
	
	.footer-3__social-link--fb .footer-3__social-logo {
	    height: 28px;
	}
}