@charset "UTF-8";
/*-------------------------------------------------------------------
    파일정의 : main_2025.css / 국문 쇼룸 페이지
    작성날짜 : 2025-01-21 오선화
-------------------------------------------------------------------*/

:root {
  --color-key: #0072ce;
  --color-sec: #2747b9;
}

/* 메인 */
.wrap-showroom-sr0 {
  font-family: "Pretendard";
  width: 100%;
  height: 100%;
  background-color: #f2f2f2;
}
.wrap-showroom-sr0 .showroom-intro-header .logo {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1520px;
  height: 96px;
}
.wrap-showroom-sr0.intro .showroom-intro-header .logo {
  display: none;
}
.wrap-showroom-sr0 .showroom-intro-header .logo .s1 {
  position: relative;
  width: 77px;
  height: 40px;
  background: url(../../images/ko/showroom/main/logo_ci_blk.svg) no-repeat left center;
  background-size: 60px auto;
  padding-right: 17px;
  margin-right: 16px;
}
.wrap-showroom-sr0 .showroom-intro-header .logo .s1:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: #999;
}
.wrap-showroom-sr0 .showroom-intro-header .logo .sr {
  display: inline-block;
  width: 203px;
  height: 40px;
  background: url(../../images/ko/showroom/main/logo_showroom.svg) no-repeat left center;
  background-size: 203px auto;
}
.wrap-showroom-sr0 .showroom-intro-header [class*="page-"] {
  transform: translateY(-72px);
  animation: hideHeader 0.3s forwards;
}
.wrap-showroom-sr0.active .showroom-intro-header [class*="page-"] {
  transform: translateY(0);
  animation: bounceDown 0.8s forwards;
}
@keyframes bounceDown {
  0% {
    transform: translateY(-72px);
  }
  80% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes hideHeader {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-72px);
  }
}
.wrap-showroom-sr0 .showroom-container-inner.active:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 30%;
  height: 100%;
  z-index: 10;
  background: linear-gradient(to right, #f2f2f2 30%, transparent 100%);
}

/* GNB */
.showroom-gnb {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1520px;
  height: 75px;

  z-index: 500;
}
.showroom-gnb > ul {
  transform: translateY(72px);
  display: flex;
  animation: hideGnb 0.3s forwards;
}
.wrap-showroom-sr0.active .showroom-gnb > ul {
  transform: translateY(0);
  animation: bounceUp 0.8s forwards;
}
@keyframes hideGnb {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(72px);
  }
}
@keyframes bounceUp {
  0% {
    transform: translateY(72px);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(3px);
  }
}
.showroom-gnb > ul > li {
  flex: 0 0 270px;
  height: 75px;
  font-weight: 600;
  font-size: 20px;
}
.showroom-gnb > ul > li:first-child {
  color: #fff;
  background-color: #ff312c;
  border-top-left-radius: 8px;
  transition: 0.3s ease;
}
.showroom-gnb > ul > li:last-child {
  border-top-right-radius: 8px;
}
.showroom-gnb > ul > li:not(:first-child) {
  flex-basis: 270px;
  font-weight: 600;
  color: #333;
  background-color: #fff;
  transition: flex-basis 0.3s ease, background-color 0.3s ease;
}
.showroom-gnb > ul > li:not(:first-child).active {
  flex-basis: 440px;
  font-weight: 700;
  color: #fff;
  background-color: var(--color-key);
  transition: flex-basis 0.3s ease, background-color 0.3s ease;
}
.showroom-gnb > ul > li:first-child {
  flex-basis: 270px;
  font-weight: 600;
}
.showroom-gnb > ul > li.active:first-child {
  flex-basis: 440px;
  font-weight: 700;
}
.showroom-gnb > ul > li:last-child > a {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 130%;
}
.showroom-gnb > ul > li:last-child > a > span > span {
  display: block;
}
.showroom-gnb > ul > li:last-child.active > a > span > span {
  display: inline;
}
.showroom-gnb > ul > li > a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 72px;
  text-align: center;
}
.showroom-gnb > ul > li > a[aria-controls] {
  cursor: default;
}
.showroom-gnb .gnb-sub-list {
  display: flex;
  position: fixed;
  left: 278px;
  bottom: -100%;
  gap: 16px;
  align-items: center;
  padding: 0 16px;
  width: 424px;
  height: 56px;
  border-radius: 8px;
  background-color: #fff;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: bottom 0.5s ease, opacity 0.5s ease 0.5s;
}
/* .showroom-gnb > ul > li:nth-child(3) .gnb-sub-list {
  left: 368px;
}
.showroom-gnb > ul > li:nth-child(4) .gnb-sub-list {
  left: 548px;
} */
.showroom-gnb > ul > li.active .gnb-sub-list {
  bottom: calc(100% + 12px);
  opacity: 1;
  visibility: visible;
  transition: bottom 0.3s ease, opacity 0.3s ease;
}
.showroom-gnb .gnb-sub-list > li {
  position: relative;
  flex: 0 0 86px;
  height: 27px;
}
.showroom-gnb .gnb-sub-list.no-doorcam > li {
  flex: 0 0 120px;
}
.showroom-gnb .gnb-sub-list.digital > li {
  flex: 1;
}
.showroom-gnb .gnb-sub-list > li ~ li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: #c4c4c4;
}
.showroom-gnb .gnb-sub-list > li > a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  color: #666;
}
.showroom-gnb .gnb-sub-list > li.active a {
  font-weight: 700;
  color: var(--color-key);
}

