.our-values {
    padding-block: clamp(56px, 7vw, 104px);
}

.our-values h2 strong {
    color: var(--framb-mid);
}

.our-values--header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.our-values--header .uptitle+* {
    margin-top: 24px;
}

.our-values--wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.our-values--item .svg-container {
    display: none;
}

.our-values--item .title-container p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    color: var(--framb-light);
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    cursor: default;
    transition: color 0.25s ease, font-weight 0.25s ease;
    margin-bottom: 12px;
}

.our-values.is-enhanced .our-values--item .title-container p {
    cursor: pointer;
}

.our-values--item .title-container p::after {
    content: none;
    display: none;
}

.our-values.is-enhanced .our-values--item .title-container p::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: var(--framb-mid);
    background: rgba(130, 45, 25, 0.08);
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
}

.our-values--item .desc-container {
    display: grid;
    grid-template-rows: 1fr;
    opacity: 1;
    transition: grid-template-rows 0.3s ease, opacity 0.25s ease;
}

.our-values.is-enhanced .our-values--item .desc-container {
    grid-template-rows: 0fr;
    opacity: 0;
}

.our-values--item .desc-container p {
    overflow: hidden;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.16px;
}

.our-values--item .desc-container p strong {
    font-weight: 700;
}

.our-values--item.is-active .title-container p {
    color: var(--framb-mid);
    font-weight: 700;
}

.our-values--item.is-active .title-container p::after {
    content: "-";
}

.our-values.is-enhanced .our-values--item.is-active .title-container p::after {
    content: "-";
}

.our-values--item.is-active .desc-container {
    grid-template-rows: 1fr;
    opacity: 1;
}

.our-values.is-enhanced .our-values--item.is-active .desc-container {
    grid-template-rows: 1fr;
    opacity: 1;
}

@media screen and (min-width: 768px) {
    .our-values--header {
        margin-bottom: clamp(40px, 6vw, 80px);
    }

    .our-values--item {
        display: grid;
        grid-template-columns: auto 1fr clamp(200px, 41.67vw, 600px);
        -moz-column-gap: 16px;
        column-gap: 16px;
    }

    .our-values--item .svg-container {
        display: block;
        position: relative;
        padding-inline: 16px;
        opacity: 0;
        visibility: hidden;
    }

    .our-values--item svg {
        position: absolute;
        width: 100%;
        left: 0;
        top: 10px;
    }

    .our-values--item.item-2 svg,
    .our-values--item.item-3 svg,
    .our-values--item.item-4 svg {
        top: -16px;
    }

    .our-values--item.item-5 svg {
        transform: translateY(-80%);
    }

    .our-values--item .desc-container {
        display: grid;
        position: static;
        opacity: 1;
    }

    .our-values.is-enhanced .our-values--item .desc-container {
        display: block;
        position: relative;
        opacity: 0;
        visibility: hidden;
    }

    .our-values--item .desc-container p {
        position: static;
        width: 100%;
        top: 0;
        left: 0;
        overflow: visible;
    }

    .our-values.is-enhanced .our-values--item .desc-container p {
        position: absolute;
    }

    .our-values--item .title-container p {
        display: block;
        color: var(--framb-light);
        font-size: 40px;
        font-style: normal;
        font-weight: 300;
        line-height: 140%;
        margin-bottom: 24px;
        padding-block: 0;
        cursor: default;
        transition: color 0.3s ease, font-weight 0.3s ease;
    }

    .our-values.is-enhanced .our-values--item .title-container p {
        cursor: pointer;
    }

    .our-values--item .title-container p::after {
        content: none;
        display: none;
    }

    .our-values.is-enhanced .our-values--item .title-container p::after,
    .our-values.is-enhanced .our-values--item.is-active .title-container p::after {
        content: none;
        display: none;
    }

    .our-values--item.is-active .title-container p {
        color: var(--framb-mid);
        font-weight: 700;
    }

    .our-values--item.is-active .svg-container {
        opacity: 1;
        visibility: visible;
    }

    .our-values.is-enhanced .our-values--item.is-active .desc-container {
        opacity: 1;
        visibility: visible;
    }

    .our-values--item.is-active .title-container p::after {
        content: none;
        display: none;
    }
}

@media screen and (min-width: 992px) {
    .our-values--header {
        flex-direction: row;
        align-items: flex-end;
        gap: clamp(16px, 5.56vw, 80px);
        justify-content: space-between;
    }

    .our-values--header>* {
        flex: 1;
    }
}

.our-values--buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 768px) {
    .our-values--buttons {
        margin-top: 80px;
    }
}

/*# sourceMappingURL=style.css.map */
.acf-block-preview .our-values {
    padding-block: clamp(56px, 7vw, 104px);
}

.acf-block-preview .our-values h2 strong {
    color: var(--framb-mid);
}

.acf-block-preview .our-values--header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.acf-block-preview .our-values--header .uptitle+* {
    margin-top: 24px;
}

.acf-block-preview .our-values--wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.acf-block-preview .our-values--item .svg-container {
    display: none;
}

