:root{
  --color-theme-1: #09AEEA;
  --color-theme-2: #4ABED2;
  --color-theme-3: #62C4C8;
  --color-theme-4: #89CDBA;
  --color-theme-5: #A0D3B1;
}
/* common */
.logo-fade {
  position: relative;
  display: inline-block;
  width: 200px;
  height: 65px;
  overflow: hidden;
}

.logo-fade img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  object-fit: contain;
}


.logo1 {
  animation: fadeLogo1 8s infinite ease-in-out;
}


.logo2 {
  animation: fadeLogo2 8s infinite ease-in-out;
}

@keyframes fadeLogo1 {
  0%   { opacity: 1; }
  40%  { opacity: 1; }
  50%  { opacity: 0; }
  90%  { opacity: 0; }
  100% { opacity: 1; } /* 다시 자연스럽게 돌아오도록 */
}

@keyframes fadeLogo2 {
  0%   { opacity: 0; }
  40%  { opacity: 0; }
  50%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { opacity: 0; } /* logo1이 다시 나타날 준비 */
}

.go-link {
  display: inline-block;
  background: var(--color-theme-1);
  color: #fff;
}
/* about */
.wv-bg {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.5;
}
.ct-bg {
  position: absolute;
  top: 2%;
  right: 0;
  width: 43%;
  z-index: -1;
}
.ct-bg svg {
  width: 100%;
  height: 100%;
}
.sub-title {
  color: #373737;
  /* font-family: var(--font-sub); */
  font-size: 5rem;
  font-weight: 700;
}
.intro-tab {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  /*margin-bottom: 18rem;*/
}
.intro-tab ul {
  display: flex;
  font-family: var(--font-sub);
  font-weight: 500;
  border: 1px solid var(--color-theme-1);
  border-radius: 30px;
}
.intro-tab a {
  display: inline-block;
  padding: 1.5rem 4rem;
  color: var(--color-theme-1);
  transition: .3s;
  letter-spacing: -0.224px;
}
.intro-tab a:hover {
  background: var(--color-theme-1);
  color: #fff;
  border-radius: 30px;
}
.intro-tab a.active {
  background: var(--color-theme-1);
  color: #fff;
  border-radius: 30px;
}
.intro-txt {
  margin-bottom: 10rem;
}
.intro-txt .section-title {
  margin-bottom: 5.5rem;
  font-family: var(--font-sub);
  color: #373737;
  font-weight: 800;
  font-size: 7rem;
  letter-spacing: -0.06em;
}
.intro-txt .section-text {
  font-size: 3rem;
  font-weight: 300;
}
.border-txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 8rem;
}
.line-txt {
  font-size: 10rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}
.line-txt::before {
  display: block;
  content: '';
  width: 0.1rem;
  height: 30rem;
  background-color: #fff;
  margin-bottom: 6rem;
}
.border-txt .border-items {
  width: auto;
  padding: 1.5rem 5rem;
  font-size: 7rem;
  border: 7px solid #fff;
  border-radius: 30rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
}
.border-txt .align-end {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.border-txt .border-items:nth-child(1) {
  color: var(--color-theme-1);
  background: #fff;
}
.border-txt .border-items:nth-child(2) {
  color: var(--color-theme-2);
  background: #fff;
}
.border-txt .align-end .border-items {
  color: var(--color-theme-3);
  background: #fff;
}
.border-txt .border-items:nth-child(4) {
  margin-left: 20rem;
  color: #fff;
}
.border-txt .border-items:nth-child(5) {
  color: var(--color-theme-5);
  background: #fff;
}
.border-txt .border-items:nth-child(6) {
  color: var(--color-theme-5);
  background: #fff;
  margin-left: 15rem;
}

.circle-wrap {
  display: flex;
  justify-content: center;
  perspective: 800px;
}
.circle {
  /* width: 120px; */
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* cursor: pointer */
  animation: rotate 7s linear infinite;
}

.circle-img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

@keyframes rotate {
from {
  transform: rotate(0deg);
}
to {
  transform: rotate(360deg);
}
}

.animated-text-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 44rem 0;
  font-size: 2rem;
  font-weight: 600;
}

.animated-text-wrap .fixed {
  font-size: 8rem;
  white-space: nowrap;
  font-weight: 300;
}

.animated-text-wrap .changing {
  position: relative;
  display: inline-block;
  width: 850px;
  height: 9rem;
  overflow: hidden;
}