.showroom-container-inner {
  width: 100%;
  height: 100%;
}
.showroom-introduction {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  transition: transform 0.5s ease;
  background-color: #fff;
}
.showroom-introduction .intro-video video {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 177.77777778vh; /* 16/9 */
  min-width: 100%;
  min-height: 56.25vw; /* 9/16 */
  transform: translateY(-50%);
}
.showroom-introduction .info-wrap {
  position: relative;
  max-width: 1520px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  color: #fff;
  z-index: 12;
}
.wrap-showroom-sr0.intro .showroom-introduction:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}
.showroom-introduction .info {
  transform: translateX(calc((-100vw + 1520px) - 400px));
  animation: hideLeft 0.8s forwards;
}
.wrap-showroom-sr0.active .showroom-introduction .info {
  transform: translateX(0);
  animation: bounceRight 1.5s ease-in-out;
}
@keyframes hideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc((-100vw + 1520px) - 400px));
  }
}
@keyframes bounceRight {
  0% {
    transform: translateX(calc((-100vw + 1520px) - 400px));
  }
  70% {
    transform: translateX(30px);
  }
  95% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(0);
  }
}
.showroom-introduction .info h2 {
  width: 136px;
  height: 64px;
  margin-bottom: 24px;
  background: url(../../images/ko/showroom/main/logo_ci_wt.svg) no-repeat center;
  background-size: 100% 100%;
}
.showroom-introduction .info h3 {
  line-height: 100%;
  font-weight: 700;
  font-size: 88px;
  padding-bottom: 40px;
  letter-spacing: -1%;
}
.showroom-introduction .info strong {
  display: block;
  line-height: 36px;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
}
.showroom-introduction .info p {
  padding-top: 16px;
  font-weight: 500;
  font-size: 20px;
  color: #666;
}
.showroom-introduction .info .btn-more-trans {
  position: relative;
  width: 215px;
  height: 64px;
  margin-top: 40px;
  padding: 0 24px;
  font-weight: 600;
  font-size: 20px;
  text-align: left;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  background-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
  background: linear-gradient(to left, rgba(255, 255, 255, 0.24) 50%, #fff 50%) 98%;
  background-size: 210% 100%;
  box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.04);
  transition: 0.25s ease-out;
}
.showroom-introduction .info .btn-more-trans:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(../../images/ko/showroom/main/icon_play_wht.svg);
  background-size: 100% auto;
  transition: 0.3s ease-out background-image;
}
.showroom-introduction .info .btn-more-trans.play:after {
  background-image: url(../../images/ko/showroom/main/icon_play_wht.svg);
}
.showroom-introduction .info .btn-more-trans.play:hover:after {
  background-image: url(../../images/ko/showroom/main/icon_play_blk.svg);
}
.showroom-introduction .info .btn-more-trans:hover {
  background-position: left;
  color: #333;
  border-color: #fff;
}

