/* 1. wrapper1 ¼öÁ¤: background-image Á¦°Å, relative ¼³Á¤ */
.wrapper1 {
    width: 100%;
    position: relative; /* ÀÚ½Ä ¿ä¼ÒÀÇ absolute ±âÁØ */
    /* background-image ¼Ó¼º Á¦°Å */
    /* background-size, background-position ¼Ó¼º Á¦°Å */
    overflow: hidden; /* ÀÌ¹ÌÁö°¡ È®´ëµÉ ¶§ ¿µ¿ª ¹ÛÀ¸·Î ³ª°¡´Â °ÍÀ» ¼û±è */
}

/* 2. ÀÌ¹ÌÁö ¾Ö´Ï¸ÞÀÌ¼ÇÀ» À§ÇÑ ±âº» ½ºÅ¸ÀÏ ¼³Á¤ */
.background-image-animate {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* ÀÌ¹ÌÁö°¡ wrapper1À» ²Ë Ã¤¿ìµµ·Ï ¼³Á¤ (±âÁ¸ background-size: cover ¿ªÇÒ) */
    z-index: 0; /* ´Ù¸¥ ¿ä¼Òµé(overlay, banner)º¸´Ù µÚ¿¡ À§Ä¡ */
    
    /* ¾Ö´Ï¸ÞÀÌ¼Ç Àû¿ë */
    animation: zoomOut 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; 
}


/* 3. Transform ¾Ö´Ï¸ÞÀÌ¼Ç Å°ÇÁ·¹ÀÓ Á¤ÀÇ */
@keyframes zoomOut {
    0% {
        /* ½ÃÀÛ ½ÃÁ¡: 1.05¹è È®´ëµÈ »óÅÂ */
        transform: scale(1.25); 
    }
    100% {
        /* Á¾·á ½ÃÁ¡: ¿ø·¡ Å©±â (1¹è) */
        transform: scale(1); 
    }
}
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* ¾îµÎ¿î ¹ÝÅõ¸í ¿À¹ö·¹ÀÌ */
    z-index: 1;
  }

  .banner {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    z-index: 2;
  }

  .banner-text h1 {
    font-size: 40px;
    color: white;
    margin-bottom: 10px;	  
    font-family:'NanumSquareNeoBold', sans-serif;
  }

  .banner-text p {
    font-size: 20px;
    color: white;
    font-family:'NanumSquareNeoBold', sans-serif;
  }

  @media (max-width: 1024px) {
    .banner {
      height: 200px;
      padding: 20px;
    }

    .banner-text h1 {
      font-size: 28px;
    }

    .banner-text p {
      font-size: 15px;
    }
  }

  /* ====== ABOUT ¹Ù ¿µ¿ª ====== */
.top-bar {
  width: 100%;
  height: 80px; /* PC¿¡¼­ ³ôÀÌ 80px */
  background-color: #f66f0d;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.top-container {
  width: 1400px;
  max-width: 95%;
  margin: 0 auto;
  padding-left: 10px;
}

.top-content {
  display: flex;
  flex-direction: column; /* ¼¼·Î Á¤·Ä */
  align-items: flex-start; /* ÁÂÃø Á¤·Ä */
  opacity: 0;
  transform: translateX(100px);
  animation: slideIn 1s ease forwards;
  animation-delay: 0.3s;
}

.top-line {
  width: 40px;
  height: 1px;
  background: #fff;
  margin-bottom: 5px; /* ¼±°ú ±ÛÀÚ °£°Ý */
}

.top-text {
  font-size: 30px;
  color: #fff;
  font-family: 'NanumSquareNeoBold', sans-serif;
}

  /* ====== ¾Ö´Ï¸ÞÀÌ¼Ç ====== */
  @keyframes slideIn {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* ====== ¸ð¹ÙÀÏ ´ëÀÀ ====== */
  @media (max-width: 1024px) {
    .top-bar {
      height: 50px;
    }

    .top-line {
      width: 25px;
    }

    .top-text {
      font-size: 20px;
    }

    .top-content {
      transform: translateX(50px);
      animation: slideIn 1s ease forwards;
      animation-delay: 0.2s;
    }
  }


/* wrapper */
.wrapper4 {
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}

/* container */
.container4 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 10px;
  background-color: #fff;
}

