@font-face {
	font-family: 'Pretendard Variable';
	font-weight: 45 920;
	font-style: normal;
	font-display: swap;
	src: url('./woff2/PretendardVariable.woff2') format('woff2-variations');
}
* {
  box-sizing: border-box;
}
html {
  font-size: 16px;
   scroll-behavior: smooth;
}
body {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size:16px;
  margin: 0;
  padding: 0;
  color: #fff;
  background-color: #000;
   overflow: hidden;
}
html.s_no-scroll {
  overflow: hidden;
}
a {
  text-decoration: none;
  color: #fff;
}
em {
  font-style: normal;
}
h1,h6,p {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.container {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1.2s ease-in-out;
  border: 1px solid #000;
}
.container.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
/* splash */
/* .splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  z-index: 9999;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
} */
 .splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  z-index: 9999;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}
.splash.hide {
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease-in-out;
  pointer-events: none;
  display: none;
}
@keyframes splashHide {
  0% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}
@keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
     opacity: 0;
     visibility: hidden;
     display: none;
  }
}
 .splash-warp {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 4.6875rem;
  width: 100%;
  height: 100%;
}
.splash-inner {
  min-width: 1600px;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  position: relative;
  position: absolute;
}
.splash-inner span {
  transform: translateY(-50px);
    animation: showing1 1.5s ease-out forwards;
  opacity: 0; 
}
.splash-text-inner  {
 opacity: 1; 
  animation: show 3s linear none;
  animation-delay: 0s;
}
.splash-text {
  animation: show 8s linear none;
  animation-delay: 2.6s;
  opacity: 0;
}
@keyframes show {
  0%{
		opacity: 0;
	}
  15% {
  opacity: 1;
  }
	50% {
		opacity: 1;
	}
  90% {
		opacity: 1;
	}
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.splash-text-inner span:first-child {
  animation-delay: 0.3s;
}
.splash-text-inner span:nth-child(2) {
  animation-delay: 0.9s;
}
.splash-text-inner span:last-child {
  animation-delay: 1.3s;
}
@keyframes showing1 {
  0%{
		opacity: 0;
	}
  15% {
  opacity: 1;
  transform: translateY(-50%);
  }
	50% {
		opacity: 1;
      transform: translateY(-50%);
	}
  85% {
		opacity: 1;
      transform: translateY(-50%);
	}
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.splash-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.arrow {
 width: 600px;
  display: flex;
  align-items: center;
  position: relative;
  height: 100px;
  transform: translateY(-50px);
}
.line {
  border-bottom: 2px solid #fff;
  width: 100%;
  left: 0;
  right: 0;
  animation: line 2.6s linear none;
  animation-delay: 3s;
  opacity: 0;
   top: 50px;
  height: 1px;
  position: absolute;
}
.arrow i {
  font-size: 2.5rem;
  font-weight: 100;
  animation: arrow 2s linear none;
  animation-delay: 3.5s;
  opacity: 0;
  position: absolute;
  right: -14px;
  top: 32px;
}
@keyframes line {
   0% {
    opacity: 0;
    width: 0;
   }
   50% {
    opacity: 1;
    width: 100%;
   }
  100% {
    opacity: 0;
    width: 100%;
    visibility: hidden;
  }
}
@keyframes arrow {
   0% {
    opacity: 0;
   }
   50% {
    opacity: 1;
   }
  100% {
    opacity: 0;
    visibility: hidden;
  }
} 
.splash-text span:first-child {
  animation: showing1 2.6s linear none;
  animation-delay: 2s;
}
.splash-text span:last-child {
  animation: showing1 1.9s linear none;
  animation-delay: 4s;
}
section {
position: relative;
}
/* 페이드 */
.fade-transition {
  position: absolute;
  width: 100%;
  height: 25vh;
  pointer-events: none;
  z-index: 99;
}
.fade-transition.top {
  bottom: 0;
  background: linear-gradient(to top, black, transparent);
}
.fade-transition.bottom {
 top:0;
  background: linear-gradient(to bottom, black, transparent);
}
section {
  position: relative; /* THIS IS IMPORTANT */
}


/* intro */
.intro {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.intro-overlay{
  content: '';
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: linear-gradient(-135deg, #000000, transparent);
    transition: opacity 3s ease;
  /* animation: fadeeOut 3s 1s linear both; */
}
.intro-overlay.hide {
  opacity: 0;
}
.video-frame video {
  position: relative;
  min-height: 100%;
  min-width: 100%;
  z-index: -1;
  width: 100%;
  object-fit: cover;
  height: 100vh;
}
.intro-text{
  width: 100%;
position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}
.intro-text-box{
  width: 100%;
  word-spacing: 2px;
    opacity: 0;
  transform: translateY(40px); /* 아래에서 시작 */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.intro-text-box.show {
  opacity: 1;
  transform: translateY(0);
}
.intro-text-box:last-child {
  animation-delay: 3s;
}
.intro-text-box span{
  font-size: 6.3rem;
  line-height: 8rem;
  font-weight: 700;
    text-shadow: 0px 2px 15px rgba(0, 0, 0, 0.7);
}
/* textScale */
.textScale {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.scroll_txt {
  font-size: 5rem;
  line-height: 1.2;
  text-align: center;
  transform: scale(1);
  opacity: 0;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

/* textScroll */
.textScroll {
  width: 100%;
  height: 160vh;
  overflow: hidden;
  position: relative;
}
.textScroll::before {
   content: '';
  position: absolute;
  width: 100%;
  height: 120%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.7;
}
.textScroll .video-frame {
  position: absolute;
  width: 100%;
  height: 100%;
}
#inc01 .big_txt .b_txt {
  text-align: center;
  margin: auto;
  line-height: 13.5rem;
  padding: 5px 0;
  position: relative;
  width: max-content;
  background: linear-gradient(to right, #fff, #fff) no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 0% 100%; 
  font-size: 5.5rem;
  transition: background-size cubic-bezier(.1, .5, .5, 1) 0.1s;
}
#inc01 .big_txt .b_txt {
  /* opacity: 0; */
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.3s ease-out;
}
#inc01{
  padding:10% 0;
  height:70vh;
    overflow: visible;
}
#inc01 .big_txt {
    position: relative;
    color: rgba(255,255,255,.2);
}
/* portfolio */
/* === Portfolio Layout === */
.portfolio {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.tab-text-box {
  width: 40%;
  padding-left: 9%;
}

.tab-content-title b {
  font-size: 2.75rem;
  font-weight: 700;
}

.tab-content-title h1 {
  font-size: 9.125rem;
  margin: 40px 0;
}

.tab-text-box h6 {
  font-size: 1.6rem;
  opacity: 0.6;
  font-weight: 300;
  margin-top: 55px;
}
.tab__content-wrapper.mo { display: none; }
 .tab__content-wrapper.pc { display: block; }
/* === Tabs === */
.tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 3rem;
  gap: 10px;
  margin-bottom: 20px;
}

.tab-link {
  background: black;
  color: white;
  border: 2px solid #fff;
  padding: 10px 30px;
  font-size: 2.5rem;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  transition: 0.3s;
    margin: 10px 20px 10px 0;
}

.tab-link:hover {
  background-color: #fff;
  color: #000;
}

.tab-link.current {
  background: #fff;
  color: #000;
}
.tab__content-wrapper.mo { display: none; }
 .tab__content-wrapper.pc { display: block; }
.tab__content-wrapper {
  width: 40%;
  height: 100vh;
  margin-right: 9%;
  overflow: hidden;
  transition-timing-function: linear;
}

/* === Tab Content === */
.tab-content {
  /* display: none;
  padding: 15px;
  height: 100vh; */
    visibility: hidden;
  opacity: 0;
  position: absolute;
  left: -9999px;
  pointer-events: none;
  padding: 15px;
  height: 100vh;
  transition: opacity 0.3s ease;
}

.tab-content.current {
  /* display: flex;
  justify-content: space-between; */
    visibility: visible;
  opacity: 1;
  position: relative;
  left: 0;
  pointer-events: auto;
  display: flex;
  justify-content: space-between;
}

.tab-content.current.showOne {
  justify-content: center;
}

/* === Swiper === */
.swiper-container {
  width: 48%;
}

.showOne > .swiper-container {
  width: 100%;
}

.swiper-wrapper {
  display: flex;
  flex-direction: column;
  height: auto !important;
}

.swiper-slide {
  width: 100%;
  flex-shrink: 0;
  height: auto !important;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  border-radius: 10px;
  font-size: 2rem;
  color: black;
}

.swiper-slide img {
  width: 100%;
  height: auto !important;
  object-fit: contain !important;
  display: block;
  border-radius: 10px;
}
.swiper-pagination {
  display: none;
}
/* ending */
.ending {
  padding: 9%;

}
.ending-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-top: 9%;
}
.ending-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

.ending-title h1 {
  font-size: 7.25rem;
}
.imgshow {
  display: flex;
  align-items: center;
}
.ending_img {
  width: 0;
  height: 110px;
  overflow: hidden;
  margin: 0 20px;
}
.ending_img img {
 width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}
.ending-btn  {
  margin-top: 100px;
  border: 1px solid #fff;
  border-radius: 150px;
  padding: 17px 100px;
  will-change: transform, opacity;
  cursor: pointer;
}
.ending-btn span{
  font-size: 5.625rem;
  color: white;
  position: relative;
  display: inline-block;
}
.ending-btn:hover {
  transition: background-color 0.3s, color 0.3s;
  background-color: #fff;
}
.ending-btn:hover span {
  color: #000;
}
.ending-btn:hover span::before {
  display: none;
}

 .ending-btn span::before {
  content: '문의하기';
  position: absolute;
  top: 0;
  left: 0;
  color: transparent;
  background: repeating-linear-gradient(
    90deg,
    #00ffe0 0%,
    #00ffe0 5%,
    transparent 5%,
    transparent 12%,
    #ff6fff 12%,
    #ff6fff 18%,
    transparent 18%,
    transparent 22%,
    white 22%,
    white 25%,
    transparent 25%,
    transparent 30%,
    #7c6bff 30%,
    #7c6bff 35%,
    transparent 35%,
    transparent 42%,
    #00ffe0 42%,
    #00ffe0 50%,
    transparent 46%,
    transparent 55%
  );
  background-size: 60% 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: smoothReveal 4s infinite ease-in-out;
  pointer-events: none;
}

@keyframes smoothReveal {
  0% {
    background-position: -60% 0%;
    background-size: 60% 100%;
  }
  25% {
    background-position: 0% 0%;
    background-size: 80% 100%;
  }
  50% {
    background-position: 60% 0%;
    background-size: 90% 100%;
  }
  75% {
    background-position: 0% 0%;
    background-size: 80% 100%;
  }
  100% {
    background-position: -60% 0%;
    background-size: 60% 100%;
  }
}

/* footer */
footer  {
  border-top: 1px solid #fff;
}
.footer-inner {
  padding: 1.5% 2%;
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
}
.footer-inner > div> p {
  margin: 10px 0;
  font-weight: normal;
}
.info {
  float: right;
  padding-bottom: 10px;
}
.info a,
.modal-btn{
  transition: 0.3s;
}
.modal-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  cursor: pointer;
}
.modal-btn:hover {
  color: #8878ff;
}
.info a:hover{
  color: #e578f4;
}
.info a:last-child:hover {
  color: #3bf4c3;
}
.footer-left p:last-child {
 color: #a3a3a3;
}

/* fixbtn */
.fixed-wrapper {
  position: fixed;
  bottom: 150px;
  right: 40px;
  width: 150px;
  height: 150px;
  z-index: 999;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fixed-wrapper.visible  {
 opacity: 1;
transform: translateY(0);
}
.circle-container {
  position: relative;
  width: 150px;
  height: 150px;
}

.contact-btn {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  overflow: hidden;
}

.contact-btn img {
  height: 60px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: nodHead 2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes nodHead {
  0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
  25% { transform: translate(-50%, -50%) rotate(-6deg); }
  75% { transform: translate(-50%, -50%) rotate(6deg); }
}

svg {
  width: 150px;
  height: 150px;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: center;
  animation: spinText 8s linear infinite;
  z-index: 2;
}

@keyframes spinText {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.circle-text {
font-size: 0.81rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.top-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.65rem;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  color: #333;
  text-decoration: none;
  z-index: 10;
}

.top-btn span {
  font-size: 0.8rem;
  margin-bottom: 2px;
}

.fixed-wrapper:hover .top-btn,
.top-btn:hover {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.top-btn:hover {
  background-color: #007aff;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 122, 255, 0.4);
  transform: translateX(-50%) translateY(-2px);
}

.hover-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: white;
  gap: 8px;
  width: 100%;
  height: 100%;
  z-index: 5;
  align-content: center;
  line-height: 1.1rem;
}

.hover-text {
    font-size: 1.1rem;
  font-weight: bold;
  color: white;
  line-height: 1;
  display: block;
}

.hover-arrow {
  font-size: 20px;
  font-weight: 100;
  margin-top: 3px;
}

.contact-btn:hover img,
.contact-btn:hover svg {
  display: none;
}

.contact-btn:hover {
  background-color: #007aff;
}

.contact-btn:hover .hover-content {
  display: flex;
}




.modal{ 
  /* position:fixed; 
  background: #fff; 
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 30px;
  display:none;
  padding: 40px 50px;
  z-index: 600; */
    position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6); /* ✨ 이제 배경 됨 */
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}
.modal_content {
  /* display: flex;
  flex-direction: column;
  color: #000; */
   background: #fff;
  color: #000;
  border-radius: 30px;
  padding: 40px 50px;
  max-width: 1300px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 100,
  'GRAD' 0,
  'opsz' 24
}
.modal_content>b {
  position: relative;
font-size: 2rem;
display: block;
border-bottom: 1px solid #999;
padding-bottom: 30px;
font-weight: 700;
}
.modalInfo {
  font-size: 1.2rem;
  padding-top: 20px;
}
.modalInfo p  {
  font-weight: 400;
  margin: 20px 0;
  line-height: 1.8rem;
}
.modalInfo p b {
  font-weight: 700;
}
.modal_content .material-symbols-outlined {
  position: absolute;
  width: 50px;
  height: 50px;
  right: 1.5%;
  color: #000;
  top: 4%;
  font-size: 2.5rem;
  cursor: pointer;
  transition: 0.3s;
}
.modal_content .material-symbols-outlined:hover {
  color:#007aff;
}

/* 📱 Media Queries for Responsive Layout */

/* === 💻 1920px 이하 === */
@media (max-width: 2250px)  {

  .tab-content-title b {
    font-size: 2.3rem;
  }

  .tab-content-title h1 {
    font-size: 8rem;
    margin: 20px 0;
  }
  
/* === Tabs === */
.tabs {
  padding-top: 2rem;
  margin-bottom: 10px;
}

.tab-link {
  padding: 5px 20px;
  font-size: 2rem;
  margin: 5px 10px 10px 0;
}
.tab-text-box {
  margin-top: 50px;
}

}
@media (max-width: 1920px) {

   .splash-warp {
    width: 85%;
    margin: auto;
   }
  .scroll_txt {
  font-size: 3.8rem;
}
  .textScroll {
  height: 140vh;
}
  #inc01 .big_txt .b_txt {
  line-height: 9.5rem;
  padding: 5px 0;
  background-size: 0% 100%; 
  font-size: 4.5rem;
}
  .tab-text-box {
    width: 45%;
  }

  .tab-content-title b {
    font-size: 2rem;
  }

  .tab-content-title h1 {
    font-size: 7.1rem;
    margin: 20px 0;
  }
  
/* === Tabs === */
.tabs {
  padding-top: 2rem;
  margin-bottom: 10px;
}

.tab-link {
  padding: 5px 20px;
  font-size: 1.7rem;
  margin: 5px 10px 10px 0;
}
.ending-title h1 {
  font-size: 5.7rem;
}
.ending_img {
  height: 85px;
}
.ending-btn {
  margin-top: 34px;
}
.ending-btn span {
    font-size: 4.3rem;
}
.footer-inner {
  font-size: 1rem;
  padding: 15px 30px;
}
.footer-inner > div> p {
  font-weight: 300;
  margin: 5px;
}
.modalInfo {
  font-size: 1rem;
}

}

/* === 🧩 1600px 이하 === */
@media (max-width: 1660px) {
  .splash-inner  {
    min-width: 1400px;
  }
  .textScroll {
  height: 135vh;
}
  #inc01 .big_txt .b_txt {
  line-height: 9.5rem;
  padding: 5px 0;
  background-size: 0% 100%; 
  font-size: 4rem;
}
    .tab-content-title b {
    font-size: 1.6rem;
  }
    .tab-content-title h1 {
    font-size: 6rem;
    margin: 20px 0;
  }
  .ending-title h1 {
  font-size: 5.25rem;
}
.ending_img {
  height: 90px;
}
.ending-btn {
   padding: 15px 91px;
}
.ending-btn span {
    font-size: 4.6rem;
}
  
}
@media (max-width: 1440px) {
  .splash-inner  {
    min-width: 1200px;
  }
  .splash-warp {
   font-size: 4.6875rem;
  }
  .arrow {
    width: 400px;
  }
  .intro-text-box span {
    font-size: 5rem;
  }
    .tab-content-title h1 {
    font-size: 4rem;
  }
  .tab-link {
  padding: 5px 20px;
  font-size: 1.4rem;
}
  .tabs {
      padding-top: 1rem;
  }
  .tab-text-box h6 {
    font-size: 1rem;
  }
    .ending-title h1 {
  font-size: 3.25rem;
}
.ending_img {
  height: 50px;
}
.ending-inner {
  padding-top: 2%;
}
.ending-btn {
   padding: 10px 50px;
   margin-top: 30px;
}
.ending-btn span {
    font-size: 3rem;
}
.footer-inner {
  font-size: 1rem;
}
.contact-btn {
  width: 100px;
  height: 100px;
}
.contact-btn img {
  height: 40px;
}
.fixed-wrapper {
  bottom: 71px;
  right: -11px;
}
svg {
  width: 100px;
  height: 100px;
}
.hover-text {
  font-size: 0.8rem;
}
.hover-content {
  gap: 0;
  padding-top: 11px;
}
.hover-arrow {
  font-size: 16px;
}
.top-btn{
  left: 34%;
}
}
@media (max-width: 1300px) {
   .splash-inner  {
    min-width: 1000px;
  }
   .splash-warp {
  font-size: 3.4rem;
}
.arrow {
 width: 300px;
  height: 70px;
}

}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.d-flex {
  display: flex;
}
.contact-container {
  background: #fff;
  color: #000;
  border-radius: 30px;
  padding: 10px 50px;
  max-width: 1520px;
  width: 90%;
  max-height: 95vh;
  overflow-y: auto;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.contact-container .material-symbols-outlined {
  position: absolute;
  width: 50px;
  height: 50px;
  right: 1.5%;
  color: #000;
  top: 4%;
  font-size: 2.5rem;
  cursor: pointer;
  transition: 0.3s;
}
.contact-container .material-symbols-outlined:hover {
  color:#007aff;
}
.contanct-inner {
  display: flex;
  justify-content: space-between;
  padding:  20px 40px;
}
.contanct-inner .stitle {
  color: #000;
  font-size: 23px;
  width: 100%;
  display: inline-block;
  margin-bottom: 9px;
  font-weight: 500;
}
.contanct-inner .title {
  color: #000;
  font-weight: bold;
  font-size: 33px;
  display: inline-block;
}
.contact-row {
  display: flex;
  justify-content: space-around;
  gap: 10px;
}
.contact-col{
  flex: 1;
  /* padding-right: 20px; */
}
.contact .info-wrap {
  justify-content: space-between;
}

.contact .info-item {
  border-color: #2e5ecf;
  border-width: 1px;
  border-style: solid;
  border-radius: 12px;
  height: 142px;
  flex: 1px;
  margin: 0px 30px 0px 0px;
  text-align: center;
  background-color: #2e5ecf;
}
.contact .info-item:last-child{
  margin: 0px;
}

.contact .info-item i {
  font-size: 20px;
  color: #2e5ecf;
  background: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  margin: 21px auto 8px auto;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4rem;
  word-break: keep-all;
}

.contact .info-item:hover{
  color: #2e5ecf;
  background: #e2f0fd;
  border-color: #e2f0fd;
  cursor: pointer;
}
.contact .info-item:hover p{
  color: #2e5ecf;
}
.contact-box>div {
  margin-top: 23px;
}
@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 5px;
  }
}
@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 0px;
  }
}
.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 15px;
  box-shadow: none;
  border-radius: 10px;
  background-color: #f0f4f7;
  border-color: #f0f4f7;
  outline: 0;
  width: 100%;
  appearance: none;
  background-clip: padding-box;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  border: 0;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder,
