.footer-container {
    width: 100%;
    font-family: "Open Sans", Sans-serif, serif;
    font-weight: 400;
    line-height: 1.5;
    color: #B3B2B2;
    font-size: 1rem;
    background-color: #000;
}

.footer-container a {
    text-decoration: none;
    color: #B3B2B2;
}

.footer-line {
    width: 100%;
    border-bottom: 1px solid #B3B2B2;
}

.first-footer {
    width: 96%;
    padding: 50px 0;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.last-footer {
    width: 96%;
    padding: 50px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.first-footer p,
.first-footer h4,
.last-footer p {
    color: #B3B2B2;
}

.footer-logo {
    width: 80px;
    height: auto;
    margin-bottom: 30px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.footer-left,
.footer-right {
    display: flex;
    flex-direction: column;
    align-self: end;
}

.footer-contact {
    border: 1px solid #B3B2B2;
    width: 65%;
    padding: 5px 60px 2px 10px;
}

.footer-contact a {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.footer-contact a > p {
    font-size: 14px;
}

.footer-contact img {
    width: 40px;
    height: 42px;
    object-fit: contain;
    position: absolute;
    bottom: -2px;
    right: -45px;
}

.footer-info {
    margin-bottom: 20px;
}

.footer-links a {
    display: inline-block;
    padding: 0 25px;
    border-right: 1px solid #B3B2B2;
}

.footer-links a:first-child {
    padding-left: 0;
}

.footer-links a:last-child {
    border: none;
}

/* Media query  */
@media (max-width: 992px) {
    .first-footer {
        flex-direction: column;
    }

    .footer-left {
        margin-bottom: 30px;
    }

    .footer-left,
    .footer-right {
        align-self: start;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
    }

    .footer-links a {
        border: none;
        padding: 0 0 10px 0;
    }
}