.business_section{
    margin: 0 auto;
    margin-top: 30vh;
    margin-bottom: 15vh;
    justify-content: center;
    width: fit-content;
}

.first_row{
    display: flex;
    gap: 10vw;
    align-items: center;
    justify-content: center;
}

/* Grid */
    /* 1 & 3 - Small Grids */
    .small_grid_wrapper{
        display: flex;
        gap: 10vw; /* Match gap between "SiteFly" logo and the first grid */
    }

    /* TO MAKE GRIDS TITLED */
        .small_grid_1{
            transform: rotate(-8deg);
        }

        .small_grid_2{
            transform: rotate(8deg);
        }

    .grid{
        color: whitesmoke;
        height: 100%;

        h2{
            font-size: 0.85vw;
            text-indent: 5px;
            letter-spacing: 1px;
            margin: 7px 0 7px 0;
            color: lightgray;
        }

        .inner_grid{
            text-align: center;
            background-color:var(--bento_grid_background_color);
            border: var(--bento_grid_border);
            display: inline-flex;
            padding: 2rem;
            border-radius: 20px;
        
            h3{
                margin: 0;
                font-size: 4vw;
            }
        }

            .small_grid{
                flex-direction: column;
                gap: 5px;

                    span{
                        font-size: 1.25vw;
                        color: rgb(149, 149, 149);
                    }
            }
    }

/* Jiggle animation on "Page Built" grid */
    .page_built_grid:hover {
        animation: jiggle_left 1s forwards;
    }

    .page_built_grid:not(:hover) {
        animation: jiggle_left_reverse 1s forwards; 
    }


/* Jiggle animation on "Stress Test" grid */
    .stress_test_grid:hover{
        animation: jiggle_right 1s forwards;
    }

    .stress_test_grid:not(:hover) {
        animation: jiggle_right_reverse 1s forwards; 
    }

/* 2 - Logo Flash */
    .business_section h1{
        margin: 0;
        color: white;
        font-size: 5vw;
        letter-spacing: 2px;
        text-shadow: 0 0 10px whitesmoke,
                    0 0 15px  rgb(200, 200, 200),
                    0 0 20px   rgb(200, 200, 200),
                    0 0 40px   rgb(200, 200, 200),
                    0 0 60px black,
                    0 0 10px   rgb(200, 200, 200),
                    0 0 90px black;

        animation: flash 8s infinite;
    }
        .business_section a{
            text-decoration: none;
            transition: all 0.2s ease-in-out;
        }
            .business_section a:hover{
                transform: scale(1.15);
            }


/* 4 - Long grid - (Performance) */
    .second_row {
        margin-top: 3.5rem;
        display: flex;
        justify-content: center; 
        width: 100%;
    }

    .performance_grid_wrapper {
        width: 100%;
    }

        .performance_grid{
            text-align: center;
            justify-content: space-between;
            width: 100%; 
            box-sizing: border-box; 
            
            h3{
                padding-bottom: 20px;
                padding: 0;
                color: whitesmoke;
                /* To make center of score have no background */
                background-color: var(--bento_grid_background_color);
                border-radius: 50%;
                padding: 1.5vw;
            }
        }
            .rating {
                text-align: center;
                margin: 1.4vw;
                font-size: 1.25vw;
                font-weight: 550;
                cursor: cell;
            }

            .business_grid_3_inner_3{
                line-height: 1.3;
            }
            
                .circle {
                    position: relative;
                    width: 8.4vw;
                    height: 8.4vw;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-bottom: 20px;
                }

            .rating_1,
            .rating_3{
                background: conic-gradient(
                    rgba(0,204,102,255) 0% 98%,
                    var(--custom_black) 98% 100%
                );
            }

            .rating_2,
            .rating_4{
                background: conic-gradient(
                    rgba(0,204,102,255) 0% 101%,
                    var(--custom_black) 100% 100%
                );
                h3{
                    padding: 1.5vw 0.4vw;
                }
            }

            /* Jiggle */
                .rating_1:hover,
                .rating_3:hover{
                    animation: jiggle_left 1s forwards;
                }

                .rating_3:not(:hover),
                .rating_1:not(:hover){
                    animation: jiggle_left_reverse 1s forwards; 
                }
                
                .rating_4:hover,
                .rating_2:hover{
                    animation: jiggle_right 1s forwards;
                }

                .rating_4:not(:hover),
                .rating_2:not(:hover){
                    animation: jiggle_right_reverse 1s forwards; 
                }



/* KEYFRAME ANIMATIONS */

@keyframes flash{
    20%, 24%, 55%{
        color: var(--custom_black);
        text-shadow: none;
    }
    0%,19%, 21%, 23%, 25%, 54%, 56%, 100%{
        text-shadow: 0 0 5px whitesmoke,
                    0 0 15px   rgb(200, 200, 200),
                    0 0 20px   rgb(200, 200, 200),
                    0 0 40px   rgb(200, 200, 200),
                    0 0 60px black,
                    0 0 10px   rgb(200, 200, 200),
                    0 0 90px black;
        color: white;
    }
}

@keyframes jiggle_right {
    0%{ transform: rotate(0deg); }
    20%{ transform: rotate(8deg); }
    50%{ transform: rotate(5deg); }
    100%{ transform: rotate(8deg); }
}
    @keyframes jiggle_right_reverse {
        0% { transform: rotate(8deg); }
        20% { transform: rotate(0deg); }
        50% { transform: rotate(5deg); }
        100% { transform: rotate(0deg); }
    }

@keyframes jiggle_left {
    0%{ transform: rotate(0deg); }
    20%{ transform: rotate(-8deg); }
    50%{ transform: rotate(-5deg); }
    100%{ transform: rotate(-8deg); }
}

    @keyframes jiggle_left_reverse {
        0% { transform: rotate(-8deg); }
        20% { transform: rotate(0deg); }
        50% { transform: rotate(-5deg); }
        100% { transform: rotate(0deg); }
    }

    
