.footer {
    padding-top: 100px;
    padding-bottom: 40px;
    border-top: 1px solid  #D4D4D4;
    @media screen and (max-width: 1400px) {
        border: none;
    }
    @media screen and (max-width: 768px){
        padding-top: 50px;
    }
    .main-title-with-line {
        width: 100%;
        display: none;
        @media screen and (max-width: 1400px) {
            display: block;
        }
        &::after {
            top: 50%;
        }
    }
    .footer-top {
        width: 100%;
        display: none;
        .footer-logos {
            padding: 0 30px;
            position: relative;
            background-color: #fff;
            z-index: 2;
        }
        @media screen and (max-width: 1400px) {
            display: block;
        }
    }
    .footer--inner {
        display: flex;
        flex-wrap: wrap;
    }
    .footer-menu-lists {
        flex: 1;
        display: flex;
        justify-content: space-between;
        @media screen and (max-width: 1400px){
            flex: 0 0 100%;
            max-width: 100%;
            margin-bottom: 40px;
        }
        @media screen and (max-width: 768px){
            flex-direction: column;
            margin-bottom: 0;
        }
    }
    .footer-menu-list {
        .title {
            font-family: $font-primary-bold;
            font-size: 16px;
            color: rgba(0, 0, 0, 0.8);
            margin-bottom: 30px;
            @media screen and (max-width: 768px){
                font-size: 14px;
                margin-bottom: 12px;
            }
        }
    }
    .main-menu-list {
        flex: 1;
        @media screen and (max-width: 768px){
            margin-bottom: 40px;
        }
        .footer-menu {
            display: flex;
            @media screen and (max-width: 768px){
                flex-wrap: wrap;
            }
            > .menu-item {
                padding-right: 5%;
                @media screen and (max-width: 768px){
                    padding-right: 0;
                    flex: 0 0 100%;
                    display: flex;
                    flex-wrap: wrap;
                    align-items: center;
                    margin-bottom: 8px;
                }
            }
        }
        .submenu {
            @media screen and (max-width: 768px){
                display: none;
                flex: 0 0 100%;
            }
            &.open {
                display: block;
            }
            .menu-item {
                margin-bottom: 6px;
                &.hidden-list {
                    display: none;
                }

            }
            .see-all {
                color: $color-primary;
                text-decoration: underline;
            }
            .menu-link {
                font-family: $font-primary-bold;
                color: $text-light;
            }
        }
        .openSubMenu {
            display: none;
            margin-left: auto;
            flex: 1;
            justify-content: end;
            text-align: right;
            &.up {
                transform: rotateX(-180deg);
            }
            @media screen and (max-width: 768px){
                display: flex;
            }
        }
    }
    .social-menu-list {
        padding-right: 5%;
    }
    .social-menu {
        display: flex;
        align-items: center;
        li {
            margin-right: 20px;
            @media screen and (max-width: 768px){
                margin-right: 12px;
            }
            img {
                height: 22px;
                @media screen and (max-width: 768px){
                    height: 18px;
                }
            }
        }
        .social-link {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            @media screen and (max-width: 768px){
                width: 24px;
                height: 24px;
            }
        }
    }
    .footer-menu {
        .submenu {
            margin-top: 24px;
            @media screen and (max-width: 768px){
                margin-top: 12px;
            }
        }
        .footer-menu-link {
            font-family: $font-primary-bold;
            font-size: 16px;
            color: #000;
            @media screen and (max-width: 768px){
                font-size: 14px;
                padding-top: 4px;
                padding-bottom: 4px;
            }
        }
    }
    .footer-right {
        margin-left: auto;
        flex: 1;
        display: flex;
        align-items: flex-start;
        @media screen and (max-width: 1400px){
            flex: 0 0 100%;
            max-width: 100%;
        }
        .footer-logos {
            @media screen and (max-width: 1400px){
                display: none;
            }
        }
    }
    .footer-logos {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        margin-left: auto;
        .logo-first {
            max-width: 200px;
            margin-right: 20px;
            @media screen and (max-width: 768px){
                max-width: 100px;
            }
        }
        .logo-second {
            max-width: 120px;
            @media screen and (max-width: 768px){
                max-width: 56px;
            }
        }
    }
    .copyright-box {
        font-family: $font-primary-bold;
        margin-top: 65px;
        @media screen and (max-width: 768px){
            margin-top: 40px;
        }
        .copyright-text {
            font-size: 16px;
            color: #000;
            margin-bottom: 0;
            text-transform: capitalize;
            @media screen and (max-width: 768px){
                font-size: 12px;
            }
        }
    }
}
