footer {
    margin-top: 90px;
    margin-bottom: 90px;
    padding: 0 5.5vw;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

footer .wrap-left{
    display: grid;
    gap: 7vw;
}

footer .wrap-right{
    display: grid;
    gap: 4vw;
    justify-content: flex-end;
}

footer .logo-wrap {
    display: flex;
    gap: 3vw;
}

footer .logo-wrap img{
    height: 30px;
}

footer nav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    column-gap: 7vw;
}

footer nav ul a {
    font-family: 'Circe Regular', sans-serif;
    font-weight: 400;
    font-size: 23px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
}

footer .wrap-address {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 7vw;
}

footer .wrap-address h3 {
    font-family: 'Circe Regular', sans-serif;
    font-weight: 400;
    font-size: 23px;
    color: #ffffff;
    text-transform: uppercase;
}

footer .wrap-address a {
    font-family: 'Circe Regular', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
}

footer .wrap-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 7vw;
}

footer .wrap-copyright p {
    font-family: 'Circe Regular', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #878787;
}

footer .wrap-copyright a {
    font-family: 'Circe Regular', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #878787;
    text-decoration: none;
}

@media screen and (max-width: 1200px) {
    footer .logo-wrap{
        flex-direction: column;
    }

    footer .wrap-address{
        flex-direction: column;
        gap: 3vw;
    }
}

@media screen and (max-width: 992px) {
    footer .wrap-left{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    footer{
        grid-template-columns: 1fr;
    }

    footer .logo-wrap {
        flex-direction: row;
        justify-content: center;
    }
    footer .logo-wrap img{
        height: 20px;
    }

    footer .wrap-left {
        grid-template-columns: 1fr;
    }
    footer .wrap-right{
        justify-content: center;
        width: calc(100vw - 10vw);
    }

    footer nav ul{
        grid-template-columns: 1fr;
        row-gap: 0;
    }

    footer nav ul li{
        border-bottom: 1px solid #fff;
        padding: 30px;
        text-align: center;
    }

    footer nav ul li:first-child{
        border-top: 1px solid #fff;
        padding: 30px;
    }
}

@media screen and (max-width: 450px) {
    footer .logo-wrap img{
        height: 15px;
    }
}