.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::before {
    content: "";
    position: absolute;
    top: 30px;
    right: -120px;
    background: url("../images/content/footer-char-1.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 400px;
    height: 400px;
    z-index: -1;
}

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

.footer-top-grid {
    display: grid;
    grid-template-columns: 2fr 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: 30px;
}

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

.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-600);
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.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;
    width: 70%;
}

.footer-address h4 {
    color: var(--hc-color-neutral-600);
    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:hover,
.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: 3rem 0 2rem;
}

.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: 15px;
}

.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-600);
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.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;
    line-height: 1;
    margin-bottom: 0;
    color: var(--hc-color-white);
}

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