.animated-text-wrap .word {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.6s ease, opacity 0.6s ease;
  font-size: 8rem;
  color: #373737;
  color: var(--color-theme-1);
}

.animated-text-wrap .word.active {
  opacity: 1;
  transform: translateY(0);
  font-weight: bold;
}

.animated-text-wrap .word.leaving {
  opacity: 0;
  transform: translateY(-100%);
}
#about .section-title {
  margin-top: 18rem;
}
#about .section-text{
  letter-spacing: -2px;
}
/* services */
#services {
  padding-top: 0 !important;
  
}
#services .title-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30rem;
  text-align: center;
}
#services .sub-title {
  font-size: 2rem;
  color: var(--color-theme-1);
  margin-bottom: 1.7rem;
  font-weight: 400;
}
#services .ttitle {
  font-family: var(--font-sub);
  font-size: 5rem;
  color: #373737;
  font-weight: bold;
  margin-bottom: 5rem;
  line-height: 1.4;
}
#services .desc {
  font-size: 2.3rem;
  line-height: 2;
  margin-bottom: 12rem;
}
.btn-wrap {
  display: block;
}

.btn-wrap .go-link {
  letter-spacing:1px;
  font-weight: 300;
}

.go-link {
  font-family: var(--font-sub);
  margin-right: 3.5rem;
  padding: 1.5rem 5rem;
  font-size: 2rem;
}
.go-link:hover {
  /* outline: 1px solid var(--color-theme-1); */
  background: #fff;
  color: var(--color-theme-1);
  transition: all 0.17s var(--ease-default)
  
}
#services .go-link:last-child {
  margin-right: 0;
}
#services .service-item-wrap {
  display: flex;
}
#services .service-item-wrap .service-left {
  width: 50%;
}
#services .service-item-wrap .service-right {
  width: 50%;
}
#services .service-item-wrap .accordion-wrap {
  width: 50%;
}
#services .service-item-wrap .col-md-6:nth-child(1) .services-3-item {
  background: url(/images/bg-service-01.svg) no-repeat right bottom;
  background-size: 50%;
}
#services .service-item-wrap .col-md-6:nth-child(2) .services-3-item {
  background: url(/images/bg-service-02.svg) no-repeat right bottom;
}
#services .service-item-wrap .col-md-6:nth-child(3) .services-3-item {
  background: url(/images/bg-service-03.svg) no-repeat right bottom;
}
#services .service-item-wrap .col-md-6:nth-child(4) .services-3-item {
  background: url(/images/bg-service-04.svg) no-repeat right bottom;
}
#services .service-item-wrap .col-md-6:nth-child(5) .services-3-item {
  background: url(/images/bg-service-05.svg) no-repeat right bottom;
}
#services .service-item-wrap .col-md-6:nth-child(6) .services-3-item {
  background: url(/images/bg-service-06.svg) no-repeat right bottom;
}
#services .service-label {
  width: 70%;
}
#services .service-label span {
  display: inline-block;
  font-size: 1.5rem;
  color: #fff;
  background-color: var(--color-theme-1);
  padding: 1rem 2rem;
  border-radius: 10rem;
  font-weight: 500;
  margin-right: 1rem;
  margin-bottom: 1.5rem;
}
#services .accordion-wrap {

}
#services .accordion-content {
  display: none;         
  overflow: hidden;            
  /*transition: 0.4s;*/
  background: var(--color-theme-1);
  padding: 6.5rem 6rem 4rem;
}
#services .accordion-content.open {
  /*max-height: max-content;*/
  /*padding: 6.5rem 6rem 4rem;*/
}
#services .accordion-content .txt-area {
  margin-bottom: 10rem;
}
#services .accordion-content .txt-area p {
  font-size: 2rem;
  line-height: 1.7;
  font-weight: 200;
  color: #fff;
}
#services .accordion-content .label-area span {
  font-family: var(--font-sub);
  display: inline-block;
  margin-right: 0.8rem;
  margin-bottom: 1.8rem;
  background: #fff;
  color: var(--color-theme-1);
  padding: 1rem 1.8rem;
  border-radius: 2rem;
  font-size: 1.5rem;
  letter-spacing: -0.2px;
}

#client .section-text {
  margin-right: 5rem;
  color: var(--color-theme-1);
}

