/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct box sizing in Firefox.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */
legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}
.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HTML elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */
body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */
html[lang^=ja] body,
html[lang^=zh] body,
html[lang^=ko] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */
p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */
a {
  cursor: pointer;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */
ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */
pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */
blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */
hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */
img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */
.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */
table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */
td,
th {
  vertical-align: top;
}

/* Table header */
thead th {
  vertical-align: bottom;
}

/* Base
Real theme base styles ported verbatim from sass/base of the live site.
*/

/**
 * Brand Colours
 */
/**
 * BTG Colours
 */
/**
 * Element Colours
 */
/**
 * UI Colours
 */
/**
 * Typography
 */
/**
 * Breakpoints
 */
/**
 * Grid
 */
/**
 * Components
 */
/*
 * Media query to respond to a minimum size (mobile first)
 */
/*
 * Media query to respond to a maximum size
 */
/*
 * Output font size in px/rem
 */
/*
 * Placeholder mixin for <input>
 */
/**
 * Clearfix
 */
/**
 * Positioning
 */
/* = Responsive Layouts */
/* = GRID SYSTEM */
* {
  background-color: transparent;
  border: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: white;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

input,
select,
textarea,
button {
  color: inherit;
  display: inline-block;
}
input[disabled],
select[disabled],
textarea[disabled],
button[disabled] {
  cursor: not-allowed;
}

button {
  cursor: pointer;
}

iframe {
  max-width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
table th,
table td {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
hr,
ul,
ol,
dl,
address {
  margin-bottom: 28px;
}

a {
  color: #00ABC8;
  transition: color 0.25s ease-in-out;
}
a:hover {
  color: #4D2680;
  text-decoration: underline;
}

hr {
  background-color: #444;
  height: 1px;
  margin: 28px 0;
}

pre {
  margin: 28px 0;
  padding: 28px;
  background: #f8f6f7;
  overflow-x: auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
/**
 * Brand Colours
 */
/**
 * BTG Colours
 */
/**
 * Element Colours
 */
/**
 * UI Colours
 */
/**
 * Typography
 */
/**
 * Breakpoints
 */
/**
 * Grid
 */
/**
 * Components
 */
/*
 * Media query to respond to a minimum size (mobile first)
 */
/*
 * Media query to respond to a maximum size
 */
/*
 * Output font size in px/rem
 */
/*
 * Placeholder mixin for <input>
 */
/**
 * Clearfix
 */
/**
 * Positioning
 */
/* = Responsive Layouts */
/* = GRID SYSTEM */
.container {
  width: 100%;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.container .container {
  padding: 0;
}
.container--hidden {
  overflow: hidden;
}
.container--900 {
  max-width: 900px !important;
}
.container--1000 {
  max-width: 1000px !important;
}
.container--600 {
  max-width: 600px !important;
}
.container--1920 {
  max-width: 1920px !important;
  padding: 0 0px !important;
}
.container--1920 .container {
  padding: 0 20px !important;
}

.not-found .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}
.not-found .container h1 {
  text-transform: uppercase;
}
.not-found .container .btn {
  margin-top: 60px;
}

.breadcrumbs {
  margin-top: 15px;
  margin-bottom: 15px;
}
.breadcrumbs p, .breadcrumbs a {
  margin: 0;
  font-size: 13px;
}
.breadcrumbs a {
  text-decoration: none;
  color: #00ABC8;
}

.search-results__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}
.search-results__wrapper .card {
  width: 100%;
}
@media (min-width: 767px) {
  .search-results__wrapper .card {
    width: calc(50% - 20px);
  }
}
@media (min-width: 1024px) {
  .search-results__wrapper .card {
    width: calc(33.33% - 26.67px);
  }
}
.search-results__wrapper .card__image {
  height: 200px;
}
.search-results__wrapper .card .card__excerpt, .search-results__wrapper .card .card__lower, .search-results__wrapper .card .card__category {
  display: none;
}
.search-results__wrapper .card .card__content {
  padding-bottom: 20px;
}
.search-results__wrapper .card .card__title {
  margin-bottom: 0;
}

.search-form {
  display: flex;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 40px;
}
.search-form input {
  width: 100%;
  border-radius: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 10px 20px;
  height: 50px;
  border: none;
  font-size: 18px;
}
.search-form button[type=submit] {
  border: 2px solid #00ABC8;
  background-color: #00ABC8;
  border-radius: 0;
  width: 50px;
  height: 50px;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0'%3F%3E%3Csvg height='18px' version='1.1' viewBox='0 0 18 18' width='18px' xmlns='http://www.w3.org/2000/svg' xmlns:sketch='http://www.bohemiancoding.com/sketch/ns' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle/%3E%3Cdesc/%3E%3Cdefs/%3E%3Cg fill='none' fill-rule='evenodd' id='Page-1' stroke='none' stroke-width='1'%3E%3Cg fill='%23ffffff' id='Core' transform='translate(-339.000000, -381.000000)'%3E%3Cg id='search' transform='translate(339.000000, 381.000000)'%3E%3Cpath d='M12.5,11 L11.7,11 L11.4,10.7 C12.4,9.6 13,8.1 13,6.5 C13,2.9 10.1,0 6.5,0 C2.9,0 0,2.9 0,6.5 C0,10.1 2.9,13 6.5,13 C8.1,13 9.6,12.4 10.7,11.4 L11,11.7 L11,12.5 L16,17.5 L17.5,16 L12.5,11 L12.5,11 Z M6.5,11 C4,11 2,9 2,6.5 C2,4 4,2 6.5,2 C9,2 11,4 11,6.5 C11,9 9,11 6.5,11 L6.5,11 Z' id='Shape'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: all 0.3s ease;
}
.search-form button[type=submit]:hover {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0'%3F%3E%3Csvg height='18px' version='1.1' viewBox='0 0 18 18' width='18px' xmlns='http://www.w3.org/2000/svg' xmlns:sketch='http://www.bohemiancoding.com/sketch/ns' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle/%3E%3Cdesc/%3E%3Cdefs/%3E%3Cg fill='none' fill-rule='evenodd' id='Page-1' stroke='none' stroke-width='1'%3E%3Cg fill='%23000000' id='Core' transform='translate(-339.000000, -381.000000)'%3E%3Cg id='search' transform='translate(339.000000, 381.000000)'%3E%3Cpath d='M12.5,11 L11.7,11 L11.4,10.7 C12.4,9.6 13,8.1 13,6.5 C13,2.9 10.1,0 6.5,0 C2.9,0 0,2.9 0,6.5 C0,10.1 2.9,13 6.5,13 C8.1,13 9.6,12.4 10.7,11.4 L11,11.7 L11,12.5 L16,17.5 L17.5,16 L12.5,11 L12.5,11 Z M6.5,11 C4,11 2,9 2,6.5 C2,4 4,2 6.5,2 C9,2 11,4 11,6.5 C11,9 9,11 6.5,11 L6.5,11 Z' id='Shape'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.search-form button[type=submit] span {
  width: 1px;
  height: 1px;
  opacity: 0;
}

.pagination {
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
}
.pagination .nav-links {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 10px;
}
.pagination .nav-links a, .pagination .nav-links span {
  text-decoration: none;
  color: #444;
}
.pagination .nav-links a.prev, .pagination .nav-links a.next, .pagination .nav-links a.current, .pagination .nav-links span.prev, .pagination .nav-links span.next, .pagination .nav-links span.current {
  color: #4D2680;
  font-weight: 600;
}
.pagination .nav-links a:hover {
  color: #00ABC8;
}

.wpforms-page-indicator {
  display: flex;
  justify-content: space-between !important;
  position: relative !important;
}
.wpforms-page-indicator:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  width: calc(100% - 20px);
  height: 2px;
  background-color: #444;
}
.wpforms-page-indicator .wpforms-page-indicator-page {
  background-color: #fff;
  position: relative;
  padding: 0 10px;
  z-index: 2;
}

.pullout {
  margin-right: -20px;
}

@media (min-width: 1250px) {
  .pullout {
    margin-right: calc((100vw - 1210px) / 2 * -1);
  }
}
.pullout-left {
  margin-left: -20px;
}

@media (min-width: 1250px) {
  .pullout-left {
    margin-left: calc((100vw - 1210px) / 2 * -1);
  }
}
@media (min-width: 1250px) {
  .pullout-desktop {
    margin-right: calc((100vw - 1210px) / 2 * -1);
  }
}
@media (min-width: 1250px) {
  .pullout-desktop-left {
    margin-left: calc((100vw - 1210px) / 2 * -1);
  }
}
.glide__bullets {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.glide__bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #F5F5F5;
  margin: 0 5px;
  padding: 0;
  border: none;
}

.glide__bullet:hover, .glide__bullet--active {
  background-color: #4D2680;
}

.glide__bullet:focus {
  background-color: #F5F5F5;
  border: none;
  border-radius: 50%;
}

.generic-text {
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}
.generic-text ul {
  margin-left: 15px;
}

.generic-text h2 {
  margin-bottom: 20px;
}

.btn--top {
  margin-bottom: 10px;
}

.bg-white {
  background-color: #fff !important;
}

.bg-light-grey {
  background-color: #F5F5F5 !important;
}

.bg-purple {
  background-color: #4D2680 !important;
}
.bg-purple h1, .bg-purple h2, .bg-purple h3, .bg-purple h4, .bg-purple h5, .bg-purple h6, .bg-purple p, .bg-purple span, .bg-purple li, .bg-purple a:not(.btn) {
  color: #fff !important;
}
.bg-purple a.btn {
  background-color: #00ABC8 !important;
  color: #fff !important;
  border-color: #00ABC8 !important;
}
.bg-purple a.btn:hover {
  background-color: #fff !important;
  color: #00ABC8 !important;
}

.bg-blue {
  background-color: #00ABC8 !important;
}
.bg-blue h1, .bg-blue h2, .bg-blue h3, .bg-blue h4, .bg-blue h5, .bg-blue h6, .bg-blue p, .bg-blue span, .bg-blue li, .bg-blue a:not(.btn) {
  color: #fff !important;
}
.bg-blue a.btn {
  background-color: #00ABC8 !important;
  color: #fff !important;
}
.bg-blue a.btn:hover {
  background-color: #fff !important;
  color: #00ABC8 !important;
}

.global-notice {
  padding-top: 5px;
  padding-bottom: 5px;
  transition: all 0.3s ease;
}
.global-notice-link {
  display: block;
  text-decoration: none;
}
.global-notice-link:hover {
  text-decoration: none;
}
.global-notice-link:hover .global-notice--warning {
  background-color: rgb(198.0258064516, 7.9741935484, 7.9741935484);
}
.global-notice-link:hover .global-notice--news {
  background-color: rgb(17.5628140704, 101.7336683417, 242.4371859296);
}
.global-notice-link:hover .global-notice--promo {
  opacity: 0.9;
}
.global-notice--warning {
  background-color: #950606;
}
.global-notice--news {
  background-color: #4285f5;
}
.global-notice--promo {
  background: linear-gradient(90deg, rgb(77, 38, 128) 0%, #00ABC8 75%);
}
.global-notice p {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  text-align: center;
  color: #fff;
}
.global-notice p a {
  color: #fff;
  text-decoration: underline;
}

.colourscheme--blue h2, .colourscheme--blue h3, .colourscheme--blue h4, .colourscheme--blue h5, .colourscheme--blue h6 {
  color: #00b4d5 !important;
}
.colourscheme--blue .btn--sec {
  background-color: #4D2680 !important;
  color: #fff !important;
  border: 2px solid #4D2680 !important;
}
.colourscheme--blue .btn--sec:hover {
  background-color: #fff !important;
  color: #4D2680 !important;
}
.colourscheme--blue .standout__wrapper {
  background-color: #0295b0 !important;
}
.colourscheme--green h2, .colourscheme--green h3, .colourscheme--green h4, .colourscheme--green h5, .colourscheme--green h6, .colourscheme--green .ctc__pre p {
  color: #6f9f17 !important;
}
.colourscheme--green .btn--sec {
  background-color: #6f9f17 !important;
  color: #fff !important;
  border: 2px solid #6f9f17 !important;
}
.colourscheme--green .btn--sec:hover {
  background-color: #fff !important;
  color: #6f9f17 !important;
}
.colourscheme--green .standout__wrapper {
  background-color: #709116 !important;
}
.colourscheme--orange h2, .colourscheme--orange h3, .colourscheme--orange h4, .colourscheme--orange h5, .colourscheme--orange h6, .colourscheme--orange .ctc__pre p {
  color: #f78727 !important;
}
.colourscheme--orange .btn--sec {
  background-color: #f78727 !important;
  color: #fff !important;
  border: 2px solid #f78727 !important;
}
.colourscheme--orange .btn--sec:hover {
  background-color: #fff !important;
  color: #f78727 !important;
}
.colourscheme--orange .standout__wrapper {
  background-color: #d39629 !important;
}
.colourscheme--pink h2, .colourscheme--pink h3, .colourscheme--pink h4, .colourscheme--pink h5, .colourscheme--pink h6, .colourscheme--pink .ctc__pre p {
  color: #c93579 !important;
}
.colourscheme--pink .btn--sec {
  background-color: #c93579 !important;
  color: #fff !important;
  border: 2px solid #c93579 !important;
}
.colourscheme--pink .btn--sec:hover {
  background-color: #fff !important;
  color: #c93579 !important;
}
.colourscheme--pink .standout__wrapper {
  background-color: #c93579 !important;
}

.contactoptions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000000;
}
.contactoptions__modal {
  position: absolute;
  bottom: 100%;
  padding: 16px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.1490196078);
  width: 100%;
  min-width: 280px;
  right: 0;
  transform: translateY(0px);
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.contactoptions__modal.open {
  transform: translateY(-20px);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.contactoptions__modal-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 10px 20px;
  background-color: #4D2680;
  width: 100%;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .contactoptions__modal-item.hide-on-desktop {
    display: none !important;
  }
}
.contactoptions__modal-item:hover {
  opacity: 0.8;
  text-decoration: none;
}
.contactoptions__modal-item:last-child {
  margin-bottom: 0;
}
.contactoptions__modal-item--blue {
  background-color: #00ABC8;
}
.contactoptions__modal-item-icon {
  width: 20px;
}
.contactoptions__modal-item-text {
  width: calc(100% - 30px);
  text-align: left;
}
.contactoptions__modal-item-text p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.contactoptions__rotating-text {
  position: absolute;
  bottom: 100%;
  right: 0;
}
.contactoptions__rotating-text-item {
  background-color: #4D2680;
  border-radius: 20px;
  box-shadow: 0px 4px 12px 0px rgba(77, 38, 128, 0.3019607843);
  padding: 10px;
  position: relative;
  margin-bottom: 10px;
  display: none;
}
.contactoptions__rotating-text-item--blue {
  background-color: #00ABC8;
}
.contactoptions__rotating-text-item--blue:before {
  border-top-color: #00ABC8 !important;
}
@media (min-width: 1024px) {
  .contactoptions__rotating-text-item:first-of-type {
    display: block;
  }
}
.contactoptions__rotating-text-item:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #4D2680;
}
.contactoptions__rotating-text-item p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.contactoptions__trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.9882352941);
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0px 1px 0px 0px #FFFFFF inset, 0px 0px 20px 0px rgba(77, 38, 128, 0.1490196078), 0px 10px 30px 0px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  padding: 10px;
  text-align: left;
  padding-right: 20px;
  min-width: 250px;
}
.contactoptions__trigger--blue .contactoptions__trigger-icon {
  background-color: #00ABC8;
}
.contactoptions__trigger-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #4D2680;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contactoptions__trigger-icon img {
  width: 32px;
}
.contactoptions__trigger-text-wrapper {
  width: calc(100% - 74px);
}
.contactoptions__trigger-text-wrapper p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #4D2680;
  line-height: 1.2;
}
.contactoptions__trigger-text-wrapper p.contactoptions__trigger-text {
  font-size: 12px;
  font-weight: 400;
}

