.footer-menu {
    padding-left: 0;
    list-style-type: none;
}
.footer-phone-link {
    margin-top: 12px;
    color: #fff;
    display: block;
    font-size: 24px;
    font-weight: bold;
    line-height: none;
}
.footer-phone-link:hover {
    color: #e4e7d5;
}
footer .has-text-color {
    font-size: 16px !important;
}
.footer-email-link {
    margin-top: 12px;
    display: block;
    font-size: 16px;
    line-height: none;
    color: #d9dbe0;
}
.footer-email-link:hover {
    color: #fff;
}
.mobile-footer-section {
    display: none !important;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99;
    padding: 5px;
    height: 55px;
    box-shadow: 0 0 9px rgba(0, 0, 0, .12);
}

.mobile-footer-section a {
    text-decoration: none;
}

.social_icons a {
    transition: all 0.35s ease;
}

.scrollTopBtn  a {
    position: fixed;
    inset-inline-end: 20px;
    bottom: 20px;
    z-index: 350;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px !important;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, .17);
    border: none;
    font-size: 0px !important;
    opacity: 0;
    pointer-events: none;
    text-decoration: none !important;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateX(20px);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        visibility 0.35s ease,
        pointer-events 0.35s ease;
}

.scrollTopBtn a::before{
    content: "";
    width: 22px;
    height: 22px;
    display: block;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 19V5' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpath d='M5 12L12 5L19 12' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.scrollTopBtn.show a{
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

@media (max-width: 767px) {
    .mobile-footer-section {
        display: grid !important;
    }
    .mobile-footer-section p {
        font-size: 11px !important;
    }
    .copyright-wrapper {
        padding-bottom: 54px;
    }
    .mobile-footer-section + div {
        padding-bottom: 30px !important;
        padding-top: 30px !important;
    }
    .footer-account-icons{
        position: absolute;
        top: 23px;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }
    .footer-info-grid {
        display: flex !important;
        flex-wrap: wrap;
    }
    .footer-logo-section {
        width: 100%;
    }
    .footer-link-col-one, .footer-link-col-two {
        width: 44%;
    }
    .scrollTopBtn a {
        bottom: 60px;
    }
}