#services .service-left .title {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--color-theme-1);
  line-height: 1.3;
}
#services .service-left strong {
  font-family: var(--font-sub);
  display: block;
  margin-bottom: 12rem;
  font-size: 5rem;
  font-weight: 700;
  color: #373737;
  line-height: 1.4;
  font-size: 5rem;
}
#services .service-left p {
  font-size: 2rem;
  line-height: 1.7;
  color: #232323;
  font-weight: 300;
}
#services .accordion-wrap li a {
  /* font-family: var(--font-sub); */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
  color: var(--color-theme-1);
  font-size: 3.8rem;
  font-weight: 200;
  border-bottom: 1px solid var(--color-theme-1);
}

#services .accordion-wrap li a:hover{
 font-weight: 500;
 transition: all 0.17s var(--ease-default)
}
#services .accordion-wrap li a::after {
  content: "+";
  display: inline-block;
  color: var(--color-theme-1);
}
#services .accordion-wrap li a.open {
  font-weight: bold;
}
#services .accordion-wrap li a.open::after {
  content: "";
  width: 2rem;
  height: 0.4rem;
  background: var(--color-theme-1);
}

/* portfolio */
#portfolio {
  padding-top: 10rem;
}
#portfolio .swiper {
  overflow: unset;
  overflow: visible;
}
#portfolio .tit-wrap {
  position: relative;
}
#portfolio .section-title {
  font-family: var(--font-sub);
  color: #373737;
  line-height: 1.4;
  font-size: 5rem;
}
#portfolio .tit-wrap .ico-star {
  position: absolute;
  z-index: -1;
  left: 0;
  top: -100%;
  transform-origin: center center;
}

#portfolio .hidden-title,
#portfolio .hidden-content {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
#portfolio .swiper-slide {
  max-width: 1270px;
  width: 100%;
  height: 520px;
  overflow: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
#portfolio .swiper-slide a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  transition: .3s;
}
#portfolio .swiper-slide a::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
  transition: opacity 0.2s ease;
}
#portfolio .swiper-slide a::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: 40%;
  bottom: 0;
  background: var(--color-theme-1);
  opacity: 1;
  transition: opacity 0.2s ease;
}
#portfolio .swiper-slide a:hover::before,
#portfolio .swiper-slide a:hover::after {
  opacity: 0;
  right: 0.1%;
  transition: opacity 0.2s ease;

}
#portfolio .swiper-slide a:hover .work-title {
  display: none;
}
#portfolio .swiper-slide a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
#portfolio .swiper-slide-prev {
  transform: scale(0.8);
}
#portfolio .swiper-slide-next {
  transform: scale(0.8);
}
#portfolio .swiper-button-prev {
  width: 8rem;
  height: 8rem;
  left: calc(15% - 50px);
  transform: translateY(-40%);
}
#portfolio .swiper-button-next {
  width: 8rem;
  height: 8rem;
  right: calc(15% - 50px);
  transform: translateY(-40%);
}


/* client */

#client {
  margin-bottom: 20rem;
}
#client .section-title {
  font-family: var(--font-sub);
  color: var(--color-theme-1);
}

.logo-marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  margin-bottom: 3.5rem;
}

.logo-marquee .logo-track {
  display: inline-flex;
  animation: marquee 50s linear infinite;
}
.logo-marquee.reverse .logo-track {
  display: inline-flex;
  animation: marquee2 50s linear infinite;
}
.team-item {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin: 0 3rem;
  width: 250px;
  height: 90px;
  background: #ffffff;
  padding: 2.5rem 5rem;
  border-radius: 3rem;
}
.team-item-image {
  width: 100%;
  max-height: 90px;
}
.team-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes marquee2 {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* contact */
#contact {
  padding-bottom: 7rem;
  z-index: 1;
}
#contact .section-title {
  font-family: var(--font-sub);
  padding-left: 0;
  font-size: 5rem;
  color: #373737;
  letter-spacing: -3px;
  padding-top: 5rem;
  text-align: left;
  line-height: 1.4;
}
#contact .contact-wrap {
  display: flex;
}
#contact .contact-wrap .contact-intro {
  width: 50%;
}
#contact .contact-wrap .contact-form-row {
  width: 50%;
}
#contact .section-text {
  padding-left: 0;
  letter-spacing: -1.5px;
  font-weight: 300;
  color: #373737;
}
#contact .contact-link > div {
  border: 1px solid #fff;
}
#contact .contact-item .txt-wrap {
  display: flex;
  /*height: 100%;*/
  flex-direction: column;
  justify-content: space-between;
  margin-left: 3rem;
}
#contact .contact-item .txt-wrap .ci-text {
  margin-bottom: 3rem;
  font-size: 2rem;
  color: #fff;
}
#contact .contact-item .txt-wrap .ci-title {
  font-size: 3rem;
  color: #fff;
  font-weight: 600;
}
#contact .contact-item .txt-wrap .ci-link {
  font-size: 2rem;
  color: #fff;
}
#contact .btn-submit button {
  font-size: 2.5rem;
  color: var(--color-theme-1);
}

