footer {
  width: 100%;
  background-color: var(--main-light);
  position: relative;
  top: -1px;
}

footer .footerline {
  width: 100%;
  height: 201px;
  background-color: var(--main-black);
  border-bottom-left-radius: 120px;
  border-bottom-right-radius: 120px;
}

footer .footer-content {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: left;
}
.footer-content span {
  font-family: 'Formular';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
}

@media (max-width: 425px) {
  footer .footerline {
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
  }
  footer .footer-content {
    justify-content: center;
  }
}
