/* Style the footer */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    background: url( '/wp-content/themes/sizif-app-version/assets/images/system/themes/sizif-themes-background-footer.svg' ), rgb(60, 64, 68);
    background-size: cover;
    background-position: left top;
    background-repeat: no-repeat;
    
    width: 100%;

    padding: 17px;
}

    .Footer__Logo {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        
        width: 100%;
        max-width: 1200px;

        margin-top: 47px;
        margin-bottom: 77px;
    }

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

        .Footer__Logo > a > img {
            width: 100%;
            height: auto;
            max-width: 256px;
        }

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

        border-top: 1px solid rgb(64, 68, 72);
        border-bottom: 1px solid rgb(64, 68, 72);

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

        width: 100%;
        max-width: 1200px;

        gap: 17px;

        padding-top: 27px;
        padding-bottom: 27px;
        margin-bottom: 27px;
    }

    @media screen and (max-width: 550px){
        .Footer__Block {
            gap: unset;
        }
    }

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

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

            width: 100%;
            max-width: 1200px;

            column-gap: 17px;
            row-gap: 27px;

            grid-column: span 2;

            padding-top: 15px;
        }

            .FooterBlockNavigation__Category {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;

                width: 100%;
            }

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

                    width: 100%;
                }

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

                        color: rgba(255, 237, 177, 0.1);
                        /* font-size: 24px; */
                    }

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

                        border-bottom: 1px solid rgba(255, 237, 177, 0.1);

                        width: 100%;

                        margin-bottom: 20px;
                    }

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

                            padding-bottom: 4px;
                            margin-left: 7px;
                        }

                .FooterBlockNavigationCategory__Block {
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    justify-content: flex-start;

                    width: 100%;
                }

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

                        width: 100%;
                    }

                        .FooterBlockNavigationCategoryBlock__Item > a > i {
                            display: flex;
                            flex-direction: row;
                            align-items: center;
                            justify-content: center;
                            
                            font-size: 10px;

                            width: 15px;
                            min-width: 15px;
                            
                            padding-right: 4px;
                        }

        .FooterBlock__Contacts {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;

            width: 100%;
        }

        @media screen and (max-width: 550px){
            .FooterBlock__Contacts {
                margin-top: 47px;
            }
        }

            .FooterBlockContacts__Data {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;

                background: rgb(64, 68, 72);
                border-radius: 3px;

                width: 100%;

                padding: 17px;
                margin-bottom: 27px;
            }

                .FooterBlockContactsData__Category {
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    justify-content: flex-start;

                    width: 100%;

                    margin-bottom: 27px;
                }

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

                        width: 100%;

                        margin-bottom: 7px;
                    }

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

                            border: 3px solid rgba(255, 237, 177, 0.1);
                            border-radius: 100%;

                            width: 36px;
                            height: 36px;
                            min-width: 36px;
                            min-height: 36px;
                        }

                            .FooterBlockContactsDataCategoryHeader__Icon > i {
                                background: rgb(60, 64, 68);
                                border-radius: 100%;

                                font-size: 16px;

                                padding: 7px;
                            }

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

                            border-bottom: 2px solid rgba(255, 237, 177, 0.1);

                            width: 100%;

                            padding-bottom: 3px;
                            margin-bottom: 17px;

                            transition: 0.4s;
                        }

                            .FooterBlockContactsDataCategoryHeader__Title > span {
                                color: rgb(247, 197, 47);
                                margin-left: 7px;
                            }

                    .FooterBlockContactsDataCategoryBlock {
                        display: flex;
                        flex-direction: column;
                        align-items: flex-start;
                        justify-content: flex-start;

                        width: 100%;
                    }

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

                            width: 100%;

                            margin-bottom: 2px;
                        }

                            .FooterBlockContactsDataCategoryBlock__Item > a > i {
                                display: flex;
                                flex-direction: row;
                                align-items: center;
                                justify-content: center;

                                text-align: center;

                                width: 40px;
                                min-width: 40px;
                            }

            .FooterBlockContacts__Socials {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-evenly;

                width: 100%;
            }

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

                    margin-left: 17px;
                }

                    .FooterBlockContactsSocials__Item:nth-of-type(1) {
                        margin-left: unset;
                    }

                    .FooterBlockContactsSocials__Item > a > img {
                        width: 100%;
                        height: auto;
                        max-width: 36px;
                    }

    .Footer__Cupyright {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;

        width: 100%;
        max-width: 1200px;
    }

    @media screen and (max-width: 550px){
        .Footer__Cupyright {
            flex-direction: column;
            justify-content: center;
        }
    }

        .FooterCupyright__Item {
            display: block;

            color: rgb(225, 225, 225);
            font-weight: 300;

            width: 100%;
        }

            .FooterCupyright__Item:nth-of-type(1) {
                text-align: left;
            }

            .FooterCupyright__Item:nth-of-type(2) {
                text-align: right;
            }

            @media screen and (max-width: 550px){
                .FooterCupyright__Item:nth-of-type(1) {
                    margin-bottom: 4px;
                }
                
                .FooterCupyright__Item:nth-of-type(1),
                .FooterCupyright__Item:nth-of-type(2) {
                    text-align: center;
                }
            }