/** Shopify CDN: Minification failed

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

**/
.froo-builder-section {
    position: relative;
    background: var(--stripes) rgb(var(--color-background));

    /* &:after {
        content: '';
        width: 100%;
        max-width: 120rem;
        height: 21px;
        background: var(--shadow);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
    } */

    .block__item {
        position: relative;
        overflow: hidden;

        .block__item__image-block img {
            transition: transform var(--duration-long) ease;
            transform-origin: center;
        }

        &:hover .block__item__image-block img {
            transform: scale(1.03);
        }

        h4,
        .button,
        p {
            position: relative;
            z-index: 2;
        }

        .button {
            width: fit-content;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 1.3rem;
            background: rgb(var(--color-accent));
            color: rgb(var(--color-background));
            padding: 0 2rem;
            transition: all ease-in-out .3s;
            min-height: 4.3rem;

            &:hover {
                background: rgb(var(--color-foreground));
            }

            &::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;
                    }
                }
            }

            @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%;
            }

            .block__item__content {
                display: flex;
                top: 0;
                bottom: 0;
                flex-direction: column;
                width: 100%;
                align-items: var(--block-text-align);
                padding: 1rem 1rem 0;

                @media screen and (min-width: 750px) {
                    padding: 2rem 1rem 0;
                }

                h4 {
                    font-size: calc(var(--title-size) * 1);
                    font-weight: 600;
                    padding: 0;
                    margin: 0 0 1.5rem;
                    line-height: 1;

                    @media screen and (min-width: 750px) {
                        font-size: var(--title-size);
                    }

                    a {
                        text-decoration: none;
                    }
                }

                p {
                    font-size: 1.2rem;
                    font-weight: 600;
                    line-height: 1;
                    margin: 0 0 2rem;

                    @media screen and (min-width: 750px) {
                        font-size: 1.4rem;
                    }
                }


            }
        }

        &.block__item-card {
            box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
            border-radius: 1rem;

            @media screen and (max-width: 549px) {
                .froo-collection-blocks__image-block {
                    max-height: 22rem;

                    .ratio::before {
                        padding-bottom: 22rem;
                    }
                }
            }

            @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 {
                display: flex;
                top: 0;
                bottom: 0;
                flex-direction: column;
                width: 100%;
                align-items: var(--block-text-align);
                padding: 2rem 2rem;

                h4 {
                    font-size: calc(var(--title-size) * 1);
                    font-weight: 600;
                    padding: 0;
                    margin: 0 0 0.5rem;
                    line-height: 1;

                    @media screen and (min-width: 750px) {
                        font-size: var(--title-size);
                    }

                    a {
                        text-decoration: none;
                        transition: color ease-in-out .3s;
                    }
                }

                p {
                    font-size: 1.3rem;
                    font-weight: 400;
                    line-height: 1;
                    margin: 0 0;

                    display: flex;
                    align-items: center;

                    svg {
                        height: 1.4rem;
                        color: rgb(var(--color-accent));
                    }
                }

                .button {
                    width: fit-content;
                    font-weight: 500;
                    font-size: 1.5rem;
                    background: #fff;
                    color: #2b2356;
                    padding: 0 2rem;

                    @media screen and (max-width: 749px) {
                        font-size: 1.3rem;
                    }
                }
            }

            &:hover {
                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) * 1);
            row-gap: calc(var(--grid-gap) * 1.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);
            }
        }
    }