/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Global Resets
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  --max-width: 110rem;
  --product-width: 32rem;
  /*--header-height: 24rem;*/

  --bright-blue: #0076BE;
  --bright-green: #74BF43;
  --dark-blue: #20419A;
  --white: #FFF;
  --silver-grey: rgba(245, 243, 243, 0.88);
  --silver-grey-solid: rgba(245, 243, 243, 1);
  --dark-grey: rgba(190, 190, 190, 0.88);
  --black: #000;
  --red: #B21E26;
  --gold: #FEC42E;
  --blue-grey: #678EA3;
}

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

/*
--- 01 TYPOGRAPHY SYSTEM

--- Font Sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30/ 36 / 44 / 52 / 62 / 74 / 86 / 98

-Font Weights:
normal
300
500
bold

-Line Heights:
Default 1

-SPACING
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

--- 02 COLOURS
- Primary
--bright-blue: #0076BE;
--bright-green: #74BF43;
--dark-blue: #20419A;

--white: #FFF;
--black: #000;

- Tints

- Accents
--red: #B21E26;
--gold: #FEC42E;
--blue-grey: #678EA3;

- Grays
--silver-grey: rgba(245, 243, 243, 0.88);

--- 03 Images
unsplash.com
uifaces

--- 04 Shadows

--- 05 Border_RADIUS

--- 06 WHITE SPACE

*/

html {
  color: #222;
  /* 10px/16px (The Default) = 0.625 = 62.5%*/
  font-size: 62.5%;
  line-height: 1;
  height: 100%;
  /*overflow-x: hidden;*/
}