body .iubenda-tp-btn:not(.iubenda-floatable-tb-btn)[data-tp-float][data-tp-float=bottom-right] {
  right: auto !important;
  left: 0 !important;
}

.post-password-form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.post-password-form input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.post-password-form label {
  width: 100%;
}
.post-password-form input[type=submit] {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  background-color: white;
  color: #4D2680;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid #4D2680;
  height: auto;
  transition: all 0.3s ease;
}
.post-password-form input[type=submit]:hover {
  background-color: rgba(77, 38, 128, 0.2);
  color: #4D2680;
}

.sectionitem {
  scroll-padding-top: 300px;
}

#wpforms-confirmation-221932 {
  background-color: #fff !important;
  border: 1px solid #4D2680 !important;
  border-radius: 20px !important;
  padding: 20px !important;
  margin-top: 20px !important;
  margin-bottom: 20px !important;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1) !important;
}

#wpforms-confirmation-221932 h2 {
  color: #4D2680 !important;
  font-size: 24px !important;
}

#wpforms-confirmation-221932 h3 {
  margin: 0 !important;
  line-height: 1.5 !important;
}

.hvoresults__results-item {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 20px !important;
}

.hvoresults__results-item p {
  font-weight: 700 !important;
  line-height: 1.5 !important;
}
/**
 * Brand Colours
 */
