footer{
  background-color: #F9F9F9;
  width: 100%;
}
.footer_container{
  width: 100%;
  max-width: 1440px;
  padding:4rem;
  display: flex;
  margin: 0 auto;
  gap: 50px;
  justify-content: space-around;
  flex-wrap: wrap;
}

.left_footer .logo{
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.left_footer .logo p{
  white-space: nowrap;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
.left_footer .logo img{
  width: 159px;
  height: 159px;
}


.footerDetail {
  display: flex;
  gap: 2.4rem;
}

.footer_links {
  font-weight: bold;
}
.footer_links a {
  display: block;
}
.footerDetail {
  align-items: center;
  font-size: 1.2rem;
}
.footerDetail p{
  font-weight:bold;
}
.social a:hover {
  opacity: .7
}

.left_footer .social .img_container{
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  padding: .8rem;
  background-color: white;
  border: 1px solid var(--gray_back_2, #ECECEC);
  text-align: center;
  align-items: center;
}

.left_footer .social .img_container img{
  width: 100%;
  height: 100%;
}
.left_footer .social{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.right_footer{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 8rem;
}
.footer_links{
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0 auto;
}
.footer_links span{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.4rem;
}

.right_footer a:hover {
  text-decoration: underline;
}

.footer_links span p {
  font-weight: 700;
  border-bottom: 1px solid transparent;
}
.footer_links span ul{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.footer_links span li{
  list-style: none;
}
.footer_links span li a{
  text-decoration: none;
  font-weight: 500;
}
.footer_links span:hover p{
  border-bottom: 1px solid #C1C1C1;
}
.footer_links + p{
  color: var(--white, #FFF);
  text-align: center;
  font-weight: 700;
}
.footer_links + p span{
  color: #ADADAD;
  text-align: center;
  font-weight: 400;
}
@media(max-width: 1100px){

  .footer_links, .footer_container{

  }

  .left_footer .logo {
    width: 100%;
    flex-direction: column;
    margin-bottom: 2rem;
  }

  @media(max-width: 769px){
    .left_footer {

    }
    .left_footer .logo {
      width: 100%;
      flex-direction: column;
      margin-bottom: 2rem;
    }
    .footer_links{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
    .right_footer {
      gap: 10px;
    }
  }

  @media(max-width: 500px){
    .footer_links{
      grid-template-columns: repeat(1, 1fr);
      gap: 1.6rem;
      width: 100%;
    }
    .footerDetail {
      flex-direction: column;
      align-items: start;
    }
    .right_footer {
      gap: 1.6rem;

    }
    .footerDetail {
      gap: .8rem;
      align-items: left;
    }
  }
