     * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Poppins", Arial, sans-serif;
        background: #f5f7ff;
      }

      /* ================= SPORTS SECTION ================= */

      .sports-section {
        width: 100%;
        background: #2c4f9e;
        padding: 70px 70px;
        color: white;
        position: relative;
        overflow: hidden;
      }

      .sports-wrapper {
        /* max-width: 1200px; */
        margin: 0 auto;
        text-align: center;
      }

      .sports-title {
        font-family: Merriweather;
        font-weight: 700;
        font-style: Bold;
        font-size: 36px;
        leading-trim: NONE;
        line-height: 100%;
        letter-spacing: 1%;

        margin-bottom: 10px;
        text-align: left;
      }

      .sports-title span {
        color: #ff2b2b;
      }

      .sports-desc {
        opacity: 0.9;
        /* max-width: 800px; */
        margin: 0 auto 50px auto;
        line-height: 1.7;
        text-align: left;

        font-family: Poppins;
        font-weight: 400;
        font-style: Regular;
        font-size: 16px;

        letter-spacing: 0%;
        vertical-align: middle;
      }

      /* ================= GRID ================= */

      .sports-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 50px 40px;
      }

      /* ================= CARD ================= */

      .sports-card {
        text-align: center;
      }

      .sports-img-wrap {
        margin: 0 auto 16px auto;
        border-radius: 60px;
        overflow: hidden;
        /* background: white; */
        /* box-shadow: 0 8px 25px rgba(0,0,0,0.25); */
      }

      .sports-img-wrap img {
        width: 100%;
        /* height: 100%; */
        object-fit: cover;
      }

      .sports-card h4 {
        font-family: Poppins;
        font-weight: 600;
        font-style: SemiBold;
        font-size: 24px;
        leading-trim: NONE;
        /* line-height: 100%; */
        letter-spacing: 1%;
        text-align: center;

        margin-bottom: 6px;
      }

      .sports-card p {
        font-family: Poppins;
        font-weight: 400;
        font-style: Regular;
        font-size: 16px;
        leading-trim: NONE;
        /* line-height: 100%; */
        letter-spacing: 1%;
        text-align: center;

        opacity: 0.9;
      
        max-width: 260px;
        margin: 0 auto;
      }

      /* ================= RESPONSIVE ================= */

      @media (max-width: 1024px) {
        .sports-section {
          padding: 70px 40px;
        }

        .sports-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 768px) {
        .sports-section {
          padding: 60px 25px;
        }

        .sports-title {
          font-size: 30px;
        }

        .sports-grid {
          grid-template-columns: 1fr;
        }

        .sports-img-wrap {
          width: 240px;
          height: 150px;
        }
      }

      @media (max-width: 480px) {
        .sports-title {
          font-size: 24px;
        }

        .sports-desc {
          font-size: 14px;
        }

        .sports-img-wrap {
          width: 220px;
          height: 140px;
        }
      }