#footer {
    position: relative;
    background-color: var(--neutral-color);
    padding: 80px 56px 36px 56px; 
    margin: 125px 48px 61px 48px;
}


/* Footer Image -------------------------------- */

.footer-image {
    position: absolute;
	right: 364px;
	bottom: -61px;
} 

.footer-image-mobile {
    position: absolute;
	right: 28px;
	top: -84px;
}

.single-blog .footer-image,
.footer-image-mobile,
.mobile-connect-icon {
    display: none;
}

.footer-image-top-left {
    position: absolute;
    display: none;
	left: 137px;
	top: -36px;
}

.single-blog .footer-image-top-left {
    display: block;
}

.footer-image-top-left img, 
.footer-image img,
.footer-image-mobile img {
	mix-blend-mode: multiply;
}

/* Footer Top -------------------------------- */

.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
    margin-bottom: 96px;
}

.footer-company-logo .mobile-logo {
    display: none;
}
 
/* Footer Menu -------------------------------- */

.footer-menu {
	display: flex;
	flex-direction: column; 
	font-weight: 700; 
}

.footer-menu div {
	margin-bottom: 16px;
}

.footer-menu div:last-child {
	margin-bottom: 0;
}

.footer-menu a { 
    position: relative;
    font-weight: 300;  
    text-transform: uppercase;
    line-height: 20px;
    letter-spacing: 1px;
	word-break: normal;
	word-wrap: normal;
    cursor: pointer;
}

.footer-menu a:after {
    position: absolute;
    transition: all ease-in-out .2s;
    background: none repeat scroll 0 0 var(--black);
    content: "";
    display: block;
    height: 1px;
    bottom: -1px;
    width: 0;
}

.footer-menu a:hover:after {
    width: 100%;
}

/* Footer Bottom -------------------------------- */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-credits {
    display: flex;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
}

.footer-social-links {
    display: flex;
    align-items: center;
}

.footer-social-links .footer-connect {
    display: flex;
    align-items: center;
    margin-right: 36px;
}
 
.footer-connect span {
    font-family: Sohne, sans-serif;
    font-size: 14px;
    line-height: 20px;
    margin-right: 5px;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-social-icons a {
    transition: all .2s ease-in-out;
}

.footer-social-icons a:hover {
    transform: scale(1.06);
}

.policy-harassment {
    margin-bottom: 20px;
}

.policy-harassment .policy-page-link {
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    margin: 0;
}


/*  Medium devices (tablets, less than 992px) */
@media (max-width: 992px) {  

    .footer-image,
    .single-blog .footer-image-top-left {
        display: none;
    }

    .footer-image-mobile {
        display: block;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 768px) {  }

/*  X-Small devices (portrait phones, less than 576px) */
@media (max-width: 576px) {  
    #footer { 
        padding: 40px 36px 48px 36px; 
        margin: 125px 0 28px 0;
    } 

    .footer-image-mobile,
    .mobile-connect-icon {
        display: block;
    }

    .footer-top {
        flex-direction: column-reverse;
        align-items: flex-start;
        margin-bottom: 33px;
    }

    .footer-company-logo .desktop-logo,
    .desktop-connect-icon,
    .footer-image,
    .single-blog .footer-image-top-left {
        display: none;
    }

    .footer-company-logo .mobile-logo {
        display: block;
        margin-bottom: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .footer-copyright {
        margin-bottom: 60px;
    }

    .footer-social-links .footer-connect {
        flex-direction: column; 
        align-items: flex-start;
    }

    .footer-connect span {
        margin-bottom: 20px;
    } 

    .footer-social-links {
        flex-direction: column;
        align-items: flex-start;
    } 

    .footer-social-icons { 
        margin-top: 44px;
    }

}