footer{
  width: 100%;
  height: 150px;
  background-color: #6EC3FF;
}
.footer-wrap{
  max-width: 1280px;
  height: 100%;
  margin: 50px auto 0;
}
footer span{
  color: #fff;
}
/* 윗줄 : 로고, 정보, sns */
.footer-up{
  height: 50%;

  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* 로고 */
.footer-logo{
  width: 15%;
  min-width: 100px;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: start;

  overflow: hidden;
}
.footer-logo>img{
  width: 100%;
}
/* 정보 */
.footer-info{
  min-width: 200px;
}
/* sns */
.footer-sns{
  display: flex;
  align-items: center;

  min-width: 200px;

  gap: 10px;
}



.footer-down{
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: end;
}
.footer-down>span{
  padding-bottom: 20px;
}

@media (width <= 800px){
  .footer-up{
    flex-direction: column;
    align-items:center;
    gap:10px;

    height: 80%;
    padding: 10px 0;
  }
  .footer-up>.footer-info{
    text-align: center;
    padding: 0 10px;
  }
  .footer-logo{
    width: 25%;
  }
  .footer-down{
    height: 20%;
    align-items: center;
  }
  .footer{
    height: 220px;
  }
  .footer-down>span{
    padding-bottom: 0;
  }
}