.main-footer{
    color: #fff;
    background-color: #323232;
    padding: 45px 0;
    .footer-top{
        display: flex;
        flex-direction: column;
        gap: 40px;
        @media (min-width: 768px){
            margin-bottom: 90px;
        }
        @media (min-width: 1024px){
            flex-direction: row;
            gap: 50px;
            margin-bottom: 110px;
        }
        .logo{
            width: 153px;
            margin-top: 40px;
        }
        .menu-wrap{
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            position: relative;
            margin-bottom: 70px;
            @media (min-width: 1024px){
                flex: 1;
                flex-direction: row;
                gap: 10px;
            }
            @media (min-width: 1405px){
                gap: 20px;
            }
            .menu{
                position: relative;
                &:before{
                    content: "";
                    display: block;
                    position: absolute;
                    left: 0;
                    right: 0;
                    height: 2px;
                    width: 100%;
                    border-top: 2px solid hsla(0, 0%, 100%, 0.1);
                    @media (min-width: 1024px){
                        display: none;
                    }
                }
                a{
                    font-size: 15px;
                    line-height: 1.3;
                    color: #fff;
                    display: block;
                }
                .accordion-header{
                    a{
                        word-break: break-word;
                        font-weight: 600;
                        padding: 15px 45px 15px 0;
                        position: relative;
                        text-decoration: none;
                        @media (min-width: 1024px){
                            padding: 15px 5px 15px 0;
                            border-bottom: 2px solid hsla(0, 0%, 100%, 0.1);
                        }
                        &:before, &:after{
                            content: "";
                            display: block;
                            position: absolute;
                            transition: all 0.3s ease-in-out;
                            background-color: #fff;
                            height: 2px;
                            top: 50%;
                            width: 12px;
                            @media (min-width: 1024px){
                                display: none;
                            }
                        }
                        &:before{
                            transform: rotate(45deg);
                            right: 18px;
                        }
                        &:after{
                            transform: rotate(135deg);
                            right: 10px;
                        }
                        &.active{
                            &:before{
                                transform: rotate(-45deg);
                            }
                            &:after{
                                transform: rotate(225deg);
                            }
                        }
                    }
                }
                .accordion-content{
                    overflow: hidden;
                    transition: max-height 0.3s ease-in-out;
                    &:not(.active){
                        max-height: 0;
                        @media (min-width: 1024px){
                            max-height: 100% !important;
                        }
                    }
                    .accordion-content-inner{
                        padding: 30px 10px 30px 26px;
                        background-color: hsla(0, 0%, 100%, 0.1);
                        @media (min-width: 1024px){
                            background-color: transparent;
                            padding-left: 0;
                            padding-top: 20px;
                        }
                        a{
                            margin-bottom: 4px;
                            &:hover, &:active{
                                font-weight: 600;
                                text-decoration: underline;
                            }
                        }
                    }
                }
            }
        }
    }
    .footer-socials{
        display: flex;
        flex-direction: column;
        gap: 20px;
        border-top: 2px solid hsla(0, 0%, 100%, 0.1);
        padding: 40px 0;
        flex-wrap: wrap;
        @media (min-width: 768px){
            flex-direction: row;
        }
        > div{
            display: flex;
            align-items: center;
            gap: 20px;
        }
        a{
            display: block;
            min-width: 120px;
            i {
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                transition: all 0.3s ease-in-out;
                font-size: 40px;
            }
            span{
                color: #fff;
                font-size: 12px;
                display: block;
                text-align: center;
                margin-top: 8px;
            }
            &:hover, &:active{
                i{
                    color: #b7b7b7;
                }
            }
        }
    }
    .footer-bottom{
        border-top: 2px solid hsla(0, 0%, 100%, 0.1);
        padding: 40px 0 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        @media (min-width: 768px){
            flex-direction: row;
        }
        @media (min-width: 1024px){
            padding: 40px 0 0;
        }
        p{
            margin: 0;
            font-size: 14px;
            font-weight: 600;
        }
    }
}