.tabs {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: transparent;
    flex-wrap: nowrap;
}

.tabs__option,
.tabs__option--active {
    color: #2c80b8;
    padding: .3rem;
    font-size: 1.1rem;
    height: 4rem;
    width: 7rem;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    line-height: 1.2rem;
    transition: all 200ms linear;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #CCC;
    margin: .3rem;
    border-radius: 5px;
}

.tabs__option:hover {
    background-color: #D8D8D8;
}

.tabs__option--active {
    box-shadow: rgba(0, 0, 0, 0.298039) 0 -3px 6px -2px;
    background-color: white;
    margin: .3rem .3rem 0;
    border-radius: 5px 5px 0 0;
    height: 4.3rem;
}

.tabs__option--active:hover {
    background-color: white;
}

@media (max-width: 991px) {
    .tabs {
        flex-wrap: wrap;
    }
}