.showroom-intro-content {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}
.intro-text-wrap {
  position: relative;
  max-width: 1520px;
  height: 100%;
  margin: 0 auto;
}

.swiper-intro-text {
  z-index: 10;
}
.swiper-intro-text,
.swiper-intro-text .swiper-wrapper,
.swiper-intro-text .swiper-wrapper .swiper-slide {
  height: 100%;
}
.swiper-intro-text .swiper-slide {
  display: flex;
  align-items: center;
}
.swiper-intro-text .swiper-slide .info h3 {
  line-height: 88px;
  font-weight: 700;
  font-size: 80px;
  padding-bottom: 24px;
}
.swiper-intro-text .swiper-slide.huen .info h3 {
  width: 224px;
  height: 88px;
  margin-bottom: 24px;
  background: url(../../images/ko/showroom/main/img_logo_huen.svg) no-repeat center;
  background-size: 100% 100%;
}
.swiper-intro-text .swiper-slide.uvis .info h3 {
  width: 222px;
  height: 88px;
  margin-bottom: 24px;
  background: url(../../images/ko/showroom/main/img_logo_uvis.svg) no-repeat center;
  background-size: 100% 100%;
}
.swiper-intro-text .swiper-slide.bluescan .info h3 {
  width: 340px;
  height: 88px;
  margin-bottom: 24px;
  background: url(../../images/ko/showroom/main/img_logo_bluescan.svg) no-repeat center;
  background-size: 100% 100%;
}
.swiper-intro-text .swiper-slide.asset .info h3 {
  width: 402px;
  height: 88px;
  margin-bottom: 24px;
  background: url(../../images/ko/showroom/main/img_logo_blueasset.svg) no-repeat center;
  background-size: 100% 100%;
}
.swiper-intro-text .swiper-slide .info strong {
  display: block;
  line-height: 39px;
  font-weight: 700;
  font-size: 26px;
  color: #333;
}
.swiper-intro-text .swiper-slide .info p {
  padding-top: 16px;
  font-weight: 500;
  font-size: 22px;
  color: #666;
}
.swiper-intro-text .swiper-slide .info [class*="btn-more"] {
  display: flex;
  align-items: center;
  position: relative;
  width: 240px;
  height: 64px;
  margin-top: 64px;
  padding: 0 24px;
  font-weight: 600;
  font-size: 20px;
  text-align: left;
  border-radius: 8px;
  background-color: #fff;
  background: linear-gradient(to left, #fff 50%, var(--color-sec) 50%) right;
  background-size: 201% 100%;
  box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.04);
  transition: 0.25s ease-out;
}
.swiper-intro-text .swiper-slide .info [class*="btn-more"]:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(../../images/ko/showroom/main/icon_arrow_tail_blk.svg);
  background-size: 100% auto;
  transition: 0.3s ease-out background-image;
}
.swiper-intro-text .swiper-slide .info [class*="btn-more"].play {
  width: auto;
  padding: 0 52px 0 24px;
}
.swiper-intro-text .swiper-slide:last-child .info [class*="btn-more"].play {
  width: 240px;
}
.swiper-intro-text .swiper-slide .info [class*="btn-more"]:hover {
  color: #fff;
  background-position: left;
}
.swiper-intro-text .swiper-slide .info [class*="btn-more"]:hover:after {
  background-image: url(../../images/ko/showroom/main/icon_arrow_tail_wht.svg);
}
.swiper-intro-text .swiper-slide .info [class*="btn-more"].play:after {
  background-image: url(../../images/ko/showroom/main/icon_play_blk.svg);
}
.swiper-intro-text .swiper-slide .info [class*="btn-more"].play:hover:after {
  background-image: url(../../images/ko/showroom/main/icon_play_wht.svg);
}
.swiper-intro-text .swiper-slide .btns {
  display: flex;
  gap: 12px;
}

