.footer {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--hc-color-white);
    background-color: var(--hc-color-black);
    z-index: 1;
    overflow: hidden;
}

.footer-top {
    display: flex;
    width: 100%;
    padding: 2rem 0 1rem;
    z-index: 2;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    row-gap: 15px;
    column-gap: 15px;
    width: 100%;
}

.footer-top-grid .footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 15px;
    column-gap: 15px;
    width: 100%;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 2;
}

.footer-brand .footer-brand-logo {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-brand .footer-brand-logo img {
    display: block;
    width: auto;
    height: 100px;
    max-width: 100%;
    max-height: 100%;
}

.footer-brand-desc {
    font-size: 14px;
}

.footer-brand .footer-brand-desc {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
}

.footer-brand .footer-brand-desc p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--hc-color-white);
}

.footer-menus {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 1;
}

.footer-menus-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-menus-item h4 {
    color: var(--hc-color-neutral-200);
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-menus-item ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
    min-width: 150px;
}

.footer-menus-item li,
.footer-menus-item li a {
    display: flex;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--hc-color-white);
}

.footer-menus-item li:hover,
.footer-menus-item li a:hover {
    color: var(--hc-color-primary-500);
}

.footer-address {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    background: var(--hc-color-primary-700);
    padding: 16px;
}

.footer-address h4 {
    color: var(--hc-color-white);
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-address ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0 15px 0 0;
}

.footer-address li,
.footer-address li a {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--hc-color-white);
}

.footer-address li a:hover {
    color: var(--hc-color-primary-500);
}

.footer-address i {
    color: var(--hc-color-white);
}

.footer-bottom {
    display: flex;
    width: 100%;
    padding: 0 0 2rem;
    z-index: 2;
}

.footer-bottom-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 15px;
    column-gap: 20px;
}

/* menu static */
.footer-menu-static {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.footer-menu-static ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    row-gap: 10px;
    column-gap: 5px;
}

.footer-menu-static li,
.footer-menu-static li a {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--hc-color-white);
}

.footer-menu-static li:hover,
.footer-menu-static li a:hover {
    color: var(--hc-color-primary-500);
}

/*social media at footer*/
.footer-social-network {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    flex: 1;
}

.footer-social-network h4 {
    color: var(--hc-color-neutral-200);
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-social-network ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 10px;
}

.footer-social-network li {
    display: flex;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.footer-social-network li:hover .social-network-icon-box {
    opacity: 0.8;
    border-color: #111111;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.footer-social-network .iconbox.variant-circle {
    width: 40px;
    height: 40px;
    background-color: var(--hc-color-white);
}

.footer-social-network .iconbox.variant-circle span {
    background-color: var(--hc-color-black);
}

/*footer-copyright*/
.footer-copyright {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.footer-copyright p,
.footer-copyright p a {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--hc-color-white);
}

.footer-copyright p a:hover {
    color: var(--hc-color-primary-500);
}

.list-mjk-icon-item span {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
}