.margin-left-0 {
    margin-left: 0!important;
}

.custom-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
}

.custom-links div {
    flex: 1;
    text-align: center;
    cursor: pointer;
}

.custom-links div:not(:last-child) {
    border-right: 0.3px solid #8f9fbc;
}

@media (max-width: 1000px) {
    .custom-links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .custom-links div {
        border-bottom: 0.3px solid #8f9fbc;
        padding-bottom: 12px;
        padding-top: 12px;
    }

    .custom-links div:nth-child(3),
    .custom-links div:nth-child(6) {
        border-right: none;
    }

    .custom-links div:nth-child(4),
    .custom-links div:nth-child(5),
    .custom-links div:nth-child(6) {
        border-bottom: none;
    }
}

@media (max-width: 700px) {
    .custom-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .custom-links div:nth-child(2),
    .custom-links div:nth-child(4),
    .custom-links div:nth-child(6) {
        border-right: none;
    }

    .custom-links div:nth-child(3) {
        border-right: 0.3px solid #8f9fbc;
    }

    .custom-links div:nth-child(4) {
        border-bottom: 0.3px solid #8f9fbc;
    }

    .custom-links div:nth-child(5),
    .custom-links div:nth-child(6) {
        border-bottom: none;
    }
}