.swiper-intro-img,
.swiper-intro-img .swiper-wrapper,
.swiper-intro-img .swiper-wrapper .swiper-slide {
  height: 100%;
}
.swiper-intro-img .swiper-wrapper {
  transition-timing-function: ease-in-out !important;
}
.swiper-intro-img {
  overflow: visible;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: rotate(65deg);
  width: 100%;
  height: 100%;
}
.swiper-intro-img .swiper-slide {
  transform: rotate(-65deg);
}
.swiper-intro-img .swiper-slide {
  background-size: unset;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0.2;
}
.swiper-intro-img .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.swiper-intro-img .swiper-slide.store {
  background-image: url(../../images/ko/showroom/main/img_service_01store.png);
}
.swiper-intro-img .swiper-slide.office {
  background-image: url(../../images/ko/showroom/main/img_service_02office.png);
}
.swiper-intro-img .swiper-slide.factory {
  background-image: url(../../images/ko/showroom/main/img_service_03factory.png);
}
.swiper-intro-img .swiper-slide.warehouse {
  background-image: url(../../images/ko/showroom/main/img_service_04warehouse.png);
}
.swiper-intro-img .swiper-slide.house {
  background-image: url(../../images/ko/showroom/main/img_service_05house.png);
}
.swiper-intro-img .swiper-slide.villa {
  background-image: url(../../images/ko/showroom/main/img_service_06multiUnitHouse.png);
}
.swiper-intro-img .swiper-slide.huen {
  background-image: url(../../images/ko/showroom/main/img_service_07huen.png);
}
.swiper-intro-img .swiper-slide.doorcam {
  background-image: url(../../images/ko/showroom/main/img_service_08aiDoorcam.png);
}
.swiper-intro-img .swiper-slide.digital {
  background-image: url(../../images/ko/showroom/main/img_service_09digital.png);
}
.swiper-intro-img .swiper-slide.uvis {
  background-image: url(../../images/ko/showroom/main/img_service_10uvis.png);
}
.swiper-intro-img .swiper-slide.bluescan {
  background-image: url(../../images/ko/showroom/main/img_service_11bluescan.png);
}
.swiper-intro-img .swiper-slide.asset {
  background-image: url(../../images/ko/showroom/main/img_service_12blueasset.png);
}