/**
 * BTG Colours
 */
/**
 * Element Colours
 */
/**
 * UI Colours
 */
/**
 * Typography
 */
/**
 * Breakpoints
 */
/**
 * Grid
 */
/**
 * Components
 */
/*
 * Media query to respond to a minimum size (mobile first)
 */
/*
 * Media query to respond to a maximum size
 */
/*
 * Output font size in px/rem
 */
/*
 * Placeholder mixin for <input>
 */
/**
 * Clearfix
 */
/**
 * Positioning
 */
/* = Responsive Layouts */
/* = GRID SYSTEM */
.btn {
  padding: 7px 24px;
  display: inline-block;
  color: #fff;
  background: #4D2680;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  border: 2px solid #4D2680;
  white-space: normal;
}
.btn:hover, .btn:focus {
  color: #4D2680;
  text-decoration: none;
  background-color: #fff;
}
.btn--dcc {
  background-color: #fff !important;
  padding: 7px 24px !important;
  border: 2px solid #52E800 !important;
  color: #000072 !important;
  border-radius: 0 !important;
  padding-right: 50px !important;
  position: relative !important;
}
.btn--dcc::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 25px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.60742 2.58276V1.23511C9.60742 0.619873 10.3691 0.297607 10.8086 0.737061L13.3281 3.28589C13.6211 3.54956 13.6211 3.98901 13.3281 4.25269L10.8086 6.80151C10.3691 7.24097 9.60742 6.9187 9.60742 6.30347V4.92651H0.789062C0.583984 4.92651 0.4375 4.78003 0.4375 4.57495V2.93433C0.4375 2.75854 0.583984 2.58276 0.789062 2.58276H9.60742Z' fill='%23000072'/%3E%3C/svg%3E%0A");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}
.btn--dcc:hover, .btn--dcc:focus {
  background-color: #000072 !important;
  border-color: #fff !important;
  color: #fff !important;
}
.btn--dcc:hover::after, .btn--dcc:focus::after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.60742 2.58276V1.23511C9.60742 0.619873 10.3691 0.297607 10.8086 0.737061L13.3281 3.28589C13.6211 3.54956 13.6211 3.98901 13.3281 4.25269L10.8086 6.80151C10.3691 7.24097 9.60742 6.9187 9.60742 6.30347V4.92651H0.789062C0.583984 4.92651 0.4375 4.78003 0.4375 4.57495V2.93433C0.4375 2.75854 0.583984 2.58276 0.789062 2.58276H9.60742Z' fill='%23fff'/%3E%3C/svg%3E%0A");
  right: 20px;
}
.btn--sec {
  background-color: #00ABC8;
  border: 2px solid #00ABC8;
}
.btn--sec:hover, .btn--sec:focus {
  background-color: #fff;
  color: #00ABC8;
}
.btn--green {
  background-color: #447C53;
  border: 2px solid #447C53;
}
.btn--green:hover, .btn--green:focus {
  background-color: #fff;
  color: #447C53;
}
.btn--white {
  background-color: #fff;
  border: 2px solid #fff;
  color: #4D2680;
}
.btn--white:hover, .btn--white:focus {
  background-color: #4D2680;
  color: #fff;
}
.btn--red {
  background-color: #B2647E;
  border: 2px solid #B2647E;
}
.btn--red:hover, .btn--red:focus {
  background-color: #fff;
  color: #B2647E;
}
.btn--ghost {
  background-color: transparent;
  border: 2px solid #4D2680;
  color: #4D2680;
}
.btn--ghost:hover, .btn--ghost:focus {
  background-color: #4D2680;
  color: #fff;
}

.wpforms-page-button {
  padding: 14px 22px !important;
  display: inline-block !important;
  color: #fff !important;
  background: #4D2680 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  border-radius: 2px !important;
  transition: background-color 0.25s ease-in-out !important;
  text-decoration: none !important;
  height: auto !important;
  text-align: center !important;
}
@media screen and (min-width: 480px) {
  .wpforms-page-button {
    display: inline-block !important;
  }
}
.wpforms-page-button:hover, .wpforms-page-button:focus {
  color: #fff !important;
  text-decoration: none !important;
  background-color: #00ABC8 !important;
}

.link {
  color: #4D2680;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: text-decoration 0.3s ease;
}
.link:hover, .link:focus {
  transition: color 0.25s ease-in-out;
  color: #00ABC8;
}
/**
 * Brand Colours
 */
/**
 * BTG Colours
 */
/**
 * Element Colours
 */
/**
 * UI Colours
 */
/**
 * Typography
 */
/**
 * Breakpoints
 */
/**
 * Grid
 */
/**
 * Components
 */
/*
 * Media query to respond to a minimum size (mobile first)
 */
/*
 * Media query to respond to a maximum size
 */
/*
 * Output font size in px/rem
 */
/*
 * Placeholder mixin for <input>
 */
/**
 * Clearfix
 */