.footer {
  padding-top: 5rem !important;
  background: var(--color-theme-1);
  color: #fff;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
}
.footer .slogan-area {
}
.footer .slogan {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-family: var(--font-sub);
  font-size: 4rem;
  flex-wrap: nowrap;
}
.footer .slogan strong {
  font-weight: 700;
}
.address-area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.address-area p {
  margin-bottom: 8rem;
  font-size: 1.8rem;
  line-height: 2.7rem;
  font-weight: 200;
  letter-spacing: -0.65px;
}
.footer-contact span {
  margin-bottom: 0.5rem;
  display: block;
  font-size: 2rem;
  font-weight: 200;
}
.footer .address-area .clearlinks a {
  color: #FFF;
  font-size: 20px;
  font-weight: 200;
  line-height: 32px;
  letter-spacing: -1px;
  /* text-decoration-line: underline; */
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
}
.footer-widget .clearlist {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 5rem;
}
.footer-widget .clearlist li {
  /*display: flex;*/
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-bottom: 1rem;
}
.footer-widget .clearlist li a {
  display: inline-flex;
  color: #FFF;
  font-family: var(--font-sub);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.224px;
  border: 1px solid #fff;
  padding: 14px 20px;
  border-radius: 5rem;
}
.footer-widget .clearlist li a:hover {
  background-color: #fff;
  color: var(--color-theme-1);
}
.footer .all-rights {
  font-weight: 200;
  letter-spacing:-0.1px;
}
.footer .fw-title {
  font-weight: 600;
}
.footer .clearlinks {
  color: #fff;
}
.clearlist li a {
  color: #fff;
}

a,
a:link {
  text-decoration: none;
}

.nav-link {
  color: #000;
  font-weight: 600;
}

#bo_w {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

#visual {
  width: 100%;
  height: calc(100vh - 200px);
  background-color: black;
  position: relative;
  overflow: hidden;
  /* pointer-events 설정 제거 - 전체 영역에서 터치 가능하도록 */
}

#visual h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  font-weight: 900;
  border-radius: 1rem;
  border: 4px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.5);
  padding: 0 2rem;
  text-align: center;
  width: auto;
  /* 내용에 맞게 너비 조정 */
  white-space: nowrap;
  /* 텍스트가 줄바꿈되지 않도록 함 */
  display: inline-block;
  /* 내용에 맞게 크기 조정 */
  z-index: 20;
  /* h1 태그를 캔버스 위에 배치 */
  /* pointer-events: auto; 설정 제거 - 기본값 사용 */
}

#visual canvas {
  position: relative;
  z-index: 10;
  /* 캔버스를 앞쪽에 배치 */
  pointer-events: none;
  /* 캔버스의 터치 이벤트 차단하여 스크롤 가능하게 */
}

#visual p {
  position: absolute;
  color: rgba(255, 255, 255, 0.7);
  /* 기본 텍스트 색상 */
  font-size: 14px;
  transform: rotate(-90deg);
  /* 반시계방향 90도 회전 */
  transform-origin: left center;
  /* 회전 기준점을 왼쪽 중앙으로 설정 */
  white-space: nowrap;
  /* 줄바꿈 방지 */
  z-index: 5;
  /* p 태그를 캔버스 뒤에 배치 */
  pointer-events: none;
  /* p 태그만 터치 차단하여 스크롤 방해 방지 */
}

.root_daum_roughmap .cont {
  display: none;
}

.badge-group {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 10;
}

.badge-group .badge {
  margin-right: 4px;
  margin-bottom: 4px;
}

/* Modal Animation */
.modal.fade .modal-dialog {
  transform: translate(0, -50px);
  transition: all 0.3s ease-out;
}

