footer {
  background: var(--color-onyx);
  width: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-family: var(--font-primary);
  padding: 50px 0;
}

footer .top-section {
  width: 100%;
  padding: 0 50px;
  display: flex; 
  align-items: flex-start;
  justify-content: space-between;
}

footer .top-section .info-block {
  max-width: 400px
}

.footer-logo {
  width: 200px;
  margin: 0 0 20px 0;
}

footer .nav-block {
  display: flex;
}

footer .list-item {
  min-width: 80px;
  font-family: var(--font-primary);
  font-size: 13.352px;
  font-weight: 300;
  line-height: 26.705px;
  margin-left: 25px;
}

footer .list-item div[data-hs-cos-field="title"] {
  font-weight: 500;
}

footer .nav-block ul, footer .policy-nav ul {
  list-style-type: none;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0;
}

footer .nav-block ul li {
  margin: 15px 0;
}

.nav-block ul a {
  color: #fff;
  font-weight: 300;
}

.nav-block ul a:hover {
  border-color: #fff;
}

.info-block {
  display: flex;
  max-width: 40%;
  flex-direction: column;
  font-family: var(--font-primary);
  font-size: 13.352px;
  font-weight: 300;
  line-height: 26.705px
}

.white-stroke {
  width: calc(100% - 100px);
  height: 1px;
  background: #fff;
  margin: 50px;
}

.bottom-section-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
}

.bottom-policies-copyright {
  width: calc(100% - 100px);
  margin: 100px 50px 50px;
  display: flex; 
  align-items: center;
  justify-content: space-between;
  font-weight: 300;
  color: #fff;
  font-size: 13.352px;
}

footer .policy-nav ul {
  display: flex;
}

footer .policy-nav ul li {
  margin-right: 20px;
}

footer .policy-nav ul li a {
  font-weight: 300;
  color: #fff;
  font-size: 13.352px;
}

footer .policy-nav ul li a:hover {
  border-color: #fff;
}

@media (max-width: 1200px) {
  footer .top-section {
    flex-direction: column;
  }

  footer .list-item {
    margin-left: 0;
    margin-right: 50px;
  }

  .bottom-section-logos {
    flex-wrap: wrap;
    gap: 15px;
  }

  .bottom-logo {
    min-width: 100px;
  }
}

@media (max-width: 780px) {
  footer .top-section, footer .bottom-section-logos, footer .bottom-policies-copyright, footer .white-stroke {
    padding: 0 20px;
  }

  footer .bottom-policies-copyright, footer .white-stroke {
    margin: 50px 0;
  }

  footer .bottom-policies-copyright {
    width: 100%;
  }

  footer .white-stroke {
    width: calc(100% - 40px);
  }

  footer .list-item {
    margin-right: 30px;
    width: calc(50% - 30px);
  }

  footer .info-block {
    max-width: 100%;
  }
}

@media (max-width: 698px) {
  footer .nav-block {
    flex-wrap: wrap;
  }

  footer .nav-block .list-item {
    margin-bottom: 20px;
  }

  footer .nav-block .list-item li {
    text-indent: 0;
    padding-left: 0;
  }

  footer .bottom-policies-copyright {
    flex-direction: column;
    align-items: flex-start;
  }

  footer .policy-nav ul {
    margin-bottom: 30px;
    flex-direction: row;
    align-items: flex-start;
  }

  footer .policy-nav ul li {
    text-indent: 0;
    padding-left: 0;
  }


}

}