/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
.tabs {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    width: 100%
}

.tabs__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #09080d;
    box-shadow: 0 4px 5px rgba(0, 0, 0, .1);
    border-radius: 30px;
    padding: 10px 5px;
    margin-bottom: 20px
}

.tabs__toggle {
    margin: 0 0;
    padding: 7px 10px;
    background: #09080d;
    border-radius: 20px;
    cursor: pointer;
    transition: .5s
}

.tabs__name {
    font-weight: 500;
    font-size: 10px;
    color: #fff
}

.tabs__title {
    font-weight: 600;
    font-size: 24px;
    color: #484848;
    margin-bottom: 20px;
    text-align: center
}

.tabs__text {
    font-size: 14px;
    line-height: 1.2;
    color: #484848
}

.tabs__content {
    display: none
}

.tabs__toggle.is-active {
    background: #4f12ab
}

.tabs__toggle.is-active .tabs__name {
    color: #e2e2e2
}

.tabs__content.is-active {
    display: block
}