/**
 * Positioning
 */
/* = Responsive Layouts */
/* = GRID SYSTEM */
body {
  color: #444;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.75;
  -webkit-text-size-adjust: none;
}

small {
  font-size: 14px;
  font-size: 0.875rem;
}

h1, h2, h3, h4, h5, h6 {
  color: #4D2680;
  margin-bottom: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

p, a {
  font-family: "Roboto", sans-serif;
}

h1,
h2 {
  line-height: 1.1;
}

h3,
h4 {
  line-height: 1.3;
}

h1 {
  font-size: 30px;
  font-size: 1.875rem;
}
@media (min-width: 767px) {
  h1 {
    font-size: 35px;
    font-size: 2.1875rem;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 50px;
    font-size: 3.125rem;
  }
}

h2 {
  font-size: 25px;
  font-size: 1.5625rem;
}
@media (min-width: 767px) {
  h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  h2 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 22px;
  font-size: 1.375rem;
}
@media (min-width: 767px) {
  h3 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
@media (min-width: 1024px) {
  h3 {
    font-size: 35px;
    font-size: 2.1875rem;
  }
}

h4 {
  font-size: 18px;
  font-size: 1.125rem;
}
@media (min-width: 767px) {
  h4 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  h4 {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

h5,
h6 {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 10px;
}

strong {
  font-weight: bold;
}
/**
 * Brand Colours
 */
/**
 * BTG Colours
 */
/**
 * Element Colours
 */
/**
 * UI Colours
 */
/**
 * Typography
 */
/**
 * Breakpoints
 */
/**
 * Grid
 */
/**
 * Components
 */
/*
 * Media query to respond to a minimum size (mobile first)
 */
/*
 * Media query to respond to a maximum size
 */
/*
 * Output font size in px/rem
 */
/*
 * Placeholder mixin for <input>
 */
/**
 * Clearfix
 */
/**
 * Positioning
 */
/* = Responsive Layouts */
/* = GRID SYSTEM */
blockquote {
  text-align: center;
  font-style: italic;
}
@media screen and (min-width: 600px) {
  blockquote {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 767px) {
  blockquote {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
blockquote:before {
  content: "";
  display: block;
  margin: 28px auto 18.6666666667px;
  background: url("../../images/icon--quote-mark.svg") no-repeat center center;
  background-size: contain;
  width: 60px;
  height: 56px;
}
@media screen and (min-width: 767px) {
  blockquote:before {
    width: 80px;
    height: 75px;
  }
}

.main-content blockquote {
  margin: 56px 0;
}
/**
 * Brand Colours
 */
/**
 * BTG Colours
 */
/**
 * Element Colours
 */
/**
 * UI Colours
 */
/**
 * Typography
 */
/**
 * Breakpoints
 */
/**
 * Grid
 */
/**
 * Components
 */
/*
 * Media query to respond to a minimum size (mobile first)
 */
/*
 * Media query to respond to a maximum size
 */
/*
 * Output font size in px/rem
 */
/*
 * Placeholder mixin for <input>
 */
/**
 * Clearfix
 */
.search-wrap:before, .search-wrap:after {
  content: " ";
  display: table;
  flex-basis: 0;
  width: 0;
  height: 0;
  order: 1;
}
.search-wrap:after {
  clear: both;
}

/**
 * Positioning
 */
/* = Responsive Layouts */
/* = GRID SYSTEM */
/**
 * Blanket input styles for normalisation
 */
input,
select,
textarea {
  background-color: #fff;
  border: solid 1px #444;
  border-radius: 0;
  color: #444;
  height: 42px;
  padding: 0 14px;
  width: 100%;
  -webkit-appearance: none;
}

input[type=checkbox],
input[type=radio] {
  background: transparent;
  border: 0;
  line-height: normal;
  height: auto;
  width: auto;
}

input[type=file] {
  line-height: normal;
  height: auto;
  padding: 7px 14px;
}

input[type=submit] {
  -webkit-border-radius: 0;
  border-radius: 0;
}

input[disabled] {
  background-color: whitesmoke;
  cursor: not-allowed;
}

select {
  line-height: normal;
  padding: 0;
  padding-left: 14px;
}

textarea {
  min-height: 112px;
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

.hidden {
  display: none;
}

/**
 * Form utility classes
 */
.checkbox,
.radio {
  display: block;
  padding-left: 28px;
}
.checkbox.inline,
.radio.inline {
  display: inline-block;
}
.checkbox > input,
.radio > input {
  float: left;
  margin-left: -28px;
  margin-top: 4px;
}

.form__group {
  display: block;
  margin-bottom: 28px;
}

.form__label {
  display: block;
  margin-bottom: 14px;
}

/**
 * Input Group
 *
 * Allows for prepend/append of elements 
 * (such as icons) on an input.
 */
.input-group {
  position: relative;
}
.input-group > input {
  padding: 0 56px;
}
.input-group .input-group__addon {
  line-height: 42px;
  height: 42px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 42px;
}
.input-group .input-group__addon:first-child {
  left: 0;
}
.input-group .input-group__addon:last-child {
  right: 0;
}

.search-wrap .screen-reader-text {
  display: block;
}
.search-wrap .search-field {
  margin: 0 0 14px;
}
@media screen and (min-width: 768px) {
  .search-wrap .search-field {
    width: 75%;
    margin: 0;
    float: left;
  }
}
.search-wrap .search-button {
  padding: 0;
  border: 0;
  border-radius: 2px;
  background-image: url("../../images/search.svg");
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: center center;
  text-indent: -9999px;
}
@media screen and (min-width: 768px) {
  .search-wrap .search-button {
    width: 20%;
    float: right;
  }
}
/**
 * Brand Colours
 */
/**
 * BTG Colours
 */
/**
 * Element Colours
 */
/**
 * UI Colours
 */
/**
 * Typography
 */
/**
 * Breakpoints
 */
/**
 * Grid
 */
/**
 * Components
 */
/*
 * Media query to respond to a minimum size (mobile first)
 */
/*
 * Media query to respond to a maximum size
 */
/*
 * Output font size in px/rem
 */
/*
 * Placeholder mixin for <input>
 */
/**
 * Clearfix
 */
/**
 * Positioning
 */
.section {
  padding: 56px 0;
}

.container {
  padding: 0 30px;
}
@media (min-width: 768px) {
  .container {
    margin: 0 auto;
    max-width: 1200px;
    width: 90%;
  }
}

/* = Responsive Layouts */
/* = GRID SYSTEM */
.wrapper {
  padding-top: 60px;
}
@media (min-width: 768px) {
  .wrapper {
    padding-top: 120px;
  }
}

html {
  background: white;
}

body {
  position: relative;
  background: white;
  z-index: 1;
}

.container {
  box-sizing: border-box;
}
.container--narrow {
  max-width: 800px;
  margin: 0 auto;
}

.section {
  position: relative;
}
.section__header {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 800px;
}
.section__header p {
  max-width: 700px;
  margin: 0 auto;
}

.section-container > .section:first-child {
  border-top: 0;
  padding-top: 0px;
}

.section-subtitle {
  text-align: center;
}

.section-title {
  text-align: center;
  margin: 0 0 15px;
  font-size: 20px;
}
/**
 * Brand Colours
 */
/**
 * BTG Colours
 */
/**
 * Element Colours
 */
/**
 * UI Colours
 */
/**
 * Typography
 */
/**
 * Breakpoints
 */
/**
 * Grid
 */
/**
 * Components
 */
/*
 * Media query to respond to a minimum size (mobile first)
 */
/*
 * Media query to respond to a maximum size
 */
/*
 * Output font size in px/rem
 */
/*
 * Placeholder mixin for <input>
 */
/**
 * Clearfix
 */
/**
 * Positioning
 */
/* = Responsive Layouts */
/* = GRID SYSTEM */
table:not([class]) {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  font-size: 0.7em;
  margin: 28px 0;
}
@media screen and (min-width: 767px) {
  table:not([class]) {
    font-size: 0.8em;
    width: 100%;
  }
}
table:not([class]) caption {
  margin: 0 0 14px;
}
table:not([class]) tr:nth-child(even) {
  background-color: #f8f6f7;
}
table:not([class]) th,
table:not([class]) td {
  vertical-align: top;
  border: 1px solid #444;
  padding: 0.5em 0.6em;
}
@media screen and (min-width: 767px) {
  table:not([class]) th,
  table:not([class]) td {
    padding: 1em;
  }
}
table:not([class]) th {
  color: #fff;
  font-weight: bold;
  background-color: #4D2680;
}

.table-wrapper {
  overflow-x: auto;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}



  .hs-search-field__form {
    position: relative;
  }

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: #000;
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 25px;
  }


.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
    /* V1 lang switcher updates to keep "in line" w/ v0 mobile styles */
    .header__language-switcher .hs-language-switcher__menu {
        display: block;
        box-shadow:none!important;
        background: transparent;
    }
    .header__language-switcher .hs-language-switcher__menu a {
        font-size: 20px!important;
    }
    .header__language-switcher .hs-language-switcher__button {
        display: none;
    }
  }

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* Menu and simple menu */
.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */
.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}
/* Vertical menu */
.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */
.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}
.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}
/* CTA, logo, and rich text images */
.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}
/**
 * Brand Colours
 */
/**
 * BTG Colours
 */
/**
 * Element Colours
 */
/**
 * UI Colours
 */
/**
 * Typography
 */
/**
 * Breakpoints
 */
/**
 * Grid
 */
/**
 * Components
 */
[data-global-resource-path="certas-energy-theme/templates/partials/header.html"],
[data-global-resource-path="certas-energy-theme/templates/partials/header-no-navigation.html"] {
  display: contents;
}

.preheader {
  padding: 10px 0;
  background-color: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
@media (min-width: 1024px) {
  .preheader {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
}
.preheader__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.preheader__trustpilot {
  display: none;
}
@media (min-width: 767px) {
  .preheader__trustpilot {
    display: block;
  }
}
.preheader__trustpilot a, .preheader__trustpilot-stars {
  display: flex;
  align-items: center;
}
.preheader__trustpilot a img, .preheader__trustpilot-stars img {
  width: 20px;
}
.preheader__trustpilot a img.half, .preheader__trustpilot-stars img.half {
  width: 10px;
}
.preheader__trustpilot a {
  text-decoration: none;
  gap: 10px;
}
.preheader__trustpilot-text p {
  margin: 0;
  font-size: 15px;
  color: #444;
}
.preheader__trustpilot-text p strong {
  font-weight: 500;
}
.preheader__contacts {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}
.preheader__contacts a {
  text-decoration: none;
  color: #4D2680;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 25px;
}
.preheader__contacts a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.preheader__contacts a.mail {
  display: none;
}
@media (min-width: 767px) {
  .preheader__contacts a.mail {
    display: block;
  }
}
.preheader__contacts a.mail:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234D2680' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-mail h-4 w-4'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpath d='M22 6l-10 7L2 6'%3E%3C/path%3E%3C/svg%3E");
}
.preheader__contacts a.mail:hover:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300ABC8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-mail h-4 w-4'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpath d='M22 6l-10 7L2 6'%3E%3C/path%3E%3C/svg%3E");
}
.preheader__contacts a.account {
  display: none;
}
@media (min-width: 767px) {
  .preheader__contacts a.account {
    display: block;
  }
}
.preheader__contacts a.account:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234D2680' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-user h-4 w-4'%3E%3Cpath d='M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E");
}
.preheader__contacts a.account:hover:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300ABC8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-user h-4 w-4'%3E%3Cpath d='M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E");
}
.preheader__contacts a.phone:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234D2680' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-phone h-4 w-4 text-%5B%234f2683%5D'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
  width: 18px;
  height: 18px;
}
.preheader__contacts a.phone:hover:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300ABC8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-phone h-4 w-4 text-%5B%234f2683%5D'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
}
.preheader__contacts a:hover {
  color: #00ABC8;
}

