.small_banner_content{
  .small_banner_item{
    display:flex;
    gap:26px;
    align-items:center;
    justify-content: center;
    border-radius:var(--radius24);
    background: linear-gradient(90deg, #F3F2ED 0%, #EAE1D7 100%);
    flex-flow: row wrap;
    height: 150px;
    @media screen and (width <= 680px){
      padding: 22px;
      height:auto;
    }
    .small_banner_img{
      position: relative;
      top: -24px;
      @media screen and (width <= 680px){
        display:none;
      }
    }
    #small_banner_img_mobile{
      display:none;
      @media screen and (width <= 680px){
       display:block;
      }
    }
    .small_banner_info{
      display:flex;
      flex-direction:column;
      gap:12px;
      width: 100%;
      max-width: 868px;
      .small_banner_title{
        font-weight: 400;
        font-size: var(--font-size32);
        line-height: 100%;
        letter-spacing: -0.03rem;
      }
      .small_banner_text{
        font-weight: 400;
        font-size: var(--font-size14);
        line-height: 150%;
        letter-spacing: 0;
        color:var(--grey-73);

      }
    }
  }
}