body{
  height: auto;
  margin:0 auto;
  /*overflow-x: hidden;*/
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

/*https://stackoverflow.com/questions/3736807/how-do-i-remove-the-blue-styling-of-telephone-numbers-on-iphone-ios*/
a[href^="tel"]{
  color:inherit;
  text-decoration:none;
}

/* ==========================================================================
   FONT DECLARATIONS
   ========================================================================== */
@font-face {
  font-family: "Helvetica_Neue";
  src: url("../fonts/HelveticaNeue-Thin.ttf") format('truetype'),
  url("../fonts/HelveticaNeue-Thin.woff") format('woff'),
  url("../fonts/HelveticaNeue-Thin.woff2") format('woff2'),
  url("../fonts/HelveticaNeue-Thin.otf") format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica_Neue";
  src: url("../fonts/HelveticaNeue.ttf") format('truetype'),
       url("../fonts/HelveticaNeue.woff") format('woff'),
       url("../fonts/HelveticaNeue.woff2") format('woff2'),
       url("../fonts/HelveticaNeue-Regular.otf") format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica_Neue";
  src: url("../fonts/HelveticaNeue-Bold.ttf") format('truetype'),
       url("../fonts/HelveticaNeue-Bold.woff") format('woff'),
       url("../fonts/HelveticaNeue-Bold.woff2") format('woff2'),
       url("../fonts/HelveticaNeue-Bold.otf") format('opentype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica_Neue";
  src: url("../fonts/HelveticaNeue-Medium.ttf") format('truetype'),
       url("../fonts/HelveticaNeue-Medium.woff") format('woff'),
       url("../fonts/HelveticaNeue-Medium.woff2") format('woff2'),
       url("../fonts/HelveticaNeue-Medium.otf") format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica_Neue";
  src: url("../fonts/HelveticaNeue-Light.ttf") format('truetype'),
       url("../fonts/HelveticaNeue-Light.woff") format('woff'),
       url("../fonts/HelveticaNeue-Light.woff2") format('woff2'),
       url("../fonts/HelveticaNeue-Light.otf") format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/* END FONT DECLARATIONS */

/*
  COMMON
  */

.common-primary-txt h1 {
  color: var(--bright-blue);
  font-weight: 500;
  font-size: 2.4rem;
  /*text-shadow: 0 0 3px #FF0000, 0 0 5px #0000FF;*/
}

.common-secondary-txt h2 {
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.5;
  /*text-shadow: 0 0 3px #FF0000, 0 0 5px #0000FF;*/
}

.common-sub-header-txt {
  font-weight: 300;
  font-size: 3.6rem;
}

.common-main-subpage-header {
  font-weight: 300;
  font-size: 5rem;
}

.common-txt {
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  /*text-align: justify;*/
  /*word-spacing: 0.01em;*/
}

.common-justify-left {
  /*text-align: left;*/
}

.common-left-margin {
  /*margin-left: 2rem;*/
}

.common-top-margin {
  margin-top: 1rem;
}

.common-bottom-margin {
  margin-top: 2rem;
}

.common-secondary-txt-layout  h2 {
  margin-left: 3rem;
}

.common-txt-layout  p {
  font-weight: normal;
  font-size: 1.6rem;
  margin-bottom: 4rem;
  line-height: 1.5;
}

.common-box-shadow {
  box-shadow: 0 8px 6px rgba(0,0,0, 14%);
/*  */
}

/* ========================================================================
   HEADER GRID
   ========================================================================== */

/*MOBILE NAV*/
.header-mobile {
  align-self: start;
}

.btn-mobile-nav {
  /*display: flex;*/
  align-items: flex-start;
  border:none;
  background: none;
  cursor: pointer;
  display: none;
  margin-left: -5rem;
}

.icon-mobile-nav {
  color: #555555;
  z-index: 30;
}

.icon-mobile-nav svg{
  height: 4.8rem;
  width: 4.8rem;
}

/*
 <div class="icon-mobile-nav" name="menu-outline">
 <div class="icon-mobile-nav" name="close-outline">
*/
.icon-mobile-nav[name="close-outline"] {
  display: none;
}
/*MOBILE NAV*/

.main-page-layout {
  min-height: 100%;
  height: 100%;
  max-width: var(--max-width);
  min-width: var(--max-width);
}

.header {
  /* Allow for */
  max-width: calc(var(--max-width) - 4.8rem);
  /*height: var(--header-height);*/
  display: grid;
  grid-template-columns: 42rem auto 6fr auto;
  justify-content: start;
  align-content: center;
  background-color: var(--white);
  text-align: center;
  align-items: center;
  justify-items: center;
  /*height: 20rem;*/
  margin-left: 4.8rem;
  margin-top: 2.4rem;
  /*border-bottom: 0.2rem solid rgba(32, 65, 154, 5%);*/
}

.logo {
  width: 35rem;
  /*margin-left: 4.8rem;*/
  align-self: center;
  justify-self: start;
}

.header-countries {
  justify-self: start;
  margin-left: 1rem;
  margin-top: 0.5rem;
}

.header-countries-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-self: left;
  font-weight: 500;
  font-size: 1.6rem;
  justify-self: left;
  line-height: 2.6rem;
  letter-spacing: 0.1em;
}

.header-countries-list2 {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  justify-self: left;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.6rem;
  letter-spacing: 0.1em;
  /*justify-content: space-around;*/
  gap: 2.5rem;
}

/* Used to grow between the countries and Who We Are*/
.header-space {
}

.header-countries ul li {
  display: block;
  color: var(--bright-green);
  text-align: left;
  list-style-type:none;
  margin-bottom: 0.7rem;
}

.header-countries ul li:last-child {
  margin-bottom: 0.0rem;
}

.header-ice {
  justify-self: end;
  align-self: start;
  text-align: right;
  font-weight: 500;
}

.header-ice img {
  margin-left: 10rem;
  width: 50rem;
}

.header-main {
  /*height: calc(var(--header-height) - 6rem);*/
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}

.header-whoweare-primary {
  margin-top: 1rem;
}

.header-whoweare-primary h1 {
  color: var(--bright-blue);
  font-weight: 500;
  font-size: 4rem;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
  line-height: 4.5rem;
}

.header-whoweare-secondary {
  color: var(--dark-blue);
  align-self: flex-start;
  font-weight: 300;
  font-size: 3.8rem;
  line-height: 4.5rem;
  padding-left: 1rem;
}

.header-whoweare-tertiary {
  color: var(--black);
  justify-self: flex-end;
  font-size: 1.6rem;
}

.header-whoweare-tertiary h4 {
  margin-top: -1.8rem;
}

.header-whoweare-tertiary a {
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.6rem;
}

.header-whoweare-tertiary a:hover {
  color: var(--bright-green);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.6rem;
}

/*10 / 12 / 14 / 16 / 18 / 20 / 24 / 30/ 36 / 44 / 52 / 62 / 74 / 86 / 98*/

/* ========================================================================
   END HEADER GRID
   ========================================================================== */

/* ========================================================================
   MAIN NAV
   ========================================================================== */
.main-nav {
  display: grid;
  grid-template-columns: 0.6fr 0.5fr 0.6fr 0.6fr 0.8fr 0.8fr 0.6fr;
  justify-items: center;
  align-items: center;
  justify-content: space-between;
  align-content: space-between;
  text-transform: uppercase;
  max-width: calc(var(--max-width) - 9.6rem);
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  margin-left: 4.8rem;
  margin-top: 2.3rem;
  color: var(--bright-blue);
}
.main-nav-whatwedo {
  justify-self: start;
}
.main-nav-sectors {

}
.main-nav-products{

}
.main-nav-aboutus{

}
.main-nav-ourclients{

}
.main-nav-contactus{
  justify-self: end;
}
/*2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128*/
/*10 / 12 / 14 / 16 / 18 / 20 / 24 / 30/ 36 / 44 / 52 / 62 / 74 / 86 / 98*/

.main-nav-img {
  visibility: hidden;
  width: 0rem;
}

.main-nav-img-visible {
  visibility: visible;
  width: 4.5rem;
  justify-self: start;
  margin-left: 1rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--bright-blue);
  text-transform: uppercase;
}

.main-nav-active {
  text-decoration: none;
  color: var(--black) !important;
  text-transform: uppercase;
  cursor: none;
}

.main-nav a:link {
  color: var(--bright-blue);
}

.main-nav a:visited {
  color: var(--bright-blue);
}

.main-nav a:hover {
  color: var(--dark-blue);
}

/* Sticky Header
   https://www.w3schools.com/howto/howto_js_sticky_header.asp
*/
/*.sticky {*/
/*  position: fixed;*/
/*  top: 0rem;*/
/*  padding-top: 0.5rem;*/
/*  text-transform: uppercase;*/
/*  background-color: var(--silver-grey);*/
/*  max-width: var(--max-width);*/
/*  font-weight: bold;*/
/*  font-size: 2rem;*/
/*  width: 100%;*/
/*  z-index: 100;*/
/*  border-top: 0;*/
/*  margin-top: 0.0rem;*/
/*  height: 3.8rem;*/
/*  letter-spacing: 0.08em;*/
/*}*/
/*.sticky + .content {*/
/*  padding-top: 6.5rem;*/
/*}*/
/* ========================================================================
   END MAIN NAV
   ========================================================================== */

/* ========================================================================
   PAGE NAV
   ========================================================================== */
.page-nav {
  /*position: fixed;*/
  margin-top: 2.1rem;
  /*padding-top: 0.5rem;*/
  display: grid;
  text-transform: uppercase;
  background-color: var(--white);
  grid-template-columns: 0.3fr 0.68fr 0.54fr 0.54fr 0.54fr 0.8fr 0.8fr 0.65fr;
  justify-items: center;
  align-items: center;
  justify-content: space-between;
  align-content: space-between;
  max-width: calc(var(--max-width) - 9.6rem);
  /*width: 100%;*/
  align-items: center;
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  /*height: 3.8rem;*/
  z-index: 100;
  margin-left: auto;
  margin-right: auto;
}
/*2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128*/
/*10 / 12 / 14 / 16 / 18 / 20 / 24 / 30/ 36 / 44 / 52 / 62 / 74 / 86 / 98*/

.page-nav-home {
  justify-self: start;
}

.page-nav-contactus {
  justify-self: end;
}

.page-nav a {
  text-decoration: none;
  color: var(--bright-blue);
  text-transform: uppercase;
}

.page-nav-active {
  text-decoration: none;
  color: var(--black) !important;
  text-transform: uppercase;
  cursor: none;
}

.page-nav a:link {
  color: var(--bright-blue);
}

.page-nav a:hover {
  color: var(--dark-blue);
}

/* Margin to the left */
.page-nav a:first-child {
  /*margin-left: 2vw;*/
}
/* Margin to the right */
.page-nav a:last-child {
  /*margin-right: 3vw;*/
}

/* ========================================================================
   END MAIN NAV
   ========================================================================== */

/* ========================================================================
   CONTENT
   ========================================================================== */
.content {
  /*padding: 16px;*/
}

.content-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.whatwedo-container-page {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ========================================================================
   HEADER GRID
   ========================================================================== */

.main-sub-header {
  max-width: calc(var(--max-width) - 9.6rem);
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  background-color: var(--white);
  margin-left: 4.8rem;
  margin-top: 1.86rem;
}

.main-sub-header-content {
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: 0.6fr 2fr 2fr;
  justify-items: start;
  justify-content: start;
  align-items: start;
}

.main-sub-header-content-secondary {
  margin-top: -2rem;
  margin-left: 0.5rem;
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: 0.65fr 4fr 0.85fr;
  justify-items: start;
  justify-content: start;
  align-items: start;
}

.header-details {
  /*height: calc(var(--header-height) - 6rem);*/
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}

.main-whatwedo {
  margin-top: 1rem;
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: 0.9fr 2.4fr;
  align-items: start;
  background-color: var(--white);
}

.main-whatwedo-screens-header{
  max-width: calc(var(--max-width) - 9.6rem);
  margin-left: 4.8rem;
  display: grid;
  /*grid-template-columns: 1fr;*/
  align-items: start;
  background-color: var(--white);
  margin-top: 1.7rem;
}

.main-whatwedo-summary {
  /*width: 100%;*/
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-content: center;
  gap: 1rem;
  text-align: left;
  align-items: center;
  margin-left: 2rem;
}

.main-whatwedo-screens-summary {
  max-width: var(--max-width);
  display: grid;
  justify-content: start;
  align-content: start;
  text-align: left;
  align-items: center;
}

.main-whatwedo-screens-detail {
  max-width: calc(var(--max-width) - 9.6rem);
  margin-left: 4.8rem;
  display: grid;
  grid-template-columns: 1fr 2.25fr;
  justify-content: start;
  align-content: start;
  text-align: left;
  align-items: center;
  margin-top: 1.4rem;
}

.main-whatwedo-screens-summary h2 {
  color: var(--bright-blue);
}

/*2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128*/
/*10 / 12 / 14 / 16 / 18 / 20 / 24 / 30/ 36 / 44 / 52 / 62 / 74 / 86 / 98*/

.main-whatwedo-summary p {
  margin-right: 3rem;
  margin-bottom: 2rem;
}

.main-whatwedo-screens {
  max-width: calc(var(--max-width) - 9.6rem);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  align-content: center;
  /*background-color: var(--silver-grey);*/
  gap: 2.4rem;
  text-align: center;
  align-items: center;
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.3rem;
  overflow: hidden;
}

.main-whatwedo-screens-imgs-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.main-whatwedo-screens-imgs {
  background-color: #fff; /* Used if the image is unavailable */
  height: 15rem; /* You must set a specified height */
  width: 100%;
  background-position: top; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}

.main-whatwedo-screens-1 {
  /*width: 100%;*/
  background-image: url("../img/main-page/NHL-Props.png"); /* The image used */
}
.main-whatwedo-screens-2 {
  /*width: 100%;*/
  background-image: url("../img/main-page/Home-Header2.png"); /* The image used */
}
.main-whatwedo-screens-3 {
  /*width: 100%;*/
  background-image: url("../img/main-page/Home-Header3.png"); /* The image used */
}
.main-whatwedo-screens-4 {
  /*width: 100%;*/
  background-image: url("../img/main-page/diginews-dogs.jpg"); /* The image used */
}
.main-whatwedo-screens-5 {
  /*width: 100%;*/
  background-image: url("../img/main-page/superbowl-page.jpg"); /* The image used */
}
.main-whatwedo-screens-6 {
  /*width: 100%;*/
  background-image: url("../img/main-page/NFL-Props.png"); /* The image used */
}


/* ========================================================================
   WHY CHOOSE US
   ========================================================================== */

/*10 / 12 / 14 / 16 / 18 / 20 / 24 / 30/ 36 / 44 / 52 / 62 / 74 / 86 / 98*/

.main-whychooseus {
  margin-top: -2rem;
  /*height: 20rem;*/
  max-width: calc(var(--max-width) - 9.6rem);
  margin-left: 4.8rem;
}

.main-whychooseus h2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: var(--bright-green);
}

.main-whychooseus-benefits {
  margin-top: 1rem;
  max-width: var(--max-width);
  /*height: 4rem;*/
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: stretch;
  align-content: start;
  background-color: var(--white);
  gap: 2.4rem;
  text-align: left;
  align-items: center;
  justify-items: stretch;
}

.main-whychooseus-benefit {
  height: 14.4rem;
}

.main-whychooseus-benefit h2 {
  margin-left: 2.4rem;
  text-transform: uppercase;
  margin-top: 2.2rem;
  color: var(--white);
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}

.main-whychooseus-benefit h3 {
  margin-left: 2.4rem;
  margin-right: 1rem;
  margin-top: -0.6rem;
  color: var(--white);
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 2.4rem;
}

.main-whychooseus-benefit-1 {
  background-color: var(--bright-blue);
}
.main-whychooseus-benefit-2 {
  background-color: var(--bright-green);
}
.main-whychooseus-benefit-3 {
  background-color: var(--dark-blue);
}

/* ========================================================================
   MARKET SECTORS
   ========================================================================== */

/*10 / 12 / 14 / 16 / 18 / 20 / 24 / 30/ 36 / 44 / 52 / 62 / 74 / 86 / 98*/

.main-sectors-page-layout{
  min-height: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr 3fr 2fr auto;
}

.main-sectors-header-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.main-sectors {
  margin-top: 3rem;
  max-width: var(--max-width);
  /*height: 32rem;*/
  background-color: var(--silver-grey);
}

.marketsectors-override {
  max-width: calc(var(--max-width) - 9.6rem);
  margin-top: -2rem;
}

.main-sectors-container {
  max-width: calc(var(--max-width) - 9.6rem);
  margin-left: 4.8rem;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  justify-content: start;
  gap: 2rem;

}

.main-sectors-container-markets {
  justify-self: center;
  align-self: center;
}

.main-sectors-container-header {
  max-width: 100rem;
  align-self: flex-start;
  justify-self: flex-start;
  margin-left: 0rem;
  margin-top: 1.1rem;
}

.hmain-sectors-container-description {
  margin-left: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.main-sectors-container-primary {
  color: var(--dark-blue);
}

.market-sectors-subpage-header-margin {
  margin-left: -4.8rem;
}

.main-sectors-container-secondary {
  margin-bottom: 4.2rem;
}

.main-sectors-markets {
  max-width: calc(var(--max-width) - 9.6rem);
  margin-left: -31.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 4rem;
  row-gap: 4rem;
  margin-top: 2.2rem;
}

.main-sectors-markets-override {
  margin-left: -35.8rem;
}

.main-sectors-market-highlight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 9.6rem;
}

.main-sectors-market-highlight img {
  width: 16rem;
}

.main-sectors-container-detail {
  max-width: calc(var(--max-width) - 9.6rem);
  margin-top: 4.2rem;
  margin-left: 4.8rem;
  /*padding-right: 16rem;*/
  display: grid;
  grid-template-columns: 1fr 2.25fr;
}

.market-sectors-container-detail {
  grid-template-columns: 0.84fr 2.25fr;
}

.main-market-sectors {
  /*margin-top: 16rem; !* Not sure why I need this? *!*/
  max-width: var(--max-width);
  height: 30rem;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  background-color: var(--silver-grey);
}

.main-sectors-market-highlight-primary {
  color: var(--dark-blue);
  font-weight: 500;
  font-size: 1.6rem;
  margin-top: -3.5rem;
}

/* ========================================================================
   MARKET SECTORS
   ========================================================================== */

/*10 / 12 / 14 / 16 / 18 / 20 / 24 / 30/ 36 / 44 / 52 / 62 / 74 / 86 / 98*/

.main-trackrecord {
  max-width: calc(var(--max-width) - 9.6rem);
  margin-left: 4.8rem;
  /*height: 48rem;*/
  /*background-color: var(--silver-grey);*/
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}

.main-trackrecord-years {
  margin-top: -2.1rem;
  max-width: var(--max-width);
  margin-left: 4.8rem;
}


.main-trackrecord-extra-margin {
  /*margin-top: 3rem;*/
}

.main-trackrecord-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.4rem;
}

