/* 푸터 스타일 */

footer {
  width: 100%;
  padding: 80px 120px;
  background-color: #000000;
  color: #ffffff;
}

.footer_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
}

.footer_top_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer_social_media_container {
  display: flex;
  align-items: center;
  gap: 56px;
}

.footer_menu_text {
  color: #75777d;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 100% */
}

.footer_mid_container {
  display: flex;
  flex-direction: column;
  gap: 6px;

  /* 글자 */
  color: #f6f7fa;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px; /* 100% */
  letter-spacing: -0.42px;
}

.office_name_sub {
  color: #7b818d;
  font-size: 10px;
  font-weight: 500;
  line-height: 10px; /* 100% */
  letter-spacing: -0.3px;
}

.footer_bottom_container {
  padding-top: 10px;
  color: #f6f7fa;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px; /* 100% */
  letter-spacing: -0.42px;
  line-height: 2;
}

/* 모바일 스타일 */
@media (max-width: 767px) {
  /* 푸터 스타일 */

  footer {
    width: 100%;
    padding: 60px 40px;
    background-color: #000000;
    color: #ffffff;
  }

  .footer_top_container {
    width: 100%;
    gap: 40px;
    flex-direction: column;
    display: flex;
    align-items: flex-start;
  }
  /* 로고랑 사이트 메뉴 부분 순서 조정 */
  .footer_social_media_container {
    order: 1;
    justify-content: space-between;
    gap: 0px;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .footer_top_container img {
    order: 2;
    width: 111px;
  }

  .footer_menu_text {
    font-size: 20px;
  }

  .footer_bottom_container {
    width: 100%;
  }
}

/* 테블릿 스타일 */
@media (min-width: 767px) and (max-width: 1024px) {
  .mobile-br {
    display: none;
  }
  .web-br {
    display: none;
  }
  .tab-br {
    display: inline;
  }
  footer {
    width: 100%;
    padding: 80px 80px;
    background-color: #000000;
    color: #ffffff;
  }

  .footer_top_container {
    width: 100%;
    gap: 40px;
    flex-direction: column;
    display: flex;
    align-items: flex-start;
  }
  /* 로고랑 사이트 메뉴 부분 순서 조정 */
  .footer_social_media_container {
    order: 1;
  }
  .footer_top_container img {
    order: 2;
    width: 111px;
  }

  /* 사이트 메뉴 부분 */
  .footer_social_media_container {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .footer_menu_text {
    font-size: 20px;
  }

  .footer_bottom_container {
    width: 80%;
  }
}
