.tiles-three-cols .uptitle {
    margin-bottom: 24px;
}

@media screen and (min-width: 992px) {
    .tiles-three-cols .uptitle {
        justify-content: center;
    }
}

.tiles-three-cols h2 {
    margin-bottom: 32px;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.tiles-three-cols h2 strong {
    color: var(--framb-mid);
}

.tiles-three-cols--header {
    max-width: 860px;
    margin-inline: auto;
    margin-bottom: 32px;
    padding-inline: 16px;
}

@media screen and (min-width: 892px) {
    .tiles-three-cols--header {
        padding-inline: 0;
    }
}

@media screen and (min-width: 992px) {
    .tiles-three-cols--header {
        text-align: center;
        margin-bottom: 40px;
    }
}

.tiles-three-cols--item {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background-color: var(--framb);
    padding: 8px;
    width: 100%;
    transition: background-color 0.3s ease;
}

@media screen and (min-width: 992px) {
    .tiles-three-cols--item {
        width: calc(33.33% - 12px);
    }

    body:not(.home) .tiles-three-cols--item {
        height: 298px;
        position: relative;
        overflow: hidden;
    }
}

@media screen and (max-width: 991px) {
    .tiles-three-cols--item:not(.is-active) {
        padding: 0;
    }

    .tiles-three-cols--item:not(.is-active) img,
    .tiles-three-cols--item:not(.is-active) .desc p {
        display: none;
    }

    .tiles-three-cols--item:not(.is-active) .desc {
        padding: 12px 16px;
    }
}

.tiles-three-cols--item.is-active {
    background-color: #D29105;
}

.tiles-three-cols--item.is-active p {
    display: block;
    color: #FFF;
}

.tiles-three-cols--item.is-active .tiles-three-cols--toggle {
    display: none;
}

body:not(.home) .tiles-three-cols--item.is-active .tiles-three-cols--toggle {
    display: block;
    background-color: #FFF;
}

body:not(.home) .tiles-three-cols--item.is-active .tiles-three-cols--toggle span::before {
    -webkit-mask: url(../images/minus.svg) no-repeat center;
    mask: url(../images/minus.svg) no-repeat center;
    background-color: var(--framb);
}

@media screen and (min-width: 992px) {
    body:not(.home) .tiles-three-cols--item.is-active {
        background-color: var(--ocre);
    }

    body:not(.home) .tiles-three-cols--item.is-active .desc {
        top: 6px;
        justify-content: flex-start;
        background-color: var(--ocre);
        border-radius: 8px;
        height: 100%;
    }

    body:not(.home) .tiles-three-cols--item.is-active h3 {
        margin-bottom: 8px;
    }

    body:not(.home) .tiles-three-cols--item.is-active h3,
    body:not(.home) .tiles-three-cols--item.is-active p {
        color: #FFF;
    }

    body:not(.home) .tiles-three-cols--item.is-active p {
        max-height: 160px;
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.08s;
    }

    body:not(.home) .tiles-three-cols--item.is-active .tiles-three-cols--toggle {
        display: block;
        background-color: #FFF;
    }

    body:not(.home) .tiles-three-cols--item.is-active .tiles-three-cols--toggle span::before {
        -webkit-mask: url(../images/minus.svg) no-repeat center;
        mask: url(../images/minus.svg) no-repeat center;
        background-color: var(--framb);
    }
}

.tiles-three-cols--item img {
    display: block;
    height: clamp(130px, 20.89vw, 200px);
    width: 100%;
    border-radius: 8px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (min-width: 992px) {
    .tiles-three-cols--item img {
        height: 200px;
    }
}

.tiles-three-cols--item .desc {
    padding: 8px;
}

@media screen and (min-width: 992px) {
    .tiles-three-cols--item .desc {
        padding: 16px;
    }

    body:not(.home) .tiles-three-cols--item .desc {
        position: absolute;
        top: 210px;
        right: 6px;
        left: 6px;
        display: flex;
        flex-direction: column;
        background-color: var(--framb);
        transition: top 0.45s ease, padding 0.45s ease, background-color 0.45s ease;
    }
}

.tiles-three-cols--item h3 {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
    cursor: pointer;
}

.tiles-three-cols--item p {
    display: none;
    color: white;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.14px;
}

@media screen and (min-width: 992px) {
    body:not(.home) .tiles-three-cols--item p {
        display: block;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transform: translateY(24px);
        transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.45s ease;
    }
}

.tiles-three-cols--item h3+p,
.tiles-three-cols--item p+p {
    margin-top: 8px;
}

.tiles-three-cols--toggle {
    position: relative;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    background-color: #FFF;
    border: 0;
    padding: 0;
    flex-shrink: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tiles-three-cols--toggle:focus-visible,
.tiles-three-cols--nav button:focus-visible {
    outline: 3px solid var(--ocre);
    outline-offset: 4px;
}

@media screen and (min-width: 992px) {
    .tiles-three-cols--toggle {
        height: 40px;
        width: 40px;
    }
}

.tiles-three-cols--toggle span::before {
    display: block;
    content: "";
    -webkit-mask: url(../images/plus.svg) no-repeat center;
    mask: url(../images/plus.svg) no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    height: 14px;
    width: 14px;
    background-color: var(--framb);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 0.3s ease;
}

@media screen and (min-width: 992px) {
    .tiles-three-cols--toggle span::before {
        height: 16px;
        width: 16px;
    }
}

.tiles-three-cols--wrapper {
    overflow: visible;
}

@media screen and (max-width: 991px) {
    .tiles-three-cols--wrapper {
        padding-inline: 16px;
    }
}

.tiles-three-cols--nav {
    display: none;
}

@media screen and (max-width: 991px) {
    body:not(.home) .tiles-three-cols .swiper-wrapper {
        display: flex;
        flex-direction: column;
        gap: 8px;
        transform: none !important;
    }
}

@media screen and (min-width: 992px) {
    .tiles-three-cols .swiper-wrapper {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        flex-wrap: wrap;
        transform: none !important;
    }
}

@media screen and (min-width: 992px) {
    .tiles-three-cols .swiper-pagination {
        display: none;
    }
}

.tiles-three-cols .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--framb);
}

@media screen and (min-width: 992px) {
    .home .tiles-three-cols {
        padding-inline: 16px;
    }
}

.home .tiles-three-cols--item {
    background: var(--framb);
    width: 298px;
    padding: 8px;
}

@media screen and (min-width: 992px) {
    .home .tiles-three-cols--item {
        width: calc(33.33% - 12px);
    }

    .home .tiles-three-cols--item:nth-child(3n+2) {
        flex-direction: column-reverse;
    }
}

.home .tiles-three-cols--item img {
    display: block;
    height: 200px;
}

@media screen and (min-width: 992px) {
    .home .tiles-three-cols--item img {
        height: clamp(180px, 13.89vw, 200px);
    }
}

.home .tiles-three-cols--item .desc {
    padding: 16px;
}

.home .tiles-three-cols--item h3 {
    color: #FFF;
    display: block;
    font-size: 14px;
    cursor: default;
}

.home .tiles-three-cols--item p,
.home .tiles-three-cols--item .tiles-three-cols--toggle {
    display: none;
}

@media screen and (max-width: 991px) {
    .home .tiles-three-cols--wrapper {
        overflow: hidden;
        padding-left: 16px;
        padding-right: 0;
        padding-bottom: 40px;
    }
}

.home .tiles-three-cols--nav {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
}

@media screen and (min-width: 992px) {
    .home .tiles-three-cols--nav {
        display: none;
    }
}

.home .tiles-three-cols--nav button {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(274deg, #B47869 0%, #6E2919 123.98%);
    transition: all 0.3s ease;
}

.home .tiles-three-cols--nav button.swiper-button-disabled {
    opacity: 0.3;
}

.home .tiles-three-cols--nav button::before {
    content: "";
    width: 16px;
    height: 16px;
    background: white;
}

.home .tiles-three-cols--nav button.prev::before {
    -webkit-mask: url("../images/chevron-left.svg") no-repeat center;
    mask: url("../images/chevron-left.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.home .tiles-three-cols--nav button.next::before {
    -webkit-mask: url("../images/chevron-right.svg") no-repeat center;
    mask: url("../images/chevron-right.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

@media screen and (max-width: 991px) {
    .home .tiles-three-cols .swiper-wrapper {
        flex-direction: row;
        gap: 0;
    }
}

@media screen and (min-width: 992px) {
    .home .tiles-three-cols .swiper-wrapper {
        padding-bottom: 57px;
    }
}

/*# sourceMappingURL=style.css.map */
.acf-block-preview .tiles-three-cols .uptitle {
    margin-bottom: 24px;
}

@media screen and (min-width: 992px) {
    .acf-block-preview .tiles-three-cols .uptitle {
        justify-content: center;
    }
}

.acf-block-preview .tiles-three-cols h2 {
    margin-bottom: 32px;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.acf-block-preview .tiles-three-cols h2 strong {
    color: var(--framb-mid);
}

.acf-block-preview .tiles-three-cols--header {
    max-width: 860px;
    margin-inline: auto;
    margin-bottom: 32px;
    padding-inline: 16px;
}

@media screen and (min-width: 892px) {
    .acf-block-preview .tiles-three-cols--header {
        padding-inline: 0;
    }
}

@media screen and (min-width: 992px) {
    .acf-block-preview .tiles-three-cols--header {
        text-align: center;
        margin-bottom: 40px;
    }
}

.acf-block-preview .tiles-three-cols--item {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background-color: var(--framb);
    padding: 8px;
    width: 100%;
    transition: background-color 0.3s ease;
}

@media screen and (min-width: 992px) {
    .acf-block-preview .tiles-three-cols--item {
        width: calc(33.33% - 12px);
    }

    body:not(.home) .acf-block-preview .tiles-three-cols--item {
        height: 298px;
        position: relative;
        overflow: hidden;
    }
}

@media screen and (max-width: 991px) {
    .acf-block-preview .tiles-three-cols--item:not(.is-active) {
        padding: 0;
    }

    .acf-block-preview .tiles-three-cols--item:not(.is-active) img,
    .acf-block-preview .tiles-three-cols--item:not(.is-active) .desc p {
        display: none;
    }

    .acf-block-preview .tiles-three-cols--item:not(.is-active) .desc {
        padding: 12px 16px;
    }
}

.acf-block-preview .tiles-three-cols--item.is-active {
    background-color: #D29105;
}

.acf-block-preview .tiles-three-cols--item.is-active p {
    display: block;
    color: #FFF;
}

.acf-block-preview .tiles-three-cols--item.is-active .acf-block-preview .tiles-three-cols--toggle {
    display: none;
}

@media screen and (min-width: 992px) {
    body:not(.home) .acf-block-preview .tiles-three-cols--item.is-active {
        background-color: var(--ocre);
    }

    body:not(.home) .acf-block-preview .tiles-three-cols--item.is-active .desc {
        top: 6px;
        justify-content: flex-start;
        background-color: var(--ocre);
        border-radius: 8px;
        height: 100%;
    }

    body:not(.home) .acf-block-preview .tiles-three-cols--item.is-active h3 {
        margin-bottom: 8px;
    }

    body:not(.home) .acf-block-preview .tiles-three-cols--item.is-active h3,
    body:not(.home) .acf-block-preview .tiles-three-cols--item.is-active p {
        color: #FFF;
    }

    body:not(.home) .acf-block-preview .tiles-three-cols--item.is-active p {
        max-height: 160px;
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.08s;
    }

    body:not(.home) .acf-block-preview .tiles-three-cols--item.is-active .acf-block-preview .tiles-three-cols--toggle {
        display: block;
        background-color: #FFF;
    }

    body:not(.home) .acf-block-preview .tiles-three-cols--item.is-active .acf-block-preview .tiles-three-cols--toggle span::before {
        -webkit-mask: url(../images/minus.svg) no-repeat center;
        mask: url(../images/minus.svg) no-repeat center;
        background-color: var(--framb);
    }
}

.acf-block-preview .tiles-three-cols--item img {
    display: block;
    height: clamp(130px, 20.89vw, 200px);
    width: 100%;
    border-radius: 8px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (min-width: 992px) {
    .acf-block-preview .tiles-three-cols--item img {
        height: 200px;
    }
}

.acf-block-preview .tiles-three-cols--item .desc {
    padding: 8px;
}

@media screen and (min-width: 992px) {
    .acf-block-preview .tiles-three-cols--item .desc {
        padding: 16px;
    }

    body:not(.home) .acf-block-preview .tiles-three-cols--item .desc {
        position: absolute;
        top: 210px;
        right: 6px;
        left: 6px;
        display: flex;
        flex-direction: column;
        background-color: var(--framb);
        transition: top 0.45s ease, padding 0.45s ease, background-color 0.45s ease;
    }
}

.acf-block-preview .tiles-three-cols--item h3 {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
    cursor: pointer;
}

.acf-block-preview .tiles-three-cols--item p {
    display: none;
    color: white;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.14px;
}

@media screen and (min-width: 992px) {
    body:not(.home) .acf-block-preview .tiles-three-cols--item p {
        display: block;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transform: translateY(24px);
        transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.45s ease;
    }
}

.acf-block-preview .tiles-three-cols--item h3+p,
.acf-block-preview .tiles-three-cols--item p+p {
    margin-top: 8px;
}

.acf-block-preview .tiles-three-cols--toggle {
    position: relative;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    background-color: #FFF;
    border: 0;
    padding: 0;
    flex-shrink: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

@media screen and (min-width: 992px) {
    .acf-block-preview .tiles-three-cols--toggle {
        height: 40px;
        width: 40px;
    }
}

.acf-block-preview .tiles-three-cols--toggle span::before {
    display: block;
    content: "";
    -webkit-mask: url(../images/plus.svg) no-repeat center;
    mask: url(../images/plus.svg) no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    height: 14px;
    width: 14px;
    background-color: var(--framb);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 0.3s ease;
}

@media screen and (min-width: 992px) {
    .acf-block-preview .tiles-three-cols--toggle span::before {
        height: 16px;
        width: 16px;
    }
}

.acf-block-preview .tiles-three-cols--wrapper {
    overflow: visible;
}

@media screen and (max-width: 991px) {
    .acf-block-preview .tiles-three-cols--wrapper {
        padding-inline: 16px;
    }
}

.acf-block-preview .tiles-three-cols--nav {
    display: none;
}

@media screen and (max-width: 991px) {
    body:not(.home) .acf-block-preview .tiles-three-cols .swiper-wrapper {
        display: flex;
        flex-direction: column;
        gap: 8px;
        transform: none !important;
    }
}

@media screen and (min-width: 992px) {
    .acf-block-preview .tiles-three-cols .swiper-wrapper {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        flex-wrap: wrap;
        transform: none !important;
    }
}

@media screen and (min-width: 992px) {
    .acf-block-preview .tiles-three-cols .swiper-pagination {
        display: none;
    }
}

.acf-block-preview .tiles-three-cols .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--framb);
}

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