/* Replaced with common-left-margin & common-top-margin*/
.main-trackrecord-header {
  display: grid;
  grid-template-columns: 1.9fr 1fr;
  margin-top: 2.4rem;
}

.main-trackrecord-header-primary {
  color: var(--bright-blue);
}

.main-trackrecord-header-secondary {
  margin-top: 1.2rem;
  margin-bottom: 4rem;
}

.main-trackrecord-cards {
  max-width: var(--max-width);
  margin-left: -4.4rem;
}

.main-trackrecord-cards-grid {
  max-width: calc(var(--max-width) + 4.8rem);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: -1rem;
  margin-left: 2.4rem;
}

.main-trackrecord-card {
  display: grid;
  grid-template-columns: 1fr;
}

.main-trackrecord-card-year {
  display: grid;
  grid-template-columns: 0.02fr 1fr;
  margin-top: -1rem;
}

.main-trackrecord-card-year-10s {
  display: grid;
  grid-template-columns: 0.02fr 1fr 3fr 10fr;
  margin-top: -1rem;
}

.main-trackrecord-card-details {
  display: grid;
  grid-template-columns: 0.14fr 1fr;
  align-items: start;
}

.main-trackrecord-card-details-00s {
  margin-top: 0.4rem;
  grid-template-columns: 0.06fr 0.88fr;
}

