

/*  */

.form-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.card-title {
    font-size: 1.25rem; 
    font-weight: 600; 
    color: darkslategrey; 
    margin: 0;
}
.instrument-from-custom {
    margin-bottom: 0 !important;
    margin-right: 10px !important;
}
.method-name{
    font-size: 14px;
    font-weight: 600;
}

.section{
    margin: 40px 0px;
}

.ins-title{
    font-weight: 700;
    margin: 19px 0px;
}
.inst_img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: left center;
}
.inst_desc_bg {
  position: absolute; 
  top: 20%; 
  left: 50%; 
  transform: translateY(0%); 
  background-color: rgba(255, 255, 255, 0.8); 
  padding: 1rem;
}
.inst_desc_fnt {
  font-size: 1rem;
}

/* 서브 네브 바 스타일 */
.sub-navbar {
    width: 100%; /* 화면 전체 너비 */
    background-color: #044489; /* 파란색 배경 */
    text-align: center; /* 메뉴 가운데 정렬 */
    padding: 10px 0; /* 상하 패딩 */
  }
  
  /* 메뉴 리스트 스타일 */
  .sub-navbar-menu {
    list-style: none; /* 리스트 스타일 제거 */
    margin: 0; /* 여백 제거 */
    padding: 0; /* 여백 제거 */
    display: inline-block; /* 가운데 정렬을 위한 블록 */
  }
  
  .sub-navbar-menu li {
    display: inline; /* 가로 정렬 */
    margin: 0 15px; /* 메뉴 사이 간격 */
  }
  
  .sub-navbar-menu a {
    text-decoration: none; /* 밑줄 제거 */
    color: white; /* 흰색 텍스트 */
    font-size: 16px; /* 폰트 크기 */
    font-weight: bold; /* 폰트 굵기 */
  }
  
  /* 모바일에서는 숨기기 */
  @media (max-width: 768px) {
    .sub-navbar {
      display: none;
    }
    .inst_img {
      height: 150px;
    }
    .inst_desc_bg {
      position: static; 
    }
    .inst_desc_fnt {
      font-size: 0.8rem;
    }
  }

