/* =========================================================
  공통
========================================================= */
/* .section {
  position: relative;
  padding: 100px 0;
} */


/* =========================================================
  visual
========================================================= */
.visual-wrap {
  width: 100%;
  height: 100vh;
  min-height: 800px;
  max-height: 800px;
  /* padding: 0; */
  position: relative;
}

.visualSwiper {
  width: 100%;
  height: 650px;
  position: relative;
}

.visual-item {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.visual1 {
  background-image: url('/resources/cyber/images/main/mainVisual01.png');
}

.visual2 {
  background-image: url('/resources/cyber/images/main/mainVisual02.png');
}

.visual-item .container-xxl {
  position: relative;
  height: 100%;
}

.visual-text {
  position: absolute;
  top: 30%;
  left: 3rem;
}

.visual-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin: 0;
  word-break: keep-all;
}

.visual-title span {
  padding: 0.5rem 3rem;
  border-radius: 3rem;
  background-color: #b08ed3;
  color: var(--color-white-hex);
}

.visual-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin-top: 1.5rem;
  margin-bottom: 0;
  padding-left: 1.25rem;
}


/* =========================================================
  visual-bottom-wrap
========================================================= */
.visual-bottom-wrap {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.visual-bottom-wrap .container-xxl {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 5;
  gap: 2rem;
}

.visual-bottom-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
  padding: 20px 0;
}

.visual-nav-wrap {
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-end;
}

.visual-nav {
  padding: 0.5rem 2rem;
  border-radius: 3rem;
  background-color: #111;
  gap: 1.25rem;
  width: auto;
  white-space: nowrap;
  
}

.visual-nav .swiper-button-prev,
.visual-nav .swiper-button-next {
  width: 33px;
  height: 17px;
  margin-top: 0;
  background-size: contain;
  background-repeat: no-repeat;
  position: static;
}

.visual-nav .swiper-button-prev {
  background-image: url('/resources/cyber/images/main/swiperNavPrev.png');
}

.visual-nav .swiper-button-next {
  background-image: url('/resources/cyber/images/main/swiperNavNext.png');
}

/* Swiper 기본 아이콘 제거 */
.visual-nav .swiper-button-prev::after,
.visual-nav .swiper-button-next::after {
  display: none;
}

.fraction span {
  font-size: 15px;
  color: var(--color-white-hex);
}

.fraction span:not(#current) {
  color: var(--color-gray-dark-hex);
}

.autoplay-btn {
  border: none;
  background: none;
  color: var(--color-white-hex);
  font-size: 20px;
  cursor: pointer;
}

.progress-line {
  width: 120px;
  height: 3px;
  background: #eee;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--color-primary-hover-hex);
  transition: width 0.3s ease;
}


/* =========================================================
  quick
========================================================= */
.quick-wrapper {
  padding: 2rem;
  justify-content: space-evenly;
  /* height: 380px; */
  z-index: 1;
  position: relative;
  flex: 1 1 65%;
  /* flex: 1; */
}

.quick-wrapper::before {
  position: absolute;
  content: '';
  border-radius: 10rem 0 0 0;
  background-color: rgba(var(--color-primary-rgb), 0.9);
  width: 100vw;
  height: 100%;
  z-index: -1;
  left: 0;
  top: 0;
}

.circle-logo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: clamp(200px, 18vw, 240px);
  flex-shrink: 0;
}

.rotate-text {
  width: 100%;
  height: 100%;
  display: block;
  animation: circle-rotate 20s linear infinite;
}

.rotate-text textPath {
  font-size: 0.5rem;
  letter-spacing: 3px;
  fill: var(--color-primary-light-font-hex);
}

