@charset "utf-8";

/* 회사 팀 개인 */
.team_wrap{margin-top: 130px;}
.team_wrap > ul{
  display: flex;
  justify-content: space-between;
}
.team_wrap > ul > li{
  background: var(--background);
  padding: 60px 40px;
  border-radius: 40px;
  width: 32%;
  box-sizing: border-box;
  text-align: center;
}
.team_wrap > ul > li > img{width: 40px;}
.team_wrap > ul > li > p{
  margin: 30px 0;
  font-weight: 700;
  font-size: 18px;
}
.team_wrap > ul > li > span{
  color: #777;
  line-height: 30px;
}





/* 채용 중인 포지션 */
.hire_wrap > ul > li{
  background: var(--background);
  padding: 40px;
  border-radius: 40px;
  position: relative;
}
.hire_wrap > ul > li:not(:last-child){margin-bottom: 30px;}

.career_tit{position: relative;}
.career_tit > div > h3{margin-bottom: 15px;}
.career_tit > div > p{color: #777;}
.career_tit > .feather{
  width: 21px; height: 21px;
}

.career_txt{
  padding-top: 80px;
  display: none;
}
.career_txt > h4{margin-bottom: 15px;}
.career_txt > p{
  margin-bottom: 60px; 
  color: #777; 
  line-height: 30px;
}
.carrer_txt > div{
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
}
.career_txt > div > input[type="button"]{margin-right: 7px;}



.hire_none{text-align: center;}









@media (hover:hover) {
  .career_txt > input[type="button"]:hover{background: #0E40A1;}
}













/* tablet 해상도 */
@media screen and (min-width:767px) and (max-width:1536px) {

/* 회사 팀 개인 */
.team_wrap > ul{display: block;}
.team_wrap > ul > li{
  padding: 30px;
  border-radius: 30px;
  width: 100%;
  margin-bottom: 30px;
}




/* 채용 중인 포지션 */
.hire_wrap > ul > li{
  padding: 30px;
  border-radius: 30px;
}

}













/* mobile 해상도 */
@media screen and (max-width:767px) {

.team_wrap{margin-top: 42px;}

/* 회사 팀 개인 */
.team_wrap > ul{
  display: block;
  justify-content: center;
}
.team_wrap > ul > li{
  padding: 20px;
  border-radius: 20px;
  width: 100%;
}
.team_wrap > ul > li:not(:last-child){margin-bottom: 15px;}
.team_wrap > ul > li > img{width: 25px;}
.team_wrap > ul > li > p{
  margin: 15px 0;
  font-weight: 700;
  font-size: 16px;
}





/* 채용 중인 포지션 */
.hire_wrap > ul > li{
  padding: 20px;
  border-radius: 20px;
}
.hire_wrap > ul > li:not(:last-child){margin-bottom: 15px;}

.career_tit > i{
  position: absolute;
  top: 50%; right: 0px;
  transform: translateY(-50%);
  font-size: 18px;
}

.career_txt{
  padding-bottom: 60px;
  display: none;
}
.career_txt > p{
  margin-bottom: 30px; 
  color: #777; 
  font-size: 12px;
  line-height: 20px;
}
.career_txt > input[type="button"]{
  padding: 9px 13px;
  border-radius: 7px;
}


.hire_none{text-align: center;}

}