@charset "utf-8";

* {
  box-sizing: border-box;
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width,
      var(--swiper-pagination-bullet-size, 10px));
  height: var(--swiper-pagination-bullet-height,
      var(--swiper-pagination-bullet-size, 10px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #32ffc1);
}

body {
  color: #fff;
}

.web-prev,
.web-next,
.design-prev,
.design-next {
  width: 300px;
}

.swiper-pagination {
  height: 70px;
}

:root {
  --swiper-theme-color: #fff;
}

/* 공통 */
.inner {
  width: 1400px;
  margin: 0 auto;
}

.mintColor {
  color: #32ffc1;
}

h2 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  padding-top: 120px;
}

.btn {
  display: inline-block;
  width: 150px;
  height: 44px;
  border: 1px solid #fff;
  border-width: 2px 0;
  text-align: center;
  font-size: 17px;
  font-weight: 300;
  line-height: 44px;
  transition: all 0.3s;
}

.btn:hover {
  display: inline-block;
  width: 150px;
  height: 44px;
  border: 1px solid #32ffc1;
  border-width: 2px 0;
  text-align: center;
  font-size: 17px;
  font-weight: 300;
  line-height: 44px;
  color: #32ffc1;
}

/* header */
header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 100px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  backdrop-filter: blur(10px);
}

header>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1>a {
  display: block;
  font-size: 36px;
  font-weight: bold;
  line-height: 100px;
  color: #fff;
}

header .gnb>ul {
  width: 500px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .gnb>ul>li>a {
  display: block;
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 7px 0;
  color: #a0a0a0;
  transition: all 0.3s;
}

header .gnb>ul>li:hover a,
header .gnb>ul>li a:focus {
  color: #fff;
}

header .gnb>ul>li .subMenu {
  position: absolute;
  top: 70%;
  width: 100px;
  background: #2a2a2a;
  border-radius: 0 0 15px 15px;
  padding: 15px;
  display: none;
  transition: 1s;
}

header .gnb li:hover .subMenu {
  display: block;
}

header .gnb .subMenu li a {
  display: block;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.3s;
  line-height: 2;
  text-align: center;
  text-transform: uppercase;
}

header .gnb .subMenu li:hover a {
  color: #32ffc1;
}

/* mainVisual */
.mainVisual {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url(../img/img_homeBg.jpg) no-repeat center / cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

/* 텍스트 애니메이션 */
.title01,
.title02 {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-weight: 200;
  text-transform: uppercase;
  overflow: hidden;
}

.title01 {
  top: 40%;
  height: 80px;
  font-size: 80px;
}

.title02 {
  top: 50%;
  font-size: 100px;
}

.title01 span,
.title02 span {
  display: block;
  opacity: 1;
  animation: fadeSlide 5s linear infinite;
  animation-fill-mode: both;
  clip-path: inset(0 0 0 0);
  /* 초기 전체 노출 */
  margin: -20px;
  text-shadow: 0 0 10px #32ffc1;
}

.title01 span {
  animation-delay: 0s;
}

.title02 span {
  animation-delay: 0.7s;
}

@keyframes fadeSlide {
  0% {
    opacity: 1;
    transform: translate(0);
    clip-path: inset(0 100% 0 0);
  }

  50% {
    opacity: 1;
    transform: translate(0);
    clip-path: inset(0 0 0 0);
  }

  100% {
    opacity: 1;
    transform: translate(0);
    clip-path: inset(0 0 0 100%);
  }
}

/* /텍스트 애니메이션 */

.mainVisual .mainText {
  position: absolute;
  bottom: 30%;
  left: 0;
  right: 0;
  font-size: 24px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  text-align: center;
  padding-top: 200px;
}

.mainVisual em {
  font-weight: 400;
  font-weight: bold;
  color: #32ffc1;
  text-shadow: none;
}

/* aboutMe */
#aboutMe {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(50, 255, 193, 0),
      rgba(50, 255, 193, 0),
      rgba(50, 255, 193, 0.2));
  background-color: #2a2a2a;
}