.contact .php-email-form textarea::-webkit-input-placeholder {
  color: #aeafaf;
  font-size: 13pt;
  font-weight: bold;
  font-family: 'Pretendard', sans-serif;
  font-weight: 300;
}

.contact .php-email-form button[type=submit] {
  color: #fff;
  background: #000;
  border: 0;
  padding: 16px 30px;
  font-size: 20px;
  transition: 0.4s;
  border-radius: 10px;
  font-weight: bold;
  width: 80%;
  cursor: pointer;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, #000, transparent 25%);
}

.contact .php-email-form label {
  font-weight: bold;
  font-size: 15px;
  padding-bottom: 0.6rem;
  color: #000;
  display: inline-block;
  width: 100%;
}

.contact .php-email-form span.require::after{
  content:"•";
  color: red;
  font-size: 12px;
  margin-left: 4px;
  vertical-align: top;
}

.contact .php-email-form .marketing-item {
  display: flex;
  flex-flow: wrap;
}
.contact .php-email-form .marketing-item span {
  background-color: #f0f4f7;
  border-radius: 25px;
  padding: 9px 20px;
  color: #000;
     margin-right: 15px;
    margin-bottom: 17px;
  font-size: 14pt;
  cursor: pointer;
  font-weight: 500;
}
.contact .php-email-form .marketing-item span.active {
  background-color: #000;
  color: #fff;
}
@media(max-width:768px) {
  .contact .php-email-form .marketing-item span {
   margin-right: 8px;
   padding: 9px 16px;
    font-size: 14px;
  }
}
.contact .infoview {
  background-image: url(/assets/img/sion/contact-01.png);
 height: calc(100% - 17%);
  background-position: bottom  right;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  margin-top: 30px;
  padding: 60px;
}

.contact .infoview p {
  color: #000;
  font-weight: 700;
  font-size: 30pt;
  font-family: var(--default-font);
  margin: 0;
  line-height: 4.1rem;
  letter-spacing: -1px;
}
.contact .infoview p:nth-child(2){
  font-size: 43pt;
}
.contact .infoview span {
  color: #000;
  font-family: var(--default-font);
  font-size: 20pt;
  margin-top: 24px;
  letter-spacing: -1px;
  display: inline-block;
  font-weight: 300;
}

.contact .file-field {
  padding: 13px 15px;
  box-shadow: none;
  border-radius: 10px;
  background-color: #f0f4f7;
  border-color: #f0f4f7;
  color: #aeafaf;
  font-size: 13pt;
  font-weight: 400;
  cursor: pointer;
}
.bi .bi-upload {
  margin-right: 2px;
} 

@media(max-width:768px) {
  .contact-container {
    padding: 10px;
    width: 94%;
    padding: 0 10px;
  }
  .contanct-inner {
    flex-direction: column;
    margin-top: 70px;
    padding: 0;
  }
  .contanct-inner .stitle {
    font-size: 18px;
  }
  .contanct-inner .title {
    font-size: 23px;
  }
  .contact-box>div {
    flex-direction: column;
    margin-top: 5px;
  }
  .contact .infoview {
    padding: 22px;
    height: 360px;
  }
  .contact-col {
    padding-right: 0;
    flex: none;
    margin-top: 28px;
  }
  .contanct-img,
  .contact-info {
    width: 100%
  } 
  .contact .info-item {
    margin: 0px 11px 0px 0px;
  }
  .contact .infoview p {
  font-size: 19px;
  line-height: 2.2rem;
  }
  .contact .infoview p:nth-child(2) {
    font-size: 30px;
  }
  .contact .infoview span {
    font-size: 15px;
    margin-top: 15px;
  }
  .contact .infoview {
    padding: 30px;
    height: 280px;
    background-position: bottom -128px right;
  }
  .service-info {
    margin-top: 28px;
  }
  .contact .php-email-form label {
    font-size: 15px;
  }
  .contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder,
.contact .php-email-form textarea::-webkit-input-placeholder,
.contact .file-field   {
  font-size: 13px;
}
.contact .php-email-form button[type=submit] {
  width: 100%;
  margin: 10px 0;
}
}
/* === 📱 태블릿 (1024px 이하) === */
@media (max-width: 1024px) {
  .fade-transition {
   height: 60px;
  }
  .splash-inner  {
    min-width: 700px;
  }
  .splash-warp {
    font-size: 3rem;
  }
  .arrow {
    width: 150px;
    height: 70px;
  }
  .intro-text-box span {
    font-size: 4rem;
    line-height: 5.5rem;
  }
  .textScroll {
    height: 90vh;
  }
  .portfolio {
    flex-direction: column;
    padding: 2.5rem 0;
  }
  .tab__content-wrapper {
    width: 100%;
    height: 445px;
    margin: 23px 0 40px 0;
  }
  .tab__content-wrapper.pc { display: none; }
  .tab__content-wrapper.mo { display: block; }
  .swiper-container {
    width: 100%;
    height: auto;
  }
  .tabs {
    justify-content: center;
    padding: 0 1.5%;
  }
  .tab-content {
    padding: 15px 0;
  }
  .tab-text-box {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }
  .tab-text-box h6 {
    margin-top: 20px;
  }
  .tab__content-wrapper {
    width: 100%;
    margin-right: 0;
  }
  .portfolio {
    flex-direction: column;
    padding: 2.5rem 0;
  }
  .tab__content-wrapper {
    width: 100%;
    height: 100%;
    margin: 23px 0 40px 0;
    overflow: visible;
  }
  .tab__content-wrapper.pc {
    display: none;
  }
  .tab__content-wrapper.mo {
    display: block;
    max-height: 440px;
  }
  .tab-text-box {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }
  .tab-text-box h6 {
    margin-top: 20px;
  }
  .tabs {
    justify-content: center;
    padding: 0 1.5%;
  }
  .tab-content {
    padding: 15px 0;
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .tab-content.current,
  .tab-content.current-mo {
    position: static;
    left: auto;
    opacity: 1;
    pointer-events: auto;
  }
  .tab-content.current-mo  {
    min-height: 630px;
  }
  .tab__content-wrapper.mo .tab-content {
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .tab__content-wrapper.mo .tab-content.current-mo {
    display: block;
    visibility: visible;
    opacity: 1;
    border-radius: 20px;
    overflow: hidden;
    max-height: 630px;
  }
  .swiper-container  {
    min-height: 500px;
    box-sizing: border-box;
  }
  /* Swiper 기본 스타일 */
  .swiper-container,
  .my-slider {
    width: 100%;
    min-height: 200px;
    overflow: hidden;
    position: relative;
    padding-bottom: 30px;
  }
  .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    max-height: 515px;
  }
  .manualtab .swiper-slide,
  .my-slider .swiper-slide {
    align-items: start;
    padding: 10px;
    box-sizing: border-box;
    transition: filter 4s ease;
    overflow: hidden;
  }
  .swiper-slide img,
  .my-slider .swiper-slide img {
    border-radius: 10px;
  }
  .swiper-slide {
    width: 70vw !important; /* or 80vw, depending on how much "peek" you want */
    max-width: 320px;
    height: auto !important; /* ✔️ 필수 */
  } 
  .swiper-slide img  {
    height: 500px;
  }
  .swiper-wrapper {
    flex-direction: row !important;
  }
  .tab__content-wrapper.mo img {
    height: 500px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }
  /* Swiper Pagination */
  .swiper-pagination {
    position: absolute !important;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    z-index: 9999 !important;
    opacity: 1 !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    pointer-events: auto !important;
    margin-top: 20px;
  }
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #fff !important;
    margin: 0 4px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: inline-block;
    opacity: 1;
  }
  .swiper-pagination-bullet-active {
    background-color: #00ADEF!important;
    opacity: 1;
    transform: scale(1.3);
  }
  .swiper-slide {
    width: 70vw !important; /* 양옆 슬쩍 보이기 */
    max-width: 320px;
    filter: grayscale(100%);
  }
  .swiper-slide.swiper-slide-active{
    filter: grayscale(0%);
  }
  .my-slider img {
    width: 70vw !important;
    object-fit: contain;
    display: block;
  }
  .img-cut {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
  }
  .ending-title {
    line-height: 4.3rem;
  }
  .imgshow {
    display: flex;
    flex-direction: column;
  }
  .ending-inner {
    margin-top: 30%;
  }
  .ending_img {
    height: 70px;
    margin: 10px;
  }
  .ending-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .ending-btn {
    margin-top: 50px;
  }
  footer {
    margin-top: 100px;
  }
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer-inner > div {
    width: 100%;
    text-align: center;
  }
  .footer-left  {
    display: flex;
    flex-direction: column;
  }
  .info {
    padding: 20px 0 10px 0;
  }
  .fixed-wrapper {
    bottom: 164px;
    right: -18px;
  }
}


