@charset "utf-8";

#home_mainSlide {
  width: 1300px;
  height: 460px;
  margin: 0 auto;
  margin-top: 110px;

  overflow: hidden;
  border-radius: 8px;
}

.swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(100%); /* 밝기를 50%로 줄여 어둡게 */
}

.home_mainSlide_titleDiv {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  padding: 0 80px;
  align-items: start;
  justify-content: center;
  z-index: 10;
  transform: translate(-50%, 0);
}

#home_mainSlide_title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #fff;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
}

.swiper-pagination {
  position: static;
  width: 100%;
  text-align: left;
  display: flex;
  gap: 12px;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #fff;
  opacity: 0.3;
}

.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0px 0px;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

#home_mainSlide_title > h1 {
  font-size: 68px;
  font-weight: 600;
}

#home_mainSlide_title > p {
  font-size: 20px;
  font-weight: 600;
}

.home_mainSlide_scrollDown p {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

/* news */
#home_news {
  margin: 50px 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.home_news_title {
  color: #333;
  font-size: 34px;
  font-weight: 700;
  text-align: center;
}
.home_news_contents {
  height: auto;
  display: flex;
  gap: 100px;
  width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.home_news_container {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  flex: 1;
}
.home_news_tab_bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home_news_tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.home_news_tabs div {
  font-size: 18px;
  font-weight: 500;
  color: #565656;
  padding: 10px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.home_news_tabs div:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.news_tab.active {
  background-color: #f9c041;
  color: #fff;
  font-weight: 600;
}

.news_tab.active:hover {
  background-color: #f9c041;
}

.lt_more {
  font-size: 24px;
  color: #cecece;
  font-weight: 500;
}

.home_news_body {
  width: 100%;
  padding: 20px 0;
  border-top: 1px solid #cecece;
}

.latest_wr {
  display: none;
}

.latest_wr.active {
  display: block;
  animation: slideIn 0.6s ease;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.home_news_calender {
  width: 500px;
  overflow: hidden;
}

/* 사업안내 */

#home_biz_bg {
  width: 100%;
  background-color: #f7f7f7;
  padding: 80px 0;
  opacity: 1;
}

#home_biz {
  display: flex;
  flex-direction: column;
  width: 1280px;
  padding: 0 100px;
  gap: 60px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
}

.home_biz_top {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.home_biz_top .home_biz_top_title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.home_biz_top .home_biz_top_title h2 {
  color: #333;
  font-weight: 700;
  font-size: 34px;
}

.home_biz_top .home_biz_top_subtitle {
  color: #333;
  font-weight: 500;
  font-size: 18px;
}

.home_biz_body {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.home_biz_body_bg_defalut {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0.9);
  object-fit: cover;
  z-index: -1;
}

.home_biz_body_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0.8);
  object-fit: cover;
  z-index: -1;
  opacity: 0;
  transition: transform 4s ease;
}

.home_biz_grid_itemBox:hover .home_biz_body_bg {
  opacity: 1;
  transform: scale(1.1);
}

.home_biz_grid_container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4개의 열 */
  grid-template-rows: repeat(2, 1fr); /* 2개의 행 */
}

.home_biz_grid_item {
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  position: relative;
  padding: 60px 30px;
  box-shadow: 0 0 0 0.2px #fff; /* 0.5px 두께의 그림자 효과 */
  cursor: pointer;
}

.home_biz_grid_item > .grid_item_title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.5s ease;
}

.home_biz_grid_item > .grid_item_dec {
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: end;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.home_biz_grid_item > .grid_item_dec p {
  font-size: 16px;
  line-height: 1.5;
}

.home_biz_grid_item:hover {
  background-color: rgba(94, 30, 124, 0.8);
}

.home_biz_grid_item:hover > .grid_item_title {
  transform: translate(-50%, -70px);
}
.home_biz_grid_item:hover > .grid_item_dec {
  opacity: 1;
}

.home_biz_grid_item:hover > .grid_item_dec svg {
  animation: moveRight 2s ease-in-out infinite;
}

@keyframes moveRight {
  0% {
    transform: translate(0, 0); /* 시작 위치 */
  }
  50% {
    transform: translate(14px, 0); /* 아래로 이동 */
  }
  100% {
    transform: translate(0, 0); /* 다시 원래 위치로 돌아옴 */
  }
}

/* ReferenceRoom */
#home_referenceRoom {
  width: 100%;
  background-color: #fff;
  padding: 80px 0;
}