.site-header {
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}
@media (min-width: 1024px) {
  .site-header.site-header--simple {
    top: 0;
  }
}
.site-header.site-header--simple .site-header__logo {
  padding: 20px 0;
}
@media (min-width: 1024px) {
  .site-header {
    padding: 0;
    top: 47px;
  }
}
.site-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.site-header__logo {
  width: 100%;
  max-width: 200px;
  margin-right: 20px;
}
@media (min-width: 1024px) {
  .site-header__logo {
    margin-right: 40px;
  }
}
.site-header__logo img {
  width: 100%;
}
.site-header__nav {
  position: absolute;
  width: 100%;
  left: 0;
  top: 70px;
  overflow: hidden;
  height: calc(100vh - 70px);
  z-index: 1000;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .site-header__nav {
    position: static;
    flex: 1;
    top: auto;
    background-color: transparent;
    height: auto;
    overflow: visible;
    pointer-events: auto;
  }
}
.site-header__nav .nav-menu {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #fff;
  height: calc(100vh - 70px);
  transform: translateX(100%);
  transition: all 0.5s ease-in-out;
  pointer-events: none;
  overflow: auto;
}
.site-header__nav .nav-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
@media (min-width: 1024px) {
  .site-header__nav .nav-menu {
    position: static;
    transform: none;
    overflow: visible;
    height: auto;
    background-color: transparent;
    pointer-events: auto;
  }
}
.site-header__search {
  margin-left: 20px;
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 1024px) {
  .site-header__search {
    flex: 0;
  }
}
.site-header__search-form {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 100;
  margin-top: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  width: calc(100% - 20px);
}
.site-header__search-form.open {
  opacity: 1;
  pointer-events: auto;
  z-index: 1000000;
}
.site-header__search-form form {
  margin-top: 0;
}
.site-header__search-form input {
  border: 1px solid #e5e7eb;
  border-right: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
}
.site-header__search .search-close {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-right: 0;
  border-radius: 10px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding: 5px 10px;
  position: relative;
}
.site-header__search .search-close:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 80%;
  background-color: #e5e7eb;
}
.site-header__search .search-close svg {
  width: 10px;
}
.site-header__search a {
  display: block;
  padding: 0 5px;
  opacity: 1;
  transition: all 0.3s ease;
  margin-top: 3px;
}
.site-header__search a:hover {
  opacity: 0.7;
}
.site-header__menu-toggle {
  position: relative;
  width: 30px;
  height: 30px;
  margin-left: 20px;
}
@media (min-width: 1024px) {
  .site-header__menu-toggle {
    display: none;
  }
}
.site-header__menu-toggle .menutoggle {
  background-color: transparent;
  border: 0;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 3px;
  left: 0px;
  transition-duration: 0.5s;
}
.site-header__menu-toggle .menutoggle .icon-left {
  left: 0;
}
.site-header__menu-toggle .menutoggle .icon-right, .site-header__menu-toggle .menutoggle .icon-left {
  transition-duration: 0.5s;
  position: absolute;
  height: 4px;
  width: 15px;
  top: 10px;
  background-color: #212121;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.site-header__menu-toggle .menutoggle .icon-right:before, .site-header__menu-toggle .menutoggle .icon-left:before {
  transition-duration: 0.5s;
  position: absolute;
  width: 15px;
  height: 4px;
  background-color: #212121;
  content: "";
  top: -10px;
  left: 0;
  margin: 0 !important;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.site-header__menu-toggle .menutoggle .icon-right:after, .site-header__menu-toggle .menutoggle .icon-left:after {
  transition-duration: 0.5s;
  position: absolute;
  width: 15px;
  height: 4px;
  background-color: #212121;
  content: "";
  top: 10px;
  left: 0;
  margin: 0 !important;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.site-header__menu-toggle .menutoggle .icon-right {
  left: 15px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.site-header__menu-toggle .menutoggle .icon-right:before {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.site-header__menu-toggle .menutoggle .icon-right:after {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.site-header__menu-toggle .menutoggle.open .icon-left {
  transition-duration: 0.5s;
  background: transparent;
}
.site-header__menu-toggle .menutoggle.open .icon-left:after {
  transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -2px);
}
.site-header__menu-toggle .menutoggle.open .icon-left:before {
  transform: rotateZ(45deg) scaleX(1.4) translate(2px, 2px);
}
.site-header__menu-toggle .menutoggle.open .icon-right {
  transition-duration: 0.5s;
  background: transparent;
}
.site-header__menu-toggle .menutoggle.open .icon-right:after {
  transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -2px);
}
.site-header__menu-toggle .menutoggle.open .icon-right:before {
  transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 2px);
}

.nav-open {
  overflow: hidden;
}

.nav-menu.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.menutoggle.is-open .icon-left {
  background: transparent;
}
.menutoggle.is-open .icon-left:after {
  transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -2px);
}
.menutoggle.is-open .icon-left:before {
  transform: rotateZ(45deg) scaleX(1.4) translate(2px, 2px);
}
.menutoggle.is-open .icon-right {
  background: transparent;
}
.menutoggle.is-open .icon-right:after {
  transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -2px);
}
.menutoggle.is-open .icon-right:before {
  transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 2px);
}
/**
 * Brand Colours
 */
