.banner {
  position: relative;
  background: rgba(21, 46, 86, 0.79);
  height: 295px;
  text-align: center;
}
.banner .min-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.banner .wrap-h1,
.banner .wrap-desc {
  color: #fff;
}
.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 60px;
  z-index: 1;
  width: 230px;
  height: 253px;
  background: url(../../img/public-banner-before.svg) no-repeat;
  background-size: 100% 100%;
}
.banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 45px;
  z-index: 1;
  width: 246px;
  height: 200px;
  background: url(../../img/public-banner-after.svg) no-repeat;
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  .banner {
    height: auto;
    padding: 45rem 0;
  }
  .banner::before,
  .banner::after {
    display: none;
  }
}
.wrap-1 {
  margin-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .wrap-1 {
    margin-top: 60rem;
  }
}
.wrap-1 .flex-wrapper {
  justify-content: center;
  gap: 86px;
}
.wrap-1 .wrap-item {
  width: 375px;
  height: 146px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border-radius: 10px;
  border: 1px solid #f5a253;
  background: #fdf3ea;
}
.wrap-1 .wrap-item:hover .wrap-item_img {
  transform: translateY(-10px);
}
.wrap-1 .wrap-item_img {
  margin-top: -28px;
  transition: transform linear 0.2s;
}
.wrap-1 .wrap-item_title {
  font-size: 26px;
  color: #152e56;
}
.wrap-1 .wrap-item_content {
  font-size: 20px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .wrap-1 {
    padding-bottom: 50rem;
  }
  .wrap-1 .flex-wrapper {
    gap: 50rem;
  }
  .wrap-1 .wrap-item {
    width: 345rem;
    height: 146rem;
    gap: 15rem;
    border-radius: 10rem;
    border: 1rem solid #f5a253;
  }
  .wrap-1 .wrap-item:hover .wrap-item_img {
    transform: translateY(0);
  }
  .wrap-1 .wrap-item_img {
    margin-top: -28rem;
  }
  .wrap-1 .wrap-item_title {
    font-size: 26rem;
  }
  .wrap-1 .wrap-item_content {
    font-size: 20rem;
  }
}
