@charset "UTF-8";
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
@keyframes positionBackground {
  0% {
    background-position: 0 0; }
  50% {
    background-position: 50% 0; }
  100% {
    background-position: 0 0; } }
@keyframes scaleBackground {
  0% {
    transform: scale(1.2); }
  100% {
    transform: scale(1); } }
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes grayfilter {
  50% {
    filter: grayscale(100%); } }
@keyframes fadeUpAni {
  0% {
    opacity: 0;
    transform: translateY(30px); }
  100% {
    opacity: 1;
    transform: translateY(0px); } }
@keyframes clipPathLeft3 {
  0% {
    clip-path: inset(80% 80% 80% 80%); }
  100% {
    clip-path: inset(0 0 0 0); } }
@keyframes clipPathLeft {
  0% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%); }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); } }
@keyframes clipPathRight {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%); }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
@keyframes leftFade {
  0% {
    transform: translate3d(100px, 0, 0); }
  100% {
    transform: translate3d(0px, 0, 0); } }
@keyframes smoothGrow {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(1.05); } }
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

ol, ul {
  list-style: none; }

html {
  font-size: 62.5%; }
  @media only screen and (max-width: 56.25em) {
    html {
      font-size: 50%; } }

body {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #191919; }
  @media only screen and (max-width: 56.25em) {
    body {
      padding: 0; } }

::selection {
  background-color: #000;
  color: #fff; }

a:link, a:visited {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  cursor: pointer; }
a:hover, a:focus {
  color: inherit;
  text-decoration: none; }

.d-flex {
  display: flex;
  align-items: center; }

.d-flex-column {
  display: flex;
  flex-direction: column; }

.d-flex-colCenter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }

.my-10 {
  margin-top: 10rem;
  margin-bottom: 10rem; }

.mt-10 {
  margin-top: 10rem; }

.mb-10 {
  margin-bottom: 10rem; }

.mt-5 {
  margin-top: 5rem; }

.mt-3 {
  margin-top: 3rem; }

.mt-2 {
  margin-top: 2rem; }

.mt-1 {
  margin-top: 1rem; }

.mb-5 {
  margin-bottom: 5rem; }

.mb-1 {
  margin-bottom: 1rem !important; }

.pt-0 {
  padding-top: 0rem !important; }

.top {
  display: none;
  position: fixed;
  bottom: 180px;
  right: 3.2em;
  z-index: 300; }
  .top.icn-top {
    background: url(../img/icn_top.svg);
    width: 46px;
    height: 46px;
    cursor: pointer;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out; }
  @media only screen and (max-width: 56.25em) {
    .top {
      overflow: hidden;
      position: absolute !important;
      width: 1px;
      height: 1px;
      border: 0;
      padding: 0;
      clip: rect(0px, 0px, 0px, 0px); } }

.blind {
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  height: 1px;
  border: 0;
  padding: 0;
  clip: rect(0px, 0px, 0px, 0px); }

hr {
  margin: 2rem 0;
  border: 0;
  height: 1px;
  background-color: #e5e5e5; }

.row {
  max-width: 114rem;
  margin: 0 auto; }
  .row:not(:last-child) {
    margin-bottom: 8rem; }
    @media only screen and (max-width: 56.25em) {
      .row:not(:last-child) {
        margin-bottom: 6rem; } }
  @media only screen and (max-width: 56.25em) {
    .row {
      max-width: 50rem;
      padding: 0 3rem; } }
  .row::after {
    content: "";
    display: table;
    clear: both; }
  .row [class^="col-"] {
    float: left; }
    .row [class^="col-"]:not(:last-child) {
      margin-right: 6rem; }
      @media only screen and (max-width: 56.25em) {
        .row [class^="col-"]:not(:last-child) {
          margin-right: 0;
          margin-bottom: 6rem; } }
    @media only screen and (max-width: 56.25em) {
      .row [class^="col-"] {
        width: 100% !important; } }
  .row .col-1-of-2 {
    width: calc((100% - 6rem) / 2); }
  .row .col-1-of-3 {
    width: calc((100% - 2 * 6rem) / 3); }
  .row .col-2-of-3 {
    width: calc(2 * ((100% - 2 * 6rem) / 3) + 6rem); }
  .row .col-1-of-4 {
    width: calc((100% - 3 * 6rem) / 4); }
  .row .col-2-of-4 {
    width: calc(2 * ((100% - 3 * 6rem) / 4) + 6rem); }
  .row .col-3-of-4 {
    width: calc(3 * ((100% - 3 * 6rem) / 4) + 2 * 6rem); }

.navigation {
  position: fixed;
  width: 100%;
  padding: 0 8rem;
  z-index: 1000; }
  @media only screen and (max-width: 56.25em) {
    .navigation {
      padding: 0 3rem; } }
  .navigation__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 8rem; }
  .navigation__list {
    display: flex; }
    @media only screen and (max-width: 56.25em) {
      .navigation__list {
        display: none; } }
  .navigation__item {
    margin: 0 6rem; }
  .navigation__link:link, .navigation__link:visited {
    position: relative;
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-size: 1.6rem;
    text-decoration: none;
    letter-spacing: 0.06em;
    font-weight: 500;
    color: white; }
    .navigation__link:link::after, .navigation__link:visited::after {
      position: absolute;
      content: "";
      top: 99%;
      left: 0;
      width: 100%;
      height: 1px;
      background: white;
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.3s; }
  .navigation__link:hover, .navigation__link:active {
    color: rgba(255, 255, 255, 0.9); }
    .navigation__link:hover:hover::after, .navigation__link:active:hover::after {
      transform: scaleX(1);
      transform-origin: left; }

.logo {
  background: url(../img/logo.svg) no-repeat;
  background-size: contain;
  width: 15rem;
  height: 3.2rem;
  margin-top: 1rem; }
  @media only screen and (max-width: 56.25em) {
    .logo {
      margin-top: 1.2rem; } }

.navigation.sub {
  position: absolute; }

.mobile {
  display: none; }
  @media only screen and (max-width: 56.25em) {
    .mobile {
      display: block; } }
  .mobile__checkbox {
    display: none; }
  .mobile__button {
    height: 6rem;
    width: 6rem;
    position: fixed;
    top: 1rem;
    right: 2rem;
    border-radius: 50%;
    z-index: 2500;
    text-align: center;
    cursor: pointer; }
  .mobile__background {
    height: 5rem;
    width: 5rem;
    border-radius: 50%;
    position: fixed;
    top: -4rem;
    right: -5rem;
    background-image: radial-gradient(#000, #4E4E4E);
    opacity: 0.9;
    z-index: 1500;
    transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1); }
  .mobile__nav {
    height: 100vh;
    position: fixed;
    top: 0;
    left: -1rem;
    z-index: 2000;
    opacity: 0;
    width: 0;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    clip: rect(0px, 0px, 0px, 0px); }
  .mobile__list {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    list-style: none;
    text-align: center;
    width: 100%; }
  .mobile__item {
    margin: 1rem; }
  .mobile__link:link, .mobile__link:visited {
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 4.8rem;
    padding: 1rem 2rem;
    color: #fff;
    text-decoration: none;
    text-transform: capitalize;
    background-image: linear-gradient(100deg, transparent 0%, transparent 50%, #fff 50%);
    background-size: 220%;
    transition: all .4s; }
    .mobile__link:link span, .mobile__link:visited span {
      margin-right: 1.5rem;
      display: inline-block; }
  .mobile__link:hover, .mobile__link:active {
    background-position: 100%;
    color: #191919;
    transform: translateX(1rem); }
  .mobile__checkbox:checked ~ .mobile__background {
    transform: scale(80); }
  .mobile__checkbox:checked ~ .mobile__nav {
    opacity: 1;
    width: 100%;
    clip: auto; }
  .mobile__icon {
    position: relative;
    margin-top: 2.9rem; }
    .mobile__icon, .mobile__icon::before, .mobile__icon::after {
      width: 2.4rem;
      height: 2px;
      background-color: white;
      display: inline-block; }
    .mobile__icon::before, .mobile__icon::after {
      content: "";
      position: absolute;
      left: 0;
      transition: all .2s; }
    .mobile__icon::before {
      top: -.8rem; }
    .mobile__icon::after {
      top: .8rem; }
  .mobile__button:hover .mobile__icon::before {
    top: -1rem; }
  .mobile__button:hover .mobile__icon::after {
    top: 1rem; }
  .mobile__checkbox:checked + .mobile__button .mobile__icon {
    background-color: transparent; }
  .mobile__checkbox:checked + .mobile__button .mobile__icon::before {
    top: 0;
    transform: rotate(135deg); }
  .mobile__checkbox:checked + .mobile__button .mobile__icon::after {
    top: 0;
    transform: rotate(-135deg); }

.current {
  border-bottom: 2px solid #191919;
  font-weight: 700; }

.option {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: white;
  text-transform: uppercase; }
  .option span {
    margin-left: 1rem; }
  @media only screen and (max-width: 56.25em) {
    .option {
      display: none; } }

.footer {
  display: flex;
  position: relative;
  width: 100%;
  padding: 4rem 8rem;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
  background-color: #191919; }
  .footer__logo {
    position: relative;
    isolation: isolate;
    background: url(../img/logo.svg) no-repeat;
    background-size: 80%;
    width: 15rem;
    height: 3.2rem;
    margin: 0.4rem 1rem 0 0;
    opacity: 0.5 !important; }
    @media only screen and (max-width: 56.25em) {
      .footer__logo {
        margin-bottom: 2rem; } }
  @media only screen and (max-width: 56.25em) {
    .footer {
      display: flex;
      flex-direction: column;
      padding: 2rem 4rem !important; } }

.heading {
  margin-top: 12rem; }
  .heading.center {
    text-align: center; }
  .heading__primary {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 6.8rem; }
    .heading__primary.ko {
      font-family: "Noto Sans KR", sans-serif;
      font-weight: 700;
      margin-top: -1.5rem; }
  .heading__secondary {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 4.8rem;
    text-transform: capitalize;
    line-height: 1.3; }
    .heading__secondary.ko {
      font-family: 'Noto Sans KR', sans-serif;
      font-weight: 700; }
  .heading__tertiary {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 3rem; }
    .heading__tertiary.ko {
      font-family: 'Noto Sans KR', sans-serif;
      font-weight: 400;
      letter-spacing: -0.1rem; }
  .heading__caption {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 2rem;
    color: white; }
    .heading__caption.ko {
      font-family: 'Noto Sans KR', sans-serif;
      font-size: 2rem;
      line-height: 1;
      color: rgba(255, 255, 255, 0.9); }

.common-text {
  letter-spacing: -0.06rem; }
  .common-text.underline {
    text-decoration: underline;
    text-underline-position: under; }
  .common-text.bold {
    font-weight: 500;
    letter-spacing: -0.06em; }

.visual {
  position: relative;
  font-family: "Montserrat", sans-serif;
  position: relative;
  width: 100%;
  z-index: 0;
  overflow: hidden; }
  .visual__bg {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center; }
  .visual__slogan {
    background: url(../img/main_slogan.png) no-repeat center/cover;
    height: 100vh; }
    .visual__slogan.ani {
      animation: smoothGrow 1.5s ease forwards; }
  .visual__company {
    background: url(../img/main_company.png) no-repeat center/cover;
    height: 100vh; }
    .visual__company.ani {
      animation: smoothGrow 1.5s ease forwards; }
  .visual__careers {
    background: url(../img/main_careers.png) no-repeat center/cover;
    min-height: 100vh; }
    .visual__careers.ani {
      animation: smoothGrow 1.5s ease forwards; }

.slogan-area,
.company-area,
.careers-area {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  height: 100vh;
  padding: 0 20rem; }
  .slogan-area__title,
  .company-area__title,
  .careers-area__title {
    opacity: 0;
    color: #A9F585;
    font-size: 1.8rem; }
    .slogan-area__title.ani,
    .company-area__title.ani,
    .careers-area__title.ani {
      animation: fadeUpAni 0.6s forwards; }
  .slogan-area__txt1,
  .company-area__txt1,
  .careers-area__txt1 {
    opacity: 0;
    color: white; }
    .slogan-area__txt1.ani,
    .company-area__txt1.ani,
    .careers-area__txt1.ani {
      animation: fadeUpAni 0.6s 0.2s forwards; }
  .slogan-area__txt2,
  .company-area__txt2,
  .careers-area__txt2 {
    opacity: 0;
    color: white; }
    .slogan-area__txt2.ani,
    .company-area__txt2.ani,
    .careers-area__txt2.ani {
      animation: fadeUpAni 0.6s 0.2s forwards; }
  .slogan-area__txt3,
  .company-area__txt3,
  .careers-area__txt3 {
    opacity: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: -0.06rem;
    margin-top: 1rem; }
    .slogan-area__txt3.ani,
    .company-area__txt3.ani,
    .careers-area__txt3.ani {
      animation: fadeUpAni 0.6s 0.4s forwards; }

.company-area__3 {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: inherit; }

.business-area {
  position: relative;
  display: flex;
  height: 100vh;
  width: 100%; }
  .business-area__img {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40rem 4rem;
    z-index: 300; }
    .business-area__img__01 {
      background: url(../img/main_business_01.png) no-repeat center/cover;
      width: 33.33333333333333%; }
    .business-area__img__02 {
      background: url(../img/main_business_02.png) no-repeat center/cover;
      width: 33.33333333333333%;
      margin-left: -1px; }
    .business-area__img__03 {
      background: url(../img/main_business_03.png) no-repeat center/cover;
      width: 33.33333333333333%;
      margin-left: -1px; }
  .business-area__title {
    opacity: 0;
    color: #399918;
    font-size: 1.8rem;
    font-weight: 500; }
    .business-area__title.ani {
      animation: fadeUpAni 0.6s 0.2s forwards; }
  .business-area__txt1 {
    opacity: 0;
    color: white; }
    .business-area__txt1.ani {
      animation: fadeUpAni 0.6s 0.4s forwards; }
  .business-area__txt3 {
    opacity: 0;
    position: relative;
    font-size: 1.4rem;
    color: white;
    margin-top: 1rem; }
    .business-area__txt3.ani {
      animation: fadeUpAni 0.6s 0.6s forwards; }
    .business-area__txt3 li::before {
      content: '•';
      font-size: 1.4rem;
      color: white;
      margin-right: 0.6rem; }
    .business-area__txt3.more {
      cursor: pointer;
      position: absolute;
      boottom: 32rem;
      margin-left: .6rem;
      color: #399918; }
      .business-area__txt3.more::after {
        content: "";
        position: absolute;
        background: url(../img/icn_arr.png) no-repeat;
        width: 17px;
        height: 12px;
        top: 0.6rem;
        margin-left: 1rem;
        visibility: hidden;
        transition: visibility 0.3s ease, opacity 0.3s ease;
        opacity: 0; }
      .business-area__txt3.more:hover::after {
        visibility: visible;
        opacity: 1;
        animation-name: clipPathRight;
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        animation-duration: 0.5s;
        animation-fill-mode: forwards; }

.btn-wrap {
  opacity: 0;
  position: relative;
  display: flex; }
  .btn-wrap.ani {
    animation: fadeUpAni 0.6s 0.8s forwards; }
  .btn-wrap a:link, .btn-wrap :visited {
    display: inline-block;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.9);
    min-width: 12.5rem;
    padding: 1rem 5rem;
    margin: 3rem 1rem;
    transition: .3s;
    font-weight: 500; }
    @media only screen and (max-width: 56.25em) {
      .btn-wrap a:link, .btn-wrap :visited {
        margin: 1rem 0; }
        .btn-wrap a:link:first-child, .btn-wrap :visited:first-child {
          margin-top: 3rem; } }
  .btn-wrap a:hover, .btn-wrap :focus {
    background-color: white;
    color: #000;
    font-weight: 500; }
  @media only screen and (max-width: 56.25em) {
    .btn-wrap {
      display: flex;
      flex-direction: column; } }

.m-layout {
  display: none; }

@media only screen and (max-width: 56.25em) {
  .slogan-area__txt1 {
    display: none; }

  .slogan-area__txt1.m-layout {
    display: block !important; }

  .visual__company, .business-area, .visual__careers {
    display: none; } }
.sub-content {
  padding: 6rem 8rem; }
  .sub-content.carrers {
    padding-bottom: 0rem !important; }

.sub-visual {
  position: relative;
  width: 100%;
  height: 50rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .sub-visual__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .sub-visual__company {
    width: 100%;
    height: 100%;
    background: url(../img/main_companyGray.png) no-repeat 50% 20%/cover;
    transform: scale(1);
    animation: smoothGrow 1.5s ease forwards; }
  .sub-visual h2 {
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    animation: fadeUpAni 0.8s 0.2s forwards;
    margin-top: 1rem; }

.company-txt, .company-info {
  text-align: center;
  color: #191919;
  line-height: 1.4;
  letter-spacing: -0.06rem; }
  .company-txt__01, .company-txt__02, .company-info__01, .company-info__02 {
    opacity: 0;
    font-size: 4.8rem;
    font-weight: 500;
    animation: fadeUpAni 0.8s 0.4s forwards; }
  .company-txt__02, .company-info__02 {
    animation: fadeUpAni 0.8s 0.6s forwards; }
    @media only screen and (max-width: 56.25em) {
      .company-txt__02, .company-info__02 {
        display: none; } }
  .company-txt__03, .company-info__03 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 2.4rem;
    line-height: 1.6;
    margin-top: 4rem;
    opacity: 0;
    animation: fadeUpAni 0.8s 0.8s forwards; }

.business-cont {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8rem; }
  @media only screen and (max-width: 56.25em) {
    .business-cont {
      flex-direction: column;
      padding: 4rem 0; } }
  .business-cont__01 {
    background: url(../img/sub_business01.png) no-repeat center/cover;
    animation-name: clipPathLeft;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-duration: 1s;
    animation-fill-mode: forwards; }
  .business-cont__02 {
    background: url(../img/sub_business02.png) no-repeat center/cover;
    animation-name: clipPathLeft;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-duration: 1s;
    animation-fill-mode: forwards; }
    @media only screen and (max-width: 56.25em) {
      .business-cont__02 {
        margin-top: 0; } }
  .business-cont__03 {
    background: url(../img/sub_business03.png) no-repeat center/cover;
    animation-name: clipPathLeft;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-duration: 1s;
    animation-fill-mode: forwards; }
  .business-cont li {
    width: 35rem;
    height: 48rem;
    border-radius: 0.6rem;
    filter: grayscale(0%);
    transition: filter 0.5s ease; }
    .business-cont li:hover .overlay {
      opacity: 1; }
    .business-cont li:hover .image {
      background-color: #399918; }
    @media only screen and (max-width: 56.25em) {
      .business-cont li {
        width: 60rem;
        height: 20rem;
        margin-bottom: 4rem; } }
  .business-cont li:not(:last-child) {
    margin-right: 4rem; }
    @media only screen and (max-width: 56.25em) {
      .business-cont li:not(:last-child) {
        margin-right: 0; } }
  .business-cont__caption {
    opacity: 0;
    position: absolute;
    bottom: 2rem;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    padding: 0 2rem;
    animation: fadeUpAni 0.8s 0.4s forwards; }

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(57, 153, 24, 0.6);
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  color: white;
  border-radius: .8rem; }

.overlay-text {
  color: white;
  font-size: 1.8rem;
  font-weight: 500;
  opacity: 1;
  padding: 2rem; }
  .overlay-text p::before {
    content: '•';
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-right: 0.6rem; }
  .overlay-text p.ko {
    font-family: 'Noto Sans KR', sans-serif; }
  .overlay-text p.indent {
    font-size: 1.2rem;
    margin-left: 1rem;
    font-weight: 400; }
    .overlay-text p.indent::before {
      content: none; }

.company-info__01::after {
  display: block;
  content: "";
  width: 60px;
  height: 1px;
  background: #000000;
  margin: 20px auto 0; }
.company-info__box {
  position: relative;
  width: 80%;
  display: flex;
  margin: 4rem 0; }
  .company-info__box .left {
    width: 40%;
    height: 42rem;
    border-radius: 0.6rem;
    background: url(../img/sub_business04.png) no-repeat 20% top/cover; }
    .company-info__box .left.ani {
      animation: clipPathLeft 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
  .company-info__box .right {
    font-family: 'Noto Sans KR', sans-serif;
    width: 60%; }
    .company-info__box .right.ani {
      animation: clipPathLeft 2s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
  .company-info__box dl {
    display: flex;
    flex-wrap: wrap;
    margin-left: 4rem;
    font-weight: 400;
    color: #4E4E4E;
    border-top: 2px solid #4E4E4E; }
  .company-info__box dt, .company-info__box dd {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: left;
    margin-top: 1rem; }
  .company-info__box dt {
    width: 20%;
    font-weight: 600; }
  .company-info__box dd {
    width: 80%;
    padding-left: 1rem; }

@media only screen and (max-width: 56.25em) {
  .sub-visual {
    height: 25rem; }

  .sub-content {
    padding: 3rem 4rem; }

  .company-info__box {
    flex-direction: column; }
    .company-info__box.left, .company-info__box.right {
      width: 100%; }

  .company-info__box dl {
    margin-left: 0 !important; }

  .overlay, .overlay-text {
    display: none; } }
.sub-visual__business {
  width: 100%;
  height: 100%;
  background: url(../img/main_businessGray.png) no-repeat 50% 20%/cover;
  transform: scale(1);
  animation: smoothGrow 1.5s ease forwards; }

.business-detail {
  opacity: 0;
  background-color: #f7f7f7;
  padding: 4rem 6rem;
  animation: fadeUpAni 0.8s 0.6s forwards; }
  .business-detail .content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    background: white;
    padding: 1rem;
    margin-top: 1rem; }
    .business-detail .content.gray {
      border: none; }
    .business-detail .content.green {
      background-color: #f5fff2;
      font-weight: 500;
      color: #399918; }
    .business-detail .content.extra {
      text-align: center;
      background: rgba(255, 255, 255, 0.9) !important; }
    .business-detail .content.blue {
      background-color: #EEF7FF;
      font-weight: 500;
      color: #0F67B1; }
    .business-detail .content > p {
      font-size: 1.2rem;
      font-weight: 500; }
    .business-detail .content .content-more {
      position: relative;
      display: flex;
      align-items: stretch;
      flex-wrap: wrap;
      justify-content: space-between; }
      .business-detail .content .content-more span {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24%;
        text-align: center;
        margin-top: 1rem;
        border: 1px solid rgba(0, 0, 0, 0.1); }
        .business-detail .content .content-more span.green {
          border-color: #cfebc7; }
        .business-detail .content .content-more span.blue {
          border-color: #7FA1C3; }
    .business-detail .content .content-icon {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-around;
      padding: 1rem 0; }
      .business-detail .content .content-icon span {
        display: inline-block;
        width: 6rem;
        height: 6rem;
        margin-bottom: 2rem;
        text-align: center;
        font-size: 1.2rem;
        line-height: 16rem; }
        .business-detail .content .content-icon span.small {
          width: 4rem !important;
          height: 4rem !important;
          line-height: 10rem !important; }
        .business-detail .content .content-icon span.temperature {
          background: url(../img/icn_temperature.png) no-repeat center/cover; }
        .business-detail .content .content-icon span.humidity {
          background: url(../img/icn_humidity.png) no-repeat center/cover; }
        .business-detail .content .content-icon span.voc {
          background: url(../img/icn_voc.png) no-repeat center/cover; }
        .business-detail .content .content-icon span.smoke {
          background: url(../img/icn_smoke.png) no-repeat center/cover; }
        .business-detail .content .content-icon span.co2 {
          background: url(../img/icn_co2.png) no-repeat center/cover; }
        .business-detail .content .content-icon span.cctv {
          background: url(../img/icn_cctv.png) no-repeat center/cover; }
        .business-detail .content .content-icon span.database {
          background: url(../img/icn_database.png) no-repeat center/cover; }
        .business-detail .content .content-icon span.semi1 {
          background: url(../img/icn_semi1.png) no-repeat center/cover; }
        .business-detail .content .content-icon span.semi2 {
          background: url(../img/icn_semi2.png) no-repeat center/cover; }
        .business-detail .content .content-icon span.semi3 {
          background: url(../img/icn_semi3.png) no-repeat center/cover; }
        .business-detail .content .content-icon span.semi4 {
          background: url(../img/icn_semi4.png) no-repeat center/cover; }
  .business-detail__info {
    display: flex;
    align-items: flex-start; }
    .business-detail__info .txt {
      width: calc(100% - 24rem);
      font-family: "Noto Sans KR", sans-serif; }
    .business-detail__info .highlight {
      display: inline;
      box-shadow: inset 0 -1rem 0 #F3FEB8; }
      .business-detail__info .highlight:after {
        content: "";
        width: 0;
        height: 1rem;
        display: inline-block;
        background: #F3FEB8; }
    .business-detail__info ul {
      display: flex;
      align-items: flex-start;
      width: 24rem;
      font-weight: 600; }
      .business-detail__info ul li:nth-child(1) {
        display: inline;
        color: rgba(0, 0, 0, 0.2);
        margin-right: 1rem; }
      .business-detail__info ul li:nth-child(2) {
        display: inline;
        color: #399918; }
        .business-detail__info ul li:nth-child(2).blue {
          color: #0F67B1; }
  .business-detail__box {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 2rem; }
    .business-detail__box.icon {
      width: 100%;
      display: flex;
      background: white;
      padding: 2rem 8rem; }

.business-detail__box:nth-child(3)::after {
  display: none; }

@media only screen and (max-width: 56.25em) {
  .business-detail {
    padding: 2rem !important; }

  .business-detail__info {
    flex-direction: column; }

  .business-detail__info ul,
  .business-detail__info .txt {
    width: 100% !important; }

  .business-detail__box.icon {
    display: none !important; }

  .business-detail .content .content-more span {
    width: 49%;
    padding: 2rem 0;
    margin-right: 0 !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 2rem !important; }

  .business-detail .content .content-icon span {
    margin-right: 1rem; }

  .business-detail .content .content-icon span.semi4 {
    display: none; } }
.fire_btn {
  position: relative;
  opacity: 0;
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
  color: #399918;
  animation: fadeUpAni 0.8s 0.6s forwards; }
  .fire_btn a:link {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid #399918;
    transition: background-color 0.3s ease, color 0.3s ease; }
  .fire_btn a:hover {
    background-color: #f5fff2; }

.sub-visual__careers {
  width: 100%;
  height: 100%;
  background: url(../img/main_careersGray.png) no-repeat 50% 20%/cover;
  transform: scale(1);
  animation: smoothGrow 1.5s ease forwards; }

.careers-detail {
  opacity: 0;
  font-family: "Noto Sans KR", sans-serif;
  margin-top: 8rem; }
  .careers-detail.ani {
    animation: fadeUpAni 0.8s 0.6s forwards; }
  .careers-detail__title {
    font-size: 2.4rem;
    font-weight: 600; }
    .careers-detail__title.email-text {
      text-align: right; }
      @media only screen and (max-width: 56.25em) {
        .careers-detail__title.email-text {
          text-align: center; } }
    .careers-detail__title-exp {
      font-size: 1.6rem;
      line-height: 1.3;
      margin-top: 2rem;
      font-weight: 400; }
      .careers-detail__title-exp.email-text {
        margin-top: 1rem; }
        @media only screen and (max-width: 56.25em) {
          .careers-detail__title-exp.email-text {
            text-align: center; } }

.careers-detail > .row {
  border-bottom: 1px solid #DEE2E6;
  padding-bottom: 6rem; }
  .careers-detail > .row.b-none {
    border-bottom: none !important;
    padding-bottom: 0 !important; }

.email-back {
  position: relative;
  padding: 5rem 2rem;
  background: #F8F9FA;
  display: flex;
  text-align: center; }
  @media only screen and (max-width: 56.25em) {
    .email-back {
      flex-direction: column;
      align-items: center; } }
  .email-back a {
    text-decoration: none; }

/*# sourceMappingURL=style.css.map */