/**
 * BTG Colours
 */
/**
 * Element Colours
 */
/**
 * UI Colours
 */
/**
 * Typography
 */
/**
 * Breakpoints
 */
/**
 * Grid
 */
/**
 * Components
 */
#hs_cos_wrapper_nav_menu {
  display: contents;
}

.site-header__nav ul {
  display: block;
  justify-content: flex-start;
  list-style-type: none;
  flex-wrap: wrap;
  margin: 0;
  padding: 40px 0px;
}
@media (min-width: 1024px) {
  .site-header__nav ul {
    display: flex;
    justify-content: flex-end;
    padding: 0;
  }
}
.site-header__nav ul li {
  width: 100%;
  margin-bottom: 20px;
  padding: 0 20px;
}
.site-header__nav ul li.parent-link {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .site-header__nav ul li.parent-link.mobileonly {
    display: none !important;
  }
}
.site-header__nav ul li.parent-link.btn {
  width: calc(100% - 40px);
  max-width: 250px;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 20px;
}
@media (min-width: 767px) {
  .site-header__nav ul li.parent-link.btn {
    display: block;
  }
}
.site-header__nav ul li.parent-link.btn a {
  color: #fff !important;
}
.site-header__nav ul li.parent-link .parent-link__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header__nav ul li .sub-menu-toggle {
  background-color: transparent;
  border: 0;
  padding: 15px;
  transform: rotate(0deg);
  transition: transform 0.25s ease-in-out;
}
@media (min-width: 1024px) {
  .site-header__nav ul li .sub-menu-toggle {
    padding: 0;
    margin-bottom: 4px;
  }
}
.site-header__nav ul li .sub-menu-toggle svg {
  width: 20px;
  margin-bottom: 1px;
}
@media (min-width: 1024px) {
  .site-header__nav ul li .sub-menu-toggle svg {
    width: 10px;
  }
}
.site-header__nav ul li .sub-menu-toggle.open {
  transform: rotate(180deg);
}
@media (min-width: 1024px) {
  .site-header__nav ul li {
    margin-right: 20px;
    width: auto;
    margin-bottom: 0;
    text-align: left;
    padding: 0;
    padding-top: 25px;
    padding-bottom: 25px;
    border-bottom: none;
  }
}
@media (min-width: 1200px) {
  .site-header__nav ul li {
    margin-right: 20px;
  }
}
.site-header__nav ul li:last-child {
  margin-bottom: 0;
}
.site-header__nav ul li:hover .parent-link__wrapper a {
  color: #4D2680;
}
.site-header__nav ul li:hover .parent-link__wrapper a:before {
  transform: scaleX(1);
}
.site-header__nav ul li a {
  color: #444;
  font-weight: 500;
  padding: 10px;
  padding-left: 0;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.25s ease-in-out;
  position: relative;
  flex: 1;
}
@media (min-width: 1024px) {
  .site-header__nav ul li a {
    padding: 5px;
    font-size: 16px;
  }
}
.site-header__nav ul li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #4D2680;
  transform: scaleX(0);
  transition: transform 0.25s ease-in-out;
  display: none;
}
@media (min-width: 1024px) {
  .site-header__nav ul li a:before {
    display: block;
  }
}
.site-header__nav ul li:hover .sub-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.site-header__nav ul li .sub-menu {
  position: relative;
  padding: 0;
  display: none;
  margin-left: 10px;
}
@media (min-width: 1024px) {
  .site-header__nav ul li .sub-menu {
    margin-left: 0;
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding-top: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.25s ease-in-out;
    pointer-events: none;
  }
}
@media (min-width: 1024px) {
  .site-header__nav ul li .sub-menu--basic {
    width: auto;
    left: auto;
    padding: 10px;
  }
}
.site-header__nav ul li .sub-menu--basic ul {
  padding: 0;
  margin: 0;
  margin-left: 10px;
}
.site-header__nav ul li .sub-menu--basic ul ul {
  margin-left: 0;
}
@media (min-width: 1024px) {
  .site-header__nav ul li .sub-menu--basic ul {
    display: block;
    margin-left: 0;
  }
}
.site-header__nav ul li .sub-menu--basic ul li {
  padding: 0;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .site-header__nav ul li .sub-menu--basic ul li {
    display: block;
    padding: 5px 0;
    margin: 0;
  }
}
.site-header__nav ul li .sub-menu--basic ul li a {
  font-size: 16px;
  display: block;
}
.site-header__nav ul li .sub-menu--basic ul li:hover a {
  color: #00ABC8;
}
.site-header__nav ul li .sub-menu__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0px;
  background-color: #fff;
}
@media (min-width: 1024px) {
  .site-header__nav ul li .sub-menu__wrapper {
    gap: 60px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
  }
}
.site-header__nav ul li .sub-menu__wrapper--horizontal .sub-menu__left ul {
  flex-wrap: wrap;
}
.site-header__nav ul li .sub-menu__wrapper--horizontal .sub-menu__left ul li a {
  flex-direction: row;
  align-items: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .site-header__nav ul li .sub-menu__wrapper--horizontal .sub-menu__left ul li a {
    padding-bottom: 0;
  }
}
.site-header__nav ul li .sub-menu__wrapper--horizontal .sub-menu__left ul li a img {
  width: 100px;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
}
.site-header__nav ul li .sub-menu__wrapper--horizontal .sub-menu__left ul li a p.learn-more {
  position: relative;
  padding: 0;
}
.site-header__nav ul li .sub-menu__cards {
  width: 100%;
}
.site-header__nav ul li .sub-menu__cards ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0px;
}
@media (min-width: 1024px) {
  .site-header__nav ul li .sub-menu__cards ul {
    gap: 20px;
  }
}
.site-header__nav ul li .sub-menu__cards ul li {
  width: 100%;
  margin-right: 0;
  padding: 0;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .site-header__nav ul li .sub-menu__cards ul li {
    width: calc(25% - 15px);
  }
}
.site-header__nav ul li .sub-menu__cards ul li a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  padding: 10px;
  padding-left: 0;
}
@media (min-width: 1024px) {
  .site-header__nav ul li .sub-menu__cards ul li a {
    height: 100%;
    position: relative;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0px;
    padding-bottom: 40px;
  }
}
.site-header__nav ul li .sub-menu__cards ul li a:before {
  display: none;
}
.site-header__nav ul li .sub-menu__cards ul li a img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 10px;
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
  display: none;
}
@media (min-width: 1024px) {
  .site-header__nav ul li .sub-menu__cards ul li a img {
    display: block;
  }
}
.site-header__nav ul li .sub-menu__cards ul li a:hover img {
  opacity: 0.85;
}
.site-header__nav ul li .sub-menu__cards ul li a:hover p.learn-more {
  color: #00ABC8;
}
.site-header__nav ul li .sub-menu__left, .site-header__nav ul li .sub-menu__right {
  width: 100%;
}
@media (min-width: 1024px) {
  .site-header__nav ul li .sub-menu__left, .site-header__nav ul li .sub-menu__right {
    width: calc(50% - 30px);
  }
}
.site-header__nav ul li .sub-menu__right-title {
  font-size: 30px;
  font-weight: 500;
  font-family: "Barlow Condensed", sans-serif;
  margin-bottom: 20px;
  color: #4D2680;
  display: none;
}
@media (min-width: 1024px) {
  .site-header__nav ul li .sub-menu__right-title {
    display: block;
  }
}
.site-header__nav ul li .sub-menu__right ul {
  justify-content: flex-start;
  gap: 20px;
  padding: 0;
}
.site-header__nav ul li .sub-menu__right ul li {
  width: 100%;
  margin-right: 0;
  padding: 0;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .site-header__nav ul li .sub-menu__right ul li {
    width: calc(33.33% - 15px);
  }
}
.site-header__nav ul li .sub-menu__right ul li a {
  text-decoration: none;
  display: block;
  padding: 10px;
  padding-left: 0;
  font-size: 16px;
}
@media (min-width: 1024px) {
  .site-header__nav ul li .sub-menu__right ul li a {
    padding: 5px;
  }
}
.site-header__nav ul li .sub-menu__right ul li a:before {
  display: none;
}
.site-header__nav ul li .sub-menu__right ul li a:hover {
  color: #00ABC8;
}
.site-header__nav ul li .sub-menu__left-title {
  font-size: 30px;
  font-weight: 500;
  font-family: "Barlow Condensed", sans-serif;
  margin-bottom: 20px;
  color: #4D2680;
  display: none;
}
@media (min-width: 1024px) {
  .site-header__nav ul li .sub-menu__left-title {
    display: block;
  }
}
.site-header__nav ul li .sub-menu__left-content {
  padding: 0px;
  flex: 1;
}
@media (min-width: 1024px) {
  .site-header__nav ul li .sub-menu__left-content {
    padding: 10px;
  }
}
.site-header__nav ul li .sub-menu__left-content p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #444;
  transition: color 0.25s ease-in-out;
}
.site-header__nav ul li .sub-menu__left-content p.title {
  font-size: 16px;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .site-header__nav ul li .sub-menu__left-content p.title {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
    font-family: "Barlow Condensed", sans-serif;
    margin-bottom: 0px;
    color: #4D2680;
  }
}
.site-header__nav ul li .sub-menu__left-content p.excerpt {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #444;
  margin-bottom: 10px;
  display: none;
}
@media (min-width: 1024px) {
  .site-header__nav ul li .sub-menu__left-content p.excerpt {
    display: block;
  }
}
.site-header__nav ul li .sub-menu__left-content p.learn-more {
  font-size: 14px;
  font-weight: 400;
  position: absolute;
  bottom: 0;
  padding: 10px;
  left: 0;
  width: 100%;
  display: none;
}
@media (min-width: 1024px) {
  .site-header__nav ul li .sub-menu__left-content p.learn-more {
    display: block;
  }
}
.site-header__nav ul li .sub-menu__left ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0px;
}
@media (min-width: 1024px) {
  .site-header__nav ul li .sub-menu__left ul {
    gap: 20px;
  }
}
.site-header__nav ul li .sub-menu__left ul li {
  width: 100%;
  margin-right: 0;
  padding: 0;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .site-header__nav ul li .sub-menu__left ul li {
    width: calc(50% - 10px);
  }
}
.site-header__nav ul li .sub-menu__left ul li a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  padding: 10px;
  padding-left: 0;
}
@media (min-width: 1024px) {
  .site-header__nav ul li .sub-menu__left ul li a {
    height: 100%;
    position: relative;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0px;
    padding-bottom: 40px;
  }
}
.site-header__nav ul li .sub-menu__left ul li a:before {
  display: none;
}
.site-header__nav ul li .sub-menu__left ul li a img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 10px;
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
  display: none;
}
@media (min-width: 1024px) {
  .site-header__nav ul li .sub-menu__left ul li a img {
    display: block;
  }
}
.site-header__nav ul li .sub-menu__left ul li a:hover img {
  opacity: 0.85;
}
.site-header__nav ul li .sub-menu__left ul li a:hover p.learn-more {
  color: #00ABC8;
}

