.container {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url("../../img/homepage/bg.png") no-repeat center center/cover;
  overflow: hidden;
}

.pc_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 50px;
}

.pc_header img {
  width: 218px;
  height: 30px;
}

.time_and_date {
  display: flex;
  flex-direction: column;
}

.time {
  color: #FFF;
  text-align: center;
  font-family: Roboto-Regular, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 1px;
}

.date {
  color: #FFF;
  text-align: center;
  font-family: Roboto-Regular, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.3px;
}

.pc_content {
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: center;
  height: calc(100vh - 118px);
}

.description_wrapper {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.pc_title {
  color: #FFF;
  font-family: Pretendard-Bold, sans-serif;
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.75px;
  margin-bottom: 10px;
}

.pc_description {
  color: #EFF1F3;
  font-family: Pretendard-Regular, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.75px;
  margin-bottom: 34px;
}

.pc_caption {
  color: #EFF1F3;
  font-family: Pretendard-Regular, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.55px;
  margin-bottom: 80px;
}

.move_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #212741;
  width: 390px;
  height: 64px;
  gap: 12px;
}

.move_btn div {
  color: #FFF;
  text-align: center;
  font-family: Pretendard-Medium, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.5px;
}

.move_btn img {
  width: 24px;
  height: 24px;
}

.pc_slide_wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.pc_slide_header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.pc_slide_header img {
  width: 24px;
  height: 24px;
}

.pc_slide_header div {
  color: #FFF;
  text-align: right;
  font-family: Pretendard-SemiBold, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.5px;
}

.pc_slide_area {
  display: flex;
  gap: 20px;
  flex-direction: row;
  align-items: center;
}

.pc_slide_prev, .pc_slide_next {
  cursor: pointer;
  width: 70px;
  height: 70px;
}

.pc_slide {
  width: 600px;
}

.slide_item {
  width: 290px;
  height: 480px !important;
  border-radius: 20px;
  background: #fff;
  display: flex !important;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-right: 20px;
}

.slide_item_title {
  color: #191F28;
  text-align: center;
  font-family: Pretendard-SemiBold, sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.65px;
  margin-bottom: 61px;
}

.slide_item img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 28px;
}

.slide_item_label {
  color: #4E5968;
  text-align: center;
  font-family: Pretendard-Medium, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.slide_item_value {
  color: #6B7684;
  text-align: center;
  font-family: Roboto-Regular, sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.slide_item_value span {
  color: #191F28;
  text-align: center;
  font-family: Roboto-Bold, sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  background: #000;
}

.ticker div {
  color: #FFF;
  font-family: Pretendard-Medium, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  animation: ticker 50s linear infinite;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

@keyframes ticker {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.no_data {
  width: 780px;
  height: 524px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: #FFF;
  text-align: right;
  font-family: Pretendard-SemiBold, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.5px;
}


@media (max-width: 1330px) {
  .pc_header {
    padding: 20px 40px;
  }

  .pc_header img {
    width: 145px;
    height: 20px;
  }

  .time {
    font-size: 30px;
    line-height: 32px;
    letter-spacing: 0.75px;
  }

  .date {
    font-size: 9px;
    letter-spacing: -0.225px;
  }

  .pc_content {
    display: flex;
    align-items: center;
    gap: 19px;
    justify-content: center;
    height: calc(100vh - 80px);
  }

  .pc_title {
    font-size: 44px;
    letter-spacing: -1.1px;
    margin-bottom: 8px;
  }

  .pc_description {
    font-size: 20px;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
  }

  .pc_caption {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: -0.35px;
    margin-bottom: 52px;
  }

  .move_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #212741;
    width: 294px;
    height: 52px;
    gap: 10px;
  }

  .move_btn div {
    font-size: 14px;
    letter-spacing: -0.35px;
  }

  .move_btn img {
    width: 20px;
    height: 20px;
  }

  .pc_slide_wrapper {
    gap: 16px;
  }

  .pc_slide_header {
    gap: 3px;
  }

  .pc_slide_header img {
    width: 16px;
    height: 16px;
  }

  .pc_slide_header div {
    font-size: 14px;
    letter-spacing: -0.35px;
  }

  .pc_slide_area {
    gap: 16px;
  }

  .pc_slide_prev, .pc_slide_next {
    width: 56px;
    height: 56px;
  }

  .pc_slide {
    width: 436px;
  }

  .slide_item {
    width: 210px;
    height: 348px !important;
    border-radius: 16px;
    margin-right: 15px;
  }

  .slide_item_title {
    font-size: 18px;
    letter-spacing: -0.45px;
    margin-bottom: 40px;
  }

  .slide_item img {
    width: 136px;
    height: 136px;
    margin-bottom: 18px;
  }

  .slide_item_label {
    font-size: 14px;
    letter-spacing: -0.35px;
    margin-bottom: 6px;
  }

  .slide_item_value {
    font-size: 36px;
  }

  .slide_item_value span {
    font-size: 36px;
  }

  .no_data {
    width: 580px;
    height: 381px;
    font-size: 14px;
    letter-spacing: -0.35px;
  }
}

@media (max-width: 900px) {
  .pc_content {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 60px;
    justify-content: center;
    height: calc(100vh - 80px);
  }

  .description_wrapper {
    align-items: center;
  }

  .pc_caption {
    text-align: center;
  }
}

@media (max-width: 570px) {
  .pc_content {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    height: calc(100vh - 48px);
  }

  .pc_header {
    padding: 12px;
  }

  .pc_header img {
    width: 73px;
    height: 10px;
  }

  .time_and_date {
    align-items: center;
    gap: 1px;
  }

  .time {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.35px;
  }

  .date {
    font-size: 4px;
    letter-spacing: -0.1px;
  }

  .pc_title {
    font-size: 28px;
    letter-spacing: -0.7px;
    margin-bottom: 6px;
  }

  .pc_description {
    font-size: 13px;
    letter-spacing: -0.325px;
    margin-bottom: 14px;
  }

  .pc_caption {
    font-size: 11px;
    line-height: 16px;
    letter-spacing: -0.275px;
    margin-bottom: 24px;
  }

  .move_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #212741;
    width: 200px;
    height: 34px;
    gap: 6px;
  }

  .move_btn div {
    font-size: 10px;
    line-height: 140%;
    letter-spacing: -0.25px;
  }

  .move_btn img {
    width: 12px;
    height: 12px;
  }

  .pc_slide_wrapper {
    gap: 10px;
  }

  .pc_slide_header {
    gap: 3px;
  }

  .pc_slide_header img {
    width: 12px;
    height: 12px;
  }

  .pc_slide_header div {
    font-size: 10px;
    letter-spacing: -0.25px;
  }

  .pc_slide_area {
    gap: 10px;
  }

  .pc_slide_prev, .pc_slide_next {
    width: 28px;
    height: 28px;
  }

  .pc_slide {
    width: 274px;
  }

  .slide_item {
    width: 132px;
    height: 224px !important;
    border-radius: 10px;
    margin-right: 10px;
  }

  .slide_item_title {
    font-size: 12px;
    letter-spacing: -0.3px;
    margin-bottom: 24px;
  }

  .slide_item img {
    width: 90px;
    height: 90px;
    margin-bottom: 10px;
  }

  .slide_item_label {
    font-size: 9px;
    letter-spacing: -0.225px;
    margin-bottom: 4px;
  }

  .slide_item_value {
    font-size: 22px;
  }

  .slide_item_value span {
    font-size: 22px;
  }

  .no_data {
    width: 350px;
    height: 246px;
    font-size: 10px;
    letter-spacing: -0.25px;
  }
}