
/* 여러번 쓰이는 요소: 제목, 버튼 스타일링 */
.main .small_title {
  color: #888;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  white-space: pre-line;
}
.main .bold_title {
  font-size: 48px;
  font-weight: 700;
  white-space: pre-line;
}

.main .seemore {
  display: flex;
  padding: 16px 50px 16px 24px;
  gap: 10px;
  align-items: center;
  border-radius: 100px;
  background: rgba(29, 31, 37, 0.05);
  font-size: 18px;
  font-weight: 700;
  width: fit-content;
  height: fit-content;
  background-image: url("../../img/icn/icn_arrow_right_black.png");
  background-repeat: no-repeat;
  background-position: right 24px bottom 50%;
}

@media screen and (max-width: 768px) {
  .main .small_title {
    font-size: 16px;
  }
  .main .bold_title {
    font-size: 28px;
  }

  .main .seemore {
    font-size: 14px;
  }
}
/* --- */

.main .kv {
  margin-top: 64px;
}

.main .kv .title_container {
  padding: 80px 0;
  text-align: center;
}
.main .kv .title_container p {
  font-family: "Gmarket";
  font-size: 80px;
}
.main .kv .title_container p .color {
  background: linear-gradient(93deg, #8DC63F 28.9%, #14B1E7 73.12%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main .kv .image_container {
  position: relative;
  /*margin-left: 80px;*/
  min-height: 860px;
  display: flex;
}
.main .kv .image_container video {
  object-fit: cover;
}
.main .kv .image_container img {
  object-fit: cover;
}
.main .kv .image_container .text_box {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 280px;
  left: 80px;
  gap: 24px;
  color: #fff;
  z-index: 40;
}
.main .kv .image_container .text_box .small {
  font-size: 40px;
}
.main .kv .image_container .text_box .large {
  font-size: 64px;
  font-weight: 700;
  white-space: pre-line;
}
.main .works {
  padding: 160px 80px;
}
.main .works .top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 80px;
  align-items: flex-start;
}
.main .works .top .left {
  display: flex;
  flex-direction: column;
  gap: 40px;

}
.main .works .top .right_txt {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.main .works .top .description {
  font-size: 18px;
  line-height: 26px;
  white-space: pre-line;
}

.main .works .bottom {
  display: grid;
  gap: 16px;
}
.main .works .bottom .works_elem:nth-child(1) {
  grid-column: 1 / span 2;
  grid-row: 1;
}
.main .works .bottom .works_elem:nth-child(4) {
  grid-column: 3;
  grid-row: 1 / span 2;
}
.main .works .bottom .works_elem {
  position: relative;
  display: flex;
  width: fit-content;
  border-radius: 4px;
  overflow: hidden;
}
.main .works .bottom .works_elem img {
  object-fit: cover;
  width:100%;
  transition: .3s;
}
.main .works .bottom .works_elem .dim {
  position: absolute;
  width: 100%;
  height: 200px;
  bottom: 0px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%);
}
.main .works .bottom .works_elem .text_box {
  position: absolute;
  display: flex;
  flex-direction: column;
  left: 40px;
  bottom: 40px;
  gap: 16px;
  color: #fff;
}
.main .works .bottom .works_elem .text_box .works_title {
  font-size: 32px;
  font-weight: 700;
}
.main .works .bottom .works_elem .text_box .works_description {
  font-size: 18px;
  line-height: 26px;
}
.main .works .bottom .works_elem:hover {
  cursor: pointer;
}
.main .works .bottom .works_elem:hover img {
  transform: scale(1.1);
}
.main .works .bottom .works_elem:hover p:first-child {
  text-decoration: underline;
}


.main .notice {
  display: flex;
  flex-direction: column;
  padding: 80px 80px;
  background: rgba(29, 31, 37, 0.05);
}