#aboutMe .inner>div {
  display: flex;
  align-items: start;
  margin: 120px 0 60px;
}

/* 프로필영역 */
#aboutMe .aboutProfile {
  width: 30%;
}

#aboutMe .aboutProfile>img {
  width: 250px;
}

#aboutMe .aboutProfile .ProfileText>p {
  font-size: 20px;
  font-weight: 300;
  color: #bbb;
  margin: 10px 0;
}

#aboutMe .aboutProfile .ProfileText>p span {
  font-size: 24px;
  font-weight: 500;
}

#aboutMe .aboutProfile .ProfileText div i {
  font-size: 15px;
  line-height: 1.6;
  margin-right: 5px;
}

#aboutMe .aboutProfile .ProfileTexte>div span {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  margin-top: 5px;
}

/* 자기소개영역 */
#aboutMe .aboutRight {
  width: 70%;
  margin-top: -150px;
}

#aboutMe .aboutRight .aboutTextBox {
  width: 100%;
  background: transparent;
  padding: 15px 20px;
  margin-top: 15px;
}

#aboutMe .aboutRight .aboutTextBox .aboutTitle:first-child span {
  font-size: 32px;
  color: #fff;
}

#aboutMe .aboutRight .aboutTextBox .aboutTitle:first-child>span::before {
  content: "";
  position: absolute;
  top: 70px;
  width: 45%;
  height: 15px;
  background: #000;
  z-index: -1;
}

#aboutMe .aboutRight .aboutTextBox .aboutTag {
  margin-top: 20px;
}

#aboutMe .aboutRight .aboutTextBox .aboutTag>li {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 15px;
  background: rgba(50, 255, 193, 0.3);
  border-radius: 30px;
  margin-right: 10px;
  margin-top: 20px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

#aboutMe .aboutRight .aboutTextBox .aboutTag>li.active {
  opacity: 1;
}

#aboutMe .aboutRight .aboutTextBox i {
  height: 20px;
  font-size: 15px;
  line-height: 20px;
  margin-right: 5px;
}

#aboutMe .aboutRight .aboutTextBox .aboutTitle {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 5px;
  text-transform: uppercase;

}

#aboutMe .aboutRight .aboutTextBox>span {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: #a0a0a0;
  margin-bottom: 5px;
}

#aboutMe .aboutRight .aboutTextBox>p {
  font-size: 17px;
  font-weight: 200;
  line-height: 1.6;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* SKILLS */
#aboutMe .skills {
  width: 100%;
  overflow: hidden;
  margin-top: 60px;
}

#aboutMe .skills .skills-track {
  display: flex;
  animation: scrollSkills 30s linear infinite;
}

#aboutMe .skills .aboutText {
  display: flex;
  align-items: center;
  gap: 80px;
}

#aboutMe .skills .aboutText li img {
  width: 80px;
  height: auto;
  transform: scale(1);
  border-radius: 10px;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
  transition: all 0.3s;
}

#aboutMe .skills .aboutText li:nth-child(2) img,
#aboutMe .skills .aboutText li:nth-child(11) img {
  width: 65px;
  height: auto;
}

#aboutMe .skills .aboutText li:nth-child(4) img,
#aboutMe .skills .aboutText li:nth-child(13) img {
  width: 150px;
  height: auto;
}

#aboutMe .skills .aboutText li:hover img {
  height: auto;
  transform: scale(1.1);
}

@keyframes scrollSkills {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* web */
#web .swiper-slide {
  height: 100vh;
}

#web .swiper-slide {
  background: no-repeat center / cover;
}

#web .swiper-slide.bg01 {
  background-image: url(../img/img_webBg01.png);
}

#web .swiper-slide.bg02 {
  background-image: url(../img/img_webBg01.png);
}

#web .swiper-slide .slideText {
  margin: 60px 0;
}

#web .swiper-slide .slideText .webSubTitle {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  background: #32ffc1;
  border-radius: 20px;
  padding: 5px 10px;
  margin-bottom: 15px;
}

#web .swiper-slide .slideText .webTitle {
  font-size: 36px;
  font-weight: 500;
}

