@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");
section.sec02 {
  padding: 80px 0;
}

section.sec02 .wrap > h1 {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #181B1E;
}

section.sec02 .wrap ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

section.sec02 .wrap ol li {
  position: relative;
  width: 32%;
  padding: 10% 0;
}

section.sec02 .wrap ol li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0B1535;
  opacity: 0.6;
  z-index: -1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

section.sec02 .wrap ol li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/images/people_01.png");
  background-size: cover;
  z-index: -2;
}

section.sec02 .wrap ol li:hover::after {
  opacity: 0.8;
}

section.sec02 .wrap ol li .inner_title {
  margin: auto;
  text-align: center;
  color: #fff;
}

section.sec02 .wrap ol li .inner_title h4 {
  color: #45ebd7;
  font-size: 24px;
}

section.sec02 .wrap ol li .inner_title span {
  font-size: 20px;
}

section.sec02 .wrap ol li:hover button {
  display: block;
}

section.sec02 .wrap ol li:nth-of-type(2)::before {
  background-image: url("/assets/images/people_02.png");
}

section.sec02 .wrap ol li:nth-of-type(3)::before {
  background-image: url("/assets/images/people_03.png");
}

section.sec02 .wrap ol button {
  display: none;
  position: absolute;
  color: #fff;
  border: 1px solid #fff;
  bottom: 0;
  left: 0;
  margin: 10px;
  width: 95%;
  padding: 23px;
  z-index: 5;
  cursor: pointer;
}

section.sec03 {
  background-color: #EEFCFA;
  padding: 120px 0;
  text-align: center;
}

section.sec03 .wrap > h1 {
  color: #45ebd7;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}

section.sec03 .wrap > span {
  font-size: 28px;
  font-weight: 700;
}

section.sec03 .wrap > span b {
  color: #274ac4;
}

section.sec03 .wrap ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 24px;
}

section.sec03 .wrap ol li {
  background-color: #fff;
  width: 32%;
  border-radius: 20px;
  padding: 36px;
  text-align: left;
}

section.sec03 .wrap ol li h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

section.sec03 .wrap ol li p {
  font-size: 14px;
}

section.sec04 {
  padding: 120px 0;
}

section.sec04 .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 80px;
}

section.sec04 .wrap .text_part h3 {
  font-size: 28px;
  font-weight: 700;
  color: #274ac4;
  text-align: left;
}

section.sec04 .wrap .text_part span {
  display: block;
  margin: 24px 0;
  width: 100%;
  height: 1px;
  background-color: #E4E8ED;
}

section.sec04 .wrap .text_part ul {
  padding-left: 20px;
  list-style: number;
}

section.sec04 .wrap .text_part ul li:nth-of-type(3), section.sec04 .wrap .text_part ul li:nth-of-type(4) {
  color: #949BA2;
}

section.sec05 {
  position: relative;
  padding-bottom: 0;
}

section.sec05 .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  color: #fff;
}

section.sec05 .wrap h1 {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
}

section.sec05 .wrap span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-top: 28px;
  margin-bottom: 44px;
}

section.sec05 .wrap h4 {
  font-size: 20px;
  font-weight: 700;
}

section.sec05 .bg {
  width: 100%;
  height: 480px;
}

section.sec05 .bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1023px) {
  section.sec03 .wrap ol {
    height: 300px;
  }
  section.sec03 .wrap ol li {
    height: 100%;
  }
}

@media screen and (max-width: 767px) {
  section.sec02 {
    padding: 60px 0;
  }
  section.sec02 .wrap {
    width: 100%;
  }
  section.sec02 .wrap > h1 {
    font-size: 20px;
    margin-bottom: 0;
  }
  section.sec02 .wrap ol {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section.sec02 .wrap ol li {
    width: 100%;
    min-height: 260px;
    pointer-events: none;
  }
  section.sec02 .wrap ol li::after {
    opacity: 0.6;
  }
  section.sec02 .wrap ol li .inner_title h4 {
    font-size: 28px;
  }
  section.sec02 .wrap ol li .inner_title span {
    font-size: 16px;
  }
  section.sec02 .wrap ol button {
    display: block;
  }
  section.sec03 {
    padding: 60px 0;
  }
  section.sec03 .wrap > h1 {
    font-size: 28px;
    margin-bottom: 16px;
  }
  section.sec03 .wrap > span {
    font-size: 16px;
  }
  section.sec03 .wrap ol {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  section.sec03 .wrap ol li {
    width: 100%;
  }
  section.sec03 .wrap ol li h4 {
    font-size: 16px;
  }
  section.sec04 {
    padding: 60px 0;
  }
  section.sec04 .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
  }
  section.sec04 .wrap .text_part h3 {
    text-align: left;
    font-size: 20px;
  }
  section.sec04 .wrap .text_part span {
    margin: 16px 0;
  }
  section.sec04 .wrap .text_part ul {
    padding-left: 20px;
  }
  section.sec04 .wrap .text_part ul li {
    text-align: left;
    padding-left: 10px;
    font-size: 14px;
  }
  section.sec05 .wrap h1 {
    font-size: 28px;
  }
  section.sec05 .wrap span {
    margin-top: 24px;
    margin-bottom: 130px;
  }
  section.sec05 .wrap h4 {
    font-size: 16px;
  }
  section.sec05 .bg {
    height: 430px;
  }
}
/*# sourceMappingURL=center_people.css.map */