footer {
    width: 100%;
    background: #222f50;
    color: #D3D4D6;
}

.footer-box {
}

.footer-box-item {
    width: 25%;
    padding: 40px 20px;
    transition: all ease .3s;
    border-right: 1px solid #384465;
    box-sizing: border-box;
}

.footer-box-item:last-child {
    border-right: none;
}

.footer-box-item:hover {
    background: linear-gradient(180deg, #17213b 0%, #10182d 100%);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

.footer-box-item-contact p {
    line-height: 26px;
    margin-top: 10px;
}

.footer-box-item-contact img {
    max-width: 260px;
    height: auto;
}

.footer-box-item-share {
    margin-top: 25px;
}

.footer-box-item-share a {
    margin-right: 25px;
    font-size: 2.4rem;
    color: #fff;
}

.footer-box-item-menu h2 {
    color: #fff;
    font-size: 1.1rem;
    line-height: 32px;
    margin-bottom: 10px;
}

.footer-box-item-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #D3D4D6;
    font-size: 1rem;
    line-height: 36px;
    text-decoration: none;
}

.footer-box-item-menu a span {
    flex: 1;
}

.footer-box-item-menu a i {
    margin-left: auto;
    transition: all ease .3s;
}

.footer-box-item-menu a:hover {
    color: #fff;
}

.footer-box-item-menu a:hover i {
    transform: translateX(-5px);
}

.footer-copy {
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid #384465;
}


/* ==============================
   Footer Mobile <= 768px
================================= */

@media screen and (max-width: 768px) {

    footer {
        background: #222f50;
        color: #D3D4D6;
    }

    .footer-box,
    .footer-box.container,
    .footer-box.flex,
    .footer-box.flex.flex-center-contain {
        display: block !important;
        width: 100%;
        padding: 0 22px;
        box-sizing: border-box;
    }

    .footer-box-item {
        width: 100%;
        padding: 14px 0;
        border-right: none;
        border-bottom: 1px solid #384465;
        box-sizing: border-box;
    }

    .footer-box-item:last-child {
        border-right: none;
        border-bottom: 1px solid #384465;
    }

    .footer-box-item:hover {
        background: transparent;
    }

    .footer-box-item-contact img {
        max-width: 150px;
        height: auto;
        display: block;
        margin-bottom: 16px;
    }

    .footer-box-item-contact p {
        font-size: 14px;
        line-height: 24px;
        margin-top: 8px;
        color: #D3D4D6;
        word-break: break-word;
    }

    .footer-box-item-share,
    .footer-box-item-share.flex {
        display: flex !important;
        align-items: center;
        margin-top: 18px;
    }

    .footer-box-item-share a {
        width: 38px;
        height: 38px;
        margin-right: 14px;
        font-size: 18px;
        line-height: 38px;
        text-align: center;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        color: #fff;
    }

    .footer-box-item-share a:hover {
        background: rgba(255,255,255,.16);
        color: #fff;
    }

    .footer-box-item-menu h2 {
        position: relative;
        margin: 0;
        padding: 0 38px 0 0;
        color: #fff;
        font-size: 16px;
        line-height: 36px;
        cursor: pointer;
        font-weight: bold;
    }

    .footer-box-item-menu h2::after {
        content: "+";
        position: absolute;
        right: 0;
        top: 0;
        width: 32px;
        height: 36px;
        line-height: 36px;
        text-align: center;
        color: #fff;
        font-size: 22px;
        font-weight: bold;
        transition: all .25s ease;
    }

    .footer-box-item-menu.footer-menu-open h2::after {
        content: "−";
    }

    .footer-box-item-menu > a {
        display: none !important;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        color: #D3D4D6;
        font-size: 14px;
        line-height: 40px;
        padding: 2px 0;
        box-sizing: border-box;
        border-bottom: 1px solid rgba(255,255,255,.06);
        text-decoration: none;
    }

    .footer-box-item-menu.footer-menu-open > a {
        display: flex !important;
    }

    .footer-box-item-menu > a span {
        display: block;
        flex: 1;
        text-align: left;
        padding-right: 12px;
    }

    .footer-box-item-menu > a i {
        display: block;
        flex: 0 0 auto;
        margin-left: auto !important;
        text-align: right;
        font-size: 13px;
        opacity: .75;
        transition: none;
    }

    .footer-box-item-menu > a:hover {
        color: #fff;
    }

    .footer-box-item-menu > a:hover i {
        transform: none;
    }

    .footer-copy,
    .footer-copy.container {
        width: 100%;
        padding: 16px 22px 20px;
        text-align: center;
        font-size: 13px;
        line-height: 22px;
        box-sizing: border-box;
        border-top: none;
        color: #D3D4D6;
    }
}