.main-trackrecord-card-details-10s {
  margin-top: -2.1rem;
  margin-left: -1.2rem;
  grid-template-columns: 0.06fr 0.8fr;
}
.main-trackrecord-card-details-20s {
  margin-top: -4rem;
  margin-left: -6.2rem;
}

/*2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128*/
/*10 / 12 / 14 / 16 / 18 / 20 / 24 / 30/ 36 / 44 / 52 / 62 / 74 / 86 / 98*/

.main-trackrecord-card-00s,
.main-trackrecord-card-10s,
.main-trackrecord-card-20s{
  font-weight: 200;
  font-size: 14rem;
}

.main-trackrecord-card-year-00s-rsquo {
  margin-left: -1.8rem;
}
.main-trackrecord-card-year-10s-rsquo {
  margin-left: -3.8rem;
}
.main-trackrecord-card-year-20s-rsquo {
  margin-left: -3.8rem;
}
.main-trackrecord-card-year-00s-years {
  margin-left: -0.3rem;
}
.main-trackrecord-card-year-10s-years {
  margin-left: -1.3rem;
  letter-spacing: 0.01em;
}
.main-trackrecord-card-year-20s-years {
  margin-left: -1.3rem;
  letter-spacing: 0.01em;
}
.main-trackrecord-card-year-10s-years-s {
  align-self: start;
}

.main-trackrecord-card-00s {
  color: var(--bright-green);

  font-weight: 500;
  /*border-right: 0.7rem solid var(--bright-green);*/
  /*padding-right: 2rem;*/
}

.main-trackrecord-card-10s {
  font-weight: bold;
  color: var(--bright-blue);
}

.main-trackrecord-card-20s {
  font-weight: bold;
  color: var(--dark-blue);
}

.main-trackrecord-card-secondary {
  padding-right: 0.5rem;
  /*font-weight: normal;*/
  /*font-size: 1.6rem;*/
  /*margin-bottom: 4rem;*/
  /*line-height: 1.5;*/
  /*margin-left: 1rem;*/
}

/* ========================================================================
   Products
   ========================================================================== */

/*10 / 12 / 14 / 16 / 18 / 20 / 24 / 30/ 36 / 44 / 52 / 62 / 74 / 86 / 98*/

.products-page-layout {
  /*min-height: 100%;*/
  /*height: 100%;*/
  display: grid;
  grid-template-rows: auto auto 1fr auto;
}

.main-products {
  /*margin-top: 4.3rem;*/
  max-width: calc(var(--max-width) - 9.6rem);
  margin-left: 4.8rem;
  /*background-color: var(--silver-grey);*/
  overflow: hidden;
}

.main-products-hide-right-products-scroll {
  margin-top: -5.5rem;
  /*margin-left: 105rem;*/
  z-index: 2;
  overflow: hidden;
}

.main-products-hide-scroll {
  display: grid;
  grid-template-columns: 1fr;
}

.main-products-hide-scroll-cover {
  width: 4.8rem;
  height: 30rem;
  background-color: var(--white);
}

.main-products-cards-section {
  margin-top: -28.7rem;
  max-width: var(--max-width);
  position: relative !important;
}
.main-products-cards {
  max-width: var(--max-width);
  margin-left: 2.4rem;
  overflow: hidden;
  /*position: relative;*/
}

.main-products-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-products-header {
  /*margin-left: 4.8rem;*/
}

.main-products-header-primary {
  /*margin-top: 2rem;*/
  color: var(--bright-blue);
}

.main-products-slick-container {
  margin-top: 2rem;
  max-width: var(--max-width);
  text-align:center;
}

.main-products-slick-carousel{
  align-self: center;
  width: 95%;
  margin:0px auto;
}

.main-products-slick-carousel .slick-slide{
  /*margin-left: 3rem;*/
}

/* The width of each slide */
.main-products-slick-carousel .slick-slide {
 width: 32rem;
}

/* Color of the arrows */
.slick-next::before, .slick-prev::before {
  /*color: var(--dark-blue);*/
}

.main-products-card {
  position: relative;
  height: 20rem;
  width: var(--product-width);
}

.main-products-card-banner {
  position: absolute;
  bottom: -0.5rem;
  left: 0.2rem;
  width: var(--product-width);
  height: 3rem;
  background-color: var(--white);
  z-index: 20;
}

.main-products-card-banner h2 {
  text-transform: uppercase;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 21;
  color: var(--dark-blue);
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.08em;
}

.main-products-slick-carousel .slick-slide img{
  position: relative;
  width: 32rem;
  border: 0.2rem solid #fff;
  padding: 0rem;
  margin: 0rem;
}

.main-products-slick-carousel .slick-dots li button:before {
  font-size: 1rem;
  color: var(--dark-blue) !important;
}

.main-products-slick-carousel .slick-prev {
  margin-right: 2rem;
  /*height: 2.5rem;*/
  /*width: 2.5rem;*/
}

.product-sectors-details-container {
  display: grid;
  grid-template-columns: 1.02fr 2.1fr;
  column-gap: 2rem;
  align-items: start;
}

.product-sectors-summary {
  margin-top: 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-content: start;
  gap: 2rem;
  text-align: left;
  align-items: start;
  margin-bottom: 2rem;
  /*padding-right: 6rem;*/
}

.product-sectors-summary p {
  /*margin-right: 3rem;*/
  font-weight: normal;
  /*font-size: 1.8rem;*/
  line-height: 1.5;
  /*text-align: justify;*/
}

/* ========================================================================
   Clients
   ========================================================================== */

/*10 / 12 / 14 / 16 / 18 / 20 / 24 / 30/ 36 / 44 / 52 / 62 / 74 / 86 / 98*/

.main-clients {
  overflow: hidden;
  max-width: calc(var(--max-width) - 9.6rem);
  /*height: 32rem;*/
  background-color: var(--white);
  margin-top: 0.6rem;
  margin-left: 4.8rem;
}

.main-clients-slick {
  margin-top: -1.8rem;
  margin-left: 1.2rem;
  max-width: var(--max-width);
  overflow: hidden;
}

.main-clients-container {
  /*margin-top: 1rem;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem;
  overflow: hidden;
}

.main-clients-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  justify-content: center;
  align-content: start;
  gap: 2rem;
  text-align: left;
  align-items: start;
}

.main-clients-header-primary {
  color: var(--bright-blue);
}

.main-clients-slick-container {
  width: var(--max-width);
  /*width: 80rem;*/
  text-align:center;
  /*margin-left: 2rem;*/
  /*margin:0px auto;*/
}

.main-clients-slick-carousel{
  align-self: center;
  max-width: calc(var(--max-width) - 9.6rem);
  margin:0px auto;
}

.main-clients-slick-carousel .slick-slide{
  margin: 0.5rem;
}

