@charset "UTF-8";
.nav-wrapper {
  background-color: transparent;
  border-bottom: 2px solid transparent;
  transition-duration: 0.2s;
}
.nav-wrapper span {
  color: white;
  background-color: transparent;
  box-shadow: inset 0px -4px 0px -2px transparent;
  transition-duration: 0;
}

.nav-wrapper:hover {
  background-color: white;
  border-bottom: 2px solid lightgray;
}
.nav-wrapper:hover .nav-button-wrapper span {
  color: black;
  box-shadow: inset 0px -6px 0px -2px transparent;
}
.nav-wrapper:hover .nav-button-wrapper:hover span {
  color: #E85507;
  box-shadow: inset 0px -6px 0px -2px #E85507;
}

input[id=scroll-check]:checked ~ #header .nav-wrapper {
  background-color: white;
  border-bottom: 2px solid lightgray;
}
input[id=scroll-check]:checked ~ #header .nav-button-wrapper span {
  color: black;
  box-shadow: inset 0px -6px 0px -2px transparent;
}
input[id=scroll-check]:checked ~ #header .nav-button-wrapper:hover span {
  color: #E85507;
  box-shadow: inset 0px -6px 0px -2px #E85507;
}

/* 배경 이미지 선택 */
input[name=bg_selector] {
  position: absolute;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 9px;
  height: 9px;
  background-color: #F9F9F9;
  border-radius: 50%;
  transition: background-color 0.5s linear;
}

input[name=bg_selector]:checked {
  background-color: #E85507;
}

.main-bg {
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 950px;
  z-index: -2;
  opacity: 0;
  transition: opacity 0.5s linear;
}

input[value=bg1]:checked ~ #main-bg > .main-bg:nth-child(1) {
  opacity: 1;
}

input[value=bg2]:checked ~ #main-bg > .main-bg:nth-child(2) {
  opacity: 1;
}

input[value=bg3]:checked ~ #main-bg > .main-bg:nth-child(3) {
  opacity: 1;
}

.main h1,
.main p {
  margin: 0;
}
.main h1 {
  font-family: "S-CoreDream", "Noto Sans KR", sans-serif;
  font-size: 65px;
  font-weight: 500;
  margin-bottom: 25px;
}
.main h1::first-letter {
  color: #E85507;
}
.main p {
  font-size: 18px;
}
.main ul {
  padding-left: 8px;
  font-size: 16px;
  list-style-type: "· ";
}
.main ul ul {
  list-style-type: "- ";
}
.main li {
  margin-bottom: 10px;
}
.main .btn-round {
  background-color: #E85507;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 28px;
  transition-duration: 0.1s;
}
.main .btn-round:hover {
  background-color: #fa6e23;
}

.about-img {
  width: 450px;
  height: 370px;
  margin-right: 25px;
  background-image: url(../image/company/company_ceo_img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.soft-box {
  width: 180px;
  height: 180px;
  border: 1px solid #E85507;
  box-shadow: 0 0 1px 1px rgba(232, 85, 7, 0.5);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 50px;
  cursor: pointer;
}
.soft-box img {
  transform: scale(1);
  transition: all 0.15s ease-in-out;
}

.soft-box:hover img {
  transform: scale(1.1);
  transition: all 0.15s ease-in-out;
}

.soft-info {
  display: none;
  padding-left: 185px;
}
.soft-info img {
  margin-bottom: 34px;
}
.soft-info p {
  margin-bottom: 8px;
}
.soft-info li {
  margin-bottom: 0;
}
.soft-info .btn-round {
  margin-top: 18px;
}

/* 소프트웨어 메뉴 */
.main input[name=soft] {
  display: none;
}

input[value=soft-chk1]:checked ~ #soft1 {
  display: flex;
}

input[value=soft-chk2]:checked ~ #soft2 {
  display: flex;
}

input[value=soft-chk3]:checked ~ #soft3 {
  display: flex;
}

input[value=soft-chk4]:checked ~ #soft4 {
  display: flex;
}

input[value=soft-chk5]:checked ~ #soft5 {
  display: flex;
}

.sol-circle {
  font-size: 18px;
  border: 1px solid black;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 78px;
  margin-right: 24px;
}

.sol-halos {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sol-halos h6 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}
.sol-halos p {
  font-size: 16px;
  color: #505050;
}

.sol-circle-b {
  width: 180px;
  height: 180px;
  border: 1px solid #E85507;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.logo-bg {
  background-image: url(../image/main/main_contact_logo.png);
  background-repeat: no-repeat;
  background-position: 100% 72%;
}

.contact .btn-round {
  margin: 0;
  margin-top: 45px;
  border: 1px solid #323232;
  background-color: white;
  color: #323232;
}
.contact .btn-round:hover {
  border: 1px solid white;
  background-color: #fa6e23;
  color: white;
}/*# sourceMappingURL=main.css.map */