/* Style the page of regions */
.PageRegions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    width: 100%;

    padding-left: 17px;
    padding-right: 17px;
}

    .PageRegions__Header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;

        width: 100%;

        margin-bottom: 47px;
    }

    @media screen and (max-width: 550px){
        .PageRegions__Header {
            justify-content: center;
        }
    }

        .PageRegionsHeader__Titul {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-end;

            color: rgb(217, 221, 225);

            width: 100%;
        }

        @media screen and (max-width: 550px){
            .PageRegionsHeader__Titul {
                justify-content: center;
            }
        }

            .PageRegionsHeader__Titul > span {
                color: rgb(247, 197, 47);

                margin-left: 4px;
                margin-right: 4px;
            }

        .PageRegionsHeader__Title {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;

            width: 100%;
        }

        @media screen and (max-width: 550px){
            .PageRegionsHeader__Title {
                justify-content: center;
            }
        }

            .PageRegionsHeader__Title > h2 {
                text-align: left;
                max-width: 600px;
            }

            @media screen and (max-width: 550px){
                .PageRegionsHeader__Title > h2 {
                    text-align: center;
                }
            }

    .PageRegions__Block {
        display: grid;
        align-items: flex-start;
        justify-content: flex-start;

        grid-template-columns: repeat( auto-fit, minmax( 210px, 1fr ) );

        width: 100%;

        gap: 17px;
    }

    @media screen and (max-width: 475px){
        .PageRegions__Block {
            grid-template-columns: repeat( auto-fit, minmax( 140px, 1fr ) );
        }
    }

        .PageRegionsBlock__Item {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
            
            border-radius: 3px;

            padding: 17px;
            
            cursor: pointer;
            transition: 0.4s;
        }

            .PageRegionsBlock__Item:nth-of-type( even ) {
                background: url( '/wp-content/themes/sizif-app-version/assets/images/system/themes/sizif-themes-background-box-350x250-v3.svg' ), rgb(60, 64, 68);
                background-size: cover;
                background-position: top right;
                background-repeat: no-repeat;
            }

                .PageRegionsBlock__Item:nth-of-type( even ):hover {
                    transition: 0.2s;
                    background: url( '/wp-content/themes/sizif-app-version/assets/images/system/themes/sizif-themes-background-box-350x250-v3.svg' ), rgb(64, 68, 72);
                    background-size: cover;
                    background-position: top right;
                    background-repeat: no-repeat;
                }

            .PageRegionsBlock__Item:nth-of-type( odd ) {
                background: url( '/wp-content/themes/sizif-app-version/assets/images/system/themes/sizif-themes-background-box-350x250-v4.svg' ), rgb(60, 64, 68);
                background-size: cover;
                background-position: top right;
                background-repeat: no-repeat;
            }

                .PageRegionsBlock__Item:nth-of-type( odd ):hover {
                    transition: 0.2s;
                    background: url( '/wp-content/themes/sizif-app-version/assets/images/system/themes/sizif-themes-background-box-350x250-v4.svg' ), rgb(64, 68, 72);
                    background-size: cover;
                    background-position: top right;
                    background-repeat: no-repeat;
                }

            .PageRegionsBlock__Item:hover > a {
                color: rgb(247, 197, 47);
            }

            .PageRegionsBlock__Item > span {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: flex-start;

                color: rgb(227, 231, 235);
                font-weight: 700;
                text-decoration: none;
                text-transform: none;

                transition: 0.4s;
            }

                .PageRegionsBlock__Item > span > i {
                    font-size: 32px;
                    margin-right: 14px;
                }

                .PageRegionsBlock__Item > a > i {
                    font-size: 32px;
                    margin-right: 14px;
                }