.custom-model-main,
.custom-model-main2,
.custom-model-main3,
.custom-model-main4,
.custom-model-main5,
.custom-model-main6,
.custom-model-main7,
.custom-model-main8 {
  text-align: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* z-index: 1050; */
  -webkit-overflow-scrolling: touch;
  outline: 0;
  opacity: 0;
  -webkit-transition: opacity 0.15s linear, z-index 0.15;
  -o-transition: opacity 0.15s linear, z-index 0.15;
  transition: opacity 0.15s linear, z-index 0.15;
  z-index: -1;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
}

.model-open {
  z-index: 99999;
  opacity: 1;
  overflow: hidden;

}

.custom-model-inner {
  padding: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
  vertical-align: middle;
  width: 600px;
  margin: 30px auto;
}

.custom-model-wrap {
  justify-content: center;
  align-items: center;
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
  text-align: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

.model-open .custom-model-inner {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  position: relative;
  z-index: 999;
}

.model-open .bg-overlay {
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
}

.bg-overlay {
  background: rgba(0, 0, 0, 0);
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.close-btn {
  float: right;
  right: 0;
  top: -10px;
  height: 100vh;
  position: fixed;
  cursor: pointer;
  z-index: 99;
  font-size: 30px;
  color: white;
  padding-right: 20px;
}

@media screen and (min-width:800px) {
  .custom-model-main:before {
    content: "";
    display: inline-block;
    height: auto;
    vertical-align: middle;
    margin-right: -0px;
    height: 100%;
  }
}

@media screen and (max-width:799px) {
  .custom-model-inner {
    margin-top: 45px;
  }
}

.cha-box {
  width: 100vw;
  height: 94vh;
  z-index: 1;
}


.cha-container {
  align-content: stretch;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  height: 94vh;
  width: 100vw;
}

.item {
  border: 1px solid white;
  display: grid;
  height: 23.5vh;
  width: 50vw;
  flex: 1 1 40%;
  justify-content: center;
  align-items: center;
}

.item-box {
  text-align: center;
  justify-content: center;
  align-items: center;
  transform: scale(1);
  transition: transform 1s ease;
}

.item-box:hover {
  transform: scale(1.15);
}

.item-img {
  padding-top: 8px;
  justify-content: center;
  align-items: center;
  text-align: center;

}


.item-img img {
  width: 20vw;

}

.opacity {
  opacity: 1;
}

.blur {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  grayscale: 0;
}

.item-text {
  padding-bottom: 5px;
  font-family: 'NeutronicHangeul-Regular', sans-serif;
  text-align: center;
  line-height: 1.2;
}

.name {
  width: 100%;
  font-size: 0.8rem;
  display: inline-block;
}

.des {
  width: 100%;
  font-size: 0.7rem;
  display: inline-block;
}

/*report action*/
section {
  display: block;
}


section div.split {
  height: 100vh;
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

section div.slides {
  width: 500px;
  height: 750px;
  position: relative;
  perspective: 800px;
  align-items: center;
  justify-content: center;
}

section div.slides img {
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: 750px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.014);
}

section div.info {
  padding: 32px;
  max-width: 480px;
}

section h2 {
  font-size: 32px;
}

section p {
  margin: 32px 0 0 0;
}

section a {
  background-color: #ffffff;
  color: #111111;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 24px 8px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
}

section a img {
  margin: 0 0 0 8px;
  width: 10px;
  height: 16px;
  object-fit: cover;
  object-position: center right;
  transition: width 0.25s;
}

section a:hover img {
  width: 25px;
}


section.alternative div.split:first-child {
  grid-column: 2;
}

section.alternative div.split:last-child {
  grid-column: 1;
}


@media (max-width: 1080px) {
  section {
    display: block;
  }

  section div.split {
    padding: 64px 0 64px 0;
  }
}

@media (max-width: 700px) {

  section div.slides,
  section div.slides img {
    width: 80vw;
    height: 120vw;
  }
}

/*desktop */
@media screen and (min-width: 826px) {

  .cha-container {
    align-content: stretch;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    width: 100vw;
    height: 94vh;
  }

  .item {
    border: 1px solid white;
    display: grid;
    height: 47vh;
    width: 25vw;
    flex: 1 1 25%;
    justify-content: center;
    align-items: center;
  }

  .item-img img {
    width: 10vw;
  }

  .item-text {
    padding-top: 5px;
    padding-bottom: 5px;
    font-family: 'NeutronicHangeul-Regular', sans-serif;
    text-align: center;
    line-height: 1.5;
  }

  .name {
    width: 100%;
    font-size: 1.3rem;
    display: inline-block;
  }

  .des {
    width: 100%;
    font-size: 0.9rem;
    display: inline-block;
  }

}