footer {
    background-color: #b4ada7;
    margin-top: 150px;
}

.footer-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-top: 41px;
    padding-bottom: 41px;
    flex-wrap: wrap;
}

.footer-menu {
    display: flex;
    gap: 50px;
    margin: 0;
    padding: 0;
}

.footer-menu>li {
    list-style: none;
}

.footer-menu>li a {
    /* font-family: 'Myriad Pro'; */
    font-family: 'Myriad Pro Light';
    line-height: 1.2;
    /* font-weight: 400; */
    font-weight: bold;
    font-size: 18px;
    color: #3D3D3D;
    text-decoration: none;
    text-wrap-mode: nowrap;
    letter-spacing: normal;
}

footer .right {
    margin-left: auto;
}

.copy-right p {
    /* font-family: 'Myriad Pro'; */
    font-family: 'Myriad Pro Light';
    /* font-weight: 400; */
    font-weight: bold;
    font-size: 18px;
    line-height: 1.2;
    color: #3D3D3D;
    text-align: right;
    margin: 0;
    text-wrap-style: pretty;
    letter-spacing: normal;
}

@media only screen and (max-width:1100px) {
    .copy-right p {
        text-align: left;
    }
}

@media only screen and (max-width:1024px) {
    .footer-wrapper {
        padding-top: 50px;
        padding-bottom: 30px;
        gap: 30px;
        align-items: center;
        flex-wrap: nowrap;
        flex-direction: column;
        /* max-width: 574px; */
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .copy-right p {
        text-align: center;
    }
}

@media only screen and (max-width:768px) {
    .copy-right p {
        font-size: 16px;
    }

    .footer-menu {
        gap: 15px 50px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media only screen and (max-width:500px) {
    .footer-wrapper {
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .footer-menu>li a {
        font-size: 16px;
    }

    .footer-menu {
        gap: 15px 30px;
    }

    .copy-right p {
        font-size: 14px;
    }
}