@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Noto+Sans+KR:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard-dynamic-subset.css');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  
}

main {
  width: 100%;
  height: auto;
}

/* ------------------------------------------------------------------------ */
header {
  border: none;
}

#uxui_category {
  width: 100%;
  position: absolute;
  left: 0;
  top: 80px;
  width: 100%;
  height: 100px;
  background: #fff;
  position: fixed;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
}

#uxui_category>ul {
  width: 30.21%;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#uxui_category>ul>li {
  width: 31.03%;
  height: 100%;
  background: #CCCCCC;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#uxui_category>ul>li:hover {
  background: #00ADA4;
  transition: background-color 0.3s ease;
}

#uxui_category>ul>li.active {
  background: #00ADA4;
  transition: background-color 0.3s ease;
}

#uxui_category>ul>li>a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#uxui_category>ul>li>a>span {
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.198px;
}

/* ------------------------------------------------------------------------ */
#project_all {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 180px;
}

ul.project_all_box {
  width: 100%;
  height: auto;
  margin-top: 100px;
  margin-bottom: 100px;
}

ul.project_all_box>li {
  width: 100%;
  height: auto;
  margin-top: 40px;
}

ul.project_all_box>li:first-child {
  margin-top: 0;
}

ul.project_all_box>li>ul {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

ul.project_all_box>li>ul>li {
  width: 23.44%;
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  margin-left: 40px;
}

ul.project_all_box>li>ul>li:first-child {
  margin-left: 0;
}

ul.project_all_box>li>ul>li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 기본 하단 바 */
.project_infor {
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0.70);
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: height 0.4s ease;
}

.project_infor_txt {
  width: 56.89%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 기본 텍스트 */
.project_infor_txt>span,
.project_infor_txt>p {
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.198px;
  transition: opacity 0.2s ease;
  text-align: left;
}

.project_infor_txt>p {
  text-align: right !important;
}

/* 상세 영역 */
.project_infor_detail {
  width: 55.56%;
  height: 182px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  position: absolute;
}

.project_infor_detail>h3 {
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.198px;
}

.project_infor_detail_txt {
  width: 100%;
  height: 24px;
  margin-top: 15px;
  display: flex;
  align-items: center;
}

.project_infor_detail_txt>span,
.project_infor_detail_txt>p {
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.198px;
}

.project_infor_detail_txt>p {
  margin-left: 10px;
}

.detail_more_btn {
  margin-top: 40px;
}

.detail_more_btn>a {
  width: 100%;
  height: 100%;
}

.detail_more_btn>a>button {
  width: 100%;
  height: 50px;
  border: 1px solid #FFFFFF;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.detail_more_btn>a>button>p {
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.198px;
}

.detail_more_btn>a>button:hover {
  width: 100%;
  height: 50px;
  background: #00ADA4;
  transition: background-color 0.3s ease;
}

/* hover 효과 */
ul.project_all_box>li>ul>li>.project_infor:hover {
  height: 100%;
}

ul.project_all_box>li>ul>li>.project_infor:hover .project_infor_txt {
  opacity: 0;
  visibility: hidden;
}

ul.project_all_box>li>ul>li>.project_infor:hover .project_infor_detail {
  opacity: 1;
  visibility: visible;
}


/* ------------------------------------------------------------------------ */

.top_move_btn {
  width: 80px;
  height: 80px;
  background: #00ADA4;
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 9999;
}

.top_move_btn>a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top_move_btn>a>span {
  color: #FFF;
  text-align: center;
  font-family: Arial;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: -0.22px;
}



/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */