 #mobile-contact-bar {
     position: sticky;
     bottom: 0;
     left: 0;
     z-index: 9999;
     box-sizing: border-box;
     width: 100%;
     display: none;
     font-size: 1em;
 }

 #mobile-contact-bar-outer {
     width: 100%;
     background-color: #5d8aa8;
     box-sizing: border-box;
     height: 65px;
     overflow: hidden;
 }

 #mobile-contact-bar ul {
     box-sizing: border-box;
     line-height: 0;
     list-style-type: none;
     margin: 0;
     padding: 0;
     position: relative;
     text-align: center;
     width: 100%;
     display: flex;
 }

 #mobile-contact-bar ul li {
     box-sizing: border-box;
     display: inline-block;
     margin: 0;
     padding: 0;
     text-align: center;
     height: 65px;
     width: 25%;
 }

 #mobile-contact-bar ul li a {
     color: #fff;
     cursor: pointer;
     display: flex;
     justify-content: center;
     align-items: center;
     height: 100%;
     position: relative;
     z-index: 9998;
 }

 #mobile-contact-bar ul li a span {
     display: inline-block;
     height: 2em;
     line-height: 2em;
     position: relative;
     vertical-align: middle;
     width: 2.5em;
 }

 .screen-reader-text {
     position: absolute !important;
     width: 1px;
     height: 1px;
     padding: 0;
     margin: -1px;
     overflow: hidden;
     clip-path: inset(50%);
     white-space: normal !important;
     border: 0;
 }

 @media (max-width: 767px) {
     #mobile-contact-bar {
        display: block;
    }
 }

 /* body {
     padding-top: 60px;
 } */