@charset "utf-8";
.footer__menu-ico img{
     width: 32px;
    height: auto;
  }
.footer{
    background-color: #FFF;
    padding: 2rem 0 1rem;
    position: relative;
    font-size: 14px;
}

.footer-wrap{
    width: 80%;
    margin: 3rem auto 1rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    overflow: hidden;
}

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

.footer-left-text-list{
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 1rem;
}

.footer-left-text-list p:first-child{
    font-weight: bold;
}

.footer-logo{
  width:  400px;
  margin-bottom:  2rem;
}

.footer__copy{
  text-align: center;
}

.footer-btn{
  position: absolute;
  top: -36px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: fit-content;
}

.footer-btn img{
  width:72px;
  height: 72px;
}

.footer__menu{
   display: flex;
   flex-direction: row;
  flex-wrap: wrap;
   gap: 3rem;
  margin-bottom: 2rem;
}

.footer__menu-item{
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
}

.footer__menu a{
   margin-bottom: 1rem;
  width: fit-content;
  height: fit-content;
}

.footer__menu a p{
   font-weight: bold;
}

.footer__menu-item a:first-child{
   margin-bottom: 1rem;
    width: fit-content;
    height: fit-content;
}

.footer__menu-item a:first-child p{
   font-weight: bold;
}

.footer__menu-item a:not(:first-child){
   position: relative;
   padding-left: 1rem;
}

.footer__menu-item a:not(:first-child) p{
   font-weight: 400;
   font-size: 14px;
}

.footer__menu-item a:not(:first-child):before{
   content: "";
   position: absolute;
   top: 0.75rem;
   left: 0;
   width: 0.5rem;
   height: 1px;
   background-color: #000;
}


@media (max-width: 1024px) {
  .footer{
        padding: 2rem 0 1rem;
  }
  .footer-wrap{
     display: flex;
     flex-direction: column-reverse;
     gap: 1rem;
     justify-content: center;
     width: 90%;
     align-items: flex-start;
  }
  .footer__menu{
     gap: 1.5rem;
  }
  
   .footer-left-text-list{
      display: flex;
     flex-direction: column;
  }
}
