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