.home_referenceRoom_container {
  width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.home_referenceRoom_title {
  color: #333;
  font-size: 34px;
  font-weight: 700;
  text-align: center;
}

.home_referenceRoom_slide {
  width: 100%;
  position: relative;
}

.home_referenceRoom_button {
  font-size: 16px;
  font-weight: 600;
  color: #383838;
  border: 1px solid #dadada;
  border-radius: 50px;
  background: none;
  padding: 18px 60px;
  transition: all 0.2s ease;
}

.home_referenceRoom_button:hover {
  color: #fff;
  border: none;
  border: 1px solid #f9c041;
  background: #f9c041;
}

/* Help Center */
#home_help {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 80px 0;
  align-items: center;
  background-color: #f7f7f7;
}

.home_help_title {
  font-size: 34px;
  font-weight: 700;
  color: #333;
}

.home_help_menus {
  display: flex;
  width: 1280px;
  padding: 0 160px;
  justify-content: space-between;
}

.home_help_menuItem {
  width: 210px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px #fff;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.home_help_menuItem:hover {
  box-shadow: inset 0 0 0 2px #f9c041, 0 0 10px 0px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.home_help_menuItemTop {
  width: 100%;
  height: 100%;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.home_help_menuItem_icon {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.home_help_menuItem_icon > img {
  width: 80px;
  height: 80px;
}

.home_help_menuItem_text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home_help_menuItem_text > h5 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  text-align: center;
}

.home_help_menuItem_text > p {
  font-size: 15px;
  font-weight: 500;
  color: #848484;
  text-align: center;
}

.home_help_menuItem_moreBtn {
  font-size: 16px;
  font-weight: 600;
  color: #383838;
  border: 1px solid #dadada;
  border-radius: 50px;
  background: none;
  padding: 18px 60px;
  transition: all 0.2s ease;
  opacity: 0;
}
.home_help_menuItem_moreBtn:hover {
  color: #fff;
  border: none;
  border: 1px solid #582079;
  background: #582079;
}

.home_help_menuItem:hover .home_help_menuItem_moreBtn {
  opacity: 1;
}

/* Spon */
#home_spon {
  width: 100%;
  display: flex;
}

.home_spon_section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 120px 0;
  text-align: center;
}

.home_spon_section.home_spon_left {
  align-items: end;
  color: #fff;
  align-items: center;
  background-color: #602278;
}
.home_spon_section.home_spon_right {
  align-items: start;
  color: #333;
  align-items: center;
  background-color: #f9c041;
}

.home_spon_text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home_spon_text > h3 {
  font-size: 34px;
  font-weight: 700;
}

.home_spon_text > p {
  font-size: 18px;
  font-weight: 500;
}

.home_spon_button {
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  background: none;
  padding: 18px 60px;
  transition: all 0.2s ease;
}

.home_spon_button.left {
  color: #fff;
  border: 1px solid #fff;
}

.home_spon_button.right {
  color: #4c4c4c;
  border: 1px solid #4c4c4c;
}

.home_spon_button:hover {
  color: #4c4c4c;
  border: 1px solid #fff;
  background: #fff;
}

/* Company */

#home_company {
  width: 100%;
  padding: 40px 0;
  box-shadow: 0 -2px 10px 1px #f7f7f7;
}

.home_wrap {
  display: flex;
  overflow: hidden;
}

.home_wrap .rolling-list {
  padding-right: 100px;
}
.home_wrap .rolling-list ul {
  padding: 0px;
  display: flex;
  gap: 100px;
}
.home_wrap .rolling-list ul li {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.home_wrap .rolling-list ul li a img {
  height: 50px;
}

.rolling-list.original {
  animation: rollingleft1 90s linear infinite;
}
.rolling-list.clone {
  animation: rollingleft2 90s linear infinite;
}

@keyframes rollingleft1 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-100%);
  }
  50.01% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes rollingleft2 {
  0% {
    transition: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
