/* Right align horizontal menu */
.WaGadgetMenuHorizontal .menuInner ul {
  display: flex;
  justify-content: flex-end;
}

/*Code for hover click boxes*/
.click-box {
  display: block;
  padding: 30px;
  background:#f4f4f4;
  border-radius: 15px;
  transition: 0.3s ease;
}

.click-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  color: #0000A5; /* change to any colour you want */
}

.click-box-title {
  font-size: 16px;
  font-weight: 600; /* optional */
  margin-bottom: 8px;
}

.click-box-desc {
  font-size: 12px;
  line-height: 1.4;
}
.click-box {
  text-decoration: none;
  color: inherit;
}

.click-box:hover {
  text-decoration: none;
}

.click-box * {
  text-decoration: none !important;
}

/* Click box 2*/
.click-box2 {
  display: block;
  padding: 30px;
  background: #ffffff;
  border-radius: 15px;
  transition: 0.3s ease;
  text-align: center;           /* centers everything */
  text-decoration: none;
  color: inherit;
}

.click-box2:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  color: #0000A5;
  text-decoration: none;
}

/* Image styling */
.click-box2 img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 15px auto;     /* centers image + space below */
}

/* Title styling */
.click-box2-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* Prevent underline on anything inside */
.click-box2 * {
  text-decoration: none !important;
}

.click-box2 img {
  width: 70px;      /* change this */
  height: auto;
  display: block;
  margin: 0 auto 15px auto;

  
/*Changing the global headers*/
h2 {
  font-family: 'Arial', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0;
}

h3 {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0;
}