
    /* SECTION */

    .analytics-section{
      padding:90px 0;
    }

    /* HEADER */

    .analytics-header{
      max-width:850px;
      margin:auto;
      text-align:center;
      margin-bottom:70px;
    }

    .analytics-title{
      font-size:4.5rem;
      line-height:1.05;
      font-weight:400;
      color:#111;
      margin-bottom:28px;
    }

    .analytics-text{
      max-width:720px;
      margin:auto;
      font-size:1.2rem;
      line-height:1.8;
      color:#444;
      margin-bottom:38px;
    }

    /* BUTTONS */

    .analytics-btn-primary{
      border-radius:50px;
      padding:12px 28px;
      border:1px solid #ddd;
      background:#fff;
      color:#111;
      text-decoration:none;
      font-weight:500;
      transition:0.3s ease;
    }

    .analytics-btn-primary:hover{
      background:#111;
      color:#fff;
    }

    .analytics-link{
      text-decoration:none;
      color:#111;
      font-weight:500;
      display:inline-flex;
      align-items:center;
      gap:8px;
    }

    /* TABS */

    .analytics-tabs{
      display:flex;
      justify-content:center;
      gap:35px;
      flex-wrap:wrap;
    }

    .analytics-tab{
      border:none;
      background:none;
      font-size:16px;
      color:#555;
      padding-bottom:12px;
      position:relative;
      transition:0.3s ease;
    }

    .analytics-tab:hover{
      color:#111;
    }

    .analytics-tab.active{
      color:#111;
    }

    .analytics-tab.active::after{
      content:"";
      position:absolute;
      left:0;
      bottom:0;
      width:100%;
      height:2px;
      background:#999;
    }

    /* CARD */

    .analytics-card{
      background:#fff;
      border:1px solid #ddd;
      border-radius:28px;
      overflow:hidden;
    }

    /* CONTENT */

    .analytics-content{
      padding:80px 70px;
      height:100%;
      display:flex;
      flex-direction:column;
      justify-content:center;
    }

    .analytics-content h3{
      font-size:3.5rem;
      line-height:1.08;
      font-weight:400;
      margin-bottom:28px;
      color:#111;
      transition:0.3s ease;
    }

    .analytics-content p{
      font-size:18px;
      line-height:1.9;
      color:#444;
      margin-bottom:35px;
      max-width:520px;
      transition:0.3s ease;
    }

    /* IMAGE */

    .analytics-image{
      height:100%;
      overflow:hidden;
    }

    .analytics-image img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
      transition:0.4s ease;
    }

    /* TABLET */

    @media (max-width:991px){

      .analytics-title{
        font-size:3.2rem;
      }

      .analytics-content{
        padding:55px 40px;
      }

      .analytics-content h3{
        font-size:2.4rem;
      }

    }

    /* MOBILE */

    @media (max-width:767px){

      .analytics-section{
        padding:60px 0;
      }

      .analytics-header{
        margin-bottom:45px;
      }

      .analytics-title{
        font-size:2.3rem;
      }

      .analytics-text{
        font-size:1rem;
        line-height:1.7;
      }

      .analytics-tabs{
        gap:18px;
      }

      .analytics-tab{
        font-size:14px;
      }

      .analytics-content{
        padding:35px 25px;
      }

      .analytics-content h3{
        font-size:2rem;
      }

      .analytics-content p{
        font-size:15px;
        line-height:1.7;
      }

      .analytics-image img{
        min-height:300px;
      }

    }
