.items_pic{
  width: 100%;
  text-align: center;
  paddign: 0;
  margin: 0;
}
.items_pic img{
  max-width: 100%;
  height: auto;
}
.items_icons{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
  padding: 2rem 0;
  margin: 0 auto;
}
.items_icons div img{
  transition-duration: .5s;
}
.items_icons div:hover img{
  transform: rotateY(180deg);
}
.items_icons h1{
  position: relative;
  font-family: 'Jost','Roboto','GmarketSansMedium','Pretendard', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: #6bad7b;
  padding: 1rem 0;
  margin: 0;
  text-align: center;
  transition-duration: .5s;
}
.items_icons h1::after{
  position: absolute;
  content: '';
  top: 0;
  left: 50%;
  width: 1px;
  height: 10px;
  background-color: #c1e1c9;
  z-index: 10;
  transform: translateX(-50%);
  transition-duration: .5s;
}
.items_icons div:hover h1{
  font-size: 1.3rem;
  color: #007c66;
  padding-top: 2rem;
}
.items_icons div:hover h1::after{
  height: 30px;
  background-color: #38a763;
}
.items_icons h1 span{
  font-weight: 400;
  font-size: 1.4rem;
}
@media (max-width: 767.98px) {
  .items_icons{
    gap: .5rem;
    padding: 0;
  }
  .items_icons div{
    flex-grow: 1;
  }
  .items_icons div img{
    width: 100%;
  }
  .items_icons div:hover h1{
    font-size: 1.1rem;
  }
  .items_icons h1 span{
    font-size: 1.2rem;
  }
}

.items_wrap{
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  padding: 0;
  margin: 2rem 0 0 0;
  word-break:keep-all; 
  word-wrap:break-word;
}
.items_wrap .item{
  display: flex;
  gap: 2rem;
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: #fff;
  border-radius: 5rem;
  box-shadow: 3px 3px rgb(245, 245, 245, .5);
  overflow: hidden;
}
.items_wrap .item .tt_wrap{
  min-width: 30%;
  padding: 2rem 2rem 2rem 4rem;
  margin: 0;
}
.items_wrap .item:nth-child(odd){
  border: 1px solid rgb(248, 247, 236);
}
.items_wrap .item:nth-child(even){
  border: 1px solid rgb(236, 242, 248);
}
.items_wrap .item:nth-child(odd) .tt_wrap{
  background-color: rgb(248, 247, 236);
}
.items_wrap .item:nth-child(even) .tt_wrap{
  background-color: rgb(236, 242, 248);
}
.items_wrap .item .tt_wrap h1{
  font-family: 'GmarketSansMedium','Pretendard', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-size: 1.6rem;
  padding: 0;
  margin: 0;
}
.items_wrap .item .tt_wrap .eng{
  font-family: 'Jost','Roboto','GmarketSansMedium','Pretendard', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-size: 1rem;
  font-weight: 300;
  padding: 0;
  margin: 0;
}
.items_wrap .item:nth-child(odd) .tt_wrap .eng{
  color: rgb(192, 186, 122);
}
.items_wrap .item:nth-child(even) .tt_wrap .eng{
  color: rgb(100, 139, 177);#629a83;
}
.items_wrap .item .con_wrap{
  padding: 2rem 2rem 2rem 4rem;
  margin: 0;
}
@media (max-width: 767.98px) {
  .items_pic{
    margin-top: -1rem;
  }
  .items_wrap{
    gap: 1rem;
  }
  .items_wrap .item{
    flex-direction: column;
    gap: 0;
    border-radius: 1.5rem;
  }
  .items_wrap .item .tt_wrap{
    display: flex;
    gap: 1rem;
    padding: 1rem 2rem;
  }
  .items_wrap .item .tt_wrap h1{
    font-size: 1.4rem;
  }
  .items_wrap .item .tt_wrap .eng{
    font-size: 1.1rem;
  }
  .items_wrap .item .con_wrap{
    padding: 1rem 2rem;
  }
  .items_wrap .item .con_wrap{
    font-size: .95rem;
    line-height: 1.3;
  }
}