@charset "utf-8";

/* navi */

.navi {
  width: 100%;
  top: 0;
  position: fixed;
  z-index: 9999;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(5px);
  padding: 20px 0;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.pc_navi_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#gnb.shadow {
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.08);
}

.pc_navi_wrap .menu,
.navi .navi_btns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.pc_navi_wrap .menu {
  gap: 45px;
}

.pc_navi_wrap .menu li a {
  position: relative;
}

.pc_navi_wrap .menu li a::before {
  position: absolute;
  content: '';
  width: 0%;
  height: 3px;
  background: var(--po-color);
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  transition: .2s ease-in-out;
}

.pc_navi_wrap .menu li:hover a::before {
  width: 80%;
}

.pc_navi_wrap .navi_btns button {
  font-size: 1.6rem;
  font-family: 'Pretendard';
  font-weight: 600;
  color: #333;
  background: none;
  border: none;
}

.pc_navi_wrap .navi_btns .login {
  background: #3159F9;
  padding: 5px 20px;
  border-radius: 50px;
  color: #fff;
  font-weight: 400;
}





/* footer */
footer {
  background: linear-gradient(to bottom, #ffffff 0%, #eeeeee 100%);
  margin-top: 20vh;
}

.foot_wrap {
  border-top: 1px solid #ddd;
  box-sizing: border-box;
  padding: 30px 20px;
}

.foot_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.foot_1 {
  width: 65%;
  display: flex;
  align-items: center;
}

.foot_wrap .foot_logo {
  text-align: center;
  width: 260px;
  margin-right: 20px;
}

.foot_wrap .foot_logo img {
  filter: grayscale(1);
  opacity: .6;
}

.foot_wrap .foot_body {
  width: 596px;
  font-weight: 300;
  color: #888;
  display: flex;
  flex-direction: column;
}

.foot_wrap .foot_body .terms_info {
  display: flex;
}

.foot_wrap .foot_body .terms_info a {
  position: relative;
  display: block;
  padding: 15px 0px;
  font-weight: 400;
  margin-right: 40px;
  border-bottom: 0;
  color: #888;
}

.foot_wrap .foot_body .terms_info .info a {
  color: #333;
  font-weight: 600;
}

.foot_wrap .foot_body .terms_info .info a::before {
  position: absolute;
  content: '';
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: #888;
}

.foot_wrap .foot_body .terms_info li a::after {
  position: absolute;
  content: '';
  bottom: 10px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--po-color);
  transition: .2s ease-in-out;
}

.foot_wrap .foot_body .terms_info li a:hover::after {
  position: absolute;
  content: '';
  bottom: 10px;
  left: 0;
  width: 100%;
  background: var(--po-color);
}

.foot_wrap .foot_body .terms_info li a:hover {
  color: var(--po-color);
}

.foot_body .comp_info {
  display: flex;
  flex-wrap: wrap;
}

.foot_body .comp_info li {
  margin-right: 20px;
  margin-top: 10px;
}



@media screen and (min-width:971px) {
  .mob_navi_wrap {
    display: none;
  }
}

@media screen and (max-width:970px) {
  .pc_navi_wrap {
    display: none;
  }

  /*
  .mob_navi_wrap{
    display: block;
  }
  */
  .back_color {
    top: 7vh;
  }


  html {
    font-size: 8px;
  }

  #gnb {
    height: auto;
    background: rgba(255, 255, 255, .9)
  }

  .navi_wrap {
    align-items: center;
  }

  .back_color.navi_bg {
    top: 50px;
  }

  .navi_wrap {
    padding: 15px 20px;
  }

  #navi_logo img {
    width: 80px;
  }

  .navi_wrap .menu_btn.btn_toggle span::before,
  .navi_wrap .menu_btn.btn_toggle span::after {
    top: 50%;
  }

  .navi_wrap .menu_btn {
    width: 60px;
  }

  .navi_wrap .menu_btn span::before,
  .navi_wrap .menu_btn span::after {
    height: 2px;
    width: 60px;
    top: 60%;
  }

  .navi_wrap .menu_btn span::after {
    top: 40%;
  }

  .navi_menu.visible {
    top: 0;
  }

  .navi_wrap .navi_menu .introduce {
    border-radius: 10px;
  }

  .navi_wrap .navi_menu {
    flex-wrap: wrap;
    gap: 20px 4%;
    margin-top: 45px;
    padding-bottom: 20px;
    max-height: 95vh;
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .navi_wrap .navi_menu .main_menu {
    order: 2;
    width: 200px;
    margin-bottom: 80px;
  }

  .navi_wrap .navi_menu .main_menu>li>a {
    font-weight: 700;
    font-size: 3.4rem;
  }

  .navi_wrap .navi_menu .introduce p {
    font-size: 3.6rem;
    font-weight: 700;
  }

  .login_signup {
    order: 1;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 10px;
  }

  .login_signup a {
    font-size: 3rem;
  }

  .navi_wrap .navi_menu .introduce {
    width: 100%;
    height: 70px;
    /* padding: 20px 0; */
  }

  .navi_wrap .navi_menu .introduce p {
    display: block;
  }

  .navi_wrap .navi_menu .introduce p>img {
    bottom: 2px;
    right: 10px;
  }

  .navi_wrap .navi_menu .introduce p>span {
    right: 55px;
    bottom: 18px;
    font-size: 2rem;
    font-weight: 400;
  }

  .navi_wrap .navi_menu .sub_menu a {
    margin-top: 15px;
    font-size: 2.2rem;
  }

  .navi_wrap .navi_menu .main_menu .navi_line {
    display: none;
  }

  .main_menu>li {
    margin-top: 30px;
    text-align: right;
  }

  .main_menu>li:first-child {
    margin-top: 0;
  }

  .navi_wrap .navi_menu .main_menu>li>a {
    width: 190px;
    box-sizing: border-box;
  }

  .navi_wrap .navi_menu .main_menu>li a {
    margin-right: 10px;
  }

  /* footer */
  .foot_wrap {
    align-items: center;
    flex-direction: column;
    gap: 25px;
  }

  .foot_1 {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .foot_wrap .foot_logo {
    width: auto;
    margin-right: 0;
  }

  .foot_wrap .foot_logo img {
    width: 90px;
  }

  .foot_wrap .foot_body {
    width: 100%;
    /* align-items: center; */
  }

  /* .foot_wrap .foot_body .terms_info a{
    margin-right: 0;
  }
  .foot_wrap .foot_body .terms_info .terms a{
    margin-right: 20px;
  } */

}