#web .swiper-slide .slideText .webText {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
}

#web .swiper-slide .slideText .web_text {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

#web .swiper-slide .slideText .btnArea {
  margin-top: 60px;
}

#web .swiper-slide .slideText .btnArea .btn:first-child {
  margin-right: 20px;
}

/* design */
#design {
  position: relative;
  height: 100vh;
  background: #2a2a2a;
  margin: 0 auto;
  overflow: hidden;
}

/* 탭메뉴 영역 */

#design .tabMenu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  margin-top: 60px;
}

#design .tabMenu li {
  display: block;
  flex: 1;
  text-align: center;
  font-size: 1.37rem;
  font-weight: 400;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 20px 20px 0 0;
  transition: all 0.3s ease;
}

#design .tabMenu li:hover {
  color: #32ffc1;
  background: rgba(0, 0, 0, 0.8);
}

#design .tabMenu li.active {
  color: #32ffc1;
  background: rgba(0, 0, 0, 0.8);
}

#design .tabList {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

#design .tabMenu>li>a {
  display: block;
  width: 100%;
}

#design .tabList>li {
  display: none;
}

/* active 클래스가 붙은 항목만 표시 */
#design .tabList>li.active {
  display: block;
}

#design .tabSwiper {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 60px 0 120px;
}

#design .tabSwiper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 1) 10%,
      rgba(0, 0, 0, 0) 15%,
      rgba(0, 0, 0, 0) 85%,
      rgba(0, 0, 0, 1) 90%);
  z-index: 100;
  pointer-events: none;
}

.tabList .swiper-slide:hover {
  color: #32ffc1;
}

.tabSwiper figure {
  width: 100%;
  height: 321px;
  margin-bottom: 20px;
  overflow: hidden;
}

.tabSwiper figure img {
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: all 0.3s ease;
}

.tabSwiper figure img:hover {
  transform: scale(1.1);
}

.tabSwiper .designTextbox {
  text-align: center;
  margin-bottom: 60px;
}

.tabSwiper .designTextbox .designTitle {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0.62rem;
  transition: all 0.3s ease;
}

.tabSwiper .designTextbox .designText {
  display: inline-block;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  letter-spacing: 1px;
  padding: 5px 10px;
}

/* 스와이퍼 네비게이션 */
.tabSwiper .swiper-slide {
  position: relative;
}

.swiper-buttonNext,
.swiper-buttonPrev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  background: #fff;
  width: 4rem;
  height: 4rem;
  display: inline-block;
  font-size: 1.25rem;
  line-height: 4rem;
  border-radius: 50%;
  opacity: 0.3;
  transition: all 0.5s ease;
  z-index: 100;
  cursor: pointer;
}

.swiper-buttonNext {
  right: 8%;
}

.swiper-buttonPrev {
  left: 8%;
}

.swiper-buttonNext:hover,
.swiper-buttonPrev:hover {
  opacity: 1;
}

/* popup */
.popup_base {
  position: fixed;
  inset: 0;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  z-index: 100;
}

.pop_container {
  position: sticky;
  bottom: 5%;
  width: 1200px;
  height: 750px;
  color: #000;
  background: #fff;
  z-index: 102;
  overflow-y: auto;
  overflow-x: hidden;
  text-align: center;
}

.pop_container>h2 {
  font-size: 36px;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
}

.pop_container>strong {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  background: #32ffc1;
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-radius: 50px;
  padding: 7px 15px;
  margin-bottom: 60px;
}

.contents {
  padding: 60px;
  border-top: 5px dotted #ccc;
}

.contents .imgContent>figure img,
.contents .imgContent video {
  max-width: 100%;
  height: 100%;
}

.contents .imgContent .imgTitle {
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  padding: 7px 15px;
  margin-bottom: 120px;
}

.contents .imgContent .imgTitle>span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #a0a0a0;
}

.contents .imgContent>a {
  font-size: 30px;
  text-decoration: underline;
}

/* 닫기버튼 */
.popup_base .btn_x {
  position: absolute;
  right: 19%;
  top: 1.5%;
  width: 50px;
  height: 50px;
  z-index: 101;
}

