.ns-footer {
    margin-top: 60px;
    padding: 30px 0px;
    background: var(--ns-background-color-10);
}

.ns-footer-top,
.ns-footer-bottom,
.ns-footer-line {
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    max-width: 1550px;
}

.ns-footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ns-footer-bottom {
    display: flex;
    align-items: center;
}

.ns-footer-line {
    margin: 30px auto;
    height: 1px;
    width: 100%;
    max-width: 1490px;
    background: var(--ns-background-color-40);
}

.ns-footer-top-content-box:nth-of-type(-n+2) {
    border-right: 1px solid var(--ns-background-color-40);
}

.ns-footer-heading {
    font-size: .7rem;
    margin-bottom: 10px;
}

.ns-footer-list {
    list-style-type: none;
}

.ns-footer-list-link {
    font-size: .65rem;
    text-decoration: none;
    color: var(--ns-font-color-80);
    transition: color var(--ns-transition-primary);
    -webkit-transition: color var(--ns-transition-primary);
    -moz-transition: color var(--ns-transition-primary);
    -ms-transition: color var(--ns-transition-primary);
    -o-transition: color var(--ns-transition-primary);
}

.ns-footer-list-link:hover {
    color: var(--ns-theme-primary-color);
    text-decoration: underline;
}

.ns-footer-logo-link {
    display: flex;
    font-size: .95rem;
    text-decoration: none;
}

.ns-footer-list-link-icon {
    margin-left: 10px;
    font-size: .65rem;
    font-weight: 500;
}

.ns-footer-logo {
    height: 40px;
    width: 40px;
}

.ns-footer-logo-text {
    margin-left: 10px;
    display: flex;
    justify-content: space-between;
    flex-direction: column; 
}

.ns-footer-logo-brand {
    color: var(--ns-font-color-100);
    text-transform: uppercase;
    font-family: 'Roboto','Poppins', sans-serif;
    font-weight: 300;
    font-size: .9rem;
}

.ns-footer-logo-brand span {
    font-weight: 700;
}

.ns-footer-copy {
    font-size: .6rem;
    color: var(--ns-font-color-80);
}

@media (max-width:615px) {
    .ns-footer-top {
        grid-template-columns: 1fr;
    }

    .ns-footer-top-content-box:nth-of-type(-n+2) {
        border-right: 0px;
        border-bottom: 1px solid var(--ns-background-color-40);
        padding-bottom: 30px;
    } 
}

@media only screen and (hover: none) and (pointer: coarse) and (max-width: 500px) {
    .ns-footer {
        margin-bottom: 53px;
    }
}