/* 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: #4a5aa5;
  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;
    }
  }




 /* about ¼Ò°³ */
  .wrapper4 {
    width: 100%;
    background-color: #fff;
  }

  .container4 {
    width: 1400px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    padding: 0 20px;
    box-sizing: border-box;
    align-items: flex-start;
    gap: 30px; /* PC ±Û°ú ÀÌ¹ÌÁö »çÀÌ ¿©¹é */
  }

  /* PC ¿ÞÂÊ ±Û */
  .text-box {
    width: 40%;
    padding-top: 20px;
    text-align: left;
    box-sizing: border-box;
  }
  .text-box p {
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 18px;
	font-family:'NanumSquareNeo', sans-serif;
  }
  .text-box .bold {
    font-weight: bold;
    font-size: 40px;
	font-family:'NanumSquareNeoBold', sans-serif;
  }


  .text-box1 {
    padding-top: 0px;
    text-align: left;
    box-sizing: border-box;
  }
  .text-box1 p {
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 18px;
	font-family:'NanumSquareNeo', sans-serif;
  }
  .text-box1 .bold {
    font-weight: bold;
    font-size: 40px;
	font-family:'NanumSquareNeoBold', sans-serif;
  }


.btn10 {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  background-color: #4cbed3;
  border: 2px solid #4cbed3;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 35px;
  transition: all 0.3s ease;	  
  text-shadow: none; 
  font-family:'NanumSquareNeoBold', sans-serif;
}

.btn10:hover {
  background-color: #fff;
  color: #333;
  text-decoration: none;
  font-family:'NanumSquareNeoBold', sans-serif;
}

  /* PC ¿À¸¥ÂÊ ½½¶óÀÌ´õ */
  .slider {
    position: relative;
    width: 60%;
    border-radius: 10px;
    overflow: hidden;
  }

  

  /* ¸ð¹ÙÀÏ ½ºÅ¸ÀÏ */
  @media (max-width: 1024px) {
    .container4 {
      flex-direction: column;
      padding: 0 20px;
    }

    /* ¸ð¹ÙÀÏ¿¡¼­ ÀÌ¹ÌÁö°¡ À§ */
    .slider {
      width: 100%;
      margin-bottom: 10px;
      order: 0;
    }

  .text-box p {
    font-size: 14px;
  }
  .text-box .bold {
    font-size: 25px;
  }

    /* ¸ð¹ÙÀÏ¿¡¼­ ±ÛÀÌ ¾Æ·¡ */
    .text-box {
      width: 100%;
      padding-top: 0;
      order: 1;
    }

      .btn10 {
        font-size: 16px;
        padding: 10px 24px;
      }

  .btn-wrap {
    text-align: center;
  }

	.slider-btn {
    font-size: 25px;

  .text-box p {
    font-size: 14px;
  }

    .text-box .bold {
      font-size: 20px;
    }
  }





