 /* product category block start */

 #launch-equipment img {
    height: 403px;
    width: auto;
  }



  #launch-equipment .row {
    padding-bottom: 96px;
  }


  #launch-equipment .badge {
    color: var(--Blue, #1e3c72);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    letter-spacing: 3.2px;
    text-transform: uppercase;
    border-radius: 10px;
    background: var(--Light-blue, #f5f8ff);

    position: relative;
    top: 20%;

    z-index: 5;
  }

  #launch-equipment .box-line {
    border-left: 1px solid #1e3c72;
    height: auto;
    padding-left: 48px;
  }

  #launch-equipment .box-line hr {
    display: none;
  }

  #launch-equipment h3 {
    color: var(--Blue, #1e3c72);
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    /* 111.111% */
    text-transform: uppercase;
  }

  #launch-equipment p {
    color: var(--Blue, #1e3c72);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    margin-top: 24px;
    width: 69%;
  }

  #launch-equipment .button-wrapper-product {
    margin-top: 128px !important;
  }

  #launch-equipment .button-wrapper-product a {
    color: var(--Blue, #1e3c72);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 53px;
    letter-spacing: 3.2px;
    text-transform: uppercase;
  }

  #launch-equipment .button-wrapper-product a:hover {
    color: #ca202e;
  }

  /* Hexagon button with SVG background */
  #launch-equipment .hexagon-button {
    position: relative;
    display: grid;
    width: 254px;
    height: 54px;
    background: url('<?php echo get_template_directory_uri(); ?>/assets/images/blue-hexagon-large.svg') no-repeat center !important;
    background-size: auto;
    background-size: contain;
    transition: all 0.9s ease;
    z-index: 1;
    box-sizing: border-box;
  }




  /* Hexagon button with SVG background */
  #launch-equipment .hexagon-button:hover {
    position: relative;
    display: grid;
    width: 254px;
    height: 54px;
    background: url('<?php echo get_template_directory_uri(); ?>/assets/images/red-hexagon-hero.svg') no-repeat center !important;
    background-size: auto;
    background-size: contain;
    transition: all 0.3s ease;
    z-index: 1;
    box-sizing: border-box;
  }

  /* Adding silver lines */
  #launch-equipment .hexagon-button::before,
  #launch-equipment .hexagon-button::after {
    content: "";
    position: absolute;
    width: 40px;
    /* Adjust the size of the silver lines */
    height: 6px;
    /* Thickness of the silver lines */
    background-color: #ffffff;
    /* Silver color */
    z-index: 2;
    /* Ensure they appear above the SVG background */
    transition: all 0.3s ease;
  }

  #launch-equipment .hexagon-button::before {
    top: -2px;
    left: 63%;
    transform: translateX(-50%);
    height: 6px;
    width: 37px;
  }

  #launch-equipment .hexagon-button::after {
    bottom: -2px;
    left: 37%;
    transform: translateX(-50%);
    height: 6px;
  }

  /* Hover effect */
  #launch-equipment .hexagon-button:hover {
    color: var(--blue-transparent);
    /* Change text color on hover */
  }

  #launch-equipment .hexagon-button:hover::before {
    width: 30px;
    /* Expand the silver line on hover */
    left: 68%;
    /* Adjust the left position to move to the right */
    transform: translateX(-50%) translateX(5px);
    /* Moves the line slightly to the right */
  }

  #launch-equipment .hexagon-button:hover::after {
    width: 30px;
    /* Expand the silver line on hover */
    left: 32%;
    /* Adjust the left position to move to the left */
    transform: translateX(-50%) translateX(-5px);
    /* Moves the line slightly to the left */
  }





  @media only screen and (max-width: 1200px) {
    #launch-equipment .button-wrapper-product {
      margin-top: 60px !important;
    }
  }

  @media only screen and (max-width: 768px) {





    #launch-equipment img {
      height: 264px;
      width: auto;
    }



    #launch-equipment .box-line {

      margin-top: 0px;
      border-left: 0px;
      height: auto;
      padding-left: 0px;
    }

    #launch-equipment h3 {
      margin-top: 4px;

      font-size: 30px;
      font-style: normal;
      font-weight: 600;
      line-height: 36px;
      /* 120% */

    }


    #launch-equipment .box-line hr {
      display: block;
      margin: 24px 0px;
      color: var(--Blue, #1e3c72);
      opacity: 1;
    }




    #launch-equipment .box-line p {
      width: 100%;
      margin-top: 12px;
      margin-bottom: 0px;
    }



    #launch-equipment .row {
      padding-bottom: 40px;
    }



    #launch-equipment .button-wrapper-product {
      margin-top: 24px !important;
    }








  }


  /* Default styles for switching columns */
  #launch-equipment .switch-columns .text-column {
    order: 1;
  }

  #launch-equipment .switch-columns .image-column {
    order: 2;
  }

  /* Mobile behavior: Image always first */
  @media (max-width: 768px) {
    #launch-equipment .row.switch-columns .image-column {
      order: 1 !important;
      /* Force image to be first */
    }

    #launch-equipment .row.switch-columns .text-column {
      order: 2 !important;
      /* Force text to be second */
    }
  }



  /* product category block end */