.hc-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;
}

.hc-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;
}

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

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

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

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

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

.hc-footer-brand .hc-footer-brand-desc {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 75%;
    margin-bottom: 24px;
}

.hc-footer-brand .hc-footer-brand-desc h1,
.hc-footer-brand .hc-footer-brand-desc h2,
.hc-footer-brand .hc-footer-brand-desc h3,
.hc-footer-brand .hc-footer-brand-desc h4,
.hc-footer-brand .hc-footer-brand-desc h5,
.hc-footer-brand .hc-footer-brand-desc h6,
.hc-footer-brand .hc-footer-brand-desc p{
    color: var(--hc-color-white);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0;
}

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

.hc-footer-menus {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    flex: 1;
    gap: 20px;
}

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

.hc-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;
}

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

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

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

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

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

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

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

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

.hc-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 */
.hc-footer-menu-static {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hc-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;
}

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

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

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

.hc-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;
}

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

.hc-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;
}

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

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

.iconbox {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    width: 50px;
    height: 50px;
}

.iconbox span {
    color: var(--hc-color-gray-300);
}

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

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

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

/* Footer Cta */
.hc-footer-cta {
    display: flex;
    justify-content: space-between;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.hc-footer-cta .hc-footer-cta-action form {
    display: flex;
    gap: 8px;
}

.hc-footer-cta .hc-footer-cta-action .subscribe-btn {
    height: 38px;
}

.hc-footer-cta .hc-form-input input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--hc-color-white);
}

.hc-footer-cta .hc-form-control:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--hc-color-white);
}