html {
  overflow-x: hidden;
}

.wrap { 
  display: flex;
  overflow: hidden;
  width: 100%;
}

.wrap .rolling-list ul {
	display: flex;
  justify-content: space-around;
  width: 100%;
}

.wrap .rolling-list ul li { 
  width: 200px;
	height: 100px; 
  box-sizing: border-box; 
  display: flex; 
  align-items: center; 
  flex-shrink: 0; 
}

.wrap .rolling-list ul li .image-wrap { 
    width: 100px; 
    flex-shrink: 0; 
}

.wrap .rolling-list ul li .image-wrap > img { 
	width: 100%;
}

.imgBlur { 
  -webkit-filter: blur(10px); 
  -moz-filter: blur(10px); 
  -o-filter: blur(10px); 
  -ms-filter: blur(10px); 
  filter: blur(10px);
}

.rolling-list.original {
	animation: rollingleft1 33s linear infinite;
}
.rolling-list.clone {
	animation: rollingleft2 33s linear infinite;
}

@keyframes rollingleft1 {
	0% { transform: translateX(0); }
	50% { transform: translateX(-100%); }
	50.01% { transform: translateX(100%); }
	100% { transform: translateX(0); }
}

@keyframes rollingleft2 {
	0% { transition: translateX(0); }
	100% { transform: translateX(-200%); }
}

