/** Shopify CDN: Minification failed

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

**/
.froo-builder-section {

    .title {
        &.h1 {

            text-transform: uppercase;
            font-weight: 400;

            strong {
                color: rgb(var(--color-accent));
                font-weight: 500;
            }

            font-size: 2.3rem;

            @media screen and (min-width: 750px) {
                font-size: 3.5rem;
            }
        }
    }

    .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;
        }


        .block__item__image-block img {
            transition: transform var(--duration-long) ease-in-out;
            transform-origin: center;
            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: 60%;
                align-items: var(--block-text-align);
                padding: 2rem 2rem;

                @media screen and (min-width: 750px) {
                    padding: 3rem 3rem;
                }

                h5 {
                    font-weight: 500;
                    font-size: calc(var(--title-size) * 0.8);
                    margin: 0;
                    padding: 0;
                    line-height: 1;

                    @media screen and (min-width: 1100px) {
                        font-size: var(--title-size);
                    }
                }

                h4 {
                    font-size: calc(var(--title-size) * 0.7);
                    font-weight: 800;
                    padding: 0;
                    margin: 0 0 1rem;
                    line-height: 1;

                    @media screen and (min-width: 1100px) {
                        font-size: var(--title-size);
                    }

                    a {
                        text-decoration: none;
                    }
                }

                div {
                    font-size: 1.2rem;
                    font-weight: 400;
                    line-height: 1;
                    margin: 0 0 2rem;
                    max-width: 85%;

                    p {
                        margin: 0;
                    }

                    @media screen and (min-width: 1100px) {
                        font-size: 1.3rem;
                    }
                }

                .button {
                    min-height: unset;
                    font-weight: 500;
                    font-size: 1.4rem;
                    color: var(--button-color);
                    background: none;
                    padding: 0;
                    min-width: unset;
                    text-decoration: underline;
                    text-underline-offset: 3px;

                    @media screen and (max-width: 749px) {
                        font-size: 1.2rem;
                    }
                }
            }
        }

        &.block__item-stacked {
            padding: 0rem 1rem 1rem;
            border: 1px solid #e1e1e1;

            .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_svg_wrapper {
                max-width: 10rem;
                max-height: 7.6rem;
                margin: 0 auto;
                aspect-ratio: 1/1;

                svg {
                    max-width: 10rem;
                    max-height: 7.6rem;
                    width: 100%;
                    height: 100%;
                    color: rgb(var(--color-foreground));
                    transition: all ease-in-out .3s;
                }

                margin-bottom: 1rem;
            }

            .block__item__content {
                position: relative;
                text-align: center;
                padding: 0;
                margin: 0 auto;

                h4 {
                    font-size: 2rem;
                    font-weight: 400;
                    padding: 0;
                    margin: 0.5rem 0 0;
                    position: relative;
                    top: -1rem;
                    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 {
                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);
            }
        }
    }