@charset "UTF-8";

html,
body {
  font-family: "Pretendard";
  line-height: 160%;
  font-weight: 400;
  color: var(--black);
  word-break: keep-all;

  margin: 0;
  width: 100%;
  height: 100%;
}
.under730,
.under500 {
  display: none;
}

#main {
  width: 100%;
  height: 100%;
  background: url("/index/bg_main.jpg") 50% / cover no-repeat;
}
#main .width-wrap {
  padding: 100px 0;
  max-width: 1300px;
  width: 100%;
  height: fit-content;
  margin: 0 auto;
}
#main .width-wrap h1 {
  font-size: 45px;
  font-weight: 600;
  line-height: 120%;
  color: #fff;
  text-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  margin-bottom: 100px;
  text-align: center;
}
#main .width-wrap .box-area {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
#main .width-wrap .box-area .box {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 8px;
  border: 0.5px solid #fff;
  padding: 15px 20px;
  box-sizing: border-box;
}
#main .width-wrap .box-area .box > p {
  font-size: 20px;
  font-weight: 500;
}
#main .width-wrap .box-area .box .bottom-zone {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  margin-top: 24px;
  font-size: 15px;
  font-weight: 500;
}

@media all and (max-width: 1370px) {
  #main .width-wrap {
    width: 90%;
  }
}
@media all and (max-width: 1200px) {
  #main .width-wrap .box-area {
    grid-template-columns: repeat(2, 1fr);
  }
  #main .width-wrap .box-area .box {
    min-height: 107.19px;
  }
}
@media all and (max-width: 730px) {
  .under730 {
    display: block;
  }
}
@media all and (max-width: 500px) {
  .under500 {
    display: block;
  }
  #main .width-wrap h1 {
    font-size: 38px;
  }
  #main .width-wrap .box-area .box {
    min-height: 132.78px;
  }
  #main .width-wrap .box-area .box > p {
    font-size: 18px;
  }
  #main .width-wrap .box-area .box .bottom-zone p {
    font-size: 15px;
  }
}
