/***************************************************************************
* Footer
****************************************************************************/
.footer {
	padding-top: 2rem;
	padding-bottom: 2rem;
    overflow: hidden;
    color: #000000;
}
.footer .svg_wrapper svg path {
    fill: #000000;
}

.footer:after {
    content: ''; position: absolute;
    width: 130%; height: 150%;
    top: 50%; left: 30%;
    transform: translateY(-50%);
    background: linear-gradient(270deg, rgba(98, 195, 208, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-position: 50% 50%;
    mask-position: 50% 50%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-image: url(../img/logo-icon.svg);
    mask-image: url(../img/logo-icon.svg);
    -webkit-mix-blend-mode: multiply;
    -moz-mix-blend-mode: multiply;
    -ms-mix-blend-mode: multiply;
    -o-mix-blend-mode: multiply;
    mix-blend-mode: multiply;
    opacity: 0.5;
    pointer-events: none;
}

@media screen and (min-width:64em){
    .footer:after {
        left: 0;
        width: 50%;
    }
}


/***************************************************************************
* Menu
****************************************************************************/
.footer li {
    list-style: none;
    padding: 0.75rem 0;
}
.footer .contact_column li {
    padding: 0.875rem 0;
}
.footer a {
    line-height: 1.5;
}

.footer .menu .menu-item a {
    padding-left: 0;
}

.footer li a:hover,
.footer li a:focus {
	text-decoration: underline;
}


.contact_column a,
.contact_column a[href*="tel"],
.contact_column a[href*="maps"],
.contact_column a[href*="mailto"]{
	padding-left: 2rem;
	position: relative;
	display: inline-block;
}
.contact_column a:before,
.footer a[href*="tel"]:before,
.footer a[href*="maps"]:before,
.footer a[href*="mailto"]:before{
	content: ''; position: absolute;
	top: 50%; left: 0; transform: translate(0,-50%);
	width: 1.25rem; height: 1.25rem;
	background-color: currentcolor;
	mask-position: 50% 50%;
	mask-size: contain;
	mask-repeat: no-repeat;
}
.contact_column a:before {
	mask-image: url(../img/arrow-down-circle.svg);
}
.footer a[href*="tel"]:before{
	mask-image: url(../img/phone.svg);
}
.footer a[href*="maps"]:before{
	mask-image: url(../img/map-pin.svg);
}
.footer a[href*="mailto"]:before{
	mask-image: url(../img/send.svg);
}


/***************************************************************************
* Logo Col
****************************************************************************/
.footer .logo_col {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.footer .logo_col > * {
    flex: 0 0 auto;
}
.footer .social_menu a{
    padding: 0;
    margin-right: 0.5rem;
    font-size: 1.875rem;
}
.footer .logo,
.footer .logo_wrapper .svg_wrapper {
    width: 13rem;
}

.footer .svg_wrapper svg {
    height: auto;
}