.modal.show .modal-dialog {
  transform: translate(0, 0);
}

.modal-content {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
  border-radius: 15px 15px 0 0;
}

.modal-footer {
  border-radius: 0 0 15px 15px;
}

/* Modal Body Loading Animation */
#solutionModalBody {
  min-height: 300px;
  transition: opacity 0.3s ease-in-out;
}

.loading-content {
  opacity: 0.7;
}

.loaded-content {
  opacity: 1;
}

.solution-img {
  height: 220px !important;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .solution-img {
  transform: scale(1.07);
}

.card:hover .card-title {
  color: var(--bs-primary) !important;
}

/* CMS Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0d6efd 0%, #17a2b8 100%);
}
.min-vh-75 {
  min-height: 75vh;
}

/* CMS 주요 기능 카드 */
.main-func-card {
  background: linear-gradient(135deg, #f8fafc 60%, #e9ecef 100%);
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: visible;
}
.main-func-card:hover {
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-8px) scale(1.03);
  z-index: 2;
}
.main-func-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1rem auto;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.06);
  font-size: 2.2rem;
  border: 3px solid #fff;
  position: relative;
  top: -30px;
  background-clip: padding-box;
}
.main-func-card .card-body {
  padding-top: 2.5rem !important;
  padding-bottom: 2rem !important;
}
.main-func-card h5 {
  margin-top: 0.5rem;
  margin-bottom: 1.2rem;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
}
.main-func-card ul {
  margin-bottom: 1.2rem;
}
.main-func-card .badge {
  font-size: 0.85em;
  padding: 0.4em 0.8em;
  border-radius: 0.8em;
  margin-bottom: 0.2em;
}
.section-title {
  font-size: 5rem;
}
.section-text {
  font-size: 20px;
}
@media (max-width: 991px) {
  #about .section-title {
    margin-top: 0;
    font-size: 28px;
  }
  #about .intro-txt .section-title {
    font-size: 4.5rem;
  }
  #about .section-text {
    font-size: 1.7rem;
  }
  #about .intro-txt {
    margin-bottom: 10rem;
  }
  #services .title {
    font-size: 3.5rem;
  }
  #services .desc {
    margin-bottom: 5rem;
  }
  #services .btn-wrap {
    display: flex;
  }
  #services .go-link {
    padding: 1.5rem 2.5rem;
  margin-right: 2.5rem;
  font-size: 2.2rem;
  }
  #services .service-item-wrap {
    flex-direction: column;
  }
  #services .service-item-wrap .service-left,
  #services .service-item-wrap .accordion-wrap {
    width: 100%;
  }
  #services .service-left strong {
    font-size: 3.5rem;
    margin-bottom: 5rem;
  }
  #services .title-area {
    margin-bottom: 10rem;
  }
  #services .accordion-wrap {
    margin-top: 3rem;
  }
  #services .accordion-wrap li a {
    padding: 2rem;
    font-size: 3rem;
  }
  #services .accordion-content {
    padding: 3.5rem 3rem 2rem;
  }
  #portfolio {
    padding-bottom: 0;
  }
  #portfolio .section-title {
    text-align: center;
    font-size: 35px;
  }
  #portfolio .swiper-slide {
    height: 320px;
  }
  #client {
    margin-bottom: 0;
  }
  #client .section-title {
    font-size: 32px;
  }
  #contact .contact-wrap {
    flex-direction: column;
  }
  #contact .contact-wrap .contact-intro {
    width: 100%;
    margin-bottom: 7rem;
  }
  #contact .contact-wrap .contact-form-row {
    width: 100%;
  }
  #contact .btn-submit {
    text-align: right;
  }
  .footer-wrap {
    flex-direction: column;
  }
  .slogan {
    margin-bottom: 2rem;
  }
  .footer-widget .clearlist {
    flex-direction: row;
  }
  .footer-widget .clearlist li a {
    padding: 10px 11px;
    border-radius: 5rem;
    margin: 0 2px;
    font-size: 1.4rem;
  }
  .address-area p {
    margin-bottom: 5rem;
  }
  .footer .address-area .clearlinks a {
    font-size: 16px;
  }
  .footer-contact {
    margin-bottom: 5rem;
  }
  .team-item {
    width: 170px;
    height: 60px;
    padding: 2.5rem 3rem;
    border-radius: 2rem;
  }
  .intro-tab ul {
    justify-content: center;
    flex-wrap: wrap;
    border: none;
  }
  .intro-tab ul li {
    border-radius: 3rem;
    margin: 0.5rem;
    border: 1px solid var(--color-theme-1);
  }
  .intro-tab ul li a {
    padding: 1.2rem 1.8rem;
    font-size: 14px;
  }
  .main-func-card {
    margin-bottom: 1.5rem;
  }
}
.subpage {
}
/* about */
.intro-area {
  display: flex;
  justify-content: space-between;
}
.intro-area .intro-txt {
  width: 45%;
  margin-bottom: 0;
}
.intro-area .logo-area {
  display: flex;
  width: 50%;
  justify-content: flex-end;
}
.intro-area .weaver-txt {
  margin-bottom: 11rem;
}
.intro-area .weaver-txt .gradient-img {
  max-width: 365px;
  width: 100%;
}
.intro-area .weaver-txt p {
  font-size: 5rem;
  font-weight: 200;
  color: var(--color-theme-1);
}
.intro-area .desc {
  font-size: 2.1rem;
  font-weight: 300;
  line-height: 1.6;
  color: #373737;
}
.intro-area .desc .gradient-txt {
    background: linear-gradient(90deg, #09AEEA, #00ADEE, #A1D5AE);
    color: transparent;
    -webkit-background-clip: text;
}
.intro-area .logo-area img {
  max-width: 680px;
}
.value-core {
  display: flex;
  justify-content: center;
  margin-bottom: 13rem;
}
.sub-tit {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--color-theme-1);
}
.section-title {
  font-family: var(--font-sub);
  color: #373737;
  text-align: center;
  font-size: 4.5rem;
  font-weight: 700;
}
.value-core p {
  text-align: center;
  font-size: 2rem;
  line-height: 34px;
  color: #373737;
}
.value-core-icon ul {
  display: flex;
  justify-content: space-between;
}
.value-core-icon ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.value-core-icon ul li .icon {
  margin-bottom: 4rem;
}
.value-core-icon ul li span {
  display: inline-block;
  margin-bottom: 3rem;
  font-size: 2.2rem;
  color: var(--color-theme-1);
  font-weight: 700;
}
#sub-about {
  margin-bottom: 20rem;
}

