/* TESTIMONIALS CSS START */
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

    .cp-testimonials{
      background:#fff;
      color:#000;
      padding:90px 24px 110px;
      font-family:'Space Mono', monospace;
    }

    .cp-testimonials *{
      box-sizing:border-box;
    }

    .cp-testimonials-wrap{
      max-width:1400px;
      margin:auto;
    }

    .cp-testimonials-top{
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding-bottom:80px;
      border-top:1px solid rgba(0,0,0,.08);
      padding-top:20px;
      font-size:13px;
      font-weight:300;
    }

    .cp-testimonials-grid{
      display:grid;
      grid-template-columns:.55fr 1fr;
      gap:90px;
    }

    .cp-testimonials-head{
      position:sticky;
      top:120px;
      align-self:start;
    }

    .cp-testimonials-head h2{
      font-family:Inter, Arial, sans-serif;
      font-size:clamp(42px,5vw,68px);
      letter-spacing:-4px;
      line-height:.95;
      margin:0 0 22px;
      font-weight:300;
    }

    .cp-subline{
      display:flex;
      gap:14px;
      align-items:flex-start;
      color:rgba(0,0,0,.45);
      text-transform:uppercase;
      font-size:16px;
      line-height:1.35;
    }

    .cp-subline:before{
      content:"";
      width:9px;
      height:28px;
      background:#ff4b15;
      flex:0 0 auto;
      margin-top:1px;
    }

    .cp-review-list{
      width:100%;
    }

    .cp-review{
      display:grid;
      grid-template-columns:110px 1fr 1fr;
      gap:42px;
      padding:17px 0 18px;
      border-top:1px solid rgba(0,0,0,.12);
    }

    .cp-review:last-child{
      border-bottom:1px solid rgba(0,0,0,.12);
    }

    .cp-review-num{
      font-size:15px;
      font-weight:300;
      display:flex;
      gap:12px;
      align-items:flex-start;
      white-space:nowrap;
    }

    .cp-stars{
      color:#ff4b15;
      letter-spacing:1px;
      font-size:13px;
      line-height:1.2;
    }

    .cp-client{
      font-size:14px;
      font-weight:300;
      line-height:1.35;
    }

    .cp-review-text{
      font-family:Inter, Arial, sans-serif;
      font-size:14px;
      line-height:1.18;
      color:rgba(0,0,0,.78);
      max-width:330px;
    }

    @media(max-width:1000px){
      .cp-testimonials-grid{
        grid-template-columns:1fr;
        gap:50px;
      }

      .cp-testimonials-head{
        position:relative;
        top:auto;
      }
    }

    @media(max-width:750px){
      .cp-testimonials{
        padding:60px 18px 80px;
      }

      .cp-testimonials-top{
        padding-bottom:55px;
      }

      .cp-review{
        grid-template-columns:1fr;
        gap:12px;
        padding:24px 0;
      }

      .cp-review-num{
        justify-content:space-between;
      }

      .cp-review-text{
        max-width:100%;
        font-size:15px;
        line-height:1.35;
      }
    }

/* TESTIMONIALS CSS END */
