footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(100% - 100px);
    padding: 20px 50px 20px 50px;
    background-color: var(--main_primary_color);
    position: relative;
}

.custom-shape-divider-top-1651037575 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1651037575 svg {
    position: relative;
    display: block;
    width: calc(205% + 1.3px);
    height: 155px;
}

.custom-shape-divider-top-1651037575 .shape-fill {
    fill: #FFFFFF;
}

.footerContainer {
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: auto auto auto;
    grid-column-gap: 5rem;
    margin-bottom: 20px;
}

.footerContainer .cols {
    width: 100%;
    color: var(--white);
    font-family: var(--font_primary);
}

.footerContainer .cols .title {
    text-transform: capitalize;
    font-size: larger;
    letter-spacing: 1px;
    font-weight: 600;
}

.footerContainer .cols .title p {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footerContainer .cols .title p i {
    display: none;
}

.footerContainer .cols .content {
    font-size: medium;
}

.footerContainer .cols .content ul li {
    list-style: none;
    line-height: 2;
}

.footerContainer .cols .content ul li a {
    color: var(--white);
}

.footerContainer table tr td:nth-child(2) {
    width: 5px;
}

.footerContainer table tr td:nth-child(3) {
    text-align: center;
}

.socialMedia {
    display: flex;
    align-items: center;
}

.mobileSocialMedia {
    display: none;
}

.socialMedia li {
    margin: 5px;
    width: 20px;
    height: 20px;
    padding: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--glass);
    border-radius: 10px;
    cursor: pointer;
    transition: all 250ms linear;
    position: relative;
    overflow: hidden;
}

.socialMedia li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 0%, 50% 100%, 0% 100%);
    background-color: var(--glass);
    transition: all 250ms linear;
}

.socialMedia li a i {
    font-size: 17px;
    color: var(--white);
}

.socialMedia li:hover {
    transform: scale(1.1);
}

.socialMedia li:hover::before {
    left: 100%;
}

.copyright {
    font-size: larger;
    color: var(--white);
    letter-spacing: 1px;
    text-align: center;
}

.copyright a {
    color: var(--white);
    text-decoration: underline;
}

.mobileNev {
    display: none;
}

@media screen and (max-width: 1000px) {
    .footerContainer {
        grid-template-columns: auto auto;
        grid-column-gap: auto;
        grid-row-gap: 1rem;
    }
}

@media screen and (max-width: 600px) {
    .footerContainer {
        grid-template-columns: auto;
        width: 90%;
        margin-bottom: 50px;
    }

    .footerContainer .cols {
        position: relative;
    }

    .footerContainer .cols::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--white);
        display: block;
    }

    .footerContainer .cols .content {
        display: none;
    }

    .footerContainer .cols.active .content {
        display: inline;
    }

    .footerContainer .cols .title p i {
        display: inline;
    }

    .mobileSocialMedia {
        display: flex;
        justify-content: center;
    }

    .mobileNev {
        display: inline;
        position: fixed;
        bottom: 0;
        left: 0;
        width: calc(100% - 20px);
        background-color: var(--white);
        padding: 5px;
        margin: 5px;
        border-radius: 10px;
        box-shadow: var(--main_shadow);
    }

    .mobileNev ul {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        width: 100%;
    }

    .mobileNev ul li {
        list-style: none;
        background-color: var(--main_primary_color);
        width: calc((100% / 2) - 20px);
        padding: 5px;
        margin: 5px;
        border-radius: 5px;
    }

    .mobileNev ul li a {
        display: block;
        text-align: center;
        text-transform: capitalize;
        font-family: var(--font_primary);
        letter-spacing: 2px;
        font-weight: 600;
        color: var(--white);
    }
}