.main .notice .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.main .notice .bottom {
  display: flex;
  gap: 24px;
  width: 100%;
}
.main .notice .bottom .notice_elem {
  display: flex;
  min-width: calc((100% - 24px * 3) / 4);
  flex-direction: column;
  padding-top: 40px;
  gap: 40px;
  justify-content: space-between;
  border-top: 2px solid black;
}
.main .notice .bottom .notice_elem .title {
  font-size: 24px;
  font-weight: 700;
  max-width: 100%;
  text-wrap: wrap;
  word-break: break-all;
}
.main .notice .bottom .notice_elem:hover {
  cursor: pointer;
}
.main .notice .bottom .notice_elem:hover .title {
  text-decoration: underline;
}
.main .notice .bottom .notice_elem .date {
  color: #888;
  font-size: 14px;
}


.main .news {
  display: flex;
  flex-direction: row;
  padding: 160px 80px;
  justify-content: space-between;
  gap: 16px;
}

.main .news .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width:275px;
}
.main .news .left .text_box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.main .news .news_swiper {
  margin-right: 0;
}
.main .news .right {
  display: flex;
  flex-direction: row;
  gap: 16px;
  max-width: fit-content;
}
.main .news .right .news_elem {
  display: flex;
  flex-direction: column;
  width: 428px;
  border-radius: 4px;
  border: 1px solid rgba(29, 31, 37, 0.20);
  background: #FFF;
  justify-content: space-between;
}
.main .news .right .news_elem:hover {
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.20);
  cursor: pointer;
}
.main .news .right .news_elem .text_box {
  display: flex;
  flex-direction: column;
  padding: 40px 40px;
  gap: 16px;
}
.main .news .right .news_elem .text_box .title {
  font-size: 32px;
  font-weight: 700;
}


.main .apply {
  position: relative;
  background: linear-gradient(113deg, rgba(141, 198, 63, 0.10) 0%, rgba(0, 97, 175, 0.10) 64.98%);
  height: 1080px;
}

.main .apply .content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.main .apply .content .text_box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 160px;
}
.main .apply .content .text_box .title {
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
}
.main .apply .content .text_box .description {
  font-size: 18px;
  line-height: 26px;
}
.main .apply .content .go_apply {
  display: flex;
  padding: 16px 24px;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: #1d1f25;
}
.main .apply .content .go_apply:hover {
  background-color: #026442;
}
.main .apply .content .go_apply a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.main .apply #hands {
  position: absolute;
  mix-blend-mode: darken;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.main .apply #bg2 {
  position: absolute;
  mix-blend-mode: multiply;
  left: 5vw;
  top: 324px;
}
.main .apply #bg3 {
  position: absolute;
  mix-blend-mode: multiply;
  right: 5vw;
  top: 156px;
}
.main .apply #bg4 {
  position: absolute;
  mix-blend-mode: multiply;
  right: 8vw;
  top: 206px;
}
.main .apply #bg5 {
  position: absolute;
  mix-blend-mode: multiply;
  right: 18vw;
  top: 486px;
}


