@media screen and (max-width: 992px){
    .footer{
        background-color: #232F3E;
        color: #fff;
        padding: 5vw;
    }
    .footer-main .right img {
        width: 1rem;
        height: 1rem;
    }
    .footer-main .right p {
        margin: 0;
    }
    .footer-main .right .item {
        margin-top: 3rem;
    }
}

@media screen and (min-width: 992px) {
    .footer {
        background-color: #232F3E;
        color: #fff;
        height: 230px;

    }
    .footer-main {
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-main .left {
        max-width: 35%;
    }

    .footer-main .right {
        display: flex;
        justify-content: end;
    }

    .footer-main .right img {
        width: 1rem;
        height: 1rem;
    }

    .footer-main .right p {
        margin: 0;
    }

    .footer-main .right .item {
        max-width: 32%;
    }
}