#sub-contact img {
  margin-bottom: 5rem;
}
#sub-contact strong {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 5rem;
  color: #373737;
  font-weight: 800;
  margin-bottom: 12rem;
}
#sub-contact .contact-link {
  display: inline-block;
  padding: 1.5rem 9rem;
  border: 1px solid var(--color-theme-1);
  font-size: 2rem;
  color: var(--color-theme-1);
}
#sub-service {
  
}
#sub-service .tit-area {
  text-align: center;
  margin-bottom: 6.5rem;
}
.services-intro {
  display: flex;
  gap: 1rem;
}
.services-intro .card-col {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 1rem;
}
.services-intro .card-col .front-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 190px;
  border: 1px solid var(--color-theme-1);
  border-radius: 5rem;
}
.services-intro .card-col .front-txt.stretch {
  height: 320px;
}
.services-intro .card-col .front-txt p {
  position: relative;
  font-size: 5rem;
 font-family: var(--font-sub); 
 color: var(--color-theme-1);
 font-weight: 700;
}
.services-intro .card-col .front-txt span {
  position: absolute;
  top: -0.5rem;
  right: -2rem;
  font-family: var(--font-sub);
  font-size: 1.5rem;
}
.services-intro .hover-txt {
  display: none;
}

@media (max-width: 767px) {
  .ico-star {
    display: none;
  }
  .main-func-icon {
    width: 54px;
    height: 54px;
    font-size: 1.5rem;
    top: -20px;
  }
  .main-func-card .card-body {
    padding-top: 2rem !important;
    padding-bottom: 1.5rem !important;
  }
}

/* CMS 기타 스타일 */
.cms-container {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR",
    sans-serif;
}

.card {
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}

.accordion-button {
  font-weight: 600;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  opacity: 0.8;
}
.carousel-control-prev {
  left: -75px;
}
.carousel-control-next {
  right: -75px;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}
#team .team-item-image {
  transition: 0.3s;
}
#team .team-item-image:hover {
  transform: translateY(-3%);
}
@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

@media (max-width: 768px) {
  #visual h1 {
    font-size: 2rem;
  }
}
