/*공동 컴포넌트 관련된 코드만 작성되었습니다. 페이지 요소 관련된 코드는 각 페이지 css에 작성되어 있습니다.*/
/*노트북*/
@media screen and (max-width: 1440px) {
  .container {
    margin: 0 5.5rem;
  }
  .mb-con {
    margin-bottom: 15.5rem;
  }
}
/*노트북 S*/
@media screen and (max-width: 1280px) {
  body,
  html {
    font-size: 14px;
  }
  .container {
    margin: 0 3rem;
  }
  .mb-con {
    margin-bottom: 15.5rem;
  }
}
/*tablet M*/
@media screen and (max-width: 1024px) {
  .container {
    margin: 0 1.5rem;
  }
  .mb-con {
    margin-bottom: 10rem;
  }
  #footer .container {
    flex-direction: column;
    gap: 2rem;
  }
  #footer .container > * {
    width: 100%;
    justify-content: center;
  }
  #footer .footer-info-item .h7 {
    width: 3.5rem;
  }
  #footer .footer-left-side {
    text-align: center;
  }
  #footer .footer-left-side img {
    width: 40%;
  }
  #footer .footer-right-side img.w-40 {
    width: 10%;
    min-width: 8rem;
  }
  #footer .footer-right-side .kolas-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--gray-05);
  }
}
/*tablet M*/
@media screen and (max-width: 768px) {
  body,
  html {
    font-size: 12px;
  }
  .body-l {
    font-size: 1.25rem;
  }
  .mb-con {
    margin-bottom: 8rem;
  }
  #header img {
    width: 6rem;
  }
  #header .nav-menu-link.short-cut {
    display: none;
  }
}
/*mobile*/
@media screen and (max-width: 576px) {
  h1 {
    font-size: 3.5rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  #header img {
    width: 4rem;
  }
  #header .nav-menu-link {
    height: 4.5rem;
    padding: 1.25rem 1rem;
    font-size: 1.25rem;
  }
}
