/* footer css  */

.footer {
    background-size: cover;
    background-repeat: no-repeat;
}

.footer>div>.row:first-child {
    padding: 40px 0px;
}

.footer>div>.row:first-child>div {
    margin: auto;
    text-align: center;
}

ul#menu-footer-menu {
    margin-top: 24px;
    display: flex;
    column-gap: 60px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

ul#menu-footer-menu li a {
    color: #FFF;
    text-align: center;
    font-family: var(--fontHelveticaMD);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

li#menu-item-49 {
    width: 100%;
    padding: 12px 24px;
    border-radius: 8px;
    background: #FFF;
    margin-top: 32px;
}

li#menu-item-49 a {
    color: #AC395B !important;
}

.footer-bottom {
    padding: 12px 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.social-icons {
    text-align: end;
    display: flex;
    justify-content: end;
    column-gap: 24px;
}

.footer-bottom>div>div:nth-child(2) {
    text-align: center;
}

.footer-bottom>div>div:nth-child(2) p {
    color: #FFF;
    font-family: var(--fontRobotoSB);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.footer-bottom>div>div:nth-child(1) a {
    color: #FFF;
    font-family: var(--fontHelveticaMD);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}


@media screen and (max-width:575px) {
    ul#menu-footer-menu {
        flex-direction: column;
        row-gap: 8px;
    }

    li#menu-item-49 {
        margin-top: 16px;
    }

    .footer-bottom>div>div {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom>div>div:nth-child(2) p {
        font-size: 14px;
        line-height: 22px;
        margin: 12px 0px;
    }

    .footer {
        background-position: center;
    }
}