@charset "utf-8";

.footer{
    background-color: #000;
    padding: 2rem 0 0;
    position: relative;
  	color: #FFF;
    border-bottom: #B31C00 20px solid;
}

.footer-wrap{
    width: 80%;
    margin: 3rem auto;
    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:  280px;
  margin-bottom:  2rem;
}

.footer__copy{
  padding: 1.5rem 0;
  width: 100%;
  text-align: center;
  border-top: 1px solid #FFF; 
}

.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: column;
   gap: 3rem;
   margin-bottom: 2rem;
}

.footer__menu-item{
   display: flex;
   gap: 3rem;
}

.footer__menu a{
  display: flex;
  gap: .5rem;
  align-items: center;
   margin-bottom: 1rem;
  width: fit-content;
  height: fit-content;
  color: #fff;
}

.footer__menu a img{
  width: 21px;
  height: 28px;
}

.footer__menu a:hover{
  text-decoration: none;
  opacity: 0.8;
  color: #fff;
}

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

@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: center;
     margin: 0 auto;
  }
  .footer-left-text{
     margin-bottom: 3rem;
  }

}

@media (max-width: 768px) {
  .footer__menu-item{
     gap: 1.5rem;
  }
  .footer__menu{
    margin: 2rem auto;
  }
  .footer__menu-item{
    flex-wrap: wrap;
  }
  .footer-logo{
    width:  180px;
  }
}

@media (max-width: 414px) {
  .footer__menu-item{
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer__menu{
     gap: 1.5rem;
  }
}


