.pr_5{
    padding-right: 5px;
}
.pl_5{
    padding-left: 5px;
}
.container-max {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
.footer_section{
    background-color: #242424;
    .footerLogo{
        width: 240px;
        margin: 0 auto;
    }
    .addressList{
        padding: 20px 0;
        border-bottom: 1px solid #ffffff40;
        a{
            font-size: 15px;
            display: inline-block;
        }
        p{
            font-size: 15px;
        }
        ul{
            display: flex;
            flex-wrap: wrap;
            li{
                width: 25%;
                position: relative;
                padding: 0 10px;
                .footerInfoHead{
                    position: relative;
                    padding-left: 25px;
                    &:before{
                        content: "";
                        position: absolute;
                        left: 0;
                        font-family: "FontAwesome";
                        top: 2px;
                        color: #e31837;
                        font-size: 14px;
                    }
                }
                
                &.footerCall{
                    .footerInfoHead{
                        &:before{
                            content: "\f2a0";
                        }
                    }
                }
                &.footerMail{
                    .footerInfoHead{
                        &:before{
                            content: "\f0e0";
                        }
                    }
                }
                &.footerWeb{
                    .footerInfoHead{
                        &:before{
                            content: "\f57d";
                        }
                    }
                }
                &.footerAddress{
                    .footerInfoHead{
                        &:before{
                            content: "\f3c5";
                        }
                    }
                }
            }
        }
    }
    .menuList{
        padding-right: 80px;
        ul{
            li:not(:last-child){
                margin-bottom: 20px;
            }
            li{
                a{
                    position: relative;
                    padding-right: 20px;
                    display: block;
                    &::after{
                        content: "\f019";
                        position: absolute;
                        right: 0;
                        top: 2px;
                        font-size: 16px;
                        font-family: "FontAwesome";
                        color: #e31837;
                    }
                }
            }
        }
    }
    .socialList{
        ul{
            li{
                padding: 0 20px;
                position: relative;
                &::after{
                    width: 1px;
                    height: 20px;
                    content: "";
                    position: absolute;
                    background-color: #ffffff40;
                    top: 50%;
                    transform: translateY(-50%);
                    right: 0;
                }
                &:last-child{
                    &::after{
                        display: none;
                    }
                }
                &:not(:last-child){
                    margin-bottom: 20px;
                }
                a{
                    display: flex;
                    gap:10px;
                    align-items: center;
                    i{
                        width: 25px;
                    }
                }
            }
        }
    }
}
@media(max-width:1100px) {
    .footer_section {
        .addressList {
            ul {
                li {
                    width: 50%;
                    margin-bottom: 20px;
                    .footerInfoHead {
                        margin-bottom: 5px;
                    }
                }
            }
        }
    }
    .footer_section{
        padding-bottom: 50px !important;
    }
}
@media(max-width:991px) {
    .footer_section {
        .menuList {
            padding-right:0px;
        }
    }
    .footer_section{
        padding-bottom: 40px !important;
    }
}
@media(max-width:768px) {
    .footer_section {
        .socialList {
            ul {
                li {
                    a{
                        span{
                            display: none;
                        }
                    }
                }
            }
        }
    }
    .footer_section{
        padding-bottom: 20px !important;
    }
}
@media(max-width:580px) {
    .footer_section {
        .addressList {
            ul {
                li {
                    width: 100%;
                    margin-bottom: 20px;
                    &:last-child{
                        margin-bottom: 0px;
                    }
                }
            }
        }
    }
    .footer_section {
        .footerLogo {
            width: 200px;
            margin: 0 auto;
        }
    }
    h4.fz_20 {
        font-size: 16px !important;
    }
    p.fz_18 {
        font-size: 16px !important;
    }
}