.footer {
    min-height: 150px;
    background-color: #282828;
    color: #ffff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
}

.footer p {
    margin: 0;
    font-weight: 700;
    font-size: 20px;
}

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

.footer span {
    font-weight: 400;
    font-size: 10px;
}

.footer .right {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    height: 100%;
}

.footer .link a {
    text-decoration: none;
    position: relative;
}

.footer .link + span {
    display: none;
}

.footer .link a p {
    padding: 0 15px;
    font-size: 12px;
    font-weight: normal !important;
    cursor: pointer;
    color: #ffff;
}

@media only screen and (min-width: 992px) {
    .footer .link a:not(:last-child) {
        border-right: solid 1px #ffff;
    }
}

@media only screen and (max-width: 992px) {
    .footer .link a p {
        padding: 0;
    }
}

@media only screen and (max-width: 575px) {
    .footer .info + span {
        display: none;
    }

    .footer .link + span {
        display: block;
    }
}
