/** Shopify CDN: Minification failed

Line 387:5 Expected "}" to go with "{"

**/
.froo-builder-section {

    &.color-scheme-3 {
        background: var(--logo-overlay) right center rgb(var(--color-background));
    }

    .block__item {
        position: relative;
        overflow: hidden;

        .block__item__image-block {
            overflow: hidden;
            -webkit-backface-visibility: hidden;
            -webkit-transform: translate3D(0, 0, 0);
            transform-style: preserve-3d;

            @media screen and (max-width: 749px) {
                .media.ratio::before {
                    padding-bottom: 40%;
                }
            }
        }


        .block__item__image-block img {
            transition: transform var(--duration-long) ease-in-out;
            transform-origin: right;
            transform-style: preserve-3d;
        }

        &.block__item-actions {
            display: flex;
            flex-direction: column;
            padding: 3rem 1rem;

            @media screen and (max-width: 749px) {
                padding: 1.5rem 0.5rem;
            }

            &:hover .block__item__image-block img {
                transform: scale(1.03);
            }

            &.text-align-flex-start {
                text-align: left;
            }

            &.text-align-center {
                text-align: center;
            }

            &.text-align-flex-end {
                text-align: right;
            }

            &.position-align-flex-start {
                justify-content: flex-start;
            }

            &.position-align-center {
                justify-content: center;
            }

            &.position-align-flex-end {
                justify-content: flex-end;
            }

            .block__item__icon_block {
                .svg-wrapper {
                    width: 4rem;
                    height: 4rem;
                }

                margin-bottom: 1rem;
            }

            h4 {
                font-size: var(--font-size);
                font-weight: 600;
                margin: 0;

                @media screen and (max-width: 749px) {
                    font-size: clamp(1.3rem, 2vw, 1.4rem);
                }
            }

            p {
                font-size: 1.4rem;
                margin: 0;

                @media screen and (max-width: 749px) {
                    font-size: 1.1rem;
                }
            }
        }


        &:hover .block__item__image-block img {
            transform: scale(1.04);
            transform-style: preserve-3d;
        }

        h4,
        .button,
        p {
            position: relative;
            z-index: 2;
        }

        .button {

            &::before,
            &::after {
                display: none;
            }
        }

        &.block__item-standard {
            @media screen and (max-width: 549px) {
                .froo-collection-blocks__image-block {
                    max-height: 22rem;

                    .ratio::before {
                        padding-bottom: 22rem;
                    }
                }
            }

            border-radius: 5px;

            @media screen and (min-width: 550px) and (max-width: 989px) {
                .froo-collection-blocks__image-block {
                    max-height: 30rem;

                    .ratio::before {
                        padding-bottom: 30rem;
                    }
                }
            }

            .block__item__image-block a:after {
                content: '';
                position: absolute;
                top: 0;
                background: #000000;
                opacity: var(--block-opacity);
                z-index: 1;
                width: 100%;
                height: 100%;
            }

            @media screen and (max-width: 749px) {
                .block__item__image-block .media {
                    --ratio-percent: 60% !important;
                }
            }

            .block__item__content {
                justify-content: var(--block-position-align);
                position: absolute;
                display: flex;
                top: 0;
                bottom: 0;
                flex-direction: column;
                width: 80%;
                align-items: var(--block-text-align);
                padding: 2rem 1rem;

                @media screen and (min-width: 750px) {
                    padding: 3rem 3rem;
                    width: 70%;
                }

                h5 {
                    font-weight: 500;
                    font-size: calc(var(--title-size) * 0.8);
                    margin: 0 0 0.5rem;
                    padding: 0;
                    line-height: 1;
                    text-transform: uppercase;

                    @media screen and (min-width: 1100px) {
                        font-size: var(--title-size);
                    }
                }

                h4 {
                    font-size: calc(var(--title-size) * 0.7);
                    font-weight: 500;
                    padding: 0;
                    margin: 0 0 2rem;
                    line-height: 1;
                    text-transform: uppercase;

                    @media screen and (min-width: 1100px) {
                        font-size: var(--title-size);
                    }

                    a {
                        text-decoration: none;
                    }
                }

                div {
                    font-size: 1.3rem;
                    font-weight: 400;
                    line-height: 1;
                    margin: 0 0 3rem;
                    max-width: 100%;

                    @media screen and (max-width: 749px) {
                        display: none;
                    }

                    p {
                        margin: 0;
                    }

                    @media screen and (min-width: 1100px) {
                        font-size: 1.5rem;
                    }
                }

                .button {
                    min-height: unset;
                    font-weight: 600;
                    font-size: 1.5rem;
                    color: var(--button-color);
                    background: none;
                    padding: 0;
                    text-transform: none;
                    min-width: unset;
                    text-decoration: underline;
                    text-underline-offset: 3px;
                    font-family: var(--font-body-family);
                    opacity: 1;

                    @media screen and (max-width: 749px) {
                        font-size: 1.3rem;
                    }
                }
            }
        }

        &.block__item-stacked {
            padding: 1rem 1rem;
            border-radius: 4px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
            aspect-ratio: 1/1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: transform cubic-bezier(.5, -.75, .7, 2) .3s, background ease-in-out .4s;
            position: relative;

            &:hover {
                transform: translateZ(0.75rem) scale(1.1);
                transform-origin: center;
                z-index: 5;
                box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
            }

            .block__item__image-block a:after {
                content: '';
                position: absolute;
                top: 0;
                background: #000000;
                opacity: var(--block-opacity);
                z-index: 1;
                width: 100%;
                height: 100%;
            }

            .block__item__image-block {

                margin-bottom: 1rem;

                width: 100%;
                max-width: 5.5rem;

                @media screen and (min-width: 750px) {
                    width: 8rem;
                    height: 9rem;
                    max-width: 10rem;
                }

                display: inline-flex;
                align-items: center;
            }

            .block_svg_wrapper {
                /* max-width: 10rem;
                max-height: 7.6rem;
                margin: 0 auto;
                 */

                svg {
                    /* max-height: 7.6rem; */
                    width: 100%;
                    height: 100%;
                    color: rgb(var(--color-foreground));
                    transition: all ease-in-out .3s;

                    max-width: 5.5rem;
                    max-height: 5rem;

                    @media screen and (min-width: 750px) {
                        max-width: 10rem;
                        max-height: 7.5rem;
                    }
                }

                width: fit-content;
                margin: 0 auto;
            }

            .block__item__content {
                position: relative;
                text-align: center;
                padding: 0;
                margin: 0 auto;

                h4 {
                    font-size: 1.2rem;
                    font-weight: 500;
                    padding: 0;
                    margin: 0;
                    line-height: 1;
                    text-align: center;
                    display: flex;
                    align-items: center;
                    justify-content: center;

                    @media screen and (min-width: 750px) {
                        font-size: var(--title-size);
                    }

                    a {
                        text-decoration: none;
                        transition: all ease-in-out .3s;
                    }
                }
            }


            &:hover {
                background: rgb(var(--color-button)) !important;

                svg {

                    /* color: rgb(var(--color-accent)); */
                }

                .block__item__content h4 a {
                    /* color: rgb(var(--color-accent)) !important; */
                }
            }
        }

    }

    .group-wrapper {
        .grid-layout {
            display: grid;
            grid-template-columns: repeat(var(--grid-mobile-columns), 1fr);
            column-gap: calc(var(--grid-gap) * 0.5);
            row-gap: calc(var(--grid-gap) * 0.5);

            /* @media screen and (min-width: 750px) {
            grid-template-columns: repeat(calc(var(--grid-columns) - 1), 1fr);
            column-gap: var(--grid-gap);
            row-gap: var(--grid-gap);
        } */

            @media screen and (min-width: 990px) {
                grid-template-columns: repeat(var(--grid-columns), 1fr);
                column-gap: var(--grid-gap);
                row-gap: var(--grid-gap);
            }
        }
    }