@import url('https://fonts.googleapis.com/css2?family=Nanum+Brush+Script&display=swap');

.tt_wrap{
  padding: 0;
  margin: 4rem 0;
}
.tt_wrap h1{
  font-family: "Nanum Brush Script", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 3.0rem;
  color: #0c6d41;
  word-break:keep-all; 
  word-wrap:break-word;
  padding: 0;
  margin: 0;
}
.tt_wrap p{
  font-family: 'GmarketSansMedium','Pretendard', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-size: .9rem;
  color: #5b5b5b;
  word-break:keep-all; 
  word-wrap:break-word;
  padding: 0;
  margin: .5rem 0 0 0 !important;
}
.pic_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 2rem 1rem;
  width: 100%; 
  padding: 0;
  margin: 0;
}
.pic_wrap .pic {
  width: 30%;
  word-break:keep-all; 
  word-wrap:break-word;
  padding: 1rem;
  margin: 0 auto;
  text-align: center;
  background-color: #f6f6f6;
  border-radius: .5rem;
}
.pic_wrap .pic img{
  width: 100%;
  transition-duration: .5s;
}
.pic_wrap .pic .t{
  font-size: 1.05rem;
  text-align: center;
  padding: 1rem 0;
  margin: 0;
}
.pic_wrap .pic:hover {
  background-color: #397058;
  border-radius: 1rem;
  transition-duration: .2s;
}
.pic_wrap .pic:hover img {
  transform: scale(.9);
  filter: drop-shadow(5px 5px 5px #264d3c);
}
.pic_wrap .pic:hover .t {
  color: #fff;
  transition-duration: .2s;
}
.bt_wrap {
  padding: 0;
  margin: 5rem auto 2rem auto;
  text-align: center;
}
.bt_wrap a{
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  margin: 0 auto;
  width: 30%;
  font-family: 'GmarketSansMedium','Pretendard', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-size: 1rem;
  color: #fff;
  background-color: #0c6d41;
  border: 1px solid #095c36;
  /* border-radius: 5rem; */
  transition: all .2s;
}
.bt_wrap a:hover{
  background-color: #095c36;
  width: 40%;
  padding: 1rem 5%; 
}
@media (max-width: 991.98px) {
  .pic_wrap .pic{
    width: 45%;
  }
}
@media (max-width: 767.98px) {
  .tt_wrap{
    margin: 1rem 0 2rem 0;
  }
  .pic_wrap{
    gap: 1rem;
  }
  .pic_wrap .pic{
    width: 100%;
    background-color: #f3f3f3;
  }
  .bt_wrap a{
    width: 70%;
  }
  .bt_wrap a:hover{
    width: 100%;
    padding: 1rem 15%; 
  }
}