Current File : /home/mdkeenpw/public_html/wp-content/themes/logistik/assets/sass/update_2/_footer.scss
/*----------------------- Footer ----------------------*/
.footer-layout5 {
    position: relative;
    z-index: 2;

    &:before {
        content: "";
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, #121212 47.92%, rgba(18, 18, 18, 0.96) 100%);
        z-index: -1;
    }

    .widget-area {
        padding-top: 92px;
        padding-bottom: 66px;
    }

    .copyright-wrap {
        background-color: $black-color;
    }
}

.footer-icon-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    padding-bottom: 40px;
    @include md {
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px; 

    }
    @include xs {  
        grid-template-columns: repeat(1, 1fr);  
    }

    .footer-info {
        position: relative;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 120px;
        margin-right: 0px;
        @include lg {
            border-right: 0;
            padding-right: 0; 
        }

        &:last-child {
            border-right: 0;
            padding-right: 0;
            margin-right: 0;
        }

        .footer-icon {
            i {
                font-size: 40px;
                color: $theme-color;
                font-family: $icon-font;
                font-weight: 400;
            }
        }

        &_link {
            font-weight: 400;
            font-size: 16px;
            line-height: 28px;
            color: #9B9B9C;
            margin-bottom: 0;
            max-width: 200px;

            &:hover {
                a {
                    color: $theme-color; 
                }
            }

            a {
                color: inherit;
            }
        }
    }
}