.footer-buttons {
    display: flex;
    gap: 20px;
}

.footer-btn {
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f5c98b;
    text-decoration: none;
    background: linear-gradient(180deg, #1a1a1a, #0e0e0e);
}

.service-hotline {
    color: var(--e-global-color-secondary);
    font-family: var(--font-stack-heading);
}

.service-hotline a {
    font-size: 24px;
    display: block;
    color: var(--e-global-color-secondary);
}

.footer-menu-heading {
    color: var(--e-global-color-secondary);
    font-family: var(--font-stack-heading);
    font-size: 18px;
    font-weight: 500;
}

.footer-menu a {
    font-family: var(--font-stack-heading);
    font-size: 16px;
    position: relative;
    display: block;
    padding: 10px 0 10px 20px;
}

.footer-menu a::before {
    content: "";
    width: 5px;
    height: 5px;
    background: #3D3D3D;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.footer-icon {
    font-family: var(--font-stack-heading);
}

.footer-copyrights {
    margin-top: 30px;
    padding-top: 20px;
    font-size: 16px;
}

.footer-copyrights .e-con-inner {
    border-top: 1px #323232 solid;
}

.footer-copyrights .e-con-inner>* {
    flex: 0 0 33%;
}

.footer-copyrights .social {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-copyrights .credits {
    text-align: center;
}

.footer-copyrights .icp {
    text-align: right;
}

@media screen and (min-width: 769px) {
    .footer-menu.noheading {
        margin-top: 69px;
    }
}

@media screen and (min-width: 1365px) {
    .footer-menu {
        flex: 0 0 25%;
    }
    .footer-menu.noheading {
        flex: 0 0 50%;
    }
}

@media screen and (max-width: 1023px) {
    .footer-buttons {
        flex-direction: column;
    }

    .footer-buttons-wrapper {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .footer-buttons {
        width: 100%;
    }

    .footer-btn {
        padding: 20px;
    }

    .footer-menu-heading::after {
        content: '+';
        font-size: 1.5rem;
        transition: transform .3s ease;
        position: absolute;
        right: 0;
    }

    .footer-menu-heading.active::after {
        content: '-';
    }

    .footer-menu-sub-wrap {
        max-height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        transition: max-height .3s ease-out;
    }
}