.popup_base .btn_x a {
  display: block;
  width: 45px;
  height: 45px;
  text-align: center;
  background: url(../img/btn_close.png) no-repeat;
  opacity: 0.5;
  transform: rotate(0);
  text-indent: -9999px;
  transition: all 0.3s ease;
}

.popup_base .btn_x a:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* 스크롤 바 디자인 */
.popup_base .pop_container::-webkit-scrollbar {
  width: 10px;
  background: #ccc;
}

.popup_base .pop_container::-webkit-scrollbar-thumb {
  background: #32ffc1;
}

/* contact */
#contact {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url(../img/img_homeBg.jpg) no-repeat center / cover;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#contact video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#contact video>source {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#contact .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#contact h2 {
  font-size: 80px;
  font-weight: bold;
  text-align: center;
  padding: 0;
}

#contact p {
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  color: #a0a0a0;
  line-height: 1.6;
  margin-bottom: 60px;
}

#contact .contactBox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}

#contact .contactBox i {
  font-size: 30px;
  line-height: 30px;
  color: #32ffc1;
  margin-right: 10px;
}

#contact .contactBox span {
  height: 30px;
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
}

#contact .contactBox .contactText {
  display: block;
  font-size: 20px;
  font-weight: 300;
  margin-top: 10px;
}

/* footer */
footer {
  width: 100%;
  height: 50px;
  background: #000;
}

footer p {
  font-size: 14px;
  font-weight: 100;
  text-align: center;
  line-height: 50px;
  color: #a0a0a0;
}