.sub-menu-toggle.is-open {
  transform: rotate(180deg);
}

@media (max-width: 1023px) {
  .parent-link.is-open .sub-menu {
    display: block;
  }
}
/**
 * Brand Colours
 */
/**
 * BTG Colours
 */
/**
 * Element Colours
 */
/**
 * UI Colours
 */
/**
 * Typography
 */
/**
 * Breakpoints
 */
/**
 * Grid
 */
/**
 * Components
 */
[data-global-resource-path="certas-energy-theme/templates/partials/footer.html"] {
  display: contents;
}

.footer {
  background-color: #fff;
  padding: 25px 0;
  margin-top: 20px;
  border-top: 1px solid #c2c2c2;
}
.footer__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__wrapper h4 {
  margin-bottom: 10px;
}
.footer__links, .footer__form {
  width: 100%;
}
@media (min-width: 1024px) {
  .footer__links, .footer__form {
    width: calc(50% - 10px);
  }
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 1024px) {
  .footer__links {
    gap: 40px;
  }
}
.footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__links ul li {
  margin-bottom: 10px;
}
.footer__links ul li a {
  text-decoration: none;
  color: #4D2680;
  font-size: 18px;
}
.footer__links ul li a:hover {
  text-decoration: underline;
}
.footer__accreds {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.footer__accreds .preheader__trustpilot {
  width: 100%;
}
@media (min-width: 767px) {
  .footer__accreds .preheader__trustpilot {
    flex: 1;
  }
}
.footer__accreds .preheader__trustpilot a {
  justify-content: center;
}
@media (min-width: 767px) {
  .footer__accreds .preheader__trustpilot a {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
.footer__accreds .preheader__trustpilot-stars img {
  width: 28px;
}
@media (min-width: 400px) {
  .footer__accreds .preheader__trustpilot-stars img {
    width: 34px;
  }
}
@media (min-width: 767px) {
  .footer__accreds .preheader__trustpilot-stars img {
    width: 40px;
  }
}
@media (min-width: 1024px) {
  .footer__accreds .preheader__trustpilot-stars img {
    width: 20px;
  }
}
@media (min-width: 1200px) {
  .footer__accreds .preheader__trustpilot-stars img {
    width: 30px;
  }
}
.footer__accreds .preheader__trustpilot-stars img.half {
  width: 14px;
}
@media (min-width: 400px) {
  .footer__accreds .preheader__trustpilot-stars img.half {
    width: 17px;
  }
}
@media (min-width: 767px) {
  .footer__accreds .preheader__trustpilot-stars img.half {
    width: 20px;
  }
}
@media (min-width: 1024px) {
  .footer__accreds .preheader__trustpilot-stars img.half {
    width: 10px;
  }
}
@media (min-width: 1200px) {
  .footer__accreds .preheader__trustpilot-stars img.half {
    width: 15px;
  }
}
.footer__accreds .preheader__trustpilot-text {
  width: 140px;
  min-width: 140px;
}
@media (min-width: 1024px) {
  .footer__accreds .preheader__trustpilot-text {
    width: 70px;
    min-width: 70px;
  }
}
@media (min-width: 1200px) {
  .footer__accreds .preheader__trustpilot-text {
    width: 100px;
    min-width: 100px;
  }
}
.footer__accreds .preheader__trustpilot-text img {
  width: 100%;
}
.footer__accreds .footerlogo {
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
}
@media (min-width: 767px) {
  .footer__accreds .footerlogo {
    margin: 0;
  }
}
.footer .mt20 {
  margin-top: 20px;
}
.footer__contact-item {
  display: flex;
  gap: 10px;
}
.footer__contact-item svg {
  height: 28px;
  width: auto;
}
.footer__contact-item a, .footer__contact-item p {
  margin: 0;
  font-size: 16px;
  color: #4D2680;
  text-decoration: none;
}
.footer__quicklinks, .footer__contacts {
  width: 100%;
}
@media (min-width: 500px) {
  .footer__quicklinks, .footer__contacts {
    width: calc(50% - 20px);
  }
}
.footer__lower {
  background-color: #4D2680;
  padding: 20px 0;
}
.footer__lower-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.footer__lower-col-1, .footer__lower-col-2 {
  width: 100%;
}
@media (min-width: 1024px) {
  .footer__lower-col-1, .footer__lower-col-2 {
    width: calc(50% - 10px);
  }
}
.footer__lower-col-1 p, .footer__lower-col-2 p {
  color: #fff;
  font-size: 14px;
  margin: 0;
}
.footer__lower-col-2 {
  display: flex;
  justify-content: flex-start;
}
@media (min-width: 1024px) {
  .footer__lower-col-2 {
    justify-content: flex-end;
  }
}
.footer__socials {
  display: flex;
  gap: 5px;
}
.footer__socials a {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.footer__socials a:hover {
  opacity: 0.7;
}
.footer__socials a img {
  width: 50px;
}

.page-template-template-btg .dcc {
  padding-bottom: 20px;
}
.page-template-template-btg .footer {
  margin-top: 0;
}

.dcc {
  margin-top: 40px;
  background-color: #fff;
}
.dcc__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 767px) {
  .dcc__wrapper {
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .dcc__wrapper {
    gap: 60px;
  }
}
.dcc__col-1, .dcc__col-2 {
  width: 100%;
}
@media (min-width: 767px) {
  .dcc__col-1, .dcc__col-2 {
    width: calc(50% - 20px);
  }
}
@media (min-width: 1024px) {
  .dcc__col-1, .dcc__col-2 {
    width: calc(50% - 30px);
  }
}
@media (min-width: 767px) {
  .dcc__col-1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.dcc__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
@media (min-width: 600px) {
  .dcc__buttons {
    flex-direction: row;
  }
}
@media (min-width: 767px) {
  .dcc__buttons {
    flex-direction: column;
  }
}
@media (min-width: 1200px) {
  .dcc__buttons {
    flex-direction: row;
  }
}
.dcc__col-2 {
  background-color: #000072;
  padding: 20px 40px;
  position: relative;
}
.dcc__col-2::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 40px 40px;
  border-color: transparent transparent #fff transparent;
  transform: rotate(90deg);
}
@media (min-width: 767px) {
  .dcc__col-2::before {
    border-width: 0 0 60px 60px;
  }
}
.dcc__col-2::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 40px 40px;
  border-color: transparent transparent #fff transparent;
  transform: rotate(-90deg);
}
@media (min-width: 767px) {
  .dcc__col-2::after {
    border-width: 0 0 60px 60px;
  }
}
.dcc__business {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}
.dcc__business p {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 300;
}
.dcc__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #000072;
  font-weight: 900;
  line-height: 1;
}
@media (min-width: 1024px) {
  .dcc__title {
    font-size: 45px;
  }
}
.dcc__title span {
  color: #52E800;
}
.dcc__text {
  color: #000072;
  font-weight: 900;
  font-size: 20px;
  margin: 0;
}
/**
 * Brand Colours
 */
/**
 * BTG Colours
 */
/**
 * Element Colours
 */
/**
 * UI Colours
 */
/**
 * Typography
 */
/**
 * Breakpoints
 */
/**
 * Grid
 */
/**
 * Components
 */
.card {
  border: 1px solid #f4f4f4;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
  background-color: #fff;
}
.card:hover {
  text-decoration: none;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
@media (min-width: 767px) {
  .card {
    display: flex;
    flex-direction: column;
  }
}
.card__image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: 20px;
}
.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__category {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #4D2680;
  border: 2px solid rgb(65.171686747, 32.1626506024, 108.3373493976);
  padding: 5px 10px;
  text-transform: uppercase;
  border-radius: 20px;
}
.card__category p {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
@media (min-width: 767px) {
  .card__content {
    flex: 1;
    position: relative;
    padding-bottom: 80px;
  }
}
.card__title {
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.card__title h3 {
  margin: 0;
  font-weight: 700;
  font-size: 24px;
}
.card__excerpt {
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.card__excerpt p {
  margin: 0;
  font-size: 16px;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #444;
}
.card__lower {
  padding: 20px;
  border-top: 1px solid #f4f4f4;
}
@media (min-width: 767px) {
  .card__lower {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
.card__lower p {
  margin: 0;
  font-size: 12px;
  color: #444;
}
.card--skeleton .card__image {
  background-color: #f0f0f0;
  animation: cardSkeletonPulse 1.5s ease-in-out infinite;
}

.skeleton-line {
  height: 14px;
  border-radius: 4px;
  background-color: #f0f0f0;
  margin-bottom: 14px;
  animation: cardSkeletonPulse 1.5s ease-in-out infinite;
}
.skeleton-line:last-child {
  margin-bottom: 0;
}
.skeleton-line--title {
  height: 20px;
  width: 90%;
  margin-bottom: 11px;
}
.skeleton-line--short {
  width: 60%;
}
.skeleton-line--small {
  height: 12px;
  width: 40%;
}

@keyframes cardSkeletonPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */
.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}