.footer-social {
    background: #fafafa;
    padding: 3rem 0;
    margin-bottom: 6rem;
    position: relative;
}

.footer-social:before,
.footer-social:after {
    content: '';
    background-image: url(../images/footer-social.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
}

.footer-social:after {
    background-position: left;
    left: unset;
    right: 0;
    transform: rotate(180deg);
}

.footer-social a {
    background: #24C1AE;
    border: .5rem solid #fff;
    box-shadow: 3px 3px 5px 0 rgb(38 38 38 / 15%);
    padding: 1.5rem;
    display: inline-block;
    margin-right: 2rem;
    transition: all .3s;
    position: relative;
    z-index: 1;
}

.footer-social a:last-child {
    margin-right: 0;
}

.footer-social a.facebook {
    background: #4267B2;
}

.footer-social a.twitter {
    background: #000;
}

.footer-social a.youtube {
    background: #FF2C0C;
}

.footer-social a.linkedin {
    background: #0077B7;
}

.footer-social a:hover {
    background: #24C1AE;
}

.footer-social img {
    width: 2rem;
    height: 2rem;
}

footer ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer ul li {
    padding: 0;
    margin: 0;
}

footer ul li:before {
    display: none;
}

footer ul li a,
footer .contact-link {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--li-purple);
    margin-bottom: 2rem;
    display: block;
}

footer ul li a:hover {
    color: var(--li-purple);
}

footer .sub-menu {
    display: block;
}

footer .sub-menu a {
    font-size: .8rem;
    font-weight: 300;
    color: #373737;
    margin-bottom: 1rem;
}

footer .sub-menu a:hover {
    color: #373737;
}

footer address,
footer .contact-details {
    font-size: .8rem;
}

footer address span {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: var(--li-green);
    margin-bottom: .5rem;
}

footer .contact-details a {
    color: var(--li-green);
}

.footer-bottom {
    text-align: center;
    font-size: .8rem;
    padding: 4rem 0;
}

.footer-bottom span {
    display: block;
    color: var(--li-green);
    margin: 1rem 0 .5rem;
}

.footer-bottom ul {
    justify-content: center;
}

.footer-bottom ul li:after {
    content: '|';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.footer-bottom ul li:last-child::after {
    display: none;
}

.footer-bottom ul li a {
    font-size: 1rem;
    color: #373737;
    font-weight: 300;
    font-size: .8rem;
    margin-bottom: 0;
    padding: .5rem 1rem;
}

/* Tracker */

.tracker {
    position: fixed;
    left: 4rem;
    top: calc(50% - 3.5rem);
    z-index: 10;
}

.tracker ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tracker ul li {
    margin: 0;
    padding: 0;
    position: relative;
    margin-bottom: 1rem;
}

.tracker ul li::before {
    display: none;
}

.tracker ul li:after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    border-left: 1px solid var(--li-green);
    width: 1px;
    height: 2rem;
}

.tracker ul li:last-child:after {
    display: none;
}

.tracker ul li a {
    display: block;
    position: relative;
    height: 2rem;
    width: 2rem;
}

.tracker ul li a:hover {
    text-decoration: none;
}

.tracker ul li a::before,
.tracker ul li a:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    border: .5rem solid transparent;
    border-top-color: #DCDCD9;
    border-radius: unset;
    background: transparent;
    transform: translateX(-50%);
    transition: all .3s;
}

.tracker ul li a::after {
    top: unset;
    bottom: 50%;
    border-top-color: transparent;
    border-bottom-color: #DCDCD9;
}

.tracker ul li.active a::before {
    border-top-color: var(--li-green);
}
.tracker ul li.active a:after {
    
    border-bottom-color: var(--li-green);
}

.tracker ul li a:hover::before,
.tracker ul li a:hover:after {
    border: 1rem solid transparent;
    border-top-color: var(--li-green);
}

.tracker ul li a:hover:after {
    border-top-color: transparent;
    border-bottom-color: var(--li-green);
}

.tracker ul li:first-child a i {
    display: none;
}
.tracker ul li:first-child.active a i {
    display: block;
    content: '\e905';
    font-family: 'licon';
    z-index: 1;
    background: transparent;
    border-radius: unset;
    width: 2rem;
    height: 2rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
}

.tracker ul li:first-child.active a::before,
.tracker ul li:first-child.active a:after {
    border: 1rem solid transparent;
    border-top-color: var(--li-green);
}

.tracker ul li:first-child.active a:after {
    border-top-color: transparent;
    border-bottom-color: var(--li-green);
}

/* Side CTA */

.side-cta {
    position: fixed;
    right: 0;
    top: calc(50% - 3.5rem);
    z-index: 8888;
}

.side-cta a {
    color: #fff;
}

.side-cta a:hover {
    color: #fe6644;
    text-decoration: none;
}

.side-cta .phone,
.side-cta .email {
    display: flex;
    background: var(--li-purple);
    box-shadow: 3px 3px 5px 0 rgb(38 38 38 / 15%);
    transform: translateX(calc(100% - 5rem));
    transition: all .3s;
}

.side-cta .phone {
    background: var(--li-blue);
}

.side-cta .icon-area {
    width: 5rem;
    height: 5rem;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all .3s;
}

.side-cta .icon-area:hover {
    cursor: pointer;
    background: #fe6644;
}

.side-cta .detail-area {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 0 1rem;
} 

/* Cookie Bar */
#cookie-law-info-bar {
    text-align: left;
    padding: 1rem 0;
    font-size: .8rem;
    box-shadow: none;
}

#cookie-law-info-bar a {
    font-weight: 400;
    color: #fff;
}

#cookie-law-info-bar #cookie_action_close_header {
    border: none;
    border-radius: 3rem;
    padding: .5rem 2rem;
    font-weight: 400;
    position: relative;
    transition: all .5s;
    margin: 0;
    display: inline-flex!important;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
}

/* Echo dislaimer */
.echo-disclaimer {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .8rem;
    padding: .5rem 0;
    background: #eee;
}
.echo-disclaimer a {
    display: flex;
    align-items: center;
    color: #373737;
    flex-basis: 100%;
    justify-content: center;
}
.echo-disclaimer .echo-footer-logo {
    height: 1.2rem;
    margin-left: .2rem;
}
.echo-disclaimer .sr-only {
    position:absolute;
    left:-10000px;
    top:auto;
    width:1px;
    height:1px;
    overflow:hidden;
}


@media(max-width: 1199px) {
    .tracker {
        left: 1rem;
    }
}

@media(max-width: 991px) {
    .side-cta {
        font-size: .8rem;
    }
    .side-cta .icon-area {
        width: 4rem;
        height: 4rem;
    }
    .side-cta .phone, .side-cta .email {
        transform: translateX(calc(100% - 4rem));
    }
}

@media(max-width: 767px) {
    .footer-social a {
        margin-right: 1rem;
        padding: 1rem;
    }
}

@media(max-width: 575px) {
    .footer-social {
        padding: 2rem 0;
        margin-bottom: 2rem;
        position: relative;
    }
    .footer-social a {
        border: .25rem solid #fff;
        padding: .5rem;
        margin-right: 1rem;
    }
    footer ul > li {
        margin-right: 1rem;
    }
    .tracker {
        left: 0;
    }
    .side-cta {
        top: unset;
        bottom: 0;
        font-size: .8rem;
    }
    .side-cta .icon-area {
        width: 4rem;
        height: 4rem;
    }
    .side-cta .phone, .side-cta .email {
        transform: translateX(calc(100% - 4rem));
    }
}