.mo {
   display: none;
}
.bg_border {
  position: relative;
  margin: 3px 0;
}

.bg_border::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #E8E8E8;
  transform: scaleY(0.7);
  transform-origin: bottom;
}

/* 버튼 */
.bg_white_btn {
   display: inline-block;
   padding: 0 10px;
   height: 37px;
   line-height: 35px;
   border: 1px solid #17393c;
   border-radius: 7px;
   font-size: 14px;
   font-weight: 500;
}
.bg_white_btn:hover {
   border: 1px solid #17393c;
   background-color: #17393c;
   color: #fff;
}
.bg_green_btn {
   display: inline-block;
   padding: 0 10px;
   height: 37px;
   line-height: 35px;
   border: 1px solid #17393c;
   background-color: #17393c;
   color: #fff;
   border-radius: 7px;
   font-size: 14px;
   font-weight: 500;
}
.bg_green_btn:hover {
   color: #17393c;
   background-color: #fff;
}

@media (max-width: 1280px) {
   .bg_white_btn,
   .bg_green_btn {
      height: 35px;
      line-height: 33px;
      font-size: 13px;
      padding: 0 7px;
   }
}

@media (max-width: 1080px) {
   .mo {
      display: block !important;
   }
   .pc {
      display: none !important;
   }

   /* 버튼 */
   .bg_white_btn {
      border: 1px solid #b7b7b7;
      height: 33px;
      line-height: 31px;
      font-size: 12px;
      color: #969696;
   }
   .bg_green_btn {
      width:50%;
	  height: 33px;
      line-height: 31px;
      font-size: 12px;
	  text-align: center;
   }

	.mo_menu {margin:0 0 20px 0;}

	.mo .swiper_tabs .swiper-slide a {
		border-radius: 5px;
	}

}

.gray-image {
    filter: grayscale(100%);
}

/* PC에서는 숨김 */
.mobile-bottom-nav {
  display: none;
}

@media screen and (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: flex-end; /* 아이템들을 바닥 정렬 */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background-color: #ffffff;
    
    /* 박스 상단 라운드 및 그림자 효과 */
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #777777;
    flex: 1;
    height: 100%;
    padding-bottom: 5px;
  }

  /* 일반 아이콘: 24px */
  .icon-img {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    object-fit: contain;
  }

  /* AI 자가진단 특수 스타일 */
  .ai-special {
    position: relative;
    overflow: visible; /* 아이콘이 밖으로 나가도록 */
  }

  .ai-icon-wrapper {
    position: absolute;
    top: -25px; /* 위로 띄우기 */
    width: 65px;
    height: 65px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.08); /* 아이콘 전용 그림자 */
  }

  /* AI 아이콘: 40px */
  .icon-img-lg {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }

  .nav-item .label {
    font-size: 11px;
    font-weight: 500;
  }

  /* AI 자가진단 라벨 위치 조정 */
  .ai-special .label {
    margin-top: 35px; 
  }
}}