/* Footer Styles */
.footer_section {
  position: relative;
}

.footer_bottom_wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer_wrap {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.75fr;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer_link_list,
.footer_link_item {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

.footer_link_element {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  padding: 0.25rem 0.25rem 0.25rem 0;
  transition: color 0.3s, padding 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.footer_link_element:hover {
  color: var(--theme--text);
  padding-left: 0.25rem;
  padding-right: 0;
}

.footer_link_element.is-button {
  background-color: var(--swatch--transparent);
}

.footer_cta_wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: space-between;
  display: flex;
}

.footer_socials_link {
  border: var(--element--border-width, 1px) solid var(--theme--overlay-20);
  border-radius: 100vw;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  transition: border-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
}

.footer_socials_link:hover {
  border-color: var(--theme--text);
}

.footer_navigation_wrap {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: start;
  display: grid;
}

.footer_nav_group_heading {
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.footer_nav_group_wrap {
  display: flex;
  flex-direction: column;
}

.footer_logo {
  width: 100%;
  max-width: 20rem;
}

.footer_image_wrap {
  display: block;
}

.socials_icon {
  width: 1.5rem;
  height: 1.5rem;
}

.socials_wrap {
  grid-column-gap: 0.75rem;
  grid-row-gap: 0.75rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

/* Responsive styles for footer */
@media screen and (max-width: 991px) {
  .footer_wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer_navigation_wrap {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .footer_navigation_wrap {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .socials_wrap {
    justify-content: center;
  }
  
  .footer_bottom_wrap {
    justify-content: center;
    text-align: center;
  }
}