#branding-requirements {
  margin-top: 96px;
  margin-bottom: 96px;
}

#branding-requirements h2 {
  color: var(--Blue, #1e3c72);
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  /* 65px */
  text-transform: uppercase;
}

#branding-requirements p {
  color: var(--Blue, #1e3c72);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 155.556% */
}

/* Hexagon button with SVG background */
#branding-requirements .hexagon-button {
  position: relative;
  display: grid;
  width: 254px;
  height: 54px;
  background-size: auto;
  background-size: contain;
  transition: all 0.9s ease;
  z-index: 1;
  box-sizing: border-box;
  text-align: center;
  line-height: 54px;
  margin-top: 40px;
}

#branding-requirements .hexagon-button {
  color: var(--Blue, #1e3c72);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

#branding-requirements .hexagon-button:hover {
  color: #ca202e !important;
}

/* Hexagon button with SVG background */
#branding-requirements .hexagon-button:hover {
  position: relative;
  display: grid;
  width: 254px;
  height: 54px;
  background-size: auto;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 1;
  box-sizing: border-box;
}

/* Adding silver lines */
#branding-requirements .hexagon-button::before,
#branding-requirements .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;
}

#branding-requirements .hexagon-button::before {
  top: -2px;
  left: 63%;
  transform: translateX(-50%);
  height: 6px;
  width: 75px;
}

#branding-requirements .hexagon-button:hover::before {
  left: 43%;
}

#branding-requirements .hexagon-button::after {
  bottom: -2px;
  left: 37%;
  transform: translateX(-50%);
  height: 6px;
  width: 120px;
}

#branding-requirements .hexagon-button:hover:after {
  left: 47% !important;
}

/* Hover effect */
#branding-requirements .hexagon-button:hover {
  color: var(--blue-transparent);
  /* Change text color on hover */
}

#branding-requirements .hexagon-button:hover::before {
  width: 75px;
  /* Expand the silver line on hover */
  left: 50%;
  /* Adjust the left position to move to the right */
  transform: translateX(-50%) translateX(5px);
  /* Moves the line slightly to the right */
}

@media screen and (max-width: 767px) {
  #branding-requirements h2 {
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    /* 111.111% */
    text-transform: uppercase;
    margin-bottom: 40px;
  }

  #branding-requirements p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
  }
}