.service-wrap {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 8.75rem;
  margin-bottom: 8.75rem;
}
.service-wrap.custom {
  margin-top: 4.375rem;
}
.half-area {
  display: flex;
  flex-direction: row;
}
.half-area > .half {
  width: calc(50% - 18px);
}
@media (max-width: 767px) {
  .service-wrap {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .half-area {
    flex-direction: column;
  }
  .half-area > .half {
    width: 100%;
  }
}

.title-img-wrap {
  display: flex;
  align-items: stretch;
  flex: 6;
}
.title-img-wrap > .text-item {
  /*    flex: 4;*/
  flex-grow: 5;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 3rem;
  padding-right: 2.5rem;
}
.text-item > .title {
  font-weight: bold;
  font-size: 1.8rem;
}
.text-item > .content {
  font-size: 1.25rem;
}
.text-item .button {
  margin-top: 1rem;
  display: inline-block;
  font-size: 1.25rem;
  color: white;
  background-color: #050505;
  border-radius: 0.313rem;
  padding: 0.625rem 1.25rem;
  text-decoration: none;
  transition: background-color 0.3s;
}
.title-img-wrap > .img-item {
  min-width: 400px;
  width: 40vw;
  max-width: 500px;
  height: 27.5rem;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.service-headline {
  font-weight: bold;
  margin-bottom: 1.25rem;
  font-size: 1.625rem;
  text-align: center;
  line-height: 2.76rem;
}

@media (max-width: 500px) {
  .text-item > .title {
    font-size: 1.5rem;
  }
}

.image-area {
  max-width: 1200px;
  height: 8%;
  min-height: 13rem;
  max-height: 15rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  margin-top: 6rem;
  margin-bottom: 3.125rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.image-area > .text-con {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  text-align: center;
  color: white;
  font-size: 1.6rem;
  text-shadow: 0px 0px 10px #00000080;
}
.image-area > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
}

@media (max-width: 1199px) {
  .title-img-wrap {
    flex-direction: column;
  }
  .title-img-wrap > .text-item {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 1rem;
  }
  .title-img-wrap > .img-item {
    min-width: 1px;
    max-width: 100%;
    width: 100%;
    height: 13rem;
  }
  .image-area {
    margin-top: 2rem;
  }
}

@media (max-width: 500px) {
  .image-area > .text-con {
    font-size: 1.3rem;
  }
}

.btn-wrap {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1199px) {
  .btn-wrap {
    flex-direction: column;
  }
}

/* first screen */
.main-wrap {
  display: flex;
  flex-direction: column;
  /*    gap: 35px; */
  padding-top: 9rem;
  align-items: flex-start;
}
.main-wrap > p {
  font-size: 2.1rem;
  padding: 2.18rem 0;
}

.main-wrap .service-sub-title {
  font-size: 2rem;
  font-weight: 300;
  color: #aaa;
}

.main-wrap .service-sub-title span {
  color: #333;
}

.chip-con {
  display: flex;
  flex-wrap: wrap;
  /* margin-top: 2.18rem; */
  margin-top: 0.5rem;
  margin-bottom: 3.43rem;
  width: 100%;
  gap: 10px;
}

.chip-con > .menu-chip {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 1.7rem;
  background-color: #e6e6e6;
  color: #363636;
  border-radius: 1.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
  padding: 0.8rem 2rem;
  box-sizing: border-box;
  opacity: 1;
  height: auto;
  width: auto;
  transition: all 0.2s;
}

.services-main .menu-chip.active,
.chip-con > .menu-chip:hover,
.chip-con .swiper-pagination-bullet-active {
  background: #050505;
  color: #fff;
  box-shadow: 0px 4px 5px 0px #00000040;
}

.main-slide {
  width: 100vw;
  height: 30vh;
  max-height: 404px;
}

.main-slide .swiper-slide {
  border-radius: 1.25rem;
  width: 90vw;
  max-width: 1200px;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.main-slide .swiper-slide > img {
  position: absolute;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s;
}
.main-slide .swiper-slide:hover > img {
  height: 160%;
}

.main-slide .slide-text-con {
  padding: 4rem 5rem;
  color: white;
  text-align: end;
}

@media (max-width: 1199px) {
  .main-wrap {
    padding-top: 7rem;
  }
  .main-slide .slide-text-con {
    padding: 2rem 3rem;
  }
}
@media (max-width: 767px) {
  .main-slide {
    max-height: 250px;
    margin-bottom: 1rem;
  }
  .main-slide .slide-text-con {
    padding: 2rem 1.7rem;
  }
}

.main-slide .slide-title {
  font-size: 2.75rem;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.main-slide .slide-content {
  font-size: 1.5rem;
  font-weight: 600;
}

.main-slide .swiper-slide img {
  display: block;
  width: 100%;
  object-fit: cover;
  transition-duration: 0.5s;
}

.main-slide .swiper-slide:hover img {
  width: 110%;
}

@media (max-width: 1199px) {
  .chip-con {
    margin-bottom: 2rem;
  }
  .chip-con > .menu-chip {
    /*        padding: 0.8rem 1.25rem;*/
    font-size: 1rem;
    margin: 0 !important;
    width: 31%;
  }
  .main-slide .swiper-slide img {
    width: auto;
    height: 100%;
  }
}
@media (max-width: 500px) {
  .main-wrap > p {
    font-size: 1.8rem;
  }
  .main-slide .slide-title {
    font-size: 2.2rem;
  }
  .main-slide .slide-content {
    font-size: 1.2rem;
  }
  .chip-con > .menu-chip:last-child {
    width: auto;
  }
}
/* // first screen */

/* 상단 검은색 영역 */
.service-top-black {
  width: 100vw;
  min-height: calc(328px + 4rem);
  background-color: #050505;
  font-weight: 700;
  color: #fff;
  font-size: 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  padding: 1.4rem;
  text-align: center;
}
.service-top-black > p {
  padding-top: 2rem;
}
@media (max-width: 500px) {
  .service-top-black {
    font-size: 2.2rem;
  }
}
/*

.service-top-black .douwnload-button {
    margin-top: 1rem;
    border-radius: 0.313rem;
    background-color: #050505;
    border: solid 1px #fff;
    padding: 0.875rem 2rem;
    font-size: 1.25rem;
    color: #fff;
    cursor: pointer;
}

.service-top-black .douwnload-button:hover {
    border: solid 1px #de5543;
    color: #de5543;
    background-color: #363636;
}
*/
.animate-btn {
  text-decoration: none;
  font-size: 1.25rem;
  color: #fff;
  border: solid 1px #fff;
  padding: 0.875rem 2rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 5px;
}
.animate-btn:before {
  content: "";
  /*	background-color: #de5543;*/
  background-color: rgba(255, 255, 255, 0.12);
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  position: absolute;
  z-index: -1;
  transform: skew(-15deg);
  animation: moving 1.8s linear infinite;
  transition: all 0.5s;
}

@keyframes moving {
  from {
    left: -120px;
  }
  to {
    left: 100%;
  }
}

.animate-btn:hover:before {
  width: 100%;
  transform: skew(0deg);
  animation: none;
  color: #de5543;
}
@media (max-width: 1199px) {
  .btn-wrap {
    width: 100%;
  }
  .animate-btn {
    width: 100%;
  }
}
/* // 상단 검은색 영역 */

/* 상단 영역 */
.service-top-area {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6.063rem;
}

.service-top-area > .text-area {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  color: #363636;
  align-items: start;
}

.service-top-area > .text-area > .title {
  font-size: 1.875rem;
  font-weight: bold;
}

.service-top-area > .text-area > .content {
  font-size: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 3.75rem;
}

.service-top-area > .text-area > .button:hover {
  background-color: #363636;
}

/* //상단 영역 */

/* 서비스 페이지 공통 내용 컨텐츠 */
.service-content-box {
  box-shadow: 0px 1px 8px 1px #00000033;
  padding: 1.875rem;
  border-radius: 1.25rem;
}

.service-content-box .title-con {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.375rem;
}

.service-content-box .title-con .main-title {
  color: #363636;
  font-weight: 700;
  font-size: 1.625rem;
  margin-bottom: 1.25rem;
}

.service-content-box .title-con .sub-title {
  font-size: 1.25rem;
}

.service-sub-content-box {
  background-color: #f3f3f3;
  border-radius: 0.625rem;
  padding: 1.25rem;
  color: #000;
  width: 100%;
}
.service-sub-content-box.half {
  width: calc(50% - 7.5px);
}
.service-sub-content-box.third {
  width: calc(100% / 3 - 10px);
}

@media (max-width: 767px) {
  .service-sub-content-box.half,
  .service-sub-content-box.third {
    width: 100%;
  }
}

.service-sub-content-box-title {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.service-sub-content-box-title.gray {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #6c6c6c;
}

/* // 서비스 페이지 공통 내용 컨텐츠 */

/* 서비스 페이지 공통 아코디언  */
.service-accordion .accordion-item {
  box-shadow: 0px 1px 8px 1px #00000033;
  border-radius: 1.25rem;
}

.service-accordion .accordion-button {
  border-radius: 1.25rem !important;
  padding: 1.875rem;
  color: #000;
  box-shadow: none;
}

.service-accordion .accordion-button::after {
  display: none;
}

.service-accordion .accordion-title {
  color: #363636;
  margin-bottom: 0.875rem;
  font-weight: bold;
  font-size: 1.625rem;
}

.service-accordion .accordion-sub-title {
  font-size: 1.25rem;
}

.service-accordion .arrow-text {
  margin-right: 0.313rem;
  font-weight: 700;
}

.service-accordion .accordion-body {
  padding: 1.875rem;
  padding-top: 0;
}

/* // 서비스 페이지 공통 아코디언  */

/* Services_Main */
.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.services-main {
  height: 100vh;
  position: relative;
}

.services-main .service-wrap {
  padding: 0;
  padding-top: 7.25rem;
  gap: 0;
}

.services-main .service-wrap > p {
  font-size: 2.188rem;
  font-weight: 500;
  color: #363636;
}

/* // Services_Main */

/* services-media */
.dalgo-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.dalgo-title > h3 {
  font-size: 2.18rem;
  font-weight: 700;
}
.dalgo-title > .service-sub-content-box {
  font-size: 1.25rem;
  background-color: #050505;
  padding: 0.875rem 2rem;
}

.media-banner {
  width: 100%;
  height: 400px;
  margin-bottom: 4.375rem;
}
.bg-image {
  border-radius: 1.25rem;
  width: 100%;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.media-banner .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.25rem;
  width: 100%;
  overflow: hidden;
}

.media-banner .swiper-slide img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.media-banner .swiper-pagination-bullet {
  background: #fff;
  width: 12px;
  height: 12px;
  margin: 0 1.094rem !important;
}

.media-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #de5543;
}

.media-wrap {
  display: flex;
  gap: 80px 40px;
  flex-wrap: wrap;
}
.media-wrap.full {
  gap: 120px;
}
.media-wrap > .media-card {
  display: flex;
  flex-direction: column;
  width: calc(50% - 20px);
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid #dedede;
  box-shadow: 0 4px 8px #00000026;
  position: relative;
}

.media-wrap.solution-wrap {
  display: flex;
  gap: 40px 20px;
  flex-wrap: nowrap;
}
.media-wrap.solution-wrap > .media-card {
  display: flex;
  flex-direction: column;
}

.media-wrap.full > .media-card.full {
  flex-direction: column;
  box-shadow: none;
  border: none;
  border-radius: 0;
}
.media-wrap .media-img {
  position: relative;
  background: #f3f3f3;
  width: 100%;
  overflow: hidden;
}
.media-play-area {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}
.media-wrap.full > .media-card > .media-img {

}
.media-wrap.full > .media-card.full > .media-img {
  width: 60%;
  border-radius: 30px;
}
.media-wrap .media-img > img {
  width: 100%;
}
.media-wrap .media-text {
  width: 100%;
  padding: 1.563rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.media-wrap.full .media-text {
  padding: 3.125rem 1.8rem;
}
.media-wrap.full > .media-card.full > .media-text {
  padding: 1.563rem;
}
.media-wrap .media-text > h3 {
  color: #de5543;
  font-size: 1.625rem;
}
.media-wrap .media-card.ready .media-text > h3 {
  color: #6c6c6c;
}
.media-wrap .media-text > .media-line {
  width: 100%;
  height: 1px;
  background: #dedede;
}
.media-wrap .media-text > .media-tag {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.media-wrap .media-text > .media-tag > p {
  border-radius: 5px;
  background: #f3f3f3;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.media-wrap .fix-img {
  position: absolute;
  bottom: 0;
  right: 1.563rem;
  width: 15rem;
}

@media (max-width: 1160px) {
  .media-wrap .fix-img {
    display: none;
  }
}
@media (max-width: 800px) {
  .service-headline {
    font-size: 1.2rem;
    line-height: 2rem;
    margin-bottom: 2.3rem;
  }
  .dalgo-title {
    flex-direction: column;
    padding: 2rem 0;
    gap: 30px;
  }
  .dalgo-title > h3 {
    font-size: 1.5rem !important;
  }
   .dalgo-title > h3 > span.stat_point{
    font-size: 1.7rem !important;
  }
  .dalgo-title > .service-sub-content-box {
    font-size: 1.1rem;
  }

.media-wrap.solution-wrap {
  flex-wrap: wrap;
}
  .media-wrap.full {
    gap: 70px;
  }
  .media-wrap > .media-card {
    width: 100%;
    border-radius: 15px;
  }
  .media-wrap.full > .media-card {
    flex-direction: column;
  }
  .media-wrap .media-img {
    max-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .media-wrap .media-img > img {
    width: auto;
    height: 100%;
  }
  .media-wrap.full > .media-card > .media-img {
    width: 100%;
  }
  .media-wrap.full > .media-card.full > .media-img {
    border-radius: 15px;
  }
  .media-wrap.full > .media-card.full > .media-text {
    padding-left: 0;
    padding-right: 0;
  }
}

/* // services-media */

/* Services_Solutions */
#services-solutions .video-con {
  width: 100%;
  height: 400px;
  background-color: #363636;
  border-radius: 1.25rem;
  margin-bottom: 4.375rem;
  overflow: hidden;
  position: relative;
}

#services-solutions .video-con video {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 800px) {
  .media-banner,
  #services-solutions .video-con {
    margin-bottom: 0;
  }
  #services-solutions .video-con video {
    width: auto;
    height: 100%;
  }
}

/* // Services_Solutions */

/* Services_Platform */
.service-platform-middle {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f3f3f3;
  width: 100vw;
  height: 180px;
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 7.5rem;
  margin-bottom: 5rem;
  text-align: center;
}

.member-image-area {
  background-color: #f3f3f3;
  max-width: 580px;
  max-height: 500px;
  overflow: hidden;
  border-radius: 1.25rem;
  margin-bottom: 1.875rem;
}

.member-image-area img {
  object-fit: cover;
  width: 100%;
}

.member-name {
  color: #363636;
  font-weight: 700;
  font-size: 1.625rem;
}

.member-line {
  background-color: #dedede;
  width: 100%;
  height: 1px;
  margin-bottom: 1.875rem;
}
.video-modal,
.video-modal-media {
  width: 100%;
  height: 400px;
}
#solutionVideoModal .swiper-button-next,
#solutionVideoModal .swiper-button-prev {
  color: #fff;
  margin: 0 -50px;
}
#mediaVideoModal .swiper-button-next,
#mediaVideoModal .swiper-button-prev {
  color: #fff;
  margin: 0 -50px;
}

.media-play-area {
  cursor: pointer;
}

@media (max-width: 1199px) {
  .service-platform-middle {
    padding: 0 1.4rem;
  }
}
@media (max-width: 500px) {
  .service-platform-middle {
    font-size: 1.3rem;
    padding: 3rem 1.4rem;
    height: auto;
  }
  .onVideoSpace .play-icon-solution {
    width: 55%;
  }

  #solutionVideoModal .swiper-button-next,
  #solutionVideoModal .swiper-button-prev {
    margin: 0px;
  }
  #mediaVideoModal .swiper-button-next,
  #mediaVideoModal .swiper-button-prev {
    margin: 0px;
  }
}
/* // Services_Platform */
.specs-card{
  padding: 5px 16px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  max-width: 820px; /* 페이지 폭에 맞춰 적당히 조절 */
}

.specs-card h4{
  margin: 0 0 10px 0;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

.specs-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 0;
}

.spec-item{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}

.spec-item:last-child{
  border-bottom: none;
}

.spec-item dt{
  margin: 0;
  font-weight: 600;
  color: #111;
  font-size: 0.95rem;
}

.spec-item dd{
  margin: 0;
  font-weight: 500;
  color: #444;
  font-size: 0.95rem;
  justify-self: end;
}

/* 모바일: 1열로 전환 */
@media (max-width: 768px){
  .specs-grid{
    grid-template-columns: 1fr;
  }
  .spec-item{
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .spec-item dd{
    justify-self: start;
  }
}
