.footer-container {
  padding: 48px 72px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo {
  width: 250px;
  aspect-ratio: 250 / 76;
}

.footer-box-right {
  height: 94px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-menu {
  width: 480px;
  display: flex;
  gap:  calc(100%* 48 / 480);
}

.footer-copy {
  text-align: right;
}

@media(max-width: 960px){
  .footer-logo {
    width: 160px;
  }
  .footer-menu{
    width: 430px;
    gap: 0;
    justify-content: space-between;
  }
}
@media(max-width: 768px){
  .footer-container{
    padding: 36px 40px;
    flex-direction: column;
    align-items: center;
    gap: 64px;
  }
  .footer-menu{
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    gap: 20px;
  }
  .footer-copy{
    text-align: center;
    font-size: 12px;
  }
  .footer-box-right{
    height: 102px;
  }
}