.main .data {
  padding: 80px 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.main .data .left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.main .data .left .title {
  font-size: 80px;
  font-weight: 700;
  line-height: 100px;
}

.main .data .right {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1;
  justify-content: flex-end;
  align-items: flex-end;
}
.main .data .right .data_elem {
  display: block;
  max-width: 872px;
  padding: 24px 34px 24px 0px;
  border-bottom: 1px solid #000;
  background-image: url("../../img/icn/icn_arrow_go.png");
  background-repeat: no-repeat;
  background-position: right 0px bottom 50%;
  width:100%;
}
.main .data .right .data_elem a {
  display: block;
  width:100%;
}
.main .data .right .data_elem p {
  font-size: 24px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.main .data .right .data_elem:hover {
  cursor: pointer;
}
.main .data .right .data_elem:hover p {
  text-decoration: underline;
}


@media screen and (max-width: 768px) {
  .main .kv .title_container {
    padding: 40px 0;
  }
  .main .kv .title_container p {
    font-family: "Gmarket";
    font-size: 32px;
    padding-bottom:10px;
  }
  .main .kv .title_container p .color {
    min-height: fit-content;
    display: inline-block;
    height: auto;
    line-height: 1.4;
  }
  .main .kv .image_container {
    margin-left: 0;
    min-height: 0;
  }
  .main .kv .image_container img {
    min-width: 100%;
  }
  .main .kv .image_container .text_box {
    top: 40px;
    left: 24px;
    gap: 8px;
  }
  .main .kv .image_container .text_box .small {
    font-size: 12px;
  }
  .main .kv .image_container .text_box .large {
    font-size: 17px;
  }


  .main .works {
    padding: 80px 16px;
  }
  
  .main .works .top {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }
  .main .works .top .left {
    gap: 16px;
  }
  .main .works .top .right {
    margin-left: 0;
    margin-top:0;
  }
  .main .works .top .right .description {
    font-size: 14px;
    line-height: 22px;
  }

  .main .works .bottom {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .main .works .bottom .works_elem {
    width: 100%;
    border-radius: 4px;
  }
  .main .works .bottom .works_elem .image_container {
    width: 100%;
    min-height: 180px;
    position: relative;
  }
  .main .works .bottom .works_elem .image_container img {
    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%, -50%);
  }
  .main .works .bottom .works_elem .dim {
    max-height: 100%;
  }
  .main .works .bottom .works_elem .text_box {
    left: 16px;
    bottom: 16px;
    gap: 8px;
    width: 100%;
  }
  .main .works .bottom .works_elem .text_box .works_title {
    font-size: 20px;
    font-weight: 700;
  }
  .main .works .bottom .works_elem .text_box .works_description {
    font-size: 14px;
    line-height: 22px;
    max-width: 80%;
  }


  .main .notice {
    padding: 40px 16px;
  }

  .main .notice .bottom {
    flex-direction: column;
  }
  .main .notice .bottom .notice_elem {
    display: flex;
    min-width: 100%;
    flex-direction: column;
    padding-top: 16px;
    gap: 8px;
    justify-content: space-between;
    border-top: 2px solid black;
  }
  .main .notice .bottom .notice_elem .title {
    font-size: 14px;
    line-height: 22px;
  }
  .main .notice .bottom .notice_elem .date {
    font-size: 12px;
  }

  
  .main .news {
    padding: 80px 16px;
    flex-direction: column;
    gap: 40px;
  }

  .main .news .left {
    gap: 24px;
    max-width:none;
  }

  .main .news .news_swiper {
    max-width: 100%;
  }
  .main .news .right {
    max-width: 100%;
    height: fit-content;
    gap: 0;
  }
  .main .news .right .swiper-slide {
    width: 100%;
    min-height: 100%;
    height: auto;
  }
  .main .news .right .news_elem .text_box {
    padding: 40px 24px;
  }
  .main .news .right .news_elem .text_box .title {
    font-size: 20px;
  }
  .main .news .right .news_elem .text_box .description {
    font-size: 14px;
    line-height: 22px;
  }


  .main .apply {
    height: 540px;
  }
  
  .main .apply .content {
    gap: 24px;
  }
  .main .apply .content .text_box {
    gap: 16px;
    margin-top: 80px;
    padding: 0 16px;
  }
  .main .apply .content .text_box .title {
    font-size: 28px;
    line-height: 24px;
  }
  .main .apply .content .text_box .description {
    font-size: 14px;
    line-height: 22px;  
    text-align: center;
  }
  .main .apply .content .go_apply a {
    font-size: 14px;
  }
  
  .main .apply #hands {
    height: 262px;
  }
  .main .apply #bg2 {
    height: 50px;
    left: 5vw;
    top: 324px;
  }
  .main .apply #bg3 {
    height: 17px;
    right: 5vw;
    top: 156px;
  }
  .main .apply #bg4 {
    height: 31px;
    right: 8vw;
    top: 206px;
  }
  .main .apply #bg5 {
    display: none;
  }


  .main .data {
    padding: 40px 16px;
    flex-direction: column;
    gap: 40px;
  }
  
  .main .data .left {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .main .data .left .title {
    font-size: 28px;
    line-height: 28px;
  }
  
  .main .data .right {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 40px;
    flex:none;
    width:100%;
  }
  .main .data .right .data_elem {
    padding: 16px 40px 16px 0px;
  }
  .main .data .right .data_elem p {
    font-size: 14px;
    line-height: 22px;
    white-space: wrap;
  }
}