.tools-tabs {
    background-color: var(--beige);
    padding: 56px 16px;
}

@media screen and (min-width: 992px) {
    .tools-tabs {
        padding: 104px 16px;
    }
}

.tools-tabs--header {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}

@media screen and (min-width: 992px) {
    .tools-tabs--header {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
        align-items: end;
        gap: 64px;
        margin-bottom: 56px;
    }
}

.tools-tabs--header .uptitle {
    margin-bottom: 16px;
}

.tools-tabs--header h2 {
    max-width: 520px;
    text-transform: uppercase;
}

.tools-tabs--header h2 strong {
    color: var(--framb-mid);
}

.tools-tabs--header>p {
    color: var(--black);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.16px;
}

@media screen and (min-width: 992px) {
    .tools-tabs--header>p {
        font-size: 16px;
    }
}

.tools-tabs--tabs {
    --tools-tabs-gap: 8px;
    display: flex;
    overflow-x: auto;
    gap: var(--tools-tabs-gap);
    padding-bottom: 0;
    scrollbar-width: none;
}

.tools-tabs--tabs::-webkit-scrollbar {
    display: none;
}

@media screen and (min-width: 992px) {
    .tools-tabs--tabs {
        justify-content: safe center;
    }
}

.tools-tabs--tabs button {
    border: 0;
    flex: 0 0 260px;
    min-height: 72px;
    padding: 20px 24px;
    border-radius: 16px 16px 0 0;
    background-color: #FFF;
    opacity: 0.64;
    color: var(--black);
    font-weight: 500;
    line-height: 140%;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}

@media screen and (min-width: 992px) {
    .tools-tabs--tabs button {
        flex: 1 0 260px;
        max-width: 300px;
    }
}

.tools-tabs--tabs button.active {
    background-color: var(--ocre);
    opacity: 1;
    color: #FFF;
}

.tools-tabs--panels {
    position: relative;
    z-index: 1;
    margin-top: -1px;
    background-color: #FFF;
    border: 1px solid var(--ocre);
    border-radius: 0 16px 16px 16px;
    padding: 24px;
}

@media screen and (min-width: 992px) {
    .tools-tabs--panels {
        padding: 56px;
        border-radius: 24px;
    }
}

.tools-tabs--panel {
    display: grid;
    gap: 40px;
}

.tools-tabs--panel[hidden] {
    display: none;
}

@media screen and (min-width: 768px) {
    .tools-tabs--panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (min-width: 992px) {
    .tools-tabs--panel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        -moz-column-gap: 64px;
        column-gap: 64px;
        row-gap: 56px;
    }
}

.tools-tabs--item h3 {
    color: var(--framb-mid);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.2px;
}

@media screen and (min-width: 992px) {
    .tools-tabs--item h3 {
        font-size: 24px;
    }
}

.tools-tabs--item h3+p:not(.subtitle) {
    margin-top: 16px;
}

.tools-tabs--item .subtitle {
    margin-bottom: 16px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: 0.16px;
}

.tools-tabs--item p:not(.subtitle) {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.14px;
}

@media screen and (min-width: 992px) {
    .tools-tabs--item p:not(.subtitle) {
        font-size: 16px;
    }
}

.tools-tabs--item .btn-more {
    margin-top: 16px;
}

.tools-tabs--buttons {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

@media screen and (min-width: 992px) {
    .tools-tabs--buttons {
        margin-top: 48px;
    }
}

/*# sourceMappingURL=style.css.map */