/* The width of each slide */
.main-clients-slick-carousel .slick-slide {
  width: 2.3rem;
}

/* Color of the arrows */
.slick-next::before, .slick-prev::before {
  /*color: var(--dark-blue);*/
}

.main-clients-card {
  position: relative;
}

.main-clients-card-banner {
  position: absolute;
  bottom: 0.2rem;
  left: 0.2rem;
  width: 4rem;
  height: 3rem;
  background-color: var(--white);
  z-index: 20;
}

.main-clients-card-banner h2 {
  text-transform: uppercase;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 21;
  color: var(--dark-blue);
  font-weight: 500;
  font-size: 2rem;
}

.main-clients-slick-carousel .slick-slide img{
  position: relative;
  width: 15rem;
  border: 0.2rem solid var(--silver-grey);
}

.main-clients-slick-carousel .slick-dots li button:before {
  font-size: 1rem;
  color: var(--dark-blue) !important;
}

.main-clients-slick-carousel .slick-prev {
  margin-right: 0.2rem;
  height: 2.5rem;
  width: 2.5rem;
}

/* ========================================================================
   Footer
   ========================================================================== */

/*10 / 12 / 14 / 16 / 18 / 20 / 24 / 30/ 36 / 44 / 52 / 62 / 74 / 86 / 98*/

.main-footer {
  margin-top: 0.7rem;
  max-width: var(--max-width);
  background-color: var(--dark-blue);
  border-top: 0.2rem solid rgba(32, 65, 154, 5%);
  bottom:0;
  left:0;
}

.main-footer-whatwedo{
  margin-top: 2.4rem;
}
.main-footer-sectors {
  margin-top: 2.4rem;
}
.main-footer-products {
  margin-top: 2.4rem;
}
.main-footer-products-extra {
  margin-top: 2.5rem;
}
.main-footer-aboutus {
  margin-top: 2.4rem;
}

.main-footer-container {
  margin-left: 4.8rem;
  margin-bottom: 2.5rem;
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: 1fr 0.75fr 1fr;
  gap: 2rem
}

.main-footer-container-margin-top {
  margin-top: 3rem;
}

.main-footer-logo {
  width: 15rem;
  margin-bottom: 0.5rem;
  margin-left: 3rem;
}

.main-footer-cards {
  align-self: center;
  width: 95%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: stretch;
}

.main-footer-header {
  margin-top: 1rem;
  margin-left: 2rem;
}

.main-footer-header-primary {
  color: var(--bright-blue);
  font-weight: 500;
  font-size: 2.4rem;
}

.main-footer-header-secondary {
  margin-top: 1rem;
  font-weight: normal;
  font-size: 1.6rem;
  margin-bottom: 4rem;
  line-height: 1.5;
}

.main-footer-card {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2.2rem;
  height: 21rem;
  line-height: 1rem;
}

/*2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128*/
/*10 / 12 / 14 / 16 / 18 / 20 / 24 / 30/ 36 / 44 / 52 / 62 / 74 / 86 / 98*/

.main-footer-card-secondary {
  font-weight: normal;
  font-size: 1.6rem;
  margin-bottom: 4rem;
  line-height: 1.5;
  margin-right: 4rem;
  margin-left: 6rem;
}

.footer-details-grid {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  column-gap: 2.4rem;
  row-gap: 1.6rem;
  justify-content: start;
  align-content: start;
  justify-items: start;
  align-items: start;
}

.main-footer-address,
.main-footer-sales,
.main-footer-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-self: left;
  justify-self: left;
}

.main-footer-address {
  margin-top: -0.8rem;
}

.main-footer-links a {
  text-decoration: none;
  color: var(--white);
}

.main-footer-links {
  text-decoration: none;
  color: var(--white) !important;
  cursor: pointer;
  gap: 1.9rem;
  font-size: 1.4rem;
  font-weight: 300;
}

.main-footer-card h2 {
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 1.5;
}

.main-footer-address h2 {
  color: var(--silver-grey);
}

.main-footer-sales h2 {
  color: var(--bright-green);
}

.main-footer-links h2 {
}

.footer-details-link {
  margin-top: 1.4rem;
}
.footer-details-link a {
    text-decoration: none;
    color: var(--silver-grey);
    font-weight: 300;
    line-height: 0.8rem;
    font-size: 1.2rem;
}

.main-footer-card p {
  display: inline-block;
  margin-right: 1rem;
  /*margin-top: 1rem;*/
  position: relative;
  color: var(--silver-grey);
  font-weight: 300;
  line-height: 0.9rem;
  font-size: 1.2rem;
}

/* ========================================================================
   WHAT WE DO
   ========================================================================== */

