.tabs-items {
    display: flex;
    justify-content: space-evenly;
    border: 1px solid var(--deepblue);
    border-radius: 5px;
}

.tabs-item {
    font-family: var(--solomon);
    font-weight: 400;
    font-size: 26px;
    line-height: 130%;
    text-align: center;
    text-transform: uppercase;
    align-self: center;
    color: var(--blue);
    margin: 16px 24px;
    padding: 16px;
    cursor: pointer;
    transition: all .3s;
}

.tabs-item:not(.active):hover {
    color: var(--accent);
}

.tabs-item.active {
    font-weight: 600;
    background-color: var(--bg2);
    border: 1px solid var(--deepblue);
    border-radius: 5px;
    cursor: auto;
}

@media all and (max-width: 1024px) {
    .tabs-items {
        flex-wrap: wrap;
    }
}

@media all and (max-width: 768px) {
    .tabs-item {
        width: 100%;
    }
}

@media all and (max-width: 480px) {
    .tabs-item {
        font-size: 22px;
        margin: 8px 10px;
        padding: 8px;
    }
}