@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");
@font-face {
  font-family: "S-CoreDream";
  src: url("../font/SCDream4.otf");
  font-weight: 400;
}
@font-face {
  font-family: "S-CoreDream";
  src: url("../font/SCDream5.otf");
  font-weight: 500;
}
@font-face {
  font-family: "S-CoreDream";
  src: url("../font/SCDream6.otf");
  font-weight: 600;
}
html {
  font-family: "Noto Sans KR", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

.outside {
  width: 100%;
}

.container {
  color: #323232;
  min-width: 1440px;
  width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
}

.inner-padding {
  padding: 0 120px;
}

/* 네비게이션 */
.nav-wrapper {
  position: fixed;
  z-index: 100;
  background-color: white;
  border-bottom: 2px solid lightgray;
}

.nav {
  position: relative;
  z-index: 100;
  display: flex;
  width: 100%;
  height: 78px;
  justify-content: space-between;
  align-items: center;
}
.nav ul {
  margin: 0;
  padding: 0;
  height: 100%;
}
.nav li {
  display: inline-block;
  width: 150px;
  transition-duration: 0.2s;
}
.nav li:hover {
  background-color: #fdfdfd;
}

.nav-button {
  position: relative;
  z-index: 40;
  width: 150px;
  height: 80px;
  transform: translateY(1px);
  font-family: "S-CoreDream", "Noto Sans KR", sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition-duration: 0.2s;
}
.nav-button span {
  display: block;
  background-color: white;
  height: 100%;
  text-align: center;
  line-height: 80px;
  transition-duration: 0.2s;
  box-shadow: inset 0px -4px 0px -2px lightgray;
}

.nav-list {
  position: absolute;
  background-color: white;
  z-index: 20;
  text-align: center;
  background-color: #EFEFEF;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}
.nav-list li {
  font-family: "S-CoreDream", "Noto Sans KR", sans-serif;
  display: block;
  padding: 10px 0;
}

.nav-list-wrapper {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: 150px;
  overflow: hidden;
  transform: scaleY(0);
  transition: transform 0.3s ease-in-out;
  transform-origin: top center;
}

.nav-button-wrapper:hover .nav-button {
  box-shadow: inset 0px -6px 0px -2px #E85507;
}
.nav-button-wrapper:hover span {
  color: #E85507;
  box-shadow: inset 0px -6px 0px -2px #E85507;
}
.nav-button-wrapper:hover .nav-list {
  transform: translateY(0px);
}
.nav-button-wrapper:hover .nav-list-wrapper {
  transform: scaleY(1);
}

.btn-text {
  color: #323232;
  font-weight: bold;
  vertical-align: middle;
  text-align: center;
  transition-duration: 0.3s;
}

.btn-text:hover {
  color: #E85507;
}

.card {
  border: 1px solid #E7E7E7;
  border-radius: 36px;
  overflow: hidden;
  padding: 40px 24px;
}

.btn-round {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: "Noto Sans KR", sans-serif;
  background-color: black;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 17px;
  font-weight: 400;
  margin-top: 50px;
  padding: 13px 44px;
  cursor: pointer;
}

.shadow {
  box-shadow: 4px 4px 5px #bebebe;
}

.main-bg {
  background-position: center;
  background-repeat: no-repeat;
  height: 520px;
}

.main-text {
  font-family: "S-CoreDream", "Noto Sans KR", sans-serif;
  font-weight: 600;
  height: 520px;
  text-align: center;
  color: white;
  padding: 0 110px;
}
.main-text h1 {
  font-size: 48px;
  margin: 0;
  margin-bottom: 20px;
}
.main-text p {
  font-size: 20px;
  margin: 0;
  font-weight: 500;
}

/* 푸터 */
.footer {
  background-color: #EFEFEF;
}
.footer p, .footer ul {
  margin: 0;
  padding: 0;
}
.footer li {
  display: inline-block;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

.footer-link {
  padding: 25px 0;
}
.footer-link li {
  margin-right: 40px;
}

.footer-address {
  color: #787878;
  padding: 35px 0 75px 0;
  font-size: 14px;
}
.footer-address p {
  margin-top: 20px;
}

/* 파트너 소개 영역 */
.title-wrapper {
  padding-top: 100px;
  padding-bottom: 50px;
}

.title {
  background-color: #F9F9F9;
  height: 230px;
  text-align: center;
}
.title p {
  font-size: 18px;
  margin-top: 28px;
  margin-bottom: 0;
}

/* 본문 */
.content-wrapper {
  padding-top: 80px;
  padding-bottom: 100px;
}
.content-wrapper p, .content-wrapper h1, .content-wrapper h2, .content-wrapper h3, .content-wrapper h4, .content-wrapper h5, .content-wrapper h6, .content-wrapper ul, .content-wrapper li {
  margin: 0;
  padding: 0;
}
.content-wrapper ul {
  padding-left: 8px;
  font-size: 16px;
  list-style-type: "· ";
}
.content-wrapper ul ul {
  list-style-type: "- ";
}
.content-wrapper li {
  margin-bottom: 10px;
}

/* 제품 설명 */
.desc-wrapper {
  margin-bottom: 80px;
}
.desc-wrapper h1 {
  font-size: 48px;
  margin-bottom: 10px;
}
.desc-wrapper h5 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 18px;
  border-bottom: 1px solid #F9F9F9;
}
.desc-wrapper ul {
  padding-top: 30px;
  color: #787878;
}

/* 카드 레이아웃 */
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 360px;
  height: 440px;
  text-align: center;
}
.card h4 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 36px;
  margin-bottom: 30px;
}
.card p {
  font-size: 16px;
  line-height: 28px;
}

/* 서브 메뉴 */
.submenu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 38px;
  color: #DBDBDB;
  cursor: pointer;
  transition-duration: 0.2s;
}
.submenu-btn p {
  font-size: 20px;
  margin: 0;
}
.submenu-btn input[type=radio] {
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 50%;
  background-color: white;
  width: 6px;
  height: 6px;
  margin-bottom: 4px;
}
.submenu-btn input[type=radio]:checked {
  background-color: #E85507;
}
.submenu-btn input[type=radio]:checked + p {
  color: #E85507;
}

.submenu-btn:hover {
  color: #E85507;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.border-bottom {
  border-bottom: 1px solid #F9F9F9;
}

.row {
  width: 100%;
}
.row .col-1 {
  box-sizing: border-box;
  float: left;
  width: 8.3333333333%;
}
.row .col-2 {
  box-sizing: border-box;
  float: left;
  width: 16.6666666667%;
}
.row .col-3 {
  box-sizing: border-box;
  float: left;
  width: 25%;
}
.row .col-4 {
  box-sizing: border-box;
  float: left;
  width: 33.3333333333%;
}
.row .col-5 {
  box-sizing: border-box;
  float: left;
  width: 41.6666666667%;
}
.row .col-6 {
  box-sizing: border-box;
  float: left;
  width: 50%;
}
.row .col-7 {
  box-sizing: border-box;
  float: left;
  width: 58.3333333333%;
}
.row .col-8 {
  box-sizing: border-box;
  float: left;
  width: 66.6666666667%;
}
.row .col-9 {
  box-sizing: border-box;
  float: left;
  width: 75%;
}
.row .col-10 {
  box-sizing: border-box;
  float: left;
  width: 83.3333333333%;
}
.row .col-11 {
  box-sizing: border-box;
  float: left;
  width: 91.6666666667%;
}

.row::after {
  content: "";
  display: block;
  clear: both;
}/*# sourceMappingURL=layout.css.map */