/* === 📳 모바일 (768px 이하) === */
@media (max-width: 768px) {
  .splash-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .arrow {
    width: 290px;
  }
  .intro-text-box span {
    font-size: 2.35rem;
    line-height: 3.2rem;
  }
  .scroll_txt {
    font-size: 1.8rem;
  }
  #inc01 {
  padding: 8.3rem 0;
  }
  #inc01 .big_txt .b_txt {
    font-size: 2rem;
    line-height: 5.3rem;
  }
  .portfolio {
    padding: 1rem;
    padding-top: 6rem;
  }
  .tab-link {
  padding: 5px 15px;
  font-size: 1rem;
  margin: 3px 0;
  border: 1px solid #fff;
}
  .tabs {
      padding-top: 1rem;
  }
  .tab-text-box h6 {
    font-size: 1rem;
  }
    .ending-title h1 {
  font-size: 3.25rem;
} 
.fixed-wrapper {
  right: -31px;
}
.modal_content {
      padding: 35px 20px;
      max-height: 70vh;
}
.close-btn {
  z-index: 30;
}
.footer-inner {
  font-size: 0.7rem;
  padding: 15px;
}
}

@media (max-width: 480px)  {
  #inc01 {
    padding: 4.3rem 0;
  }
  .ending-title {
    line-height: 3.3rem;
  }
