footer ul:not(.list-unstyled), footer ol:not(.list-unstyled){
    padding-left: 0;
    list-style-type: none;
}
footer ul li, footer ul li a, footer ul li span{
    font-size: 14px;
    line-height: 20px;
    color: #fff !important;
}
footer{
    background-color: #000054;
    padding: 64px 0 56px 0;
    font-family: Arial, Helvetica, sans-serif;
}
.footer-megamenu{
    display: flex;
    list-style-type: none;
    width: 100%;
    justify-content: space-between;
    padding-bottom: 64px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 24px;
}
.footer-megamenu > li > a{
    margin-bottom: 24px;
    display: block;
}
.footer-megamenu > li:first-child ul li{
    padding-left: 28px;
}
.footer-megamenu > li > a{
    font-weight: 700;
}
.footer-submenu li{
    margin-top: 10px;
}
.footer-submenu li a{
    font-weight: 400;
    text-decoration: underline;
}
.footer-submenu li a:hover{
    text-decoration: none;
}
.footer-bottom-section {
    display: flex;
    justify-content: space-between;
}
.copyright-section{
    width: 65%;
}
.copyright-section ul{
    display: flex;
    flex-wrap: wrap;
}
.copyright-section ul li:after{
content: '|';
color: #fff;
padding: 0 4px;
}
.copyright-section ul li:last-child::after{
    content: '';
}
.social-icons-section{
    width: 25%;
    display: flex;
    justify-content: right;
}
.social-icons-section li{
    margin-right: 12px;
}
.social-icons-section li:last-child{
    margin-right: 0;
}
.footer-megamenu-mobile{
    display: none;
}
@media screen and (max-width: 991px) {
    footer{
        padding: 24px 0 16px 0;
    }
    .footer-megamenu{
        display: none;
    }
    .footer-megamenu-mobile{
        display: block;
    }
    footer ul li, footer ul li a, footer ul li span{
        font-size: 16px;
        line-height: 24px;
    }
    footer .footer-accordion-header {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 16px 0;
        background: #000054;
        border-top: 1px solid #d2d2d2;
      }
      footer li:last-child .footer-accordion-header{
        border-bottom: 1px solid #d2d2d2;
      }
      footer .footer-accordion-body {
        display: none;
      }
      footer .footer-accordion-item.active .footer-accordion-body {
        display: block;
      }
      .non-accordion{
        margin-bottom: 24px;
      }
      .non-accordion a {
        margin-bottom: 8px;
        display: inline-block;
      }
      footer .footer-accordion-item svg{
        transition: all 0.3s ease-in-out;
      }
      footer .footer-accordion-item.active svg{
        transform: rotate(180deg);
        transition: all 0.3s ease-in-out;
      }
      footer .footer-submenu.footer-accordion-body{
        margin-bottom: 16px;
      }
      .footer-bottom-section{
        flex-direction: column-reverse;
      }
      .copyright-section, .social-icons-section{
        width: 100%;
      }
      .social-icons-section{
        margin: 24px 0 16px 0;
        justify-content: flex-start
      }
      
}