.beos-tabbed-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}


.beos-tabbed-content__nav {
    display: flex;
    margin-bottom: 2.5rem;
    animation: fadeIn 0.3s ease-in-out;
}

.beos-tabbed-content__tab {
    color: var(--bs-dark-text-color);
}

.beos-tabbed-content__tab,
.beos-tabbed-content__button {
    display: inline-flex;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: #ffffff;
    border: none;
    height: 3.75rem;
    cursor: pointer;
}

.beos-tabbed-content__tab.is-active,
.beos-tabbed-content__button.is-active {
    background-color: var(--bb-main-color);
    color: #ffffff;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.beos-tabbed-content__panel {
    display: block;
    animation: fadeOut 0.3s ease-in-out forwards;
}

.beos-tabbed-content__panel[hidden] {
    display: none;
}

.beos-tabbed-content__panel.is-active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.beos-tabbed-content__panel-grid {
    display: grid;
    gap: 2.5rem;
}

.beos-tabbed-content__image {
    display: block;
    width: 100%;
    height: auto;
}

.beos-tabbed-content__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 1.25rem;
}

.beos-tabbed-content__feature {
    display: flex;
    padding: 15px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    align-self: stretch;
    background: #FFF;
}

.beos-tabbed-content__feature-icon {
    height: 25px;
}

.beos-tabbed-content__feature-copy {
    text-align: center;
}

.beos-tabbed-content__feature-title {
    color: var(--bs-dark-text-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
}

.beos-tabbed-content__feature-text {
    color: var(--bs-dark-text-color);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    min-height: 22pt;
}

@media (min-width: 992px) {
    .beos-tabbed-content__panel-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: start;
    }
}

.beos-tabbed-content__paragraph_body {
    display: flex;
    flex-direction: column;
    gap: 1.438rem;
}

.beos-tabbed-content__body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.beos-tabbed-content__button_link::selection {
    background: transparent;
    cursor: pointer;
}

.beos-tabbed-content__button_link {
    display: flex;
    padding: 20px 24px;
    align-items: flex-start;
    gap: 10px;
    width: max-content;

    font-size: 18px;
    font-style: normal;
    font-weight: 700;

    border: 1px solid var(--bs-dark-text-color);

    transition: all .5s;
    color: var(--bs-dark-text-color);
    background-color: white;
    background-image: linear-gradient(90deg, transparent 50%, var(--bs-dark-text-color) 50%);
    background-position: 0;
    background-size: 210%;
}

.beos-tabbed-content__button_link:hover {
    background-position: -95%;
    color: white;
}

.beos-tabbed-content__actions {
    display: flex;
    justify-content: center;
}

@media (min-width: 992px) {
    .beos-tabbed-content__actions {
        justify-content: start;
    }
}

.beos-tabbed-content__headline {
    color: var(--bs-dark-text-color);
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.beos-tabbed-content__subheader {
    color: var(--bs-dark-text-color);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.beos-tabbed-content__paragraph {
    color: var(--bs-dark-text-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 133.333% */
}