.ending-title h1,
.ending-btn span{
    font-size: 2.6rem;
}

}



.popup_modal {
  display: none; /*평소에는 보이지 않도록*/
  position: fixed;
  top:0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
}
.popup_modal .popup_alert{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background: #ffffff;
  border-radius: 20px;
  width: 350px;
  /* height: 260px; */
}
.popup_modal .popup_alert_close {
  text-align: right;
  color: #000;
  font-size: 18pt;
}
.popup_modal .popup_alert_close i {
  cursor: pointer;
}
.popup_modal .popup_alert_icon {
  text-align: center;
}
.popup_modal .popup_alert_icon img {
  width: 50px;
}
.popup_modal .popup_alert_content {
  text-align: center;
  margin: 20px 10px;
  color: #000;
  font-weight: bold;
}
.popup_modal .popup_alert_content p {
  margin-bottom: 5px;
  font-size: 18px;
}
.popup_modal .popup_alert_content span {
  font-size: 12pt;
  font-weight: 300;
}
.manualtab .swiper-slide img{
  margin-top: 20px;
}
.manualtab .swiper-slide img:nth-child(1){
  margin-top: 0px;
}
p.desc{
  margin: 0 auto;
  width: 100%;
  text-align: center;
  color: #888;
  font-size: 10px;
  padding: 14px 0px 0px 0px;
}
span.swiper-notification{
  margin: 0 auto;
  width: 100%;
  text-align: center;
  color: #888;
  font-size: 10px;
  padding: 14px 0px 0px 0px;
  display: inline-block;
}