    body{
      background-color: #d0f9db !important;
    }

    .nav-item{
      border:3px solid black;
      background-color: #fff;
      margin:15px 20px;
      font-weight:bold;
    }
    .nav-link{
      color:#000 !important;
      font-family: "Oleo Script", system-ui;
    }
    .nav-link.active{
      background-color: grey;
    }


    .prod_wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      border:3px dashed green;
      margin:20px 0;
    }

    .hexagon {
      margin:20px 0;
      width: 200px;
      aspect-ratio: 1;
      background-image: url('../images/tea1.jpg'); /* Replace with your image */
      background-size: cover;
      background-position: center;
      clip-path: polygon(
        50% 0%,
        93% 25%,
        93% 75%,
        50% 100%,
        7% 75%,
        7% 25%
      );
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }

    .hexagon1 {
      margin:20px 0;
      width: 200px;
      aspect-ratio: 1;
      background-image: url('../images/tea2.jpg'); /* Replace with your image */
      background-size: cover;
      background-position: center;
      clip-path: polygon(
        50% 0%,
        93% 25%,
        93% 75%,
        50% 100%,
        7% 75%,
        7% 25%
      );
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }

    .hexagon2 {
      margin:20px 0;
      width: 200px;
      aspect-ratio: 1;
      background-image: url('../images/tea3.jpg'); /* Replace with your image */
      background-size: cover;
      background-position: center;
      clip-path: polygon(
        50% 0%,
        93% 25%,
        93% 75%,
        50% 100%,
        7% 75%,
        7% 25%
      );
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }

    .hexagon3 {
      margin:20px 0;
      width: 200px;
      aspect-ratio: 1;
      background-image: url('../images/tea4.jpg'); /* Replace with your image */
      background-size: cover;
      background-position: center;
      clip-path: polygon(
        50% 0%,
        93% 25%,
        93% 75%,
        50% 100%,
        7% 75%,
        7% 25%
      );
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }

    .hexagon4 {
      margin:20px 0;
      width: 200px;
      aspect-ratio: 1;
      background-image: url('../images/tea5.jpg'); /* Replace with your image */
      background-size: cover;
      background-position: center;
      clip-path: polygon(
        50% 0%,
        93% 25%,
        93% 75%,
        50% 100%,
        7% 75%,
        7% 25%
      );
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }

    .hexagon5 {
      margin:20px 0;
      width: 200px;
      aspect-ratio: 1;
      background-image: url('../images/tea6.jpg'); /* Replace with your image */
      background-size: cover;
      background-position: center;
      clip-path: polygon(
        50% 0%,
        93% 25%,
        93% 75%,
        50% 100%,
        7% 75%,
        7% 25%
      );
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }



    .equal-sign {
      font-size: 48px;
      font-weight: bold;
      color: #555;
    }

    .description {
      max-width: 400px;
      font-size: 18px;
      color: #333;
    }
    .hex_wrap{
      position: relative;
    }
    .hex_para{
      position: absolute;
      bottom:10px;
      left:50%;
      transform: translateX(-50%);
      clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
      background-color: red;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 120px;
      color:#fff;
      font-weight: bold;
    }
    

    @media only screen and (max-width: 767px){
            .prod_wrap {
              flex-direction: column !important;
              gap:20px !important;
              padding: 10px !important;
            }
            .equal-sign{
              transform: rotate(90deg) !important;
            }
    }