footer {
    position: relative;
    background: #faf5ef;
    overflow: hidden;
    mask:
        radial-gradient(1vw at 25% 0, #0000 98%, #000) 50% 1vw/4vw 100% repeat-x,
        radial-gradient(1vw at 75% 50%, #000 99%, #0000 101%) top/4vw 2vw repeat-x
}

footer nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

footer>nav>svg {
    width: 100px;
    margin-right: 270px;
    fill: white !important;
    background-color: var(--golden-orange);
    padding: 10px;

}

footer a {
    color: var(--near-black);
    font-family: "Baloo Bhai 2";
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.rgt {
    color: #0D0D0D;
    font-family: "Baloo Bhai 2";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 65px;
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 20px;
    padding: 0 30px;
    flex-wrap: wrap;
}

.rgt a {
    display: flex;
    z-index: 2;
}

.rgt a svg {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    fill: white;
}

.rgt path {
    scale: 0.6;
    transform-origin: center;
}

@media only screen and (max-width: 1000px) {
    footer nav {
        flex-direction: column;
        position: relative;
        z-index: 2;
        gap: 12px;
    }

    footer>nav>svg {
        margin: 0;
    }
}

@media only screen and (max-width: 600px) {
    .rgt {
        justify-content: center;
        row-gap: 0;
        padding-bottom: 10px;
    }

    .rgt span {
        width: 100%;
        text-align: center;
        line-height: 60px;
    }

    .rgt a {
        margin: 5px !important;
    }
}