.acf-block-preview .our-values--item .title-container p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    color: var(--framb-light);
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    cursor: default;
    transition: color 0.25s ease, font-weight 0.25s ease;
    margin-bottom: 12px;
}

.acf-block-preview .our-values.is-enhanced .our-values--item .title-container p {
    cursor: pointer;
}

.acf-block-preview .our-values--item .title-container p::after {
    content: none;
    display: none;
}

.acf-block-preview .our-values.is-enhanced .our-values--item .title-container p::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: var(--framb-mid);
    background: rgba(130, 45, 25, 0.08);
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
}

.acf-block-preview .our-values--item .desc-container {
    display: grid;
    grid-template-rows: 1fr;
    opacity: 1;
    transition: grid-template-rows 0.3s ease, opacity 0.25s ease;
}

.acf-block-preview .our-values.is-enhanced .our-values--item .desc-container {
    grid-template-rows: 0fr;
    opacity: 0;
}

.acf-block-preview .our-values--item .desc-container p {
    overflow: hidden;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.16px;
}

.acf-block-preview .our-values--item .desc-container p strong {
    font-weight: 700;
}

.acf-block-preview .our-values--item.is-active .title-container p {
    color: var(--framb-mid);
    font-weight: 700;
}

.acf-block-preview .our-values--item.is-active .title-container p::after {
    content: "-";
}

.acf-block-preview .our-values.is-enhanced .our-values--item.is-active .title-container p::after {
    content: "-";
}

.acf-block-preview .our-values--item.is-active .desc-container {
    grid-template-rows: 1fr;
    opacity: 1;
}

.acf-block-preview .our-values.is-enhanced .our-values--item.is-active .desc-container {
    grid-template-rows: 1fr;
    opacity: 1;
}

@media screen and (min-width: 768px) {
    .acf-block-preview .our-values--header {
        margin-bottom: clamp(40px, 6vw, 80px);
    }

    .acf-block-preview .our-values--item {
        display: grid;
        grid-template-columns: auto 1fr clamp(200px, 41.67vw, 600px);
        -moz-column-gap: 16px;
        column-gap: 16px;
    }

    .acf-block-preview .our-values--item .svg-container {
        display: block;
        position: relative;
        padding-inline: 16px;
        opacity: 0;
        visibility: hidden;
    }

    .acf-block-preview .our-values--item svg {
        position: absolute;
        width: 100%;
        left: 0;
        top: 10px;
    }

    .acf-block-preview .our-values--item.item-2 svg,
    .acf-block-preview .our-values--item.item-3 svg,
    .acf-block-preview .our-values--item.item-4 svg {
        top: -16px;
    }

    .acf-block-preview .our-values--item.item-5 svg {
        transform: translateY(-80%);
    }

    .acf-block-preview .our-values--item .desc-container {
        display: grid;
        position: static;
        opacity: 1;
    }

    .acf-block-preview .our-values.is-enhanced .our-values--item .desc-container {
        display: block;
        position: relative;
        opacity: 0;
        visibility: hidden;
    }

    .acf-block-preview .our-values--item .desc-container p {
        position: static;
        width: 100%;
        top: 0;
        left: 0;
        overflow: visible;
    }

    .acf-block-preview .our-values.is-enhanced .our-values--item .desc-container p {
        position: absolute;
    }

    .acf-block-preview .our-values--item .title-container p {
        display: block;
        color: var(--framb-light);
        font-size: 40px;
        font-style: normal;
        font-weight: 300;
        line-height: 140%;
        margin-bottom: 24px;
        padding-block: 0;
        cursor: default;
        transition: color 0.3s ease, font-weight 0.3s ease;
    }

    .acf-block-preview .our-values.is-enhanced .our-values--item .title-container p {
        cursor: pointer;
    }

    .acf-block-preview .our-values--item .title-container p::after {
        content: none;
        display: none;
    }

    .acf-block-preview .our-values.is-enhanced .our-values--item .title-container p::after,
    .acf-block-preview .our-values.is-enhanced .our-values--item.is-active .title-container p::after {
        content: none;
        display: none;
    }

    .acf-block-preview .our-values--item.is-active .title-container p {
        color: var(--framb-mid);
        font-weight: 700;
    }

    .acf-block-preview .our-values--item.is-active .svg-container {
        opacity: 1;
        visibility: visible;
    }

    .acf-block-preview .our-values.is-enhanced .our-values--item.is-active .desc-container {
        opacity: 1;
        visibility: visible;
    }

    .acf-block-preview .our-values--item.is-active .title-container p::after {
        content: none;
        display: none;
    }
}

@media screen and (min-width: 992px) {
    .acf-block-preview .our-values--header {
        flex-direction: row;
        align-items: flex-end;
        gap: clamp(16px, 5.56vw, 80px);
        justify-content: space-between;
    }

    .acf-block-preview .our-values--header>* {
        flex: 1;
    }
}

.acf-block-preview .our-values--buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 768px) {
    .acf-block-preview .our-values--buttons {
        margin-top: 80px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .our-values--item .title-container p,
    .our-values--item .desc-container,
    .acf-block-preview .our-values--item .title-container p,
    .acf-block-preview .our-values--item .desc-container {
        transition: none;
    }
}

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