@keyframes circle-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.center-logo {
  width: 80%;
  aspect-ratio: 232 / 224;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.circle-logo-wrap .center-logo img {
  width: 100%;
  height: auto;
  aspect-ratio: 232 / 224;
}

.quick-menu {
  gap: 1rem;
}

.quick-item {
  position: relative;
  padding-left: 100px;
  transition: all 0.3s;
}

.quick-item::before {
  content: '';
  width: 80px;
  border: 1px dashed var(--color-white-hex);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.quick-item--organization::before {
  width: 60px;
  left: 20px;
}

.quick-item--organization {
  width: 80%;
}

.quick-item--intro h5 {
  color: rgba(63, 171, 171, 1);
}

.quick-item--organization h5 {
  color: rgba(41, 106, 203, 1);
}

.quick-item--location h5 {
  color: rgba(54, 62, 141, 1);
}

.quick-item:hover{
  transform: translateX(10px);
}

.quick-menu-link {
  padding: 0.5rem 1.5rem;
  gap: 1rem;
  /* max-width: 427px; */
  border-radius: 1rem;
  background-color: #fff;
  min-width: 0;
  transition: all 0.3s;
}

.quick-item:hover .quick-menu-link{
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.quick-menu-text {
  font-weight: 600;
  color: var(--color-text-secondary);
  font-size: 18px;
  width: 100%;
}

.quick-menu-text p {
  font-size: 0.875rem;
  color: var(--color-gray-dark-hex);
  
}

.quick-menu-icon {
  width: 60px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-menu-icon .icon {
  width: 32px;
  height: 32px;
  background-color: var(--icon-color, #333);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.quick-item--intro {
  --icon-color: #3fabab;
}

.quick-item--intro .quick-menu-icon {
  background-color: rgba(63, 171, 171, 0.1);
}

.quick-item--intro .icon {
  mask-image: url('/resources/cyber/images/main/quickMenu01.svg');
  -webkit-mask-image: url('/resources/cyber/images/main/quickMenu01.svg');
  aspect-ratio: 196 / 150;
}

.quick-item--organization {
  --icon-color: #296acb;
}

.quick-item--organization .quick-menu-icon {
  background-color: rgba(41, 106, 203, 0.1);
}

.quick-item--organization .icon {
  mask-image: url('/resources/cyber/images/main/quickMenu02.svg');
  -webkit-mask-image: url('/resources/cyber/images/main/quickMenu02.svg');
}

.quick-item--location {
  --icon-color: #363e8d;
}

.quick-item--location .quick-menu-icon {
  background-color: rgba(54, 62, 141, 0.1);
}

.quick-item--location .icon {
  mask-image: url('/resources/cyber/images/main/quickMenu03.svg');
  -webkit-mask-image: url('/resources/cyber/images/main/quickMenu03.svg');
}

@media (max-width: 1299.98px) {
  .visual-bottom-wrap .container-xxl{
    gap: 2rem;
  }
  
  .quick-item--organization{
    width: auto;
  }

  .quick-item {
    padding-left: 80px;
  }

  .quick-item::before {
    width: 60px;
  }

  .quick-item--organization::before {
    width: 40px;
  }
}

@media (max-width: 1079.98px) {
  /* .visual-text{
    position: static;
  } */

  .visual-item{
    background-position: right 20% bottom;
  }

  .visual-item::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
  }

  .visual-text{
    color: var(--color-white-hex);
  }

  .visual-title span{
    /* display: block; */
  }

  .visual-bottom-wrap .container-xxl{
    flex-direction: column;
  }

  .visual-nav-wrap{
    margin-left: 3rem;
  }

  .quick-wrapper{
    flex-basis: auto;
    width: 90%;
    align-self: self-end;
  }
}

@media (max-width: 767.98px) {
  .visual-wrap{
    max-height: none;
    min-height: auto;
    height: auto;
  }

  .visualSwiper{
    height: 450px;
  }

  .visual-item .container-xxl{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .visual-text{
    position: static;
    text-align: center;
  }

  .visual-subtitle{
    padding: 0;
    margin-top: 0.5rem;
  }

  .visual-title span{
    padding: 0;
    background-color: transparent;
    border-radius: 0;
  }

  .visual-bottom-wrap{
    position: relative;
    padding: 0;
    margin-top: -8rem;
  }

  .visual-nav-wrap{
    display: none;
  }

  .quick-wrapper{
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }

  .quick-right{
    width: 100%;
  }

  .quick-item{
    padding: 0;
  }

  .quick-item::before{
    content: none;
  }

}

@media (max-width: 575.98px) {
  .circle-logo-wrap{
    width: 120px;
    /* display: none; */
  }

  .quick-wrapper{
    padding-top: 3rem;
  }

  .quick-wrapper::before{
    width: calc(100vw + 1rem);
    /* border-radius: 0%; */
    left: -1rem;
  }

  .quick-menu-text p{
    display: none;
  }
  
}




/* =========================================================
  news
========================================================= */
.tab-wrapper{
  padding-top: 80px;
  position: relative;
}

.tab-left{
  position: relative;
  gap: 4rem;
}

.news-wrap{
  margin-top: 20px;
}

.news-wrap .tab-left::before{
  content: 'KWU';
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 12rem;
  color: var(--color-primary-light-ornament-hex);
  font-weight: 900;
  z-index: -1;
}

.content-title{
  padding-right: 1rem;
}

.content-subtitle{
  font-weight: 800;
  color: var(--color-primary-hex);
  font-size: clamp(18px, 5vw, 36px);
}

.content-maintitle{
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.1;
  word-break: keep-all;
}

.tab-left-nav{
  display: flex;
  flex-direction: column;
  padding-left: 100px;
}

.tab-item .tab-btn {
  transition: all 0.3s;
  font-size: clamp(18px, 3vw, 20px);
  color: var(--color-text-secondary);
  position: relative;
  width: 100%;
  
}

.tab-item .tab-btn:hover,
.tab-item .tab-btn:focus-within,
.tab-item .tab-btn:active {
  color: var(--color-primary-hover-hex);
  font-weight: 600;
}

.tab-btn .tab-icon {
  width: 20px;
  height: 20px;
  background-color: var(--tab-icon-color, #666);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.tab-item--notice .tab-icon {
  mask-image: url('/resources/cyber/images/main/noticeIcon.svg');
  -webkit-mask-image: url('/resources/cyber/images/main/noticeIcon.svg');
}

.tab-item--news .tab-icon {
  mask-image: url('/resources/cyber/images/main/newsIcon.svg');
  -webkit-mask-image: url('/resources/cyber/images/main/newsIcon.svg');
}

.tab-btn:hover .tab-icon,
.tab-btn:focus-visible .tab-icon,
.tab-btn.is-active .tab-icon {
  background-color: var(--color-primary-hover-hex);
}

.tab-item .tab-btn:after {
  content: '';
  position: relative;
  margin-left: auto;
  right: 1rem;
  width: 15px;
  height: 15px;
  transition: transform 0.3s;
  background-color: var(--tab-arrow-color, #666);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url('/resources/cyber/images/main/tabArrow.svg');
  -webkit-mask-image: url('/resources/cyber/images/main/tabArrow.svg');
}

.tab-item .tab-btn.is-active:after,
.tab-item .tab-btn:hover:after,
.tab-item .tab-btn:focus-visible:after{
  transform: translateX(10px);
  background-color: rgb(var(--color-primary-hover-rgb));
}

.news-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
}

.news-item {
  padding: 2rem;
  /* border-left: 3px solid var(--color-gray-light-hex); */
  background-color: rgba(250, 250, 250, 0.3);
  transition: all 0.3s;
  overflow: hidden;
  /* border-radius: 1rem; */
  position: relative;
}

.news-item::before {
  position: absolute;
  width: 3px;
  height: 100%;
  background-color: var(--color-gray-light-hex);
  content: '';
  left: 0;
  top: 0;
  transition: all 0.3s;
}

.news-item:hover::before,
.news-item:focus-within::before{
  height: 100%;
  background-color: var(--color-primary-hex);
}

.num-wrap {
  position: relative;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.num-wrap::before {
  content: "";
  position: absolute;
  /* inset: 0; */
  width: 90%;
  height: 90%;
  top: -12px;
  right: -30px;
  background: var(--color-primary-light-hex);
  border-radius: 50%;
  opacity: 0.6;
  transition: opacity .3s;
  z-index: -1;
}

.news-item:hover .num-wrap::before,
.news-item:focus-within .num-wrap::before {
  opacity: 1;
}

.news-item .num {
  position: relative;
  z-index: 1;
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 700;
  color: var(--color-primary-light-num-hex);
  transition: color .3s;
}

.news-item:hover .num,
.news-item:focus-within .num {
  color: var(--color-primary-hex);
}

.news-title,
.news-desc{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item:hover .news-title-inner {
  background-size: 100% calc(1em - 10px);
}

/* 말줄임은 내부 span이 담당 */
.news-title-inner {
  display: inline; 
  background-image: linear-gradient(
    to bottom,
    rgba(231,199,245,1) 0%,
    rgba(231,199,245,1) 100%
  );
  background-repeat: no-repeat;
  background-size: 0% calc(1rem - 10px); /* 한 줄 밑을 underline처럼 채움 */
  background-position:
    0 calc(100% - 2px); /* 줄 간격에 맞춰 underline 위치 */
  transition: background-size .4s ease;
  line-height: 1.4;
  margin: 2rem 0;
}


.news-desc{
  margin-top: 1rem;
}

.news-item .date .material-symbols-outlined{
  font-size: 1rem;
}

.news-item .date {
  font-size: 0.875rem;
}

.tab-wrapper .link-btn {
  width: 90px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.tab-wrapper .link-btn:hover,
.tab-wrapper .link-btn:focus-visible {
  transform: scale(1.1);
}

.tab-wrapper .link-btn img {
  transition: transform 0.6s ease;
  display: block;
}

.tab-wrapper .link-btn:hover img,
.tab-wrapper .link-btn:focus-visible img {
  transform: rotate(360deg);
}


@media (max-width: 1299.98px) { 
  .news-list{
    grid-template-columns: repeat(2, 1fr);
  }

  .news-item:nth-child(5),
  .news-item:nth-child(6){
    display: none;
    visibility: hidden;
  }

  
  .content-maintitle{
    font-size: clamp(32px, 5vw, 40px);
  }
}


@media (max-width: 991.98px) {
  .tab-left-nav {
  	padding-left: 0;
  }
  .tab-item .tab-btn:after {
  	right: 0;
  }
  
  .tab-left{
    gap: 1rem;
  }
  
  .news-wrap .tab-left-nav{
    flex-direction: row;
    margin-bottom: 3rem;
    gap: 2rem;
  }

  .num-wrap::before{
    top: 0;
  }
}


@media (max-width: 767.98px) {
  .news-wrap{
    margin-top: 80px;
  }

  .tab-wrapper{
    padding-top: 0;
  }

  .news-wrap .tab-left::before{
    font-size: 8rem;
  }

  .tab-wrapper .link-btn{
    width: 70px;
  }

  .tab-wrapper .link-btn img{
    max-width: 24px;
  }
}

@media (max-width: 575.98px) {
  .news-list{
    grid-template-columns: 1fr;
  }

  .news-item{
    padding: 0 0.5rem;
  }
  
  .news-item a{
    flex-direction: row !important;
    width: 100%; 
    gap: 1rem !important;
    align-items: flex-end;
  }

  .num-wrap {
    flex-shrink: 0; 
    flex-basis: auto; 
  }

  .num-wrap::before{
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
  }

  .text-wrap{
    flex: 1;
    min-width: 0;
  }
  
  .news-title,
  .news-desc {
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
  }

  
  .news-title-inner,
  .news-desc {
    margin: 0;
    background: none;
  }

  .news-item .date{
    display: none !important; 
  }

  .tab-wrapper .link-btn{
    position: static;
    margin: 2rem auto 3rem;
  }
}




/* =========================================================
  program
========================================================= */
.program-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.program-wrap .tab-left {
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.program-wrap .tab-left::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  background: url('/resources/cyber/images/main/programBg.png') no-repeat center / cover;
  z-index: -1;
}

.program-wrap .tab-left::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 63%;
  background: url('/resources/cyber/images/main/programBgLogo.png') no-repeat center / cover;
  width: 327px;
  height: 200px;
  z-index: -1;
}

.program-wrap .tab-left-nav {
  gap: 1rem;
  padding-inline: 3rem;
}

.program-wrap .tab-item {
  border-bottom: 1px solid rgb(var(--color-text-primary));
}

.program-wrap .tab-btn {
  width: 100%;
  padding-bottom: 6px;
  text-align: left;
  position: relative;
}

.program-wrap .tab-btn::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  mask-image: url('/resources/cyber/images/main/tabArrow.svg');
  width: 15px;
  height: 15px;
  background-color: var(--tab-arrow-color, #666);
  mask-image: url('/resources/cyber/images/main/tabArrow.svg');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url('/resources/cyber/images/main/tabArrow.svg');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  transition: transform 0.3s ease;
}

.program-wrap .tab-btn.is-active::after,
.program-wrap .tab-btn:hover::after,
.program-wrap .tab-btn:focus-visible::after {
  transform: translateY(-50%) rotate(180deg);
  background-color: rgb(var(--color-primary-hover-rgb));
}

.program-panel {
  display: flex;
  flex-direction: column;
  padding-left: 3rem;
  height: 100%;
  justify-content: flex-end;
}

.marquee-wrap {
  width: 100%;
  overflow: hidden;
  padding: 10px 0 10px 30px;
  white-space: nowrap;
  position: absolute;
  top: 110px;
}

.marquee-wrapper {
  display: flex;
  width: max-content;
  animation: marqueeScrolling 20s linear infinite;
}

.marquee-text {
  padding: 0 20px;
  font-size: 6rem;
  font-weight: 800;
  color: var(--color-primary-light-ornament-hex);
}

@keyframes marqueeScrolling {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.program-wrapper {
  display: flex;
  gap: 1rem;
  position: relative;
  margin-bottom: 8rem;
}

.programSwiper {
  position: relative;
  width: calc(100% - 66px);
  margin-left: 0;
}

.programSwiper::after {
  /* content: ""; */
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  /* 그라데이션 너비 (조절 가능) */
  height: 100%;
  pointer-events: none;
  /* 클릭 방지 */
  background: linear-gradient(to left, #fff, transparent);
  z-index: 5;
}

.programSwiper ul {
  display: flex;
  position: relative;
}

.program-item {
  min-width: 200px;
  /* max-height: 160px; */
  /* flex: 1; */
}

.program-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-gray-light-hex);
  border-radius: 0.5rem;
  background-color: var(--white-color);
  overflow: hidden;
  padding: 3rem 2rem;
  z-index: 0;
  transition: transform 0.5s ease-in-out;
  gap: 16px;
}

.program-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 3px;
  background: conic-gradient(from var(--angle),
      #4a02aa,
      #5a16b5,
      #6b2cc0,
      #7c3fd0,
      #ff40cf);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0) padding-box;
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transform: translateZ(0);
  animation: borderRotate 3s linear infinite paused;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}

/* 회전 애니메이션 테두리 */
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes borderRotate {
  to {
    --angle: 360deg;
  }
}

.program-link:hover::before {
  opacity: 1;
  animation-play-state: running;
}

.program-menu-text {
  font-weight: 600;
  color: var(--color-text-secondary);
  font-size: 18px;
  width: 100%;
  text-align: center;
}

.program-link:hover .program-menu-text {
  color: var(--color-primary-hex);
}

.program-icon {
  max-width: 60px;
  width: 30%;
  max-height: 60px;
  display: inline-block;
  background-color: var(--color-primary-light-num-hex);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: background-color .2s ease;
}

.program-icon-valueUp01 {
  aspect-ratio: 196 / 150;
  mask-image: url('/resources/cyber/images/main/programIcon01.svg');
}

.program-icon-valueUp02 {
  aspect-ratio: 172 / 150;
  mask-image: url('/resources/cyber/images/main/programIcon02.svg');
}

.program-icon-valueUp03 {
  aspect-ratio: 161 / 150;
  mask-image: url('/resources/cyber/images/main/programIcon03.svg');
}

.program-icon-growUp01 {
  aspect-ratio: 80 / 80;
  mask-image: url('/resources/cyber/images/main/programIcon04.svg');
}

.program-icon-growUp02 {
  aspect-ratio: 172 / 150;
  mask-image: url('/resources/cyber/images/main/programIcon05.svg');
}

.program-icon-growUp03 {
  aspect-ratio: 161 / 150;
  mask-image: url('/resources/cyber/images/main/programIcon06.svg');
}

.program-icon-innoUp01 {
  aspect-ratio: 196 / 150;
  mask-image: url('/resources/cyber/images/main/programIcon07.svg');
}

.program-icon-innoUp02 {
  aspect-ratio: 172 / 150;
  mask-image: url('/resources/cyber/images/main/programIcon08.svg');
}

.program-icon-innoUp03 {
  aspect-ratio: 161 / 150;
  mask-image: url('/resources/cyber/images/main/programIcon09.svg');
}

.program-icon-innoUp04 {
  aspect-ratio: 161 / 150;
  mask-image: url('/resources/cyber/images/main/programIcon10.svg');
}

.program-icon-neulbom {
  aspect-ratio: 161 / 150;
  mask-image: url('/resources/cyber/images/main/programIcon11.svg');
}

.program-icon-skillUp01 {
  aspect-ratio: 71 / 75;
  mask-image: url('/resources/cyber/images/main/programIcon12-skillup.svg');
}

.program-link:hover .program-icon {
  background-color: var(--color-primary-hex);
}

/* .program-icon svg{
  color: var(--color-primary-light-num-hex);
  transition: color .3s;
  }
  
  .program-link:hover .program-icon svg,
  .program-link:focus-within .program-icon svg{
    background-color: var(--program-icon-hover);
} */


.program-link:hover .quick-menu-text,
.program-link:focus-within .quick-menu-text {
  color: var(--color-primary-hover-hex);
}

.program-wrap .tab-content>.active {
  display: flex;
}

.program-panel .swiper-pagination {
  bottom: -3rem;
}

.program-nav {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50px;
  pointer-events: none;
  overflow: hidden;
  border-radius: 1rem;
}

.program-nav>div {
  pointer-events: auto;
  width: 100%;
  height: 50%;
  /* flex: 0 0 50%;        */
}

.program-nav .swiper-button-prev,
.program-nav .swiper-button-next {
  margin: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.program-nav .swiper-button-prev {
  background-color: rgba(161, 61, 199, 1);
}

.program-nav .swiper-button-next {
  background-color: rgba(146, 28, 191, 1);
}

.program-nav .swiper-button-prev:after,
.program-nav .swiper-rtl .swiper-button-next:after,
.program-nav .swiper-button-next:after,
.program-nav .swiper-button-prev:after {
  font-size: 1.5rem;
  color: #fff;
}


@media (max-width: 1299.98px) {
  .program-wrap .tab-left-nav {
    padding-left: 0;
  }
}

@media (max-width: 1199.98px) {
}

@media (max-width: 991.98px) {
  .program-wrap {
    /* margin-top: 80px; */
  }
  
  .program-wrap .tab-left-nav {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .program-wrap .tab-left {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
  
  .program-wrap .tab-left::before,
  .program-wrap .tab-left::after {
    opacity: 0.3;
  }
  
  .program-wrap .tab-left::after {
    width: 30vw;
    height: auto;
    aspect-ratio: 327 / 200;
    right: 0;
  }
  
  .program-wrap .tab.nav.tab-left-nav::-webkit-scrollbar {
    display: none;
  }
  
  .program-wrap .tab-item {
    flex: 1 0 auto;
    min-width: 160px;
  }
  
  .program-wrap .tab-btn {
    padding-right: 3rem;
  }
  
  .program-panel {
    padding-left: 0;
  }
  
  .marquee-wrap {
    position: static;
  }
  
  .marquee-text {
    font-size: 5rem;
  }
  
  .program-wrapper {
    margin-bottom: 3rem;
  }
  
  .program-panel .swiper-pagination {
    display: none;
  }
}

@media (max-width: 767.98px) {}

@media (max-width: 575.98px) {}




/* =========================================================
   partners
========================================================= */
.partners{
  border-top: 1px solid rgb(var(--border-box-rgb));
  border-bottom: 1px solid rgb(var(--border-box-rgb));
}

.partners-wrap {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}

.partners-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-right: 3rem;
  position: relative;
}

.partners-content::after {
  content: '';
  position: absolute;
  right: 0;
  height: 100%;
  border-right: 1px solid rgb(var(--border-divider-rgb));
}

.partners-title{
  margin: 0;
  font-size: 1.25rem;
}

.partners-media {
  flex: 1;
  overflow: hidden;
}

.partners-list {
  transition-timing-function: linear !important; 
}

.partners-list .swiper-slide {
  width: auto;
  flex-shrink: 0;   
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-item img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partners .autoplay-btn {
  color: #333;
}

.partners-content .swiper-button-next,
.partners-content .swiper-button-prev{
  position: static;
  margin: 0;
}

.partners-content .swiper-button-next:after,
.partners-content .swiper-button-prev:after {
  color: var(--color-gray-dark-hex);
  font-size: 1rem;
  font-weight: 600;
}

/* -------------------- 반응형 -------------------- */
@media (max-width: 767.98px) {
  .partners-wrap {
    flex-direction: column;
    gap: 1rem;
  }
  
  .partners-content {
    width: 100%;
    padding-right: 0;
    justify-content: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgb(var(--border-divider-rgb));
  }
  
  .partners-content::after {
    content: none;
  }
  
  .partners-media {
    width: 100%;
  }
  
  .partners-list .swiper-slide {
	  padding: 0 1rem;
  }
	
  .partners-item img {
  	max-height: 28px;
  }
}