/* ceo */
.ceo_category {
  width:100%;
  margin-top:94px;
}
.ceo_category > ul {
  display:flex;
  justify-content: center;
  gap:62px;
}
.ceo_category > ul > li {
  font-size:42px;
  font-weight: 700;
  color:var(--color-cc);
  transition:.3s;
}
.ceo_category > ul > li.choice {
  color:#111;
}
.ceo_category > ul > li:hover {
  cursor: pointer;
}
.ceo_category > ul > li:not(.choice):hover {
  color:#999;
}

/* contents */
#ceo_contents_wrap {
  width:100%;
  margin-top:140px;

  display: flex;
  justify-content: space-between;
}
.ceo_left {
  width:49%;
  position:sticky;

  height: 100vh;
  top:32px;
  transition:.3s;
}
.ceo_left > p {
  color:var(--color-66);
  font-size:20px;
}
.ceo_left h1 {
  padding:16px 0 72px;
  font-size:36px;
}
.ceo_name {
  display:flex;
  align-items:center;
  gap:20px;
  color:#111;
}
.ceo_name p:first-child {
  font-size:20px;
}
.ceo_name p:last-child {
  font-size:24px;
  font-weight: 700;
}

.ceo_right {
  width:51%;
}
.ceo_img {
  width:100%;
  height:610px;
  overflow:hidden;
}
.ceo_img img {
  width:100%;
  height:100%;
  object-fit: cover;
}
.ceo_right .txt_box {
  padding-top:100px;
}
.ceo_right .txt_box p {
  word-break: keep-all;
}
.ceo_right .txt_box p:last-child {
  padding-top:90px;
}
.ceo_right .history {
  margin-top:52px;
  width:100%;
  border-radius: 20px;
  background-color: white;
  border:solid 1px var(--color-e8);
  padding:52px 42px;
}
.his_title {
  font-size:20px;
  font-weight: 700;
}
.history ul {
  width:100%;
  padding-top:24px;
  display:flex;
  flex-wrap: wrap;
  gap:12px;
}
.history ul li {
  width:100%;
}

/* 고문소개 */
#adviser {
  width:100%;
  margin-top:140px;
  
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  justify-content: flex-start;
}

#ceo_contents_wrap.hidden,
#adviser.hidden {
  display:none;
}
.adBox {
  width:32%;
  padding:12px 12px 52px;
  border:solid 1px var(--color-e8);
  border-radius: 20px;
  margin-bottom: 30px;
}
.adImg_Box {
  width:100%;
  height:51vh;
  background-color:var(--color-f8);
  border-radius: 20px;
  position:relative;
}
.adInfo_box {
  padding:42px 30px 0;
}
.adInfo_box h2 {
  text-align:center;
  font-size:36px;
  font-weight: 700;
  padding-bottom:38px;
}
.adInfo_box > p {
  font-size: 20px;
  font-weight: 600;
  padding-bottom:24px;
}
.adInfo_box ul {
  width:100%;
  display:flex;
  flex-wrap: wrap;
  gap:12px;
}
.adInfo_box ul li {
  width:100%;
}