.whatwedo-page-layout {
  min-height: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.whatwedo-content {
  position: relative;
}

.whatwedo-header-wrapper {
  max-width: calc(var(--max-width) - 9.6rem);
  position: relative;
  overflow: hidden;
  margin-top: 2.3rem;
  margin-left: auto;
  margin-right: auto;
}

.whatwedo-header{
  height: 4.8rem;
  max-width: calc(var(--max-width) - 9.6rem);
  background-image: url('../img/header_BG.jpg');
  background-repeat: no-repeat;
  background-position: -30rem 0rem;
  transform: scale(1.5);
  overflow: hidden;
}

.whatwedo-details-container {
  max-width: calc(var(--max-width) - 9.6rem);
  display: grid;
  grid-template-columns: 1fr 2.05fr;
  column-gap: 2rem;
  align-items: start;
  margin: 0 auto;
}

.whatwedo-tag {
  align-self: start;
  margin-top: -1rem;
}

.whatwedo-primary {
  margin-top: 2rem;
  color: var(--bright-green);
  font-weight: 300;
  font-size: 5rem;
  padding: 0;
}

.whatwedo-summary {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 2rem;
  align-items: start;
}

.whatwedo-summary p {
  margin-bottom: 2rem;
  line-height: 1.5;
}

.whatwedo-container {
  max-width: calc(var(--max-width) - 9.6rem);
  display: grid;
  grid-template-columns: 1.9fr 0.5rem 4.42fr;
  column-gap: 1rem;
  align-items: stretch;
  justify-items: stretch;
  margin-left: auto;
  margin-right: auto;
}

.whatwedo-dataintegration-container {
  max-width: calc(var(--max-width) - 9.6rem);
  display: grid;
  grid-template-columns: 3.95fr 0.5rem 1.9fr;
  column-gap: 1rem;
  align-items: stretch;
  justify-items: stretch;
  margin-left: auto;
  margin-right: auto;
}

.whatwedo-bespoke-text-container {

}

.whatwedo-image-container {
  width: 100%;
  overflow: hidden;
  height: 32.8rem;
}

.whatwedo-image-container-bespoke,
.whatwedo-image-container-data,
.whatwedo-image-container-content {
  height: 32.8rem;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

.whatwedo-image-container-bespoke {
  background-image: url("../img/whatwedo/Bespoke.png");
}

.whatwedo-image-container p{
  font-weight: normal;
  color: red;
  font-size: 5rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.whatwedo-image {
  width: 100%;
  height: auto;
}

.whatwedo-image {
  width: 100%;
  height: auto;
  transform: scale(1.2);
}

.whatwedo-bespoke-text-container {
  background-color: var(--bright-blue);
  justify-self: stretch;
  align-items: stretch;
}

.whatwedo-container-margins{
  margin-left: 2.4rem;
  margin-top: -0.2rem;
}
.whatwedo-container-margins-bespoke{
  margin-bottom: -0.2rem;
}

.whatwedo-dataintegration-text-container {
  background-color: var(--bright-green);
  justify-self: stretch;
}

.whatwedo-contentmanagement-text-container {
  background-color: var(--dark-blue);
  justify-self: stretch;
}

.whatwedo-text h1{
  font-weight: 300;
  font-size: 4rem;
  color: var(--white);
  line-height: 2rem;
}

.whatwedo-text p {
  font-weight: normal;
  margin-right: 2rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: var(--white);
}

/* ========================================================================
   MARKET SECTORS
   ========================================================================== */

.market-sectors-page-layout {
  min-height: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.market-sectors-header-container {
  max-width: calc(var(--max-width) - 9.6rem);
  margin: 0 auto;
}

.market-sectors-header {
  margin-top: 3.8rem;
  max-width: var(--max-width);
  background-color: var(--silver-grey);
}

.marketsectors-header-wrapper{
  background-color: var(--silver-grey);
  max-width: var(--max-width);
  margin-top: 3.8rem;
  height: 33rem;
}

.marketsectors-wrapper-bottom {
  border-bottom: var(--dark-blue) solid 0.3rem;
}

.marketsectors-header {
  margin-top: 5rem;
  max-width: var(--max-width);
  background-color: var(--silver-grey);
  height: 20rem;
}

.market-sectors-container-markets {
  position: relative;
  text-align: center;
  justify-content: center;
  margin-top: 1rem;
  width: 100%;
  max-width: var(--max-width);
  grid-column: 1/-1;
}

.market-sectors-markets-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 1rem;
  justify-items: center;
  align-items: center;
  max-width: var(--max-width);
}

.market-sectors-summary {
  margin-top: 5rem;
  max-width: calc(var(--max-width) - 9.6rem);
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-content: center;
  gap: 0.5rem;
  text-align: left;
  align-items: start;
}

.market-sectors-summary h2 {
  color: var(--dark-blue);
  font-weight: 500;
  font-size: 2.4rem;
}


/*2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128*/
/*10 / 12 / 14 / 16 / 18 / 20 / 24 / 30/ 36 / 44 / 52 / 62 / 74 / 86 / 98*/

.market-sectors-content {
  margin-top: 11.8rem;
  max-width: calc(var(--max-width) - 9.6rem);
  margin-left: auto;
  margin-right: auto;
}

.market-sectors-container-page {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.market-sectors-details-container {
  display: grid;
  grid-template-columns: 1.03fr 2.1fr;
  column-gap: 2rem;
  align-items: start;
}

.market-sectors-sector-container-border {
  border-top: var(--bright-green) solid 0.3rem;
}

.market-sectors-sector-container {
  display: flex;
  flex-direction: column;
}

.market-sectors-travel {
}

.market-sectors-travel p {
  margin-bottom: 2rem;
}

.market-sectors-photos-container {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 18rem;
  column-gap: 2.4rem;
  align-items: stretch;
  justify-items: stretch;
  height: 16rem;
}

.market-sectors-photos-container-div {
  overflow: hidden;
}

.market-sectors-image {
  width: 100%;
}

.market-sectors-image-horseracing,
.market-sectors-image-diginews,
.market-sectors-image-gaming-3,
.market-sectors-image-retail-1,
.market-sectors-image-retail-2,
.market-sectors-image-retail-3 {
  height: 100%;
  background-repeat: no-repeat;
  background-size:     cover;
  background-position: center center;
}

.market-sectors-image-horseracing {
  background-image: url("../img/market-sectors/horseracing.jpg"); /* The image used */
}
.market-sectors-image-diginews {
  background-image: url("../img/market-sectors/diginews.jpg"); /* The image used */
}
.market-sectors-image-gaming-3 {
  background-image: url("../img/market-sectors/Gaming3.png"); /* The image used */
}

.market-sectors-image-retail-1 {
  background-image: url("../img/market-sectors/Retail1.png"); /* The image used */
}

.market-sectors-image-retail-2 {
  background-image: url("../img/market-sectors/Retail2.png"); /* The image used */
}

.market-sectors-image-retail-3 {
  background-image: url("../img/market-sectors/Retail3.png"); /* The image used */
}

/* ========================================================================
   PRODUCTS
   ========================================================================== */

input {
  display: none;
}

label {
  position: relative;
  display: block;
  /*padding: 0.8rem 2.2rem;*/
  /*margin TRBL*/
  margin: 1.9rem 0 1.8rem 0;
  cursor: pointer;
  background: var(--white);
  border-radius: 0.3rem;
  color: #FFF;
  transition: ease .5s;
}

label:hover {
  /*background: var(--silver-grey);*/
}

/*https://supfort.com/css-accordion-animation*/
.content {
  margin: 0 0 0.1rem 0;
  border-radius: 0.3rem;
}

.products-wrapper-bottom {
  border-bottom: var(--bright-green) solid 0.3rem;
}

.products-wrapper-top {
  border-top: var(--bright-green) solid 0.3rem;
}

.content-border-bottom{
  border-bottom: var(--bright-green) solid 1.3rem;
  max-width: calc(var(--max-width) - 9.6rem);
}

.products-input-genuscld input + label + .content {
  opacity: 0;
  /*height: 0;*/
  max-height: 0rem;
  font-size: 0;
  transition: ease 0.5s;
}
.products-input-genuscld input:checked + label + .content {
  opacity: 1;
  /*height: 97.4rem;*/
  max-height: 120rem;
  font-size: 14px;
}

.products-input-genusdn input + label + .content {
  opacity: 0;
  /*height: 0;*/
  max-height: 0rem;
  font-size: 0;
  transition: ease 0.5s;
}
.products-input-genusdn input:checked + label + .content {
  opacity: 1;
  /*height: 67rem;*/
  max-height: 120rem;
  font-size: 14px;
}

.products-input-genusp input + label + .content {
  opacity: 0;
  /*height: 0;*/
  max-height: 0rem;
  font-size: 0;
  transition: ease .5s;
}

.products-input-genusp input:checked + label + .content {
  opacity: 1;
  /*height: 51rem;*/
  max-height: 120rem;
  font-size: 14px;
}

.products-input-genusmvp input + label + .content {
  opacity: 0;
  max-height: 0rem;
  font-size: 0;
  transition: ease .5s;
}

.products-input-genusmvp input:checked + label + .content {
  opacity: 1;
  /*height: 74.4rem;*/
  max-height: 120rem;
  font-size: 14px;
}

.products-input-genusmv input + label + .content {
  opacity: 0;
  max-height: 0rem;
  font-size: 0;
  transition: ease .5s;
}

.products-input-genusmv input:checked + label + .content {
  opacity: 1;
  max-height: 120rem;
  font-size: 14px;
}

.products-input-genusvw input + label + .content {
  opacity: 0;
  max-height: 0rem;
  font-size: 0;
  transition: ease .5s;
}
.products-input-genusvw input:checked + label + .content {
  opacity: 1;
  max-height: 120rem;
  font-size: 14px;
}

.products-input-genuscit input + label + .content {
  opacity: 0;
  max-height: 0rem;
  font-size: 0;
  transition: ease .5s;
}

.products-input-genuscit input:checked + label + .content {
  opacity: 1;
  max-height: 120rem;
  font-size: 14px;
}

.products-header {
  margin-top: 1.8rem;
  background-color: var(--white);
  max-width: calc(var(--max-width) - 9.6rem);
  margin-left: auto;
  margin-right: auto;
}

.products-tag {
  align-self: start;
  margin-top: -1rem;
}

.products-primary {
  margin-top: 2rem;
  color: var(--dark-blue);
  font-weight: 300;
  font-size: 5rem;
}

.products-header-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.products-container{
  max-width: calc(var(--max-width) - 9.6rem);
  margin-top: 2.1rem;
  margin-left: auto;
  margin-right: auto;
}

.products-label {
  width: 100%;
}

.products-accordion {
  max-width: calc(var(--max-width) - 9.6rem);
  display: grid;
  grid-template-columns: 1fr auto 5rem;
  justify-items: stretch;
  justify-content: stretch;
  align-items: center;
}

.products-accordion-title {
  color: var(--dark-blue);
  text-transform: uppercase;
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  justify-self: start;
}

.products-accordion-title-features {
  font-size: 2rem;
  font-weight: 300;
  color: var(--bright-blue);
  align-self: center;
  justify-self: end;
  margin-right: 2rem;
}

.products-accordion-title-chevron {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--dark-blue);
  justify-self: end;
}

.products-accordion-chevron-rotate {
  transform: rotate(180deg);
}

.products-cards-container {
  overflow: hidden;
  display: grid;
  grid-template-columns: 2.1fr 1fr;
  grid-template-rows: auto auto;
  justify-items: center;
  align-items: start;
  grid-column-gap: 2rem;
  grid-row-gap: 0.6rem;
}

.products-cards-container-details {
  grid-column: 1 / 2;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-top: -0.6rem;
}

.products-cards-container-details p {
  margin-bottom: 1.5rem;
}

.products-cards-container-benefits {
  height: 100%;
  grid-column: 2 / 3;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-top: -0.6rem;
  margin-left: 2rem;
}

.products-cards-container-benefits-container {
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
  list-style: none;
}

.products-cards-container-benefits-container li:before {
  content: "\2022";
  color: var(--bright-blue);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.image-container {
  max-width: calc(var(--max-width) - 9.6rem);
  grid-column: 1 / -1;
  grid-row: 2 / 3;
  align-self: stretch;
}

.image-container img {
  max-width: calc(var(--max-width) - 9.6rem);
}

.image-base-border {
  height: 1.8rem;
  max-width: calc(var(--max-width) - 9.6rem);
  background-color: var(--bright-green);
}

.page-layout {
  min-height: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto 6fr 1fr auto;
}

.footer-2 {
  margin-left: -4.8rem;
  grid-row-start: 5;
  grid-row-end: 6;
}

/* ========================================================================
   ABOUT US
   ========================================================================== */
.aboutus-page-layout{
  min-height: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto auto;
}

.aboutus-details-container {
  display: grid;
  grid-template-columns: 1.03fr 2.1fr;
  column-gap: 2rem;
  align-items: start;
}

.aboutus-header {
  margin-top: 1.9rem;
  max-width: calc(var(--max-width) - 9.6rem);
  background-color: var(--white);
  margin-left: auto;
  margin-right: auto;
}

.aboutus-wrapper-bottom {
  border-bottom: var(--dark-blue) solid 0.3rem;
}

.aboutus-primary {
  margin-top: 2rem;
  color: var(--bright-green);
  font-weight: 300;
  font-size: 6rem;
}

.aboutus-summary {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}

.aboutus-summary-trackrecord-timeline {
  grid-template-columns: 1fr 2fr;
  margin-top: 2rem;
}

.aboutus-header-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.aboutus-cards-container {
  max-width: calc(var(--max-width) - 9.6rem);
  display: grid;
  grid-template-columns: 0.72fr 4fr 0.01fr;
  margin-top: 2.2rem;
  justify-items: stretch;
  margin-left: auto;
  margin-right: auto;
}

.aboutus-card {
  margin-top: 1rem;
}

.aboutus-card-container {
  display: grid;
  grid-template-columns: 0.999fr 4fr;
  column-gap: 2.2rem;
  align-items: stretch;
  justify-items: stretch;
}
.aboutus-card-photo {
  justify-self: end;
}
.aboutus-card-photo-container {
  overflow: hidden;
  width: 12rem;
  height: 13.5rem;
  background-color: gray;
}
.aboutus-card-img{
  /*//https://www.digitalocean.com/community/tutorials/css-cropping-images-object-fit*/
  width: 100%;
  transform: scale(130%);
  object-fit: cover;
}
.aboutus-card-details {
  margin-top: -0.4rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 1rem;
  margin-left: 0.1rem;
}

.aboutus-card-details-name {
  font-weight: 300;
  font-size: 3rem;
  color: var(--dark-blue);
}
.aboutus-card-details-title {
  font-weight: 300;
  font-size: 2.4rem;
  color: var(--bright-green);
  margin-top: 0.7rem;
  letter-spacing: 0.08em;
}

.aboutus-card-details-summary {
  display: grid;
  column-gap: 4rem;
  align-items: start;
  margin-bottom: 1.7rem;
  margin-top: 0.5rem;
}

.aboutus-card-details-summary p {
  margin-bottom: 1.5rem;
}

.aboutus-trackrecord {
  margin-top: 0.2rem;
  max-width: calc(var(--max-width) - 9.6rem);
  background-color: var(--white);
  margin-left: auto;
  margin-right: auto;
}

.aboutus-timeline-primary {
  color: var(--bright-blue);
}

.aboutus-trackrecord-cards-container {
  /*margin-top: 2rem;*/
  max-width: var(--max-width);
  /*margin:0 auto;*/
}

.aboutus-trackrecord-card-container {
  display: grid;
  grid-template-columns: 1.065fr 1.06fr 0.1fr 0.4fr 0.5fr;
}

.aboutus-trackrecord-decade {
  font-weight: 100;
  font-size: 14rem;
  justify-self: start;
  margin-left: -4rem;
}

.aboutus-trackrecord-decade-blue {
  color: var(--bright-blue);
}

.aboutus-trackrecord-decade-green {
  color: var(--bright-green);
}

.aboutus-trackrecord-decade-20s {
  margin-top: -6.6rem;
}

/*.aboutus-trackrecord-decade-10s {*/
/*  margin-top: 1.2rem;*/
/*}*/

.aboutus-trackrecord-decade-00s {
  margin-top: 1.2rem;
}

.aboutus-trackrecord-decade-20s {
  margin-top: 6.5rem;
}

.aboutus-trackrecord-decade-10s {
  display: grid;
  grid-template-columns: 0.0001fr 1fr 1fr 1fr auto;
  margin-top: -5rem;
  justify-items: start;
  align-items: center;
}

.aboutus-trackrecord-decade-10s-1 {
  margin-left: -1rem;
}
.aboutus-trackrecord-decade-10s-0 {
  margin-left: -1.8rem;
}
.aboutus-trackrecord-decade-10s-s {

}


.aboutus-trackrecord-decade-darkblue {
  color: var(--dark-blue);
}

.aboutus-trackrecord-card-history-container {
  display: flex;
  flex-direction: column;
  grid-row-gap: 1rem;
  margin-right: 2.2rem;
  align-items: start;
  justify-items: start;
  justify-content: start;
}

.aboutus-card-trackrecord-title {
  font-weight: 500;
  font-size: 2rem;
  color: var(--bright-blue);
  margin-top: -0.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 2.4rem;
}

.aboutus-card-trackrecord-title-top-align {
  align-self: start;
}

.aboutus-card-trackrecord-summary p {
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 1.7rem;
  /*text-align: justify;*/
  justify-self: start;
  align-self: start;
  margin-top: 0.4rem;
}

.aboutus-trackrecord-card-year {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.5;
  margin-top: -1.3rem;
  margin-left: 1rem;
  color: var(--dark-blue);
}

.aboutus-trackrecord-card-line {
  margin-left: 0.2rem;
  border-right: var(--bright-green) solid 0.5rem;
}

.aboutus-trackrecord-card-topline {
  border-top: var(--bright-green) solid 0.2rem;
}

.aboutus-trackrecord-card-bottomline {
  border-bottom: var(--bright-green) solid 0.2rem;
}

/* ========================================================================
   OUR CLIENTS
   ========================================================================== */

.ourclients-header-container {
  margin-top: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.ourclients-page-layout {
  max-width: calc(var(--max-width) - 9.6rem);
  min-height: 100%;
  height: 100%;
  display: grid;
  /* Not sure why the affiliates are going out of flow? So crude fix.*/
  grid-template-rows: 1fr 3fr 2fr 200fr auto;
  align-items: start;
  margin: 0 auto;
}

.ourclients-primary {
  margin-top: 2rem;
  color: var(--dark-blue);
  font-weight: 300;
  font-size: 5rem;
}

.ourclients-sectors-summary {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 2rem;
  align-items: start;
  margin-bottom: 1.6rem;
}

/*.ourclients-sectors-summary p {*/
/*  margin-right: 3rem;*/
/*  font-weight: normal;*/
/*  font-size: 1.6rem;*/
/*  line-height: 1.5;*/
/*}*/

.ourclients-logos-wrapper {
  margin-top: 1.2rem;
  max-width: calc(var(--max-width) - 9.6rem);
  margin-left: auto;
  margin-right: auto;
}

.ourclients-logos-cards-container {
  max-width: calc(var(--max-width) - 9.6rem);
  /*width: 100%;*/
  display: grid;
  grid-template-columns: 15.3rem 14.5rem 14.5rem 14.5rem 14.5rem 14.5rem 4.8rem;
  row-gap: 2.4rem;
  column-gap: 2.4rem;
  grid-auto-flow: row;
  align-items: center;
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
}

.ourclients-header {
  margin-top: 2rem;
}

.ourclients-affiliates-cards-container {
  grid-template-columns: 15.3rem 14.5rem 14.5rem 14.5rem 14.5rem 14.5rem 4.8rem;
}

.our-clients-img-card {
  border: var(--silver-grey) solid 0.2rem;
  padding: 0.5rem;
  width: 15rem;
}

.our-clients-img-card img {
  display: block;
  width: 100%;
  padding: 0.5rem;
  /*height: auto;*/
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.our-clients-img-card-last {
  grid-column-start: 1;
  grid-column-end: -1;
}
.ourclients-affiliates-wrapper-override {
  margin-bottom: 2rem;
}
.ourclients-affliates-container {
  max-width: calc(var(--max-width) - 9.6rem);
  align-self: start;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
}

/* ========================================================================
   TRACK RECORD
   ========================================================================== */

.trackrecord-page-layout {
  min-height: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto auto auto;
}

.trackrecord-header {
  max-width: calc(var(--max-width) - 9.6rem);
  background-color: var(--white);
  margin: 1.9rem auto 4.8rem;
}

.trackrecord-primary {
  margin-top: 2rem;
  color: var(--dark-blue);
  font-weight: 300;
  font-size: 5rem;
}

.trackrecord-details-container {
  display: grid;
  grid-template-columns: 1.03fr 2.1fr;
  column-gap: 2rem;
  align-items: start;
}

.trackrecord-wrapper-bottom {
  border-bottom: var(--dark-blue) solid 0.3rem;
}

.trackrecord-summary {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}

.trackrecord-header-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.trackrecord-sectors-summary {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 2rem;
  align-items: start;
  margin-bottom: 1.6rem;
}

.main-footer-trackrecord {
  margin-bottom: 2.4rem;
}
.main-footer-trackrecord-extra {
  margin-bottom: 2.4rem;
}

.aboutus-trackrecord-cards-container {
  margin-bottom: 2.4rem;
}
/* ========================================================================
   CONTACT US
   ========================================================================== */

.contactus-header-container {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.contactus-details-container {
  display: grid;
  grid-template-columns: 1.02fr 2.1fr;
  column-gap: 2rem;
  align-items: start;
}

.contactus-summary {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  /*column-gap: 1rem;*/
  align-items: start;
  /*padding-right: 10rem;*/
}

.contactus-page-layout{
  width: 100%;
  min-height: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 2.4rem;
  align-items: start;
  justify-items: stretch;
  justify-content: stretch;
  margin-left: auto;
  margin-right: auto;
}

.contactus-contact-section {
  margin-top: 0.1rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.contactus-contact-container {
  margin-top: 1rem;
  max-width: calc(var(--max-width) - 9.6rem);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: stretch;
  align-content: start;
  background-color: var(--white);
  gap: 2.4rem;
  text-align: left;
  align-items: center;
  justify-items: stretch;
}

.contactus-contact-card {
  width: 32rem;
  height: 24.8rem;
}

.contactus-contact-card-address {
  display: grid;
  grid-template-rows: 1.9fr 0.8fr 0.8fr 0.8fr 0.8fr 0.8fr 0.8fr 0.8fr;
}

.contactus-contact-card-left-margin {
  margin-left: 2.4rem;
}

.contactus-contact-card-h2 {
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  margin-top: 2.4rem;
}


.contactus-contact-card p {
  text-transform: none;
  margin-top: 1.5rem;
  color: var(--white);
  font-weight: 300;
  font-size: 1.68rem;
  line-height: 1rem;
}

.contactus-contact-card-spacer {
  /*margin-top: 10rem;*/
}

.contactus-contact-card-icon {
  /*font-size: 1rem;*/
  color: var(--white);
}

.contactus-contact-card-icon-mobile {
  margin-left: -0.3rem;
}

.contactus-contact-card-email-link i {
  margin-right: 2rem;
  position: relative;
  color: var(--white);
}

.contactus-contact-card-email-link a {
  text-decoration: none;
  color: var(--white);
  font-weight: normal;
  font-size: 1.8rem;
}

.contactus-contact-card-email-link p {
  margin-left: 0.2rem;
  display: inline-block;
}

.contactus-gmaps-wrapper {
  overflow: hidden;
  margin: auto;
  height: 60rem;
  max-width: var(--max-width);
  width: 100%;
  align-self: start;
}

.contactus-gmaps-container {
  /*margin-top: 0.8rem;*/
  width: 100%;
  height: 60rem;
  /*margin: 0 auto;*/
}

.contactus-footer {
  margin-top: -0.1rem;
}



