@charset "utf-8";

.footer{
  padding: 4rem 10% 2.5rem;
  position:relative;
  border-bottom:30px solid #000;
  border-top:1px solid #000;
}


.footer .logo{
  width:275px;
}

.footer-wrap{
  display: flex;
  margin:0 auto 2.5rem;
  justify-content: space-between;
  font-weight:bold;
}

.footer-left{
  width:40%;
  display: flex;
  justify-content: space-between;
}

.footer-left-img{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-insta{
  width:2.5rem;
}

.footer-address{
  width:250px;
}

.footer-address-list {
  display: flex;
  align-items:flex-start;
  gap:1rem;
  margin-bottom:1rem;
}

.footer-address-list div p:last-child{
  font-size:12px;
}

.footer-address-list img{
  width:14px;
}

.footer-logo{
  width:275px;
  margin-bottom:1rem;
}

.footer-right{
  width:60%;
  display: flex;
  flex-wrap:wrap;
  gap: 1.5rem 5rem;
  justify-content: end;
}

.footer-right-list{
  display: flex;
  flex-wrap:wrap;
  flex-direction:column;
  gap:1rem;
}

.footer-right-list a{
  position:relative;
  padding-left:1.5rem;
}

.footer-right-list a::before{
  content:"";
  position:absolute;
  width:10px;
  height:10px;
  background:#67CCB4;
  border-radius:999vh;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.copyright{
  font-size:1rem;
}

@media (max-width: 1600px) {
  .footer {
    padding: 4rem 5% 2.5rem;
  }
  .footer-logo {
    width: 200px;
  }
  .footer-left{
    width: 45%;
    max-width: 500px;
  }
  .footer-left-img{
    gap:0;
  }
  .footer-right{
    gap: 1.5rem 3rem;
  }
}

@media (max-width: 1279px) {
  .footer-wrap{
    flex-direction: column;
    gap: 1rem;
  }
  .footer-right {
    width: 100%;
  }
  .footer-left {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .footer{
    padding: 4rem 5% 3rem;
  }
  .footer-wrap {
    gap: 3rem;
    margin: 0 auto 3rem;
    flex-direction: column;
    align-items: center;
  }
  .footer-left{
    flex-direction: column;
    gap:1rem;
    width: fit-content;
  }
  .footer-right {
    width: 80%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-logo {
    width: 270px;
  }
  .page-top {
    width: 3rem;
    top: -1.5rem;
  }
  .copyright {
    text-align: center;
  }
}
