.footer-center-inner {
  display: flex;
  align-items: flex-start;
  justify-content: stretch;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
}

.footer-logo-area {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--section-content-space-medium);
  border-bottom: 1px solid var(--border-color);
}
.footer-menu-item {
  flex: 1;
}
.footer-menu-title {
  position: relative;
  padding-bottom: var(--section-content-space-medium);
  word-break: break-word;
}
.footer-menu-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(var(--section-content-space-medium) / 2);
  width: 64px;
  height: 4px;
  background: var(--color-primary);
}

.footer-menu-list {
  display: flex;
  flex-direction: column;
  gap: 12px 16px;
}

.footer-menu-list.lg-two-column {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: stretch;
}
.footer-menu-list.lg-two-column .footer-menu-item {
  width: 50%;
}

.footer-copyright-area .footer-copyright-inner {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 16px;
  padding-bottom: 16px;
  width: 100%;
  gap: 20px;
}

.footer-copyright-area .footer-copyright-inner .footer-copyright-text {
  text-align: start;
  flex: 1;
}
.footer-copyright-area .footer-copyright-inner.one-column .footer-copyright-text,
.footer-copyright-area .footer-copyright-inner.three-column .footer-copyright-text{
  width: 100%;
  text-align: center;
}

@media screen and (max-width:1024px) {
  .footer-center-inner.small-column-gap {
    gap: 20px;
  }
  .footer-copyright-inner.three-column {
    flex-wrap: wrap;
  }
  .footer-copyright-inner.three-column .footer-logo-img {
    order: 1;
  }
  .footer-copyright-inner.three-column .footer-copyright-text {
    order: 3;
    width: 100%;
    text-align: center;
    width: 100%;
    flex: auto;
  }  
  .footer-copyright-inner.three-column .footer-social-area {
    order: 2;
  }
}

@media screen and (max-width:992px) {
  .footer-center-inner {
    gap: 20px !important;
  }
  
  .footer-center-inner.small-column-gap .footer-menu-item {
    width: calc((100% - 20px) / 2);
    flex: auto;
  }
}
@media screen and (max-width:767px) {
  .footer-center-inner {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0 !important;
  }
  
  .footer-logo-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .footer-center-inner .footer-menu-item {
    width: 100% !important;
    border-top: 1px solid var(--border-color);
  }
  
  .footer-center-inner .footer-menu-item:last-of-type {
    border-bottom: 1px solid var(--border-color);
  }
  
  
  .footer-menu-title {
    position: relative;
    padding: 16px 0;
    margin-bottom: 0;
  }
  
  .footer-menu-title::before {
   content: none;
  }

  .footer-menu-title::after {
    font-family: "sicon";
    content: "\e653";
    font-size: 16px;
    position: absolute;
    top: 50%;
    right: 0;
    background: none;
    transform: translateY(-50%);
  }
  .footer-menu-title.open::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .footer-menu-list {
    display: none;
  }
  .footer-menu-list .footer-menu-link {
    padding: 8px 0;
  }
  .footer-menu-list .footer-menu-link:first-of-type {
    padding-top: 0;
  }
  .footer-menu-list .footer-menu-link:last-of-type {
    padding-bottom: 16px;
  }
  
  .footer-copyright-area .footer-copyright-inner.three-column {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-copyright-area .footer-copyright-inner.three-column .footer-copyright-text {
    text-align: start;
  }
}