@import url('https://fonts.googleapis.com/css2?family=Nanum+Brush+Script&display=swap');

.tt_wrap{
  padding: 0;
  margin: 4rem 0 2rem 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;
}
.imgtt_wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 500px;
  padding: 4rem;
  margin: 0 0 5rem 0;
  font-family: 'GmarketSansLight','Pretendard', system-ui, -apple-system, "Noto Sans",  sans-serif;
  word-break: keep-all;
  word-wrap: break-word;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.imgtt_wrap h1{
  font-size: 1.7rem;
  color: #fff;
  padding: 0;
  margin: 0;
}
.imgtt_wrap h1 strong{
  /* font-family: 'GmarketSansMedium'; */
  font-size: 2.5rem;
  color: #fff200;
}
.imgtt_wrap p{
  font-size: 1.1rem;
  color: #fff;
  padding: 0;
  margin: 1rem 0 0 0;
}
.imgtt_wrap>div{
  width: 100%;
  padding: 0;
  margin: 0;
}
.imgtt_wrap a{
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  margin: 3rem 0 0 0;
  width: 40%;
  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;
}
.imgtt_wrap a:hover{
  background-color: #095c36;
  width: 50%;
  padding: 1rem 5%; 
}
.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: 40%;
  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: 50%;
  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;
  }
  .imgtt_wrap{
    height: 350px;
    padding: 2rem;
  }
  .imgtt_wrap h1{
    font-size: 1.2rem;
    color: #fff;
    padding: 0;
    margin: 0;
  }
  .imgtt_wrap h1 strong{
    font-size: 1.8rem;
  }
  .imgtt_wrap p{
    font-size: .9rem;
  }
  .imgtt_wrap a{
    margin: 3rem 0 0 0;
    width: 90%;
  }
  .imgtt_wrap a:hover{
    width: 100%;
    padding: 1rem 5%; 
  }
  .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%; 
  }
}