/**************
 * Typography *
 **************/

/* Different font for any titles */
@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@300;400;700&display=swap');

:root {
--font-family: "Kumbh Sans";
}


/*******************
 * Color and Style *
 *******************/

/* Type here to edit */

/**********
 * Header *
 **********/

/* Below code only applies to larger screens */
@media (min-width: 1199px) {
  /* smaller search bar */
  .header .header-stripe .search {
    width: 300px;
  }
  /* hide country icon */
  .selected-icon {
    display: none;
  }
  /* hide currency icon */
  .selected-sign {
    display: none;
  }
}

/******************
 * Homepage Banner *
 *******************/

/* adds a see-through background to title text - only change rgb values */
.title-area {
  background: rgba(0, 0, 0, 0.25);
  /* also ensure to add the below text shadow for dark backgrounds */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

/* bold titles text - looks better with some fonts than others */
.promotion-item .title {
    font-weight: bold;
  }
  .promotion-item .subtitle {
    font-weight: bold;
  }

/* bold CTA button text */
.button-primary {
  font-weight: bold;
}

/***************************
 * Important Notice Banner *
 ***************************/

.homepage-banner {
  display: block !important;
}
.homepage-banner:after {
  content: "SEASONAL GREETINGS TO ALL OF OUR CUSTOMERS. Please note that we are now closed for the Christmas & New Year holiday. Limited support cover will be provided on Fri, 27th & Mon, 30th Dec 10.00-16.00hrs, with normal opening from Thu, 2nd Jan 2025.";
  white-space: pre-wrap;
}