/* ====================모바일 반응형================= */
@media screen and (max-width: 430px) {
  .web-prev,
  .web-next,
  .design-prev,
  .design-next {
    width: 300px;
  }

  .swiper-pagination {
    height: 70px;
  }

  /* 공통 */
  .inner {
    width: 400px;
    margin: 0 auto;
  }
  h2 {
    width: 100%;
    font-size: 42px;
    padding-top: 60px;
    text-align: center;
  }

  .btn {
    display: inline-block;
    width: 150px;
    height: 44px;
    border: 1px solid #32ffc1;
    border-width: 2px 0;
    text-align: center;
    font-size: 17px;
    font-weight: 300;
    line-height: 44px;
    transition: all 0.3s;
  }

  .btn:hover {
    display: inline-block;
    width: 150px;
    height: 44px;
    border: 1px solid #32ffc1;
    border-width: 2px 0;
    text-align: center;
    font-size: 17px;
    font-weight: 300;
    line-height: 44px;
    color: #32ffc1;
  }

  /* header */
  header {
    width: 100%;
    height: 70px;
    margin: 0 auto;
  }
  header h1 > a {
    width: 100%;
    font-size: 30px;
    line-height: 70px;
  }

  header .gnb>ul {
    display: none;
  }

  /* mainVisual */
  /* 텍스트 애니메이션 */
  .title01,
  .title02 {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    font-weight: 200;
    text-transform: uppercase;
    overflow: hidden;
  }

  .title01 {
    top: 43%;
    height: 80px;
    font-size: 50px;
  }

  .title02 {
    top: 50%;
    font-size: 60px;
    font-weight: 600;
  }

  .title01 span,
  .title02 span {
    margin: 0px;
  }

  .title01 span {
    animation-delay: 0s;
  }

  .title02 span {
    animation-delay: 0s;
  }

  /* /텍스트 애니메이션 */

  .mainVisual .mainText {
    bottom: 33%;
    font-size: 20px;
  }

  /* aboutMe */
  #aboutMe {
    width: 100%;
    height: 180vh;
  }
  #aboutMe .inner {
    width: 400px;
  }
  #aboutMe .inner > div {
    display: block;
    margin: 60px 0;
  }

  /* 프로필영역 */
  #aboutMe .aboutProfile {
    width: 250px;
    margin: 0 auto;
  }

  #aboutMe .aboutProfile > img {
    width: 100%
  }
  #aboutMe .aboutProfile .ProfileText {
    width: 100%;
    margin: 0 auto;
  }

  #aboutMe .aboutProfile .ProfileText>p {
    font-size: 20px;

  }

  #aboutMe .aboutProfile .ProfileText>p span {
    font-size: 30px;
    font-weight: 500;
  }

  #aboutMe .aboutProfile .ProfileText div i {
    font-size: 16px;
  }

  #aboutMe .aboutProfile .ProfileTexte>div span {
    font-size: 18px;
  }

  /* 자기소개영역 */
  #aboutMe .aboutRight {
    width: 100%;
    margin: 0 auto;
  }

  #aboutMe .aboutRight .aboutTextBox {
    margin: 60px 0;
    text-align: center;
    padding: 0;
  }
  #aboutMe .aboutRight .aboutTextBox:first-child {
    margin-top: 120px;
  }

  #aboutMe .aboutRight .aboutTextBox .aboutTitle:first-child span {
    font-size: 26px;
    color: #fff;
  }

  #aboutMe .aboutRight .aboutTextBox .aboutTitle:first-child>span::before {
    top: -60px;
    left: 0; right: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
  }

  #aboutMe .aboutRight .aboutTextBox .aboutTag {
    width: 100%;
    margin: 10px auto 0;
    text-align: center;
  }

  #aboutMe .aboutRight .aboutTextBox .aboutTag>li {
    font-size: 20px;
    font-weight: 400;
    padding: 5px 10px;
    margin-right: 5px;
    margin-top: 10px;
  }
  #aboutMe .aboutRight .aboutTextBox .aboutTitle {
    width: 80%;
    font-size: 24px;
    margin: 0 auto;
    word-break: keep-all;
  }
  #aboutMe .aboutRight .aboutTextBox>span {
    font-size: 16px;
  }
  #aboutMe .aboutRight .aboutTextBox>p {
    font-size: 18px;
  }

  /* SKILLS */
  #aboutMe .skills .aboutText {
    gap: 30px;
  }
  #aboutMe .skills .aboutText li img {
    width: 60px;
  }

  #aboutMe .skills .aboutText li:nth-child(2) img,
  #aboutMe .skills .aboutText li:nth-child(11) img {
    width: 60px;
  }

  #aboutMe .skills .aboutText li:nth-child(4) img,
  #aboutMe .skills .aboutText li:nth-child(13) img {
    width: 120px;
  }

  #aboutMe .skills .aboutText li:hover img {
    transform: scale(1);
  }
  /* web */
  #web {
    width: 100%;
  }
  #web .swiper-slide {
    height: 120vh;
  }

  #web .swiper-slide {
    background-color: #000;
  }

  #web .swiper-slide.bg01 {
    background-size: 200%;
    background-position: right 20% top 5%;
    background-image: url(../img/img_webBg01.png);
  }

  #web .swiper-slide .slideText {
    width: 100%;
    position: absolute;
    top: 40%;
    margin: 0 auto;
    text-align: center;
  }
  #web .swiper-slide .slideText .webTitle {
    width: 400px;
    font-size: 36px;
    margin: 0 auto;
  }

  #web .swiper-slide .slideText .webText {
    width: 330px;
    font-size: 18px;
    line-height: 1.6;
    margin: 30px auto;
    text-align: center;
    word-break: keep-all;
  }

  #web .swiper-slide .slideText .web_text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
  }

  #web .swiper-slide .slideText .btnArea {
    margin-top: 50px;
    color: #32ffc1;
  }

  #web .swiper-slide .slideText .btnArea .btn:first-child {
    margin-right: 20px;
    color: #32ffc1;
  }

  /* design */
  #design {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
  }
  #design .inner {
    width: 400px;
    margin: 0 auto;
  }
  /* 탭메뉴 영역 */

  #design .tabMenu {
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
    margin: 60px auto 30px;
  }

  #design .tabMenu li {
    width: 180px;
    flex: none;
    font-size: 20px;
    font-weight: 300;
    padding: 20px 10px;
    border-radius: 10px;

  }
  #design .tabSwiper {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 60px 0 120px;
  }

  #design .tabSwiper::before {
    display: none;
  }
  .tabList .swiper-slide {
    display: grid;
    grid-template-columns: repeat(1, 2fr);
    gap: 20px;
  }  .tabList .swiper-slide:hover {
    color: #32ffc1;
  }

  .tabSwiper figure {
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
    overflow: hidden;
  }

  .tabSwiper figure img {
    width: 100%;
    height: 100%;
    transform: scale(1);
    transition: all 0.3s ease;
  }

  .tabSwiper figure img:hover {
    transform: scale(1.1);
  }

  .tabSwiper .designTextbox {
    text-align: center;
    margin-bottom: 60px;
  }

  .tabSwiper .designTextbox .designTitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0.62rem;
    transition: all 0.3s ease;
  }

  .tabSwiper .designTextbox .designText {
    display: inline-block;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    letter-spacing: 1px;
    padding: 5px 10px;
  }

  /* 스와이퍼 네비게이션 */
  .tabSwiper .swiper-slide {
    position: relative;
  }

  .swiper-buttonNext,
  .swiper-buttonPrev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    background: #fff;
    width: 4rem;
    height: 4rem;
    display: inline-block;
    font-size: 1.25rem;
    line-height: 4rem;
    border-radius: 50%;
    opacity: 0.3;
    transition: all 0.5s ease;
    z-index: 100;
    cursor: pointer;
  }

  .swiper-buttonNext {
    right: 8%;
  }

  .swiper-buttonPrev {
    left: 8%;
  }

  .swiper-buttonNext:hover,
  .swiper-buttonPrev:hover {
    opacity: 1;
  }

  /* popup */
  .popup_base {
    position: fixed;
    inset: 0;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    z-index: 100;
  }

  .pop_container {
    position: sticky;
    bottom: 5%;
    width: 1200px;
    height: 750px;
    color: #000;
    background: #fff;
    z-index: 102;
    overflow-y: auto;
    overflow-x: hidden;
    text-align: center;
  }

  .pop_container>h2 {
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
  }

  .pop_container>strong {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    background: #32ffc1;
    border: 2px solid rgba(0, 0, 0, 0.5);
    border-radius: 50px;
    padding: 7px 15px;
    margin-bottom: 60px;
  }

  .contents {
    padding: 60px;
    border-top: 5px dotted #ccc;
  }

  .contents .imgContent>figure img,
  .contents .imgContent video {
    max-width: 100%;
    height: 100%;
  }

  .contents .imgContent .imgTitle {
    display: inline-block;
    font-size: 24px;
    font-weight: 600;
    padding: 7px 15px;
    margin-bottom: 120px;
  }

  .contents .imgContent .imgTitle>span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #a0a0a0;
  }

  .contents .imgContent>a {
    font-size: 30px;
    text-decoration: underline;
  }

  /* 닫기버튼 */
  .popup_base .btn_x {
    position: absolute;
    right: 19%;
    top: 1.5%;
    width: 50px;
    height: 50px;
    z-index: 101;
  }

  .popup_base .btn_x a {
    display: block;
    width: 45px;
    height: 45px;
    text-align: center;
    background: url(../img/btn_close.png) no-repeat;
    opacity: 0.5;
    transform: rotate(0);
    text-indent: -9999px;
    transition: all 0.3s ease;
  }

  .popup_base .btn_x a:hover {
    opacity: 1;
    transform: rotate(90deg);
  }

  /* 스크롤 바 디자인 */
  .popup_base .pop_container::-webkit-scrollbar {
    width: 10px;
    background: #ccc;
  }

  .popup_base .pop_container::-webkit-scrollbar-thumb {
    background: #32ffc1;
  }

  /* contact */
  #contact .inner {
    width: 400px;
    margin: 0 auto;
  }

  #contact h2 {
    font-size: 50px;
  }
  #contact .contactBox {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }
  #contact .contactBox i {
    font-size: 24px;
  }
  #contact .contactBox span {
    height: 24px;
    font-size: 24px;
  }
  #contact .contactBox .contactText {
    font-size: 28px;
  }
}