.pre_footer_container {
  width: 100%;
  padding: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.pre_footer_text1 {
  font-size: clamp(45px, 1.771vw, 44px);
}

.pre_footer_text2 {
  margin-top: 12px;
  font-size: clamp(22px, 0.885vw, 21px); 
}

.logo_container {
  display: grid;
  gap: 42px;
  margin-top: 90px;
}

.logo_container img {
  width: 150px;
  height: auto;
}

@media (min-width: 1024px) {
  .logo_container {
      grid-template-columns: repeat(12, 1fr);
  }

  .logo_container img {
    grid-column: span 3;
  }

  .logo_container img:nth-child(5) {
      grid-column: 2 / span 3;
  }
}

@media (max-width: 1023px) {
  .logo_container {
      grid-template-columns: repeat(3, 1fr);
  }
  .logo_container img:nth-child(7) {
      grid-column: 2 / span 1;
  }
}

.footer_container {
  width: 100%;
  padding: 100px 200px;
  padding-bottom: 205px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg2);
}

.footer_left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.footer_company {
  font-family: 'Pretendard';
  font-weight: 700;
  font-size: clamp(13px, 0.781vw, 15px);
}

.footer_title {
  font-family: 'Pretendard';
  font-weight: 400;
  font-size: clamp(13px, 0.781vw, 15px);
  line-height: 1.5;
}

.footer_text {
  font-family: 'Pretendard';
  font-weight: 400;
  font-size: clamp(13px, 0.781vw, 15px);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.copyright_text {
  margin-top: 30px;
  font-family: 'Pretendard';
  font-weight: 400;
  font-size: clamp(13px, 0.781vw, 15px);
  color: rgba(255, 255, 255, 0.6);
}

/********** Mobile CSS **********/
@media (max-width: 1024px) {
  .pre_footer_container {
    padding: 80px 30px;
  }
  
  .pre_footer_text1 {
    font-size: 22px;
  }
  
  .pre_footer_text2 {
    margin-top: 12px;
    font-size: 15px; 
  }
  
  .logo_container {
    gap: 42px;
    margin-top: 40px;
  }
  
  .logo_container img {
    width: 80px;
  }
  
  .footer_container {
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    row-gap: 32px;
    padding-bottom: 145px;
  }
  
  .footer_left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .footer_company {
    font-size: 14px;
  }
  
  .footer_title {
    font-size: 14px;
  }
  
  .footer_text {
    font-size: 14px;
  }
  
  .copyright_text {
    font-family: 'Pretendard';
  }
}