@charset "utf-8";

.footer{
    padding: 2rem 0 1rem;
    position: relative;
    font-size: 14px;
    border-top: 1px solid #B9B9B9;
}

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

.footer-left-text{
    display: flex;
    gap: 1rem;
    height: fit-content;
}

.footer-logo{
  width:  140px;
  height: auto;
  margin: 0 auto;
}

.footer__desc{
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.footer__copy{
  text-align: left;
  padding-left: 5%;
}

.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;
  font-size: 1.25rem;
}

.footer__menu a p{
  font-size: 1.25rem;
}

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

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

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

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


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