/* 롤링 끝 */

  .swiper-container2 {
    width: 100%;
    height: 10vh;
  }

  .swiper-slide2 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    background-color: #f0f0f0;
    color: #333;
  }

  rect {
    /* transform-origin: 50% 50%; */
    transform: scale(0);
    /* transition: transform 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); */
  }

  .items {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .item {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transform: translateZ(0);
  }

  .item:hover rect,
  .item:hover image {
    transform: scale(1);
    cursor: url(../images/main-mouse2.png) 42.5 64, auto;
  }

  .harry-item:hover image {
    cursor: url(../images/main-mouse2-certi.png) 42.5 64, auto;
  }

  .card-image-custom {
    position: absolute;
    top: 0;
    left: 0;
  }

  .custom-main-flex-class {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    height: 100%;
    margin-top: 0px;
  }

  .custom-main-flex-img {
    max-width: 100%;
  }

  .custom-main-flex-body {
    position: relative;
    flex: 1;
    margin-left: 0;
    max-width: 100%;
  }

  .mainh3 {
    font-size: 2.2em;
    line-height: normal;
  }

  .minih1 {
    font-size: 56px;
    font-weight: 500;
    line-height: normal;
  }

  .minih2 {
    font-size: 40px;
    font-weight: bold;
    line-height: normal;
  }

  .minih3 {
    font-size: 2.0em;
  }

  .minih4 {
    font-size: 24px;
    font-weight: 400;
  }

  .minih5 {
    font-size: 20px;
    font-weight: 300;
  }

  .minih7 {
    font-size: 16px;
    font-weight: 300;
  }

  .minih6 {
    font-size: 1em;
  }

  .miniMaxWidth {
    max-width: 50%;
  }

  .miniMb-30 {
    margin-bottom: 30px;
  }

  .miniMb-34 {
    margin-bottom: 34px;
  }

  .miniMb-40 {
    margin-bottom: 40px;
  }

  .miniMb-60 {
    margin-bottom: 60px;
  }

  .miniMb-70 {
    margin-bottom: 70px;
  }

  .miniMb-90 {
    margin-bottom: 90px;
  }

  .miniMb-120 {
    margin-bottom: 120px;
  }

  .miniPb-120 {
    padding-bottom: 120px;
  }

  .miniMb-140 {
    margin-bottom: 140px;
  }

  .miniMt-34 {
    margin-top: 34px;
  }

  .miniMt-60 {
    margin-top: 60px;
  }

  .miniPt-60 {
    padding-top: 60px;
  }

  .miniPt-80 {
    padding-top: 80px;
  }

  .miniPt-100 {
    padding-top: 100px;
  }

  .miniPl-50 {
    padding-left: 50px;
  }
  
  .miniImg {
    width: 100%;
  }

  .mainBannerLayout {
    
  }
  .custom-shape {
    display: flex;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    /* bottom: 0; */
  }

  .custom-shape img {
    height: 600px;
  }

  #loadingContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* 배경 투명도 조절 가능 */
    z-index: 999; /* 다른 요소들보다 위에 나타나도록 설정 */
}

  .footer-image {
    width: 180px;
  }

  /* 반응형 스타일 */
  @media screen and (max-width: 1024px) {
    .mobile-display-none {
      display: none;
    }
    .mobile-align-center {
      text-align: center;
    }
    .custom-main-flex-img {
      pointer-events: none;
    }

    .custom-mobile-order1 {
      order: 1;
    }

    .custom-mobile-order2 {
      order: 2;
    }

    #popup-container {
      width: 90%;
    }
  }

  @media screen and (max-width: 430px) {
    .footer-image {
      width: 120px;
    }

    .mainh3 {
      font-size: 1.5em;
      line-height: normal;
    }
    .minih1 {
      font-size: 20px;
    }
    .minih2 {
      font-size: 1.5em;
    }
    .minih3 {
      font-size: 18px;
      font-weight: bold;
    }
    .minih4 {
      font-size: 15px;
    }
    .minih5 {
      font-size: 12px;
    }

    .minih7 {
      font-size: 11px;
    }

    .miniMaxWidth {
      max-width: 100%;
    }

    .miniMb-30 {
      margin-bottom: 10px;
    }

    .miniMb-40 {
      margin-bottom: 13px;
    }

    .miniMb-60 {
      margin-bottom: 20px;
    }

    .miniMb-90 {
      margin-bottom: 45px;
    }

    .miniMb-70 {
      margin-bottom: 23px;
    }

    .miniMb-120 {
      margin-bottom: 40px;
    }

    .miniPb-120 {
      padding-bottom: 40px;
    }

    .miniMb-140 {
      margin-bottom: 47px;
    }

    .miniMt-60 {
      margin-top: 0px;
    }

    .miniPt-60 {
      padding-top: 0px;
    }

    .miniPt-100 {
      padding-top: 33px;
    }

    .miniPl-50 {
      padding-left: 0px;
    }

    .miniImg {
      width: 60%;
    }

    .wrap .rolling-list ul li { 
      width: 100px;
      margin: 0 0px;
    }

    .interactive-links .nav-link {
      padding-top: 20px;
      padding-bottom: 20px;
    }

    .card-portfolio.card-horizontal .card-img {
      margin-bottom: 20px;
    }

    .card-portfolio.card-default .card-body {
      padding: 10px 0 0;
    }

    .custom-main-flex-class {
      margin-top: 0px;
      padding: 0 3.3rem;
    }

    .custom-main-flex-body {
      margin-left: auto;
      text-align: center;
    }

    .mainBannerLayout {
      justify-content: center;
    }

    .custom-shape img {
      height: 400px;
    }
  }

  @media screen and (min-width: 431px) {
    .mainh4 {
      font-size: 14px;
    }

    .minih1 {
      font-size: 35px;
    }
    .custom-main-flex-body {
      margin-left: auto;
      text-align: center;
    }
  }

  @media screen and (min-width: 828px) {
    .mainh3 {
      font-size: 25px;
    }

    .mainh4 {
      font-size: 20px;
    }

    .custom-main-flex-class {
      flex-direction: row;
    }

    .minih1 {
      font-size: 40px;
    }

    .minih2 {
      font-size: 25px;
    }

    .custom-main-flex-body {
      flex: 1;
      text-align: left
    }

    .custom-main-flex-class {
      margin-top: 0px;
    }
  }

  @media screen and (min-width: 1024px) {
    .mainh3 {
      font-size: 30px;
    }

    .mainh4 {
      font-size: 24px;
    }

    .custom-main-flex-class {
      flex-direction: row;
    }

    .minih1 {
      font-size: 56px;
    }

    .minih2 {
      font-size: 30px;
    }

    .custom-opacity-0 {
      opacity: 0 !important;
      /* transition: opacity 1s ease-in-out; */
    }
  }

  @media screen and (min-width: 1200px) {
    .mainh3 {
      font-size: 40px;
    }

    .mainh4 {
      font-size: 24px;
    }

    .custom-main-flex-class {
      flex-direction: row;
      padding: 0;
    }

    .minih1 {
      font-size: 56px;
    }

    .minih2 {
      font-size: 40px;
    }

    .custom-main-flex-body {
      flex: 1;
    }

    .custom-main-flex-class {
      margin-top: 50px;
    }
  }

  /* company swiper */

  #swiper {
    margin-bottom: 20px;
  }

  #swiper-wrapper {
    transition-timing-function: linear;
  }

  .slide-compy {
    width: 300px;
    height: 100px;
  }

  /* 이미지 hover 교체 */

  .img-box-compy {
    width: 100%;
    height: 100%;
  }

  .img-compy,
  .img-hover-compy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    max-width: 80%;
    max-height: 60%;
  }

  .img-box-compy>.img-hover-compy {
    opacity: 0;
    transition: opacity 0.5s
  }

  .img-box-compy:hover>.img-hover-compy {
    opacity: 1;
  }

  .custom-opacity-0 {
    opacity: 0;
    /* transition: opacity 1s ease-in-out; */
  }

  /* 팝업 */
  .popup {
    position: fixed;
    
  }

  #popup-container {
    border-radius: 10px;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}
#popup-content {
    margin-bottom: 20px;
}
#close-btn {
    background-color: black;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-right: 10px;
    font-size: 14px;
}
#hide-btn {
  font-size: 14px;
  border: 1px solid black;
  color: black;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}