/* 에스원 소개 영상 팝업 */
.popup-sr0-intro {
  animation: hidePopup 0.8s forwards;
}
.popup-sr0-intro.on {
  display: block;
  animation: showPopup 0.5s forwards;
  backdrop-filter: blur(10px);
}
@keyframes showPopup {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes hidePopup {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}
.popup-sr0-intro .modal_inner {
  display: flex;
  height: 100%;
  padding-bottom: 0;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
.popup-sr0-intro .modal_inner .video-content-inner {
  position: relative;
  width: 1520px;
  height: 896px;
  max-height: 100%;
}

.popup-sr0-intro .modal_inner .video-content-inner .video-wrap {
  display: flex;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
}
.popup-sr0-intro .modal_inner .video-content-inner video {
  height: 100%;
  width: 177.77777778vh; /* 100 * 16 / 9 */
  max-width: 100%;
  height: auto;
}
.popup-sr0-intro .modal_inner .video-content-inner .modal_header {
  padding: 0 16px 8px;
  text-align: right;
}
.popup-sr0-intro .modal_inner .video-content-inner .modal_header .btn_close {
  width: 32px;
  height: 32px;
  background-image: url(../../images/ko/showroom/main/icon_close.png);
  background-size: 100% auto;
}

/* 반응형: 1520px 이하 */
@media (max-width: 1520px) {
  /* 헤더 */
  /* .wrap-showroom-sr0 .showroom-intro-header {
    height: 5vw;
    padding: 0 2.0833vw;
  }
  .wrap-showroom-sr0 .showroom-intro-header [class*="page-"] {
    width: 2.5vw;
    height: 2.5vw;
    background-size: 2.9167vw auto;
    transform: translateY(-3.75vw);
  } */
  @keyframes bounceDown {
    0% {
      transform: translateY(-3.75vw);
    }
    80% {
      transform: translateY(0.1563vw);
    }
    100% {
      transform: translateY(0);
    }
  }
  .wrap-showroom-sr0 .showroom-intro-header .logo {
    max-width: 79.1667vw;
    height: 5vw;
  }
  .wrap-showroom-sr0 .showroom-intro-header .logo .s1 {
    width: 4.0104vw;
    height: 2.0833vw;
    background-size: 3.125vw auto;
    padding-right: 0.8854vw;
    margin-right: 0.8333vw;
  }
  .wrap-showroom-sr0 .showroom-intro-header .logo .s1:after {
    width: 0.0521vw;
    height: 0.8333vw;
  }
  .wrap-showroom-sr0 .showroom-intro-header .logo .sr {
    width: 10.5729vw;
    height: 2.0833vw;
    background-size: 10.5729vw auto;
  }

  /* GNB */
  .showroom-gnb {
    width: 79.1667vw;
    height: 3.9063vw;
  }
  .showroom-gnb > ul {
    transform: translateY(3.75vw);
  }
  @keyframes hideGnb {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(3.75vw);
    }
  }
  @keyframes bounceUp {
    0% {
      transform: translateY(3.75vw);
    }
    80% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(0.1563vw);
    }
  }
  
  .showroom-gnb > ul > li {
    flex: 0 0 14.0625vw;
    height: 3.9063vw;
    font-size: 1.0417vw;
  }
  .showroom-gnb > ul > li:first-child {
    border-top-left-radius: 0.4167vw;
  }
  .showroom-gnb > ul > li:last-child {
    border-top-right-radius: 0.4167vw;
  }
  .showroom-gnb > ul > li:not(:first-child) {
    flex-basis: 14.0625vw;
  }
  .showroom-gnb > ul > li:not(:first-child).active {
    flex-basis: 22.9167vw;
  }
  .showroom-gnb > ul > li:first-child {
    flex-basis: 14.0625vw;
  }
  .showroom-gnb > ul > li.active:first-child {
    flex-basis: 22.9167vw;
  }
  .showroom-gnb > ul > li > a {
    line-height: 3.75vw;
  }
  
  .showroom-gnb .gnb-sub-list {
    left: 14.4792vw;
    gap: 0.8333vw;
    padding: 0 0.8333vw;
    width: 22.0833vw;
    height: 2.9167vw;
    border-radius: 0.4167vw;
  }
  /* .showroom-gnb > ul > li:nth-child(3) .gnb-sub-list {
    left: 19.1667vw;
  }
  .showroom-gnb > ul > li:nth-child(4) .gnb-sub-list {
    left: 28.5417vw;
  } */
  .showroom-gnb > ul > li.active .gnb-sub-list {
    bottom: calc(100% + 0.625vw);
  }
  .showroom-gnb .gnb-sub-list > li {
    flex: 0 0 4.4792vw;
    height: 1.4063vw;
  }
  .showroom-gnb .gnb-sub-list.no-doorcam > li {
    flex: 0 0 6.25vw;
  }
  .showroom-gnb .gnb-sub-list > li ~ li:before {
    left: -0.4167vw;
    width: 0.0521vw;
    height: 0.625vw;
  }
  .showroom-gnb .gnb-sub-list > li > a {
    font-size: 0.9375vw;
  }
  .showroom-introduction .info-wrap {
    max-width: 79.1667vw;
  }
  .showroom-introduction .info {
    transform: translateX(calc((-100vw + 79.1667vw) - 20.8333vw));
  }
  @keyframes hideLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc((-100vw + 79.1667vw) - 20.8333vw));
    }
  }
  @keyframes bounceRight {
    0% {
      transform: translateX(calc((-100vw + 79.1667vw) - 20.8333vw));
    }
    70% {
      transform: translateX(1.5625vw);
    }
    95% {
      transform: translateX(-0.1042vw);
    }
    100% {
      transform: translateX(0);
    }
  }
  .showroom-introduction .info h2 {
    width: 7.0833vw;
    height: 3.3333vw;
    margin-bottom: 1.25vw;
  }
  .showroom-introduction .info h3 {
    font-size: 4.5833vw;
    padding-bottom: 2.0833vw;
  }
  .showroom-introduction .info strong {
    line-height: 1.875vw;
    font-size: 1.25vw;
  }
  .showroom-introduction .info p {
    padding-top: 0.8333vw;
    font-size: 1.0417vw;
  }
  .showroom-introduction .info .btn-more-trans {
    width: 12.5vw;
    height: 3.3333vw;
    margin-top: 2.0833vw;
    padding: 0 1.25vw;
    font-size: 1.0417vw;
    border-radius: 0.4167vw;
  }
  .showroom-introduction .info .btn-more-trans:after {
    right: 1.0417vw;
    width: 1.25vw;
    height: 1.25vw;
  }
  .intro-text-wrap {
    max-width: 79.1667vw;
  }
  .swiper-intro-text .swiper-slide .info h3 {
    line-height: 4.5833vw;
    font-size: 4.1667vw;
    padding-bottom: 1.25vw;
  }
  .swiper-intro-text .swiper-slide.huen .info h3 {
    width: 11.6667vw;
    height: 4.5833vw;
    margin-bottom: 1.25vw;
  }
  .swiper-intro-text .swiper-slide.uvis .info h3 {
    width: 11.5625vw;
    height: 4.5833vw;
    margin-bottom: 1.25vw;
  }
  .swiper-intro-text .swiper-slide.bluescan .info h3 {
    width: 17.7083vw;
    height: 4.5833vw;
    margin-bottom: 1.25vw;
  }
  .swiper-intro-text .swiper-slide.asset .info h3 {
    width: 20.9375vw;
    height: 4.5833vw;
    margin-bottom: 1.25vw;
  }
  .swiper-intro-text .swiper-slide .info strong {
    line-height: 2.0313vw;
    font-size: 1.3542vw;
  }
  .swiper-intro-text .swiper-slide .info p {
    padding-top: 0.8333vw;
    font-size: 1.1458vw;
  }
  .swiper-intro-text .swiper-slide .info [class*="btn-more"] {
    width: 12.5vw;
    height: 3.3333vw;
    margin-top: 3.3333vw;
    padding: 0 1.25vw;
    font-size: 1.0417vw;
    border-radius: 0.4167vw;
  }
  .swiper-intro-text .swiper-slide .info [class*="btn-more"]:after {
    right: 1.0417vw;
    width: 1.25vw;
    height: 1.25vw;
  }
  .swiper-intro-text .swiper-slide .btns {
    gap: 0.4167vw;
  }
  .popup-sr0-intro .modal_inner .video-content-inner {
    width: 79.1667vw;
    height: 46.6667vw;
  }
  .popup-sr0-intro .modal_inner .video-content-inner .video-wrap {
    border-radius: 0.8333vw;
  }
}
@media (max-width: 1920px) {
  .swiper-intro-img .swiper-slide {
    background-size: 71.3542vw auto;
  }
}