/*  li beofre  */
.liDot > li {
  display:flex;
}
.liDot > li::before {
  content: "";
  display:block;
  width:4px;
  height:4px;
  border-radius: 90px;
  background-color:#1d1d1f;
  margin-top:1.5%;
  margin-left:6px;
  margin-right:12px;
}
.adInfo_box .liDot > li::before {
  margin-top:2.7%;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
  .ceo_category {
    width: 100% !important;
    margin-top: 40px !important;
  }
  
  .ceo_category > ul {
    display: flex !important;
    justify-content: center !important;
    gap: 30px !important;
  }
  
  .ceo_category > ul > li {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--color-cc) !important;
    transition: .3s !important;
  }
  
  .ceo_category > ul > li.choice {
    color: #111 !important;
  }
  
  #ceo_contents_wrap {
    width: 100% !important;
    margin-top: 60px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }
  
  .ceo_left {
    width: 100% !important;
    position: static !important;
    height: auto !important;
    top: unset !important;
    order: 2 !important;
    transition: .3s !important;
  }
  
  .ceo_left > p {
    color: var(--color-66) !important;
    font-size: 16px !important;
    text-align: center !important;
  }
  
  .ceo_left h1 {
    padding: 16px 0 40px !important;
    font-size: 24px !important;
    text-align: center !important;
    line-height: 1.4 !important;
  }
  
  .ceo_name {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    color: #111 !important;
  }
  
  .ceo_name p:first-child {
    font-size: 16px !important;
  }
  
  .ceo_name p:last-child {
    font-size: 18px !important;
    font-weight: 700 !important;
  }
  
  .ceo_right {
    width: 100% !important;
    order: 1 !important;
  }
  
  .ceo_img {
    width: 100% !important;
    height: 350px !important;
    overflow: hidden !important;
  }
  
  .ceo_img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  
  .ceo_right .txt_box {
    padding-top: 40px !important;
  }
  
  .ceo_right .txt_box p {
    word-break: keep-all !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
  }
  
  .ceo_right .txt_box p:last-child {
    padding-top: 30px !important;
  }
  
  .ceo_right .history {
    margin-top: 30px !important;
    width: 100% !important;
    border-radius: 15px !important;
    background-color: white !important;
    border: solid 1px var(--color-e8) !important;
    padding: 30px 20px !important;
  }
  
  .his_title {
    font-size: 16px !important;
    font-weight: 700 !important;
  }
  
  .history ul {
    width: 100% !important;
    padding-top: 20px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }
  
  .history ul li {
    width: 100% !important;
    font-size: 14px !important;
  }
  
  /* 고문소개 모바일 */
  #adviser {
    width: 100% !important;
    margin-top: 60px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  .adBox {
    width: 100% !important;
    padding: 20px 20px 40px !important;
    border: solid 1px var(--color-e8) !important;
    border-radius: 15px !important;
  }
  
  .adImg_Box {
    width: 100% !important;
    height: 250px !important;
    background-color: var(--color-f8) !important;
    border-radius: 15px !important;
    position: relative !important;
  }
  
  .adImg_Box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 15px !important;
  }
  
  .adInfo_box {
    padding: 30px 0 0 !important;
  }
  
  .adInfo_box h2 {
    text-align: center !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    padding-bottom: 25px !important;
  }
  
  .adInfo_box > p {
    font-size: 16px !important;
    font-weight: 600 !important;
    padding-bottom: 20px !important;
  }
  
  .adInfo_box ul {
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }
  
  .adInfo_box ul li {
    width: 100% !important;
    font-size: 14px !important;
  }
  
  .liDot > li {
    display: flex !important;
  }
  
  .liDot > li::before {
    content: "" !important;
    display: block !important;
    width: 4px !important;
    height: 4px !important;
    border-radius: 90px !important;
    background-color: #1d1d1f !important;
    margin-top: 1.5% !important;
    margin-left: 6px !important;
    margin-right: 12px !important;
  }
  
  .adInfo_box .liDot > li::before {
    margin-top: 2.7% !important;
  }
}

/* 태블릿 반응형 */
@media (max-width: 1024px) and (min-width: 769px) {
  .ceo_category {
    width: 100% !important;
    margin-top: 60px !important;
  }
  
  .ceo_category > ul {
    gap: 40px !important;
  }
  
  .ceo_category > ul > li {
    font-size: 32px !important;
  }
  
  #ceo_contents_wrap {
    width: 100% !important;
    margin-top: 80px !important;
    gap: 40px !important;
  }
  
  .ceo_left {
    width: 45% !important;
    position: static !important;
    height: auto !important;
  }
  
  .ceo_left h1 {
    font-size: 28px !important;
    padding: 16px 0 50px !important;
  }
  
  .ceo_right {
    width: 55% !important;
  }
  
  .ceo_img {
    height: 450px !important;
  }
  
  .ceo_right .txt_box {
    padding-top: 60px !important;
  }
  
  .ceo_right .txt_box p {
    font-size: 15px !important;
  }
  
  .ceo_right .history {
    padding: 40px 30px !important;
  }
  
  #adviser {
    margin-top: 80px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 2% !important;
    justify-content: flex-start !important;
  }
  
  .adBox {
    width: 32% !important;
    padding: 15px 15px 40px !important;
    margin-bottom: 30px !important;
  }
  
  .adImg_Box {
    height: 40vh !important;
  }
  
  .adInfo_box {
    padding: 30px 20px 0 !important;
  }
  
  .adInfo_box h2 {
    font-size: 28px !important;
    padding-bottom: 30px !important;
  }
  
  .adInfo_box > p {
    font-size: 18px !important;
  }
  
  .adInfo_box ul li {
    font-size: 14px !important;
  }
}