.footer-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;


    margin-top: 180px;
    z-index: 1;

    padding: 56px 26px;
    justify-content: center;
    align-items: center;
    background-color: #070707;


}

.footer-upper-wrapper{
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
}

.footer-upper-wrapper .footer-logo {
    height: auto;
    width: auto;
    max-width: 70px;
    align-self: center;
}

.footer-upper-social{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding-left: 32px;

    border-left: solid 1px #808080;
}

.footer-upper-social img{
    height: auto;
    width: auto;
    max-width: 24px;
    max-height: 24px;
}


.footer-wrapper ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    gap: 20px;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.footer-wrapper ul li {
    position: relative;

    padding-left: 16px;
    cursor: pointer;
}

.footer-wrapper ul li a {
    white-space: nowrap;
    text-decoration: none;
    color: #999;
    font-family: 'Mont', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px; /* 157.143% */
}

.footer-wrapper ul li a:hover {
    color: #999;
}
/* Add the bullet manually for the first line items */
.footer-wrapper ul li::before {
    content: '';
    position: absolute;

    width: 4px;
    height: 4px;
    background-color: #8338EC;

    right: 100%;
    top: 40%;

    cursor: default;
}

.footer-wrapper ul > :first-child::before {
    content: none;
    padding-left: 0;
}

/* Remove bullet if the item wraps to a new line */
.footer-wrapper ul {
    counter-reset: wrapline;
}

.footer-wrapper li {
    counter-increment: wrapline;
}

.footer-wrapper li::before {
    display: inline-block;
}

/* JavaScript will toggle a class to remove bullet if wrapped */
.footer-wrapper li.wrapped::before {
    content: none;
}

.footer-wrapper .footer-upper-wrapper .kc-logo-text {
    background-size: 70px 30px;
    width: 70px;
    height: 30px;
    margin-top: 0 !important;
}