
/* KK FOOTER */
.kk-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
}

.kk-footer div:first-child ul{
    margin-top: 20px;

}
.kk-footer div:last-child {
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.kk-footer h2 {
    font-size: xx-large;
    font-weight: bold;

}

.kk-footer p {
    font-size: smaller;
}

.kk-footer div:last-child li {
    padding: 5px 0 5px 0;
    display: block;
}


@media (width <= 40rem) {
    .kk-footer {
        flex-direction: column;
        justify-content: flex-start;
        text-align: center;;
    }

    .kk-footer div:last-child {
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
    }

    .kk-footer div:first-child {
        margin-bottom: 20px;
    }
}
