footer {
    justify-content: center;
    background: #333333;
    height: 230px;
    display: flex;
}
.f-inner {
    padding: 40px 20px 40px 20px;
    flex-direction: column;
    position: relative;
    min-width: 1200px;
    display: flex;
    gap: 18px;
}
.f-inner > div {
    display: inherit;
    color: white;
}
.f-top {
    align-items: center;
}
.f-top > div:first-of-type {
    margin: 0px 20px 0px 0px;
    letter-spacing: -0.4px;
    font-size: 16px;
    color: #737373;
}
.f-top > div:nth-of-type(2),
.f-top > div:nth-of-type(3) {
    font-family: 'Roboto-Light';
    margin: 0px 12px 0px 0px;
    align-items: center;
    font-size: 16px;
    color: white;
    display: flex;
}
.f-top > div > svg {
    margin: 0px 7px 0px 0px;
    height: 25px;
}
.f-middle {
    align-items: center;
}
.f-middle > img:first-of-type {
    margin: 0px 32px 0px 0px;
    width: 160px;
    height: 60px;
}
.f-middle > img:nth-of-type(2) {
    margin: 0px 32px 0px 0px;
    height: 60px;
    width: 200px;
}
.f-middle > div {
    color: rgb(115, 115, 115);
    font-family: 'Roboto-Light';
    line-height: 17px;
    font-size: 12px;
}
.f-bottom {
    align-items: baseline;
}
.f-bottom > div {
    font-family: 'Roboto-Light';
    font-size: 14px;
}
.f-bottom > div:nth-of-type(even) {
    margin: 0px 6px 0px 6px;
    background: white;
    height: 11px;
    width: 1px;
}
.f-right-top {
    position: absolute;
    right: 12px;
}
.f-right-top > div {
    margin-right: 10px;
    cursor: pointer;
    height: 35px;
    width: 35px;
}
@media (max-width: 1200px) {
    footer {
        height: fit-content;
    }
    .f-inner {
        min-width: unset;
        width: 600px;
    }
    .f-middle {
        justify-content: center;
        flex-wrap: wrap;
    }
    .f-middle > div {
        margin: 20px 0px 0px 0px;
        text-align: center;
    }
    .f-bottom {
        justify-content: center;
    }
    .f-right-top {
        justify-content: center;
        position: relative;
    }
}
@media (max-width: 768px) {
    .f-top,
    .f-middle {
        flex-direction: column;
        gap: 10px;
    }
    .f-inner {
        gap: 24px;
    }
    .f-middle > div {
        text-wrap: auto;
    }
}