/* 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;
}

@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 HMTL 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;
}

/* 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%;
}

/* 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;
  }
}



/**
 * Swiper 11.1.9
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 31, 2024
 */
@font-face {
    font-family: swiper-icons;
    src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block
}

.swiper-vertical>.swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function,initial);
    box-sizing: content-box
}

.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper {
    transform: translate3d(0px,0,0)
}

.swiper-horizontal {
    touch-action: pan-y
}

.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight,.swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform,height
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d {
    perspective: 1200px
}

.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide {
    transform-style: preserve-3d
}

.swiper-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}

.swiper-css-mode.swiper-horizontal>.swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
    scroll-snap-type: none
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: none
}

.swiper-css-mode.swiper-centered>.swiper-wrapper::before {
    content: '';
    flex-shrink: 0;
    order: 9999
}

.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop:always}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    margin-inline-start:var(--swiper-centered-offset-before)}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper: :before {
    height:100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    margin-block-start:var(--swiper-centered-offset-before)}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper: :before {
    width:100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after)
}

.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0,0,0,.15)
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color,var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    transform: translateZ(0)
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size)
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size)
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next,.swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset,50%);
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color,var(--swiper-theme-color))
}

.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none
}

.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev {
    display: none!important
}

.swiper-button-next svg,.swiper-button-prev svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center
}

.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg {
    transform: rotate(180deg)
}

.swiper-button-prev,.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset,10px);
    right: auto
}

.swiper-button-next,.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset,10px);
    left: auto
}

.swiper-button-lock {
    display: none
}

.swiper-button-next:after,.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none!important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1
}

.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after {
    content: 'prev'
}

.swiper-button-next,.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset,10px);
    left: auto
}

.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after {
    content: 'next'
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0,0,0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled {
    display: none!important
}

.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom,8px);
    top: var(--swiper-pagination-top,auto);
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));
    height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius,50%);
    background: var(--swiper-pagination-bullet-inactive-color,#000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2)
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none!important
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color,var(--swiper-theme-color))
}

.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets {
    right: var(--swiper-pagination-right,8px);
    left: var(--swiper-pagination-left,auto);
    top: 50%;
    transform: translate3d(0px,-50%,0)
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap,6px) 0;
    display: block
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: .2s transform,.2s top
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap,4px)
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform,.2s left
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform,.2s right
}

.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color,inherit)
}

.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color,var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size,4px);
    left: 0;
    top: 0
}

.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar {
    width: var(--swiper-pagination-progressbar-size,4px);
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    border-radius: var(--swiper-scrollbar-border-radius,10px);
    position: relative;
    touch-action: none;
    background: var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))
}

.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled {
    display: none!important
}

.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset,1%);
    bottom: var(--swiper-scrollbar-bottom,4px);
    top: var(--swiper-scrollbar-top,auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size,4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))
}

.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar {
    position: absolute;
    left: var(--swiper-scrollbar-left,auto);
    right: var(--swiper-scrollbar-right,4px);
    top: var(--swiper-scrollbar-sides-offset,1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size,4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));
    border-radius: var(--swiper-scrollbar-border-radius,10px);
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.swiper-slide-zoomed {
    cursor: move;
    touch-action: none
}

.swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-free-mode>.swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-grid>.swiper-wrapper {
    flex-wrap: wrap
}

.swiper-grid-column>.swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column
}

.swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

.swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-fade .swiper-slide-active {
    pointer-events: auto
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-cube {
    overflow: visible
}

.swiper-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}

.swiper-cube .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-cube.swiper-rtl .swiper-slide {
    transform-origin: 100% 0
}

.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: .6;
    z-index: 0
}

.swiper-cube .swiper-cube-shadow:before {
    content: '';
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    filter: blur(50px)
}

.swiper-cube .swiper-slide-next+.swiper-slide {
    pointer-events: auto;
    visibility: visible
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-flip {
    overflow: visible
}

.swiper-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1
}

.swiper-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-creative .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform,opacity,height
}

.swiper-cards {
    overflow: visible
}

.swiper-cards .swiper-slide {
    transform-origin: center bottom;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden
}
html, body {
  height: 100%;
}
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
p, ul {
  margin:0 0 10px 0;
}
ul {
  padding-left: 20px;
}
body {
  line-height: 1;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
nav ul {
  list-style: none;
  margin-bottom: 0;
}
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table, th, td {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 10px;
}
table.border, .border th, .border td {
  border: 1px solid #fff;
  padding: 5px;
}
input, select {
  vertical-align: middle;
}
*, input, select, textarea, option, button {
  outline: none!important;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

/*
* clearfix
*/
.clearfix::before, .clearfix::after {
  content: "";
  display: table;
}
.clearfix::after {
  clear: both;
}
.clearfix {
  zoom: 1;
  /* For IE 6/7 (trigger hasLayout) */
}

/*-- Across the board fixes
-=-=-=-=-=-=-=-=-=-= --*/
@-ms-viewport {
  width: device-width;
}

/*!
* Hamburgers
* @description Tasty CSS-animated hamburgers
* @author Jonathan Suh @jonsuh
* @site https://jonsuh.com/hamburgers
* @link https://github.com/jonsuh/hamburgers
*/
.hamburger {
  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 15px;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: .15s;
  transition-property: opacity,filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent
}

.hamburger.is-active:hover,.hamburger:hover {
  opacity: .7
}

.hamburger.is-active .hamburger-inner,.hamburger.is-active .hamburger-inner:after,.hamburger.is-active .hamburger-inner:before {
  background-color: #000
}

.hamburger-box {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 24px
}

.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px
}

.hamburger-inner,.hamburger-inner:after,.hamburger-inner:before {
  position: absolute;
  width: 34px;
  height: 4px;
  transition-timing-function: ease;
  transition-duration: .15s;
  transition-property: transform;
  border-radius: 4px;
  background-color: #000
}

.hamburger-inner:after,.hamburger-inner:before {
  display: block;
  content: ""
}

.hamburger-inner:before {
  top: -10px
}

.hamburger-inner:after {
  bottom: -10px
}

.hamburger--3dx .hamburger-box {
  perspective: 80px
}

.hamburger--3dx .hamburger-inner {
  transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s cubic-bezier(.645,.045,.355,1) .1s
}

.hamburger--3dx .hamburger-inner:after,.hamburger--3dx .hamburger-inner:before {
  transition: transform 0s cubic-bezier(.645,.045,.355,1) .1s
}

.hamburger--3dx.is-active .hamburger-inner {
  transform: rotateY(180deg);
  background-color: transparent!important
}

.hamburger--3dx.is-active .hamburger-inner:before {
  transform: translate3d(0,10px,0) rotate(45deg)
}

.hamburger--3dx.is-active .hamburger-inner:after {
  transform: translate3d(0,-10px,0) rotate(-45deg)
}

.hamburger--3dx-r .hamburger-box {
  perspective: 80px
}

.hamburger--3dx-r .hamburger-inner {
  transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s cubic-bezier(.645,.045,.355,1) .1s
}

.hamburger--3dx-r .hamburger-inner:after,.hamburger--3dx-r .hamburger-inner:before {
  transition: transform 0s cubic-bezier(.645,.045,.355,1) .1s
}

.hamburger--3dx-r.is-active .hamburger-inner {
  transform: rotateY(-180deg);
  background-color: transparent!important
}

.hamburger--3dx-r.is-active .hamburger-inner:before {
  transform: translate3d(0,10px,0) rotate(45deg)
}

.hamburger--3dx-r.is-active .hamburger-inner:after {
  transform: translate3d(0,-10px,0) rotate(-45deg)
}

.hamburger--3dy .hamburger-box {
  perspective: 80px
}

.hamburger--3dy .hamburger-inner {
  transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s cubic-bezier(.645,.045,.355,1) .1s
}

.hamburger--3dy .hamburger-inner:after,.hamburger--3dy .hamburger-inner:before {
  transition: transform 0s cubic-bezier(.645,.045,.355,1) .1s
}

.hamburger--3dy.is-active .hamburger-inner {
  transform: rotateX(-180deg);
  background-color: transparent!important
}

.hamburger--3dy.is-active .hamburger-inner:before {
  transform: translate3d(0,10px,0) rotate(45deg)
}

.hamburger--3dy.is-active .hamburger-inner:after {
  transform: translate3d(0,-10px,0) rotate(-45deg)
}

.hamburger--3dy-r .hamburger-box {
  perspective: 80px
}

.hamburger--3dy-r .hamburger-inner {
  transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s cubic-bezier(.645,.045,.355,1) .1s
}

.hamburger--3dy-r .hamburger-inner:after,.hamburger--3dy-r .hamburger-inner:before {
  transition: transform 0s cubic-bezier(.645,.045,.355,1) .1s
}

.hamburger--3dy-r.is-active .hamburger-inner {
  transform: rotateX(180deg);
  background-color: transparent!important
}

.hamburger--3dy-r.is-active .hamburger-inner:before {
  transform: translate3d(0,10px,0) rotate(45deg)
}

.hamburger--3dy-r.is-active .hamburger-inner:after {
  transform: translate3d(0,-10px,0) rotate(-45deg)
}

.hamburger--3dxy .hamburger-box {
  perspective: 80px
}

.hamburger--3dxy .hamburger-inner {
  transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s cubic-bezier(.645,.045,.355,1) .1s
}

.hamburger--3dxy .hamburger-inner:after,.hamburger--3dxy .hamburger-inner:before {
  transition: transform 0s cubic-bezier(.645,.045,.355,1) .1s
}

.hamburger--3dxy.is-active .hamburger-inner {
  transform: rotateX(180deg) rotateY(180deg);
  background-color: transparent!important
}

.hamburger--3dxy.is-active .hamburger-inner:before {
  transform: translate3d(0,10px,0) rotate(45deg)
}

.hamburger--3dxy.is-active .hamburger-inner:after {
  transform: translate3d(0,-10px,0) rotate(-45deg)
}

.hamburger--3dxy-r .hamburger-box {
  perspective: 80px
}

.hamburger--3dxy-r .hamburger-inner {
  transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s cubic-bezier(.645,.045,.355,1) .1s
}

.hamburger--3dxy-r .hamburger-inner:after,.hamburger--3dxy-r .hamburger-inner:before {
  transition: transform 0s cubic-bezier(.645,.045,.355,1) .1s
}

.hamburger--3dxy-r.is-active .hamburger-inner {
  transform: rotateX(180deg) rotateY(180deg) rotate(-180deg);
  background-color: transparent!important
}

.hamburger--3dxy-r.is-active .hamburger-inner:before {
  transform: translate3d(0,10px,0) rotate(45deg)
}

.hamburger--3dxy-r.is-active .hamburger-inner:after {
  transform: translate3d(0,-10px,0) rotate(-45deg)
}

.hamburger--arrow.is-active .hamburger-inner:before {
  transform: translate3d(-8px,0,0) rotate(-45deg) scaleX(.7)
}

.hamburger--arrow.is-active .hamburger-inner:after {
  transform: translate3d(-8px,0,0) rotate(45deg) scaleX(.7)
}

.hamburger--arrow-r.is-active .hamburger-inner:before {
  transform: translate3d(8px,0,0) rotate(45deg) scaleX(.7)
}

.hamburger--arrow-r.is-active .hamburger-inner:after {
  transform: translate3d(8px,0,0) rotate(-45deg) scaleX(.7)
}

.hamburger--arrowalt .hamburger-inner:before {
  transition: top .1s ease .1s,transform .1s cubic-bezier(.165,.84,.44,1)
}

.hamburger--arrowalt .hamburger-inner:after {
  transition: bottom .1s ease .1s,transform .1s cubic-bezier(.165,.84,.44,1)
}

.hamburger--arrowalt.is-active .hamburger-inner:before {
  top: 0;
  transition: top .1s ease,transform .1s cubic-bezier(.895,.03,.685,.22) .1s;
  transform: translate3d(-8px,-10px,0) rotate(-45deg) scaleX(.7)
}

.hamburger--arrowalt.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom .1s ease,transform .1s cubic-bezier(.895,.03,.685,.22) .1s;
  transform: translate3d(-8px,10px,0) rotate(45deg) scaleX(.7)
}

.hamburger--arrowalt-r .hamburger-inner:before {
  transition: top .1s ease .1s,transform .1s cubic-bezier(.165,.84,.44,1)
}

.hamburger--arrowalt-r .hamburger-inner:after {
  transition: bottom .1s ease .1s,transform .1s cubic-bezier(.165,.84,.44,1)
}

.hamburger--arrowalt-r.is-active .hamburger-inner:before {
  top: 0;
  transition: top .1s ease,transform .1s cubic-bezier(.895,.03,.685,.22) .1s;
  transform: translate3d(8px,-10px,0) rotate(45deg) scaleX(.7)
}

.hamburger--arrowalt-r.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom .1s ease,transform .1s cubic-bezier(.895,.03,.685,.22) .1s;
  transform: translate3d(8px,10px,0) rotate(-45deg) scaleX(.7)
}

.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg)
}

.hamburger--arrowturn.is-active .hamburger-inner:before {
  transform: translate3d(8px,0,0) rotate(45deg) scaleX(.7)
}

.hamburger--arrowturn.is-active .hamburger-inner:after {
  transform: translate3d(8px,0,0) rotate(-45deg) scaleX(.7)
}

.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg)
}

.hamburger--arrowturn-r.is-active .hamburger-inner:before {
  transform: translate3d(-8px,0,0) rotate(-45deg) scaleX(.7)
}

.hamburger--arrowturn-r.is-active .hamburger-inner:after {
  transform: translate3d(-8px,0,0) rotate(45deg) scaleX(.7)
}

.hamburger--boring .hamburger-inner,.hamburger--boring .hamburger-inner:after,.hamburger--boring .hamburger-inner:before {
  transition-property: none
}

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg)
}

.hamburger--boring.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0
}

.hamburger--boring.is-active .hamburger-inner:after {
  bottom: 0;
  transform: rotate(-90deg)
}

.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-delay: .13s;
  transition-timing-function: cubic-bezier(.55,.055,.675,.19);
  transition-duration: .13s
}

.hamburger--collapse .hamburger-inner:after {
  top: -20px;
  transition: top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,opacity .1s linear
}

.hamburger--collapse .hamburger-inner:before {
  transition: top .12s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)
}

.hamburger--collapse.is-active .hamburger-inner {
  transition-delay: .22s;
  transition-timing-function: cubic-bezier(.215,.61,.355,1);
  transform: translate3d(0,-10px,0) rotate(-45deg)
}

.hamburger--collapse.is-active .hamburger-inner:after {
  top: 0;
  transition: top .2s cubic-bezier(.33333,0,.66667,.33333),opacity .1s linear .22s;
  opacity: 0
}

.hamburger--collapse.is-active .hamburger-inner:before {
  top: 0;
  transition: top .1s cubic-bezier(.33333,0,.66667,.33333) .16s,transform .13s cubic-bezier(.215,.61,.355,1) .25s;
  transform: rotate(-90deg)
}

.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-delay: .13s;
  transition-timing-function: cubic-bezier(.55,.055,.675,.19);
  transition-duration: .13s
}

.hamburger--collapse-r .hamburger-inner:after {
  top: -20px;
  transition: top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,opacity .1s linear
}

.hamburger--collapse-r .hamburger-inner:before {
  transition: top .12s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)
}

.hamburger--collapse-r.is-active .hamburger-inner {
  transition-delay: .22s;
  transition-timing-function: cubic-bezier(.215,.61,.355,1);
  transform: translate3d(0,-10px,0) rotate(45deg)
}

.hamburger--collapse-r.is-active .hamburger-inner:after {
  top: 0;
  transition: top .2s cubic-bezier(.33333,0,.66667,.33333),opacity .1s linear .22s;
  opacity: 0
}

.hamburger--collapse-r.is-active .hamburger-inner:before {
  top: 0;
  transition: top .1s cubic-bezier(.33333,0,.66667,.33333) .16s,transform .13s cubic-bezier(.215,.61,.355,1) .25s;
  transform: rotate(90deg)
}

.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-timing-function: cubic-bezier(.68,-.55,.265,1.55);
  transition-duration: .275s
}

.hamburger--elastic .hamburger-inner:before {
  top: 10px;
  transition: opacity .125s ease .275s
}

.hamburger--elastic .hamburger-inner:after {
  top: 20px;
  transition: transform .275s cubic-bezier(.68,-.55,.265,1.55)
}

.hamburger--elastic.is-active .hamburger-inner {
  transition-delay: 75ms;
  transform: translate3d(0,10px,0) rotate(135deg)
}

.hamburger--elastic.is-active .hamburger-inner:before {
  transition-delay: 0s;
  opacity: 0
}

.hamburger--elastic.is-active .hamburger-inner:after {
  transition-delay: 75ms;
  transform: translate3d(0,-20px,0) rotate(-270deg)
}

.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-timing-function: cubic-bezier(.68,-.55,.265,1.55);
  transition-duration: .275s
}

.hamburger--elastic-r .hamburger-inner:before {
  top: 10px;
  transition: opacity .125s ease .275s
}

.hamburger--elastic-r .hamburger-inner:after {
  top: 20px;
  transition: transform .275s cubic-bezier(.68,-.55,.265,1.55)
}

.hamburger--elastic-r.is-active .hamburger-inner {
  transition-delay: 75ms;
  transform: translate3d(0,10px,0) rotate(-135deg)
}

.hamburger--elastic-r.is-active .hamburger-inner:before {
  transition-delay: 0s;
  opacity: 0
}

.hamburger--elastic-r.is-active .hamburger-inner:after {
  transition-delay: 75ms;
  transform: translate3d(0,-20px,0) rotate(270deg)
}

.hamburger--emphatic {
  overflow: hidden
}

.hamburger--emphatic .hamburger-inner {
  transition: background-color .125s ease-in .175s
}

.hamburger--emphatic .hamburger-inner:before {
  left: 0;
  transition: transform .125s cubic-bezier(.6,.04,.98,.335),top .05s linear .125s,left .125s ease-in .175s
}

.hamburger--emphatic .hamburger-inner:after {
  top: 10px;
  right: 0;
  transition: transform .125s cubic-bezier(.6,.04,.98,.335),top .05s linear .125s,right .125s ease-in .175s
}

.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent!important
}

.hamburger--emphatic.is-active .hamburger-inner:before {
  top: -80px;
  left: -80px;
  transition: left .125s ease-out,top .05s linear .125s,transform .125s cubic-bezier(.075,.82,.165,1) .175s;
  transform: translate3d(80px,80px,0) rotate(45deg)
}

.hamburger--emphatic.is-active .hamburger-inner:after {
  top: -80px;
  right: -80px;
  transition: right .125s ease-out,top .05s linear .125s,transform .125s cubic-bezier(.075,.82,.165,1) .175s;
  transform: translate3d(-80px,80px,0) rotate(-45deg)
}

.hamburger--emphatic-r {
  overflow: hidden
}

.hamburger--emphatic-r .hamburger-inner {
  transition: background-color .125s ease-in .175s
}

.hamburger--emphatic-r .hamburger-inner:before {
  left: 0;
  transition: transform .125s cubic-bezier(.6,.04,.98,.335),top .05s linear .125s,left .125s ease-in .175s
}

.hamburger--emphatic-r .hamburger-inner:after {
  top: 10px;
  right: 0;
  transition: transform .125s cubic-bezier(.6,.04,.98,.335),top .05s linear .125s,right .125s ease-in .175s
}

.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent!important
}

.hamburger--emphatic-r.is-active .hamburger-inner:before {
  top: 80px;
  left: -80px;
  transition: left .125s ease-out,top .05s linear .125s,transform .125s cubic-bezier(.075,.82,.165,1) .175s;
  transform: translate3d(80px,-80px,0) rotate(-45deg)
}

.hamburger--emphatic-r.is-active .hamburger-inner:after {
  top: 80px;
  right: -80px;
  transition: right .125s ease-out,top .05s linear .125s,transform .125s cubic-bezier(.075,.82,.165,1) .175s;
  transform: translate3d(-80px,-80px,0) rotate(45deg)
}

.hamburger--minus .hamburger-inner:after,.hamburger--minus .hamburger-inner:before {
  transition: bottom .08s ease-out 0s,top .08s ease-out 0s,opacity 0s linear
}

.hamburger--minus.is-active .hamburger-inner:after,.hamburger--minus.is-active .hamburger-inner:before {
  transition: bottom .08s ease-out,top .08s ease-out,opacity 0s linear .08s;
  opacity: 0
}

.hamburger--minus.is-active .hamburger-inner:before {
  top: 0
}

.hamburger--minus.is-active .hamburger-inner:after {
  bottom: 0
}

.hamburger--slider .hamburger-inner {
  top: 2px
}

.hamburger--slider .hamburger-inner:before {
  top: 10px;
  transition-timing-function: ease;
  transition-duration: .15s;
  transition-property: transform,opacity
}

.hamburger--slider .hamburger-inner:after {
  top: 20px
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0,10px,0) rotate(45deg)
}

.hamburger--slider.is-active .hamburger-inner:before {
  transform: rotate(-45deg) translate3d(-5.71429px,-6px,0);
  opacity: 0
}

.hamburger--slider.is-active .hamburger-inner:after {
  transform: translate3d(0,-20px,0) rotate(-90deg)
}

.hamburger--slider-r .hamburger-inner {
  top: 2px
}

.hamburger--slider-r .hamburger-inner:before {
  top: 10px;
  transition-timing-function: ease;
  transition-duration: .15s;
  transition-property: transform,opacity
}

.hamburger--slider-r .hamburger-inner:after {
  top: 20px
}

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0,10px,0) rotate(-45deg)
}

.hamburger--slider-r.is-active .hamburger-inner:before {
  transform: rotate(45deg) translate3d(5.71429px,-6px,0);
  opacity: 0
}

.hamburger--slider-r.is-active .hamburger-inner:after {
  transform: translate3d(0,-20px,0) rotate(90deg)
}

.hamburger--spin .hamburger-inner {
  transition-timing-function: cubic-bezier(.55,.055,.675,.19);
  transition-duration: .22s
}

.hamburger--spin .hamburger-inner:before {
  transition: top .1s ease-in .25s,opacity .1s ease-in
}

.hamburger--spin .hamburger-inner:after {
  transition: bottom .1s ease-in .25s,transform .22s cubic-bezier(.55,.055,.675,.19)
}

.hamburger--spin.is-active .hamburger-inner {
  transition-delay: .12s;
  transition-timing-function: cubic-bezier(.215,.61,.355,1);
  transform: rotate(225deg)
}

.hamburger--spin.is-active .hamburger-inner:before {
  top: 0;
  transition: top .1s ease-out,opacity .1s ease-out .12s;
  opacity: 0
}

.hamburger--spin.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom .1s ease-out,transform .22s cubic-bezier(.215,.61,.355,1) .12s;
  transform: rotate(-90deg)
}

.hamburger--spin-r .hamburger-inner {
  transition-timing-function: cubic-bezier(.55,.055,.675,.19);
  transition-duration: .22s
}

.hamburger--spin-r .hamburger-inner:before {
  transition: top .1s ease-in .25s,opacity .1s ease-in
}

.hamburger--spin-r .hamburger-inner:after {
  transition: bottom .1s ease-in .25s,transform .22s cubic-bezier(.55,.055,.675,.19)
}

.hamburger--spin-r.is-active .hamburger-inner {
  transition-delay: .12s;
  transition-timing-function: cubic-bezier(.215,.61,.355,1);
  transform: rotate(-225deg)
}

.hamburger--spin-r.is-active .hamburger-inner:before {
  top: 0;
  transition: top .1s ease-out,opacity .1s ease-out .12s;
  opacity: 0
}

.hamburger--spin-r.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom .1s ease-out,transform .22s cubic-bezier(.215,.61,.355,1) .12s;
  transform: rotate(90deg)
}

.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s linear .13s
}

.hamburger--spring .hamburger-inner:before {
  top: 10px;
  transition: top .1s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)
}

.hamburger--spring .hamburger-inner:after {
  top: 20px;
  transition: top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)
}

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: .22s;
  background-color: transparent!important
}

.hamburger--spring.is-active .hamburger-inner:before {
  top: 0;
  transition: top .1s cubic-bezier(.33333,0,.66667,.33333) .15s,transform .13s cubic-bezier(.215,.61,.355,1) .22s;
  transform: translate3d(0,10px,0) rotate(45deg)
}

.hamburger--spring.is-active .hamburger-inner:after {
  top: 0;
  transition: top .2s cubic-bezier(.33333,0,.66667,.33333),transform .13s cubic-bezier(.215,.61,.355,1) .22s;
  transform: translate3d(0,10px,0) rotate(-45deg)
}

.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(.55,.055,.675,.19);
  transition-duration: .13s
}

.hamburger--spring-r .hamburger-inner:after {
  top: -20px;
  transition: top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,opacity 0s linear
}

.hamburger--spring-r .hamburger-inner:before {
  transition: top .1s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)
}

.hamburger--spring-r.is-active .hamburger-inner {
  transition-delay: .22s;
  transition-timing-function: cubic-bezier(.215,.61,.355,1);
  transform: translate3d(0,-10px,0) rotate(-45deg)
}

.hamburger--spring-r.is-active .hamburger-inner:after {
  top: 0;
  transition: top .2s cubic-bezier(.33333,0,.66667,.33333),opacity 0s linear .22s;
  opacity: 0
}

.hamburger--spring-r.is-active .hamburger-inner:before {
  top: 0;
  transition: top .1s cubic-bezier(.33333,0,.66667,.33333) .15s,transform .13s cubic-bezier(.215,.61,.355,1) .22s;
  transform: rotate(90deg)
}

.hamburger--stand .hamburger-inner {
  transition: transform 75ms cubic-bezier(.55,.055,.675,.19) .15s,background-color 0s linear 75ms
}

.hamburger--stand .hamburger-inner:before {
  transition: top 75ms ease-in 75ms,transform 75ms cubic-bezier(.55,.055,.675,.19) 0s
}

.hamburger--stand .hamburger-inner:after {
  transition: bottom 75ms ease-in 75ms,transform 75ms cubic-bezier(.55,.055,.675,.19) 0s
}

.hamburger--stand.is-active .hamburger-inner {
  transition: transform 75ms cubic-bezier(.215,.61,.355,1) 0s,background-color 0s linear .15s;
  transform: rotate(90deg);
  background-color: transparent!important
}

.hamburger--stand.is-active .hamburger-inner:before {
  top: 0;
  transition: top 75ms ease-out .1s,transform 75ms cubic-bezier(.215,.61,.355,1) .15s;
  transform: rotate(-45deg)
}

.hamburger--stand.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 75ms ease-out .1s,transform 75ms cubic-bezier(.215,.61,.355,1) .15s;
  transform: rotate(45deg)
}

.hamburger--stand-r .hamburger-inner {
  transition: transform 75ms cubic-bezier(.55,.055,.675,.19) .15s,background-color 0s linear 75ms
}

.hamburger--stand-r .hamburger-inner:before {
  transition: top 75ms ease-in 75ms,transform 75ms cubic-bezier(.55,.055,.675,.19) 0s
}

.hamburger--stand-r .hamburger-inner:after {
  transition: bottom 75ms ease-in 75ms,transform 75ms cubic-bezier(.55,.055,.675,.19) 0s
}

.hamburger--stand-r.is-active .hamburger-inner {
  transition: transform 75ms cubic-bezier(.215,.61,.355,1) 0s,background-color 0s linear .15s;
  transform: rotate(-90deg);
  background-color: transparent!important
}

.hamburger--stand-r.is-active .hamburger-inner:before {
  top: 0;
  transition: top 75ms ease-out .1s,transform 75ms cubic-bezier(.215,.61,.355,1) .15s;
  transform: rotate(-45deg)
}

.hamburger--stand-r.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 75ms ease-out .1s,transform 75ms cubic-bezier(.215,.61,.355,1) .15s;
  transform: rotate(45deg)
}

.hamburger--squeeze .hamburger-inner {
  transition-timing-function: cubic-bezier(.55,.055,.675,.19);
  transition-duration: 75ms
}

.hamburger--squeeze .hamburger-inner:before {
  transition: top 75ms ease .12s,opacity 75ms ease
}

.hamburger--squeeze .hamburger-inner:after {
  transition: bottom 75ms ease .12s,transform 75ms cubic-bezier(.55,.055,.675,.19)
}

.hamburger--squeeze.is-active .hamburger-inner {
  transition-delay: .12s;
  transition-timing-function: cubic-bezier(.215,.61,.355,1);
  transform: rotate(45deg)
}

.hamburger--squeeze.is-active .hamburger-inner:before {
  top: 0;
  transition: top 75ms ease,opacity 75ms ease .12s;
  opacity: 0
}

.hamburger--squeeze.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 75ms ease,transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
  transform: rotate(-90deg)
}

.hamburger--vortex .hamburger-inner {
  transition-timing-function: cubic-bezier(.19,1,.22,1);
  transition-duration: .2s
}

.hamburger--vortex .hamburger-inner:after,.hamburger--vortex .hamburger-inner:before {
  transition-delay: .1s;
  transition-timing-function: linear;
  transition-duration: 0s
}

.hamburger--vortex .hamburger-inner:before {
  transition-property: top,opacity
}

.hamburger--vortex .hamburger-inner:after {
  transition-property: bottom,transform
}

.hamburger--vortex.is-active .hamburger-inner {
  transition-timing-function: cubic-bezier(.19,1,.22,1);
  transform: rotate(765deg)
}

.hamburger--vortex.is-active .hamburger-inner:after,.hamburger--vortex.is-active .hamburger-inner:before {
  transition-delay: 0s
}

.hamburger--vortex.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0
}

.hamburger--vortex.is-active .hamburger-inner:after {
  bottom: 0;
  transform: rotate(90deg)
}

.hamburger--vortex-r .hamburger-inner {
  transition-timing-function: cubic-bezier(.19,1,.22,1);
  transition-duration: .2s
}

.hamburger--vortex-r .hamburger-inner:after,.hamburger--vortex-r .hamburger-inner:before {
  transition-delay: .1s;
  transition-timing-function: linear;
  transition-duration: 0s
}

.hamburger--vortex-r .hamburger-inner:before {
  transition-property: top,opacity
}

.hamburger--vortex-r .hamburger-inner:after {
  transition-property: bottom,transform
}

.hamburger--vortex-r.is-active .hamburger-inner {
  transition-timing-function: cubic-bezier(.19,1,.22,1);
  transform: rotate(-765deg)
}

.hamburger--vortex-r.is-active .hamburger-inner:after,.hamburger--vortex-r.is-active .hamburger-inner:before {
  transition-delay: 0s
}

.hamburger--vortex-r.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0
}

.hamburger--vortex-r.is-active .hamburger-inner:after {
  bottom: 0;
  transform: rotate(-90deg)
}


:root {
  --black: #2b2b2b;
  --ssa-main: #085570;
  --ssa-highlight: #b7f4af;
  --cream: #f6f6f2;
  --grey: #cccccc;
  --grey-light: #f2f2f2;
  --bg-2: #c3d8d8;
  --bg-1: #ecf8f8;
  --alert: #ff2a2a;
  --alert-bg: #fee7e7;
  --confirm: #6eb36a;
  --focus: #0075ff;
  --white: #ffffff;
  --link-color: #2C414C;
  --border-grey: #d8d8d8;
  --courses-background: #EBF7F7;
}

/* common styles */
body, html {
  background-color: var(--white);
  color: var(--black);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}
/* body content */
#content {
  position: relative;
}


.content {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 20px;
  width: 100%;
}

.nav-container .content{
  padding: 0 20px;
}



a {
  color: var(--mid-blue);
  text-decoration: underline;
}

.button {
  align-items: center;
  border: 0;
  border-radius: 24px;
  cursor: pointer;
  display: flex;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  justify-content: center;
  margin: 0 auto;
  min-width: 150px;
  padding: 0 34px;
  text-decoration: none;
  transition: 0.3s all ease;
  width: fit-content;
}
.button.outline {
  background: transparent !important;
  border: 1px solid !important;
}
.button.highlight {
  background-color: var(--ssa-highlight);
  color: var(--ssa-main);
  margin: 0;
}
.button.blue {
  background-color: var(--ssa-main);
  color: var(--white);
  margin: 0;
  width: 100%;
}
.button.fit-content {
  width: fit-content;
}
.custom-html-widget a.highlight-link {
  color: var(--ssa-highlight);
  font-size: 16px;
}
.custom-html-widget .button.highlight {
  /* this is when it has links above it */
  _margin-top: 44px;
}

hr {
  background: var(--border-grey);
  border: 0;
  height: 1px;
  margin-bottom: 30px;
}

h1, h2, h3, h4, h5, h6,
.simpay-styled .simpay-form-title, .simpay-styled .simpay-form-description {
  font-family: "Archivo", sans-serif;
}

h2 {
  font-size: 34px;
  font-weight: 900;
  line-height: 34px;
  margin-bottom: 30px;
}
h3 {
  font-size: 24px;
  font-weight: 900;
  line-height: 30px;
  margin-bottom: 40px;
}

.swiper {
  height: auto;
  padding-top: 10px;
  padding-bottom: 70px;
  width: 100%;
}
.swiper-slide {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  -webkit-box-shadow: 7px 7px 9px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 7px 7px 9px 0px rgba(0,0,0,0.2);
  box-shadow: 7px 7px 9px 0px rgba(0,0,0,0.2);
  overflow: visible;
}
.swiper-slide a.listing-item-img {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  display: inline-block;
  float: left;
  height: 146px;
  width: 100%;
}
.swiper-slide .course-content {
  background-color: var(--white);
  display: inline-block;
  padding: 16px 24px 34px 24px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  width: 100%;
}
.swiper-slide .course-content h4 {
  color: var(--black);
  font-size: 19px;
  line-height: 22px;
  margin-bottom: 30px;
}
.swiper-slide .course-content a {
  text-decoration: none;
}
.swiper-slide .course-content p {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 37px;
}
.swiper-slide .course-content span {
  display: inline-block;
  float: left;
  margin-right: 7px;
}
.swiper-slide .course-content span.right-arrow {
  display: inline-block;
  float: right;
}
.pagination-container {
  align-items: center;
  display: flex;
  margin: 0 auto;
  text-align: center;
  width: fit-content;
}
.swiper-pagination {
  display: inline-block;
  position: relative;
}
.swiper-button-next, .swiper-button-prev {
  color: var(--ssa-main);
  position: initial;
  height: auto;
  margin-top: 0;
}
.swiper-button-prev {
  float: left;
}
.swiper-button-next {
  float: right;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  content: 'prev';
  font-size: 26px;
  font-weight: 900;
}
.swiper-button-next:after {
  content: 'next';
}
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0px;
  margin: 0 5px;
}
.swiper-wrapper {
  margin-bottom: 40px;
  box-sizing: border-box;
}
.swiper-pagination-bullet-active {
  background: var(--ssa-main);
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,10px));
  height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,10px));
}


.top-strip {
  background: url('https://info.staffskillsacademy.co.uk/hubfs/icons/panel-edge-xl.svg');
  display: inline-block;
  height: 80px;
  width: 100%;
  transform: rotateX(180deg);
}
.bottom-strip {
  background: url('https://info.staffskillsacademy.co.uk/hubfs/icons/panel-edge-xl.svg');
  bottom: 0px;
  display: inline-block;
  height: 80px;
  position: absolute;
  width: 100%;
}
.slick-list.draggable {
  padding: 0 !important;
}

.radio-holder {
  display: inline-block;
  float: left;
  line-height: 28px;
  margin: 0 13px 20px 0;
}
input[type="radio"] {
  /* ...existing styles */
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: #fff;
  /* Not removed via appearance */
  margin: 0;
  appearance: none;
  background-color: #fff;
  margin: 0 5px 0 0;
  float: left;
  font: inherit;
  color: currentColor;
  width: 28px;
  height: 28px;
  border: 1px solid var(--bg-2);
  border-radius: 50%;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

input[type="radio"]::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--ssa-main);
}

input[type="radio"]:checked::before {
  transform: scale(1);
}


form .inputs-list > li{
  margin: 0 !important;
}

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 {
  background-color: var(--white);
  border: 1px solid var(--bg-2);
  border-radius: 8px;
  margin-bottom: 0;
  padding: 12px;
  position: relative;
  height: 48px;
}

fieldset.form-columns-3 .hs-form-field:last-child .input {
  margin-right: 0;
}

.drop-down .select-menu {
  background-color: var(--white);
  border: 1px solid var(--bg-2);
  border-radius: 8px;
  height: 56px;
  margin-bottom: 20px;
  position: relative;
}
.drop-down .select-menu select {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  height: 56px;
  padding: 16px 44px 16px 23px;
  width: 100%;
  position: relative;
  z-index: 10;
}
.drop-down .material-icons {
  position: absolute;
  top: 16px;
  right: 25px;
  width: 15px;
  text-align: left;
}
.numeric {
  background-color: var(--ssa-highlight);
  color: var(--ssa-main);
  float: right;
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  width: fit-content;
  padding: 0 14px;
}
.scroll-to-anchor {
  cursor: pointer;
}
.jquery-modal.blocker {
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 20;
}
.modal {
  background: var(--ssa-main);
  padding: 20px 30px 30px 20px;
  z-index: 21;
}
.modal h2 {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.modal input {
  background: var(--white) !important;
  border: none !important;
  border-radius: 8px !important;
  height: 48px !important;
  width: 100%;
  padding: 10px 50px 10px 14px !important;
  margin-bottom: 27px !important;
}
.modal .button {
  color: var(--black);
  float: right;
  font-size: 16px;
}

/* pagination */
#pagination {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 70px;
  width: 100%;
}
.pagination-prev {
  background-color: var(--white);
  border: 1px solid var(--bg-2);
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  color: var(--ssa-main);
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
  height: 48px;
  padding: 0 20px 0 25px;
}
.page-numbers {
  display: inline-block;
  float: left;
}
.page-numbers a,
.page-numbers span {
  align-items: center;
  background-color: var(--white);
  border: 1px solid var(--bg-2);
  color: var(--ssa-main);
  display: flex;
  float: left;
  justify-content: center;
  height: 48px;
  width: 44px;
}
.page-numbers .active {
  background-color: var(--ssa-main);
  color: var(--white);
}
.pagination-next {
  background-color: var(--white);
  border: 1px solid var(--bg-2);
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  color: var(--ssa-main);
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
  height: 48px;
  padding: 0 25px 0 20px;
}
#pagination .pagination-container {
  display: inline-block;
  margin: 0;
  align-items: initial;
}
span.pagination-next,
span.pagination-prev {
  opacity: 0.3;
}

/* 404 page */
.four h1 {
  color: var(--ssa-main);
  font-size: 36px;
  font-weight: 900;
  margin: 50px 0;
}


/* header including nav */
.header-bar {
  display: flex;
  justify-content: space-between;
  min-height: 52px;
  padding: 16px 20px;
}
.header-bar .phone, .header-bar .search {
  display: flex;
  align-items: center;
}
.header-bar .phone {
  border-bottom: 4px solid var(--ssa-highlight);
  text-decoration: none;
}
.header-bar .phone::before {
  content: url('https://info.staffskillsacademy.co.uk/hubfs/icons/icon-phone.webp');
  height: 18px;
  margin-right: 6px;
  width: 18px;
}
.header-bar .search-contact-login a {
  float: left;
  margin-left: 50px;
  text-decoration: none;
}
.header-bar .search-contact-login a.search::before {
  content: url('https://info.staffskillsacademy.co.uk/hubfs/icons/icon-search.webp');
  height: 18px;
  margin-right: 6px;
  width: 18px;
}
.nav-container {
  background-image: linear-gradient(-57deg, rgba(12, 111, 138, 1) 0%, rgba(8, 85, 112, 1) 100%);
  min-height: 168px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-container.fsb {
  background-color: #FFF;
  background-image: none;
}
.nav-container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-container .logo {
  display: inline-block;
  float: left;
  height: 59px;
  text-indent: -99999px;
  width: 248px;
}
.nav-container.fsb .logo {
  height: 70px;
  width: 319px;
}
.nav-container.scrolling {
  position: fixed;
  top: 0;
  height: 74px;
  min-height: 74px;
  z-index: 50;
}
.nav-container.scrolling .logo {
  height: 48px;
  width: 202px;
}

nav {
  font-family: "Archivo", sans-serif;
  float: right;
  margin-top: 6px;
  max-width: 830px;
  width: 100%;
}
nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
nav#mega-menu-wrap-staff-skills-academy-menu.mega-menu-wrap {
  clear: none;
  float: right;
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  display: inline-block;
  max-width: fit-content;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu[data-effect="fade"] li.mega-menu-item > ul.mega-sub-menu,
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle.mega-menu-open + #mega-menu-staff-skills-academy-menu {
  top: 108px;
}
.nav-container.scrolling #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu[data-effect="fade"] li.mega-menu-item > ul.mega-sub-menu,
.nav-container.scrolling #mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle.mega-menu-open + #mega-menu-staff-skills-academy-menu {
  top: 61px;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
  padding: 0 !important;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title {
  margin-bottom: 25px !important;
  padding: 0;
}
#mega-menu-item-640 a,
#mega-menu-item-882 a {
  align-items: center;
  background-color: var(--white);
  border-radius: 24px;
  color: var(--ssa-main);
  display: flex;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  height: 48px;
  justify-content: center;
  margin: 0 auto;
  min-width: 150px;
  padding: 0 34px;
  transition: 0.3s all ease;
  width: fit-content;
}

#mega-menu-item-640 a.highlight{
  background-color: var(--ssa-highlight);
}
header .image-container {
  position: relative;
}
header .image-container .header-fade {
  position: absolute;
  opacity: 0.85;
  background-image: linear-gradient(270deg, rgba(12,111,138,0.40) 23%, #085570 56%);
  height: 100%;
  width: 100%;
}
header .image-container .content {
  position: relative;
  text-align: left;
  z-index: 10;
}
header .image-container .content .text {
  padding-top: 82px;
  padding-bottom: 88px;
  display: inline-block;
  float: left;
  width: 60%;
}
header .image-container .content h1 {
  color: var(--white);
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -2.57px;
  line-height: 72px;
  margin-bottom: 28px;
  max-width: 692px;
  text-align: left;
  width: 100%;
}
header .image-container .content h1 u {
  text-decoration: none;
  position: relative;
}
header .image-container .content h1 u::after {
  background: url(https://info.staffskillsacademy.co.uk/hubfs/icons/underline.webp) 100% 100% / cover no-repeat;
  bottom: -8px;
  content: '';
  display: block;
  height: 15%;
  left: 5%;
  right: 5%;
  position: absolute;
  width: 90%;
}
header .image-container .content p {
  color: var(--white);
  font-family: "Archivo", sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.2px;
  line-height: 35px;
  margin-bottom: 37px;
  max-width: 692px;
  width: 100%;
}
header .image-container .button {
  background-color: var(--ssa-highlight);
  color: var(--black);
  margin: 0;
  float: left;
}
header .image-container .second-button {
  background-color: var(--white);
  margin-left: 30px;
}
@media only screen and (max-width: 1251px) {
  header .image-container .content .text {
    width: 100%;
  }
}
@media only screen and (max-width: 670px) {
  header .image-container .content {
  }
}
@media only screen and (max-width: 645px) {
  header .image-container .button {
    float: none;
  }
  header .image-container .second-button {
    margin: 30px 0 0 0;
  }
}
@media only screen and (max-width: 600px) {
  .content.header-bar a.search span {
    display: none;
  }
}
@media only screen and (max-width: 540px) {
  .content.header-bar a.contact {
    display: none;
  }
}
@media only screen and (max-width: 500px) {
  header .image-container .content {
  }
  header .image-container .content .text {
    padding: 30px 0;
    width: calc(100% - 44px);
  }
  header .image-container .content .text h1 {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0;
  }
  header .image-container .content .text p {
    display: none;
  }
  .content.header-bar {
    padding: 16px 24px;
  }
  .header-bar .search-contact-login a {
    margin-left: 30px;
  }
  .nav-container {
    height: 114px;
    min-height: 114px;
  }
  .nav-container a.logo {
    background-size: 180px !important;
    height: 43px;
    width: 180px;
  }
  .nav-container.scrolling a.logo {
    background-size: 161px !important;
    height: 38px;
    width: 161px;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu[data-effect="fade"] li.mega-menu-item > ul.mega-sub-menu, #mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle.mega-menu-open + #mega-menu-staff-skills-academy-menu {
    top: 74px;
  }
  .nav-container.scrolling #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu[data-effect="fade"] li.mega-menu-item > ul.mega-sub-menu,
  .nav-container.scrolling #mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle.mega-menu-open + #mega-menu-staff-skills-academy-menu {
    top: 56px;
  }
}
@media only screen and (min-width: 1181px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu #mega-menu-item-27 a,
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu #mega-menu-item-640 a,
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu #mega-menu-item-882 a {
    align-items: center;
    background-color: var(--ssa-highlight);
    border-radius: 24px;
    color: var(--ssa-main);
    display: flex;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    height: 48px;
    justify-content: center;
    margin: 0 0 0 24px;
    min-width: 150px;
    padding: 0 34px;
    transition: 0.3s all ease;
    width: fit-content;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu #mega-menu-item-882 a {
    background-color: var(--white);
  }

  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu #mega-menu-item-640 a {
    background-color: var(--ssa-highlight);
  }
}
@media only screen and (max-width: 1180px) {
  .nav-container.scrolling #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu[data-effect="fade"] li.mega-menu-item > ul.mega-sub-menu, .nav-container.scrolling #mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle.mega-menu-open + #mega-menu-staff-skills-academy-menu {
    top: 55px;
  }
  #mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle.mega-menu-open + #mega-menu-staff-skills-academy-menu {
    top: 104px;
  }
}

/* FSB menu */
#menu-fsb-menu {
  list-style-type: none;
}
#menu-fsb-menu li {
  display: inline-block;
  float: right;
}
#menu-fsb-menu li a {
  text-decoration: none;
  padding: 0 10px;
}

/* 3 column stats promo */
.three-column-stats-promo {
  background-color: var(--cream);
}
.three-column-stats-promo.blue-bg {
  background-color: var(--bg-1);
}

.three-column-stats-promo .content .promos {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.three-column-stats-promo .content .promos .promo .top {
  display: flex;
  align-items: center;
  justify-content: left;
}
.three-column-stats-promo .promo {
  _border-right: 1px solid var(--grey);
  height: fit-content;
  min-width: 270px;
  padding: 10px 0;
  width: 30%;
}
.three-column-stats-promo .promo:last-of-type {
  border-right: none;
}
.three-column-stats-promo img {
  border-radius: 20px;
  display: inline-block;
  float: left;
  height: 96px;
  margin-right: 20px;
  width: 96px;
}
.three-column-stats-promo h3 {
  color: var(--ssa-main);
  display: inline-block;
  font-weight: 900;
  font-size: 48px;
  letter-spacing: -1.66px;
  margin: 20px 0 10px 0;
}
.three-column-stats-promo p {
  color: var(--black);
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 19px;
}
.three-column-stats-promo .sub-copy {
  padding: 30px 20px 0 0;
}
.three-column-stats-promo h4 {
  color: var(--ssa-main);
  font-weight: 700;
  font-size: 24px;
  line-height: 26px;
}
@media only screen and (max-width: 960px) {
  .three-column-stats-promo .content .promos {
    display: inline-block;
  }
  .three-column-stats-promo .promo {
    border-right: 0px;
    height: fit-content;
    margin-bottom: 40px;
    padding: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 500px) {

}

/* accreditation panel */
.accreditation-panel .content {
  align-items: center;
  display: flex;
  justify-content: left;
}
.accreditation-panel .content .text {
  margin-right: 40px;
  max-width: 340px;
  width: 100%;
}
.accreditation-panel .content .text h3 {
  font-size: 28px;
  letter-spacing: -0.2px;
  margin-bottom: 16px;
}
.accreditation-panel .content .text {
  font-size: 20px;
}
.accreditation-panel .content .logos {
  align-items: center;
  display: flex;
  justify-content: left;
  width: 100%;
  gap: 40px;
  padding-bottom: 0;
}
.accreditation-panel .content img {
  max-width: 130px;
  width: 100%;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  float: left;
}
.accreditation-panel .content .swiper-slide {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.accreditation-panel .content .swiper-wrapper {
  margin-bottom: 0;
  align-items: center;
}
.accreditation-panel .content .logos.swiper {
  padding-top: 0;
}
@media only screen and (max-width: 1080px) {
  .accreditation-panel .content {
    display: inline-block;
    padding-bottom: 0px;
  }
  .accreditation-panel .content .text {
    margin-bottom: 52px;
  }
  .accreditation-panel .content .logos {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 774px) {
  .accreditation-panel .content {
    padding: 57px 0 73px 50px;
  }
  .accreditation-panel .content .logos {
    display: inline-block;
  }
  .accreditation-panel .content .logos img {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 500px) {
  .accreditation-panel .content {
    padding: 40px 0 0 24px;
  }
}

/* video logo panel */
.video-logo-panel {
  background-color: var(--bg-1);
  padding: 77px 0 87px 0;
  position: relative;
}
.video-logo-panel .content {
  padding-bottom: 80px;
  text-align: center;
}
.video-logo-panel .video-and-text {
  align-items: center;
  display: flex;
  margin-bottom: 65px;
  width: 100%;
}
.video-logo-panel .video-and-text .video {
  max-width: 610px;
  margin-right: 62px;
}
.video-logo-panel .video-and-text .video img {
  width: 100%;
}
.video-logo-panel .video-and-text .text {
  text-align: left;
  width: 37%;
}
.video-logo-panel .video-and-text .text h3 {
  color: var(--ssa-main);
  font-size: 42px;
  letter-spacing: -1.5px;
  line-height: 46px;
  margin-bottom: 28px;
  max-width: 440px;
  width: 100%;
}
.video-logo-panel .video-and-text .text p {
  color: var(--black);
  font-family: "Archivo", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}
.video-logo-panel .video-and-text .text ul {
  list-style-type: none;
}
.video-logo-panel .video-and-text .text li {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-bottom: 20px;
  width: 100%;
}
.video-logo-panel .video-and-text .text li img {
  margin-right: 16px;
}
.video-logo-panel .video-and-text .text .button {
  border: 1px solid var(--ssa-main);
  color: var(--ssa-main);
  float: left;
  margin: 0 21px 0 0;
  text-decoration: none;
}
.video-logo-panel .video-and-text .text a {
  color: var(--ssa-main);
  text-decoration: underline;
  line-height: 48px;
}
.video-logo-panel h3.logo-title {
  color: var(--black);
  display: inline-block;
  font-size: 28px;
  letter-spacing: -0.2px;
  line-height: 54px;
  margin-bottom: 64px;
  padding: 0 50px;
}
.video-logo-panel h3.logo-title u {
  text-decoration: none;
  position: relative;
  z-index: 10;
}
.video-logo-panel h3.logo-title u::after {
  background: url(https://info.staffskillsacademy.co.uk/hubfs/icons/circle-outline.webp) 100% 100% / cover no-repeat;
  top: -25px;
  content: '';
  display: block;
  height: 82px;
  left: -20px;
  right: 0;
  position: absolute;
  width: 192px;
  z-index: -1;
}
.video-logo-panel .logos .swiper-wrapper {
  align-items: center;
}
.video-logo-panel .logos .swiper-slide {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.video-logo-panel .logos .swiper-slide img {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  float: none;
  max-width: fit-content;
}
.video-logo-panel .logos.swiper {
  padding-bottom: 0;
}

@media only screen and (max-width: 780px) {
  .video-logo-panel {
    padding: 30px 0;
  }
  .video-logo-panel .content {
    padding: 80px 0 50px 50px;
  }
  .video-logo-panel .video-and-text {
    border-bottom: 0;
    display: inline-block;
    padding: 0 50px 0 0;
  }
  .video-logo-panel .video-and-text .video {
    margin-right: 0;
  }
  .video-logo-panel .video-and-text .video img {
    margin-bottom: 41px;
  }
  .video-logo-panel .video-and-text .text {
    width: 100%;
  }
  .video-logo-panel h3.logo-title {
    padding: 0 100px 0 50px;
  }
}

@media only screen and (max-width: 500px) {
  .video-logo-panel .content {
    padding: 40px 0 0 24px;
  }
  .video-logo-panel .video-and-text {
    padding-right: 24px;
  }
  .video-logo-panel h3.logo-title {
    padding: 0 24px 0 0;
  }
  .video-logo-panel .video-and-text .text h3 {
    font-size: 34px;
    line-height: 42px;
  }
}

/* learning platform panel */
.learning-platform-panel .content {
  padding-top: 47px;
  padding-bottom: 87px;
}
.learning-platform-panel .tabs {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 75px;
}
.learning-platform-panel .tabs .tab {
  align-items: center;
  border: 1px solid var(--bg-2);
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  font-family: "Archivo", sans-serif;
  font-size: 24px;
  font-weight: 700;
  height: 105px;
  justify-content: center;
  letter-spacing: -0.17px;
  padding: 30px;
  position: relative;
  text-align: center;
  width: fit-content;
}
.learning-platform-panel .tabs .tab.selected {
  background-color: var(--bg-1);
}
.learning-platform-panel .tabs .tab.selected::after {
  background: url(%27https://info.staffskillsacademy.co.uk/hubfs/icons/bottom-triangle.webp%27);
  bottom: -19px;
  content: '';
  display: inline-block;
  height: 20px;
  position: absolute;
  width: 34px;
  margin: 0 auto;
}
.learning-platform-panel .tab-content .tab {
  display: flex;
  align-items: flex-start;
  transition: all ease 0.3s;
}
.learning-platform-panel .tab-content .tab.hidden {
  display: none;
}
.learning-platform-panel .tab-content .main-image {
  margin-right: 60px;
  width: 60%;
}
.learning-platform-panel .text h3 {
  color: var(--ssa-main);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 46px;
}
.learning-platform-panel .text h3 u {
  position: relative;
  text-decoration: none;
}
.learning-platform-panel .text h3 u::after {
  background: url(https://info.staffskillsacademy.co.uk/hubfs/icons/underline-blue.webp) 100% 100% / cover no-repeat;
  bottom: -8px;
  content: '';
  display: block;
  height: 15%;
  left: 5%;
  right: 5%;
  position: absolute;
  width: 90%;
}
.learning-platform-panel .text ul {
  list-style-type: none;
  margin-bottom: 40px;
}
.learning-platform-panel .text li {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-bottom: 20px;
  width: 100%;
}
.learning-platform-panel .text li img {
  margin-right: 16px;
}
.learning-platform-panel .text .button {
  border: 1px solid var(--ssa-main);
  float: left;
  margin: 0 21px 0 0;
  text-decoration: none;
}
.learning-platform-panel .text a {
  color: var(--ssa-main);
  text-decoration: underline;
  line-height: 48px;
}

@media only screen and (max-width: 1090px) {
  .learning-platform-panel .tab-content .tab {
    display: inline-block;
  }
  .learning-platform-panel .tab .main-image {
    margin: 0 0 39px 0;
    max-width: 569px;
    width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .learning-platform-panel .tabs .tab {
    padding: 15px;
    font-size: 16px;
    height: auto;
  }
  .learning-platform-panel .tab .main-image {
    width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .learning-platform-panel .text h3 {
    font-size: 34px;
    line-height: 42px;
  }
}

/* pricing calculator */
.pricing-calculator .content {
  display: flex;
  background-color: var(--cream);
  padding: 70px 44px 92px 70px;
  align-items: flex-start;
}
.pricing-calculator h3 {
  color: var(--ssa-main);
  font-weight: 900;
  font-size: 42px;
  letter-spacing: -1.5px;
  margin-bottom: 42px;
  line-height: 46px;
}
.pricing-calculator .title-and-dropdowns {
  margin-top: 32px;
  width: 35%;
}
.pricing-calculator .title-and-dropdowns label {
  display: flex;
  align-items: center;
  height: 56px;
  margin-bottom: 24px;
  position: relative;
}
.pricing-calculator .title-and-dropdowns label select {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  font-size: 16px;
  height: 56px;
  padding: 16px 44px 16px 23px;
  width: 180px;
  position: relative;
  z-index: 10;
}
.pricing-calculator .title-and-dropdowns label .select-menu {
  background-color: var(--white);
  border: 1px solid var(--bg-2);
  border-radius: 8px;
  height: 56px;
  margin: 0 0 0 20px;
  position: relative;
}
.pricing-calculator .arrow {
  margin: 68px 35px 0 50px;
}
.pricing-calculator .description {
  width: 60%;
}
.pricing-calculator .description-content {
  background: url('https://info.staffskillsacademy.co.uk/hubfs/icons/pricing-calculator-background.webp');
  background-size: 100% 100%;
  display: inline-block;
  padding: 58px 52px 50px 68px;
  width: 100%;
  margin-bottom: 48px;
}
.pricing-calculator .description-content h4 {
  color: var(--black);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.pricing-calculator .description-content h5 {
  color: var(--ssa-main);
  display: inline-block;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 46px;
  margin: 0 12px 23px 0;
}
.pricing-calculator .description-content p {
  display: inline-block;
  line-height: 20px;
  margin-bottom: 23px;
}
.pricing-calculator .description-content ul {
  display: inline-block;
  float: left;
  padding-left: 20px;
  width: 60%;
}
.pricing-calculator .description-content a {
  color: var(--ssa-main);
  font-family: "Archivo", sans-serif;
  display: inline-block;
  text-decoration: underline;
  margin: 22px 0 0 20px;
}
.pricing-calculator .description-content .button {
  background-color: var(--ssa-main);
  color: var(--white);
  display: flex;
  text-decoration: none;
  margin: 22px 0 0 0;
}
.pricing-calculator .description h4 {
  display: inline-block;
  margin-right: 40px;
}
.pricing-calculator .description a {
  color: var(--ssa-main);
  text-decoration: underline;
}

@media only screen and (max-width: 960px) {
  .pricing-calculator .title-and-dropdowns label span {
    display: inline-block;
    margin-bottom: 10px;
  }
  .pricing-calculator .title-and-dropdowns label {
    display: inline-block;
    height: 88px;
  }
  .pricing-calculator .title-and-dropdowns label .select-menu {
    margin-left: 0;
  }
}
@media only screen and (max-width: 915px) {
  .pricing-calculator .content {
    display: inline-block;
  }
  .pricing-calculator .title-and-dropdowns {
    margin-bottom: 30px;
  }
  .pricing-calculator .title-and-dropdowns,
  .pricing-calculator .description {
    margin-top: 0;
    width: 100%;
  }
  .pricing-calculator .arrow {
    display: none;
  }
}
@media only screen and (max-width: 915px) {
  .pricing-calculator .content {
    padding: 40px 24px;
  }
}
@media only screen and (max-width: 560px) {
  .pricing-calculator .description h4 {
    margin: 0 0 10px 0;
    width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .pricing-calculator h3 {
    font-size: 34px;
    line-height: 42px;
  }
}


.image-with-text-list-panel .content .main-image {
  display: inline-block;
  float: left;
  width: 50%;
}
.image-with-text-list-panel .content .main-image.left,
.image-with-text-list-panel .content .text.left {
  margin-right: 5%;
}
.image-with-text-list-panel .content .text {
  display: inline-block;
  float: left;
  width: 45%;
}
.image-with-text-list-panel .content .text h3 {
  color: var(--ssa-main);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 46px;
  margin-bottom: 26px;
}
.image-with-text-list-panel .content .text .content-text {
  margin-top: 30px;
}
.image-with-text-list-panel .text ul {
  list-style-type: none;
}
.image-with-text-list-panel .text ul li {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}
.image-with-text-list-panel .text ul li img {
  margin-right: 15px;
}
.image-with-text-list-panel .content .text .button {
  background-color: var(--ssa-highlight);
  float: left;
  margin: 20px 0 20px 0;
}

.ctas-title{
  padding-top: 50px;
}

.image-with-text-list-panel .content .text .button.solid{
  background-color: var(--ssa-main);
}

.image-with-text-list-panel .content .text .button.solid{
  margin-left: 20px;
}

@media(max-width: 1073px){
  .image-with-text-list-panel .content .text .button.solid{
    margin-left: 0;
    margin-top: 0;
    display: block;
  }

  .image-with-text-list-panel .content .ctas{
    margin-left: 0;
    display: flex;
    flex-flow: column;
  }
}
@media only screen and (max-width: 680px) {
  .image-with-text-list-panel .content .main-image {
    float: none;
    margin-right: 0;
    width: 100%;
  }
  .image-with-text-list-panel .content .text {
    float: none;
    margin-right: 0;
    width: 100%;
  }

  .image-with-text-list-panel .content .main-image.left,
  .image-with-text-list-panel .content .text.left {
    margin-right: 0;
  }
}
@media only screen and (max-width: 500px) {
  .image-with-text-list-panel .content .text h3 {
    font-size: 34px;
    line-height: 42px;
  }
}

/* popular-courses */
.popular-courses {
  background-color: var(--bg-1);
  position: relative;
}
.popular-courses .content {
  padding: 22px 20px 0 50px;
}
.popular-courses .content h3 {
  color: var(--ssa-main);
  font-size: 42px;
  letter-spacing: -1.5px;
  line-height: 46px;
  margin-bottom: 32px;
}
.popular-courses .content .popular-courses-container {
  padding-top: 10px;
  padding-right: 30px;
  width: 100%;
}
@media only screen and (max-width: 500px) {
  .popular-courses .content {
    padding: 22px 0 0 24px;
  }
  .popular-courses .content h3 {
    font-size: 34px;
    line-height: 42px;
  }
  .popular-courses .slider-controls {
    padding-right: 24px;
  }
}

/* courses-panel */
.courses-panel {
  background-color: var(--bg-1);
  padding-bottom: 100px;
}
.courses-panel .content {
  padding: 0 20px 0 50px;
  max-width: 1280px;
}
.courses-panel .content h3 {
  color: var(--ssa-main);
  font-size: 42px;
  letter-spacing: -1.5px;
  line-height: 46px;
  margin-bottom: 24px;
}
.courses-panel .content p {
  font-size: 20px;
  margin-bottom: 66px;
}
.courses-panel .courses-container {
  padding-right: 30px;
}
.courses-panel .courses-container .course {
  background-color: var(--white);
  text-align: left;
}
.courses-panel .content .course {
  box-sizing: border-box;
  display: inline-block;
  padding: 28px 19px 16px 32px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  -webkit-box-shadow: 7px 7px 9px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 7px 7px 9px 0px rgba(0,0,0,0.2);
  box-shadow: 7px 7px 9px 0px rgba(0,0,0,0.2);
}
.courses-panel .content .course img,
.courses-panel .content .course .circle {
  display: inline-block;
  border-radius: 100px;
  height: 200px;
  width: 200px;
  margin: 0 auto 16px auto;
}
.courses-panel .content .course .course-content {
  padding: 0;
  width: 100%;
}
.courses-panel .content .course .course-content h4 {
  color: var(--black);
  font-size: 19px;
  line-height: 22px;
  margin-bottom: 8px;
}
.courses-panel .content .course .course-content p {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 18px;
}
.courses-panel .content .buttons {
  text-align: center;
  width: 100%;
}
.courses-panel .content .button {
  background-color: var(--ssa-main);
  color: var(--white);
  display: inline-block;
  margin: 0 12px 25px 12px;
  line-height: 48px;
  text-align: center;
}
.courses-panel .content .button.outline {
  background: transparent;
  color: var(--ssa-main);
}

@media only screen and (min-width: 768px) {
  .courses-panel .courses-container {
    width: 100%;
  }
  .courses-panel .content .courses-container .swiper-wrapper .course {
    box-sizing: border-box;
    max-width: 23.125%;
    margin-bottom: 2.5%;
  }
  .courses-panel .courses-container .swiper-wrapper {
    flex-wrap: wrap;
    gap: 2.5%;
    justify-content: flex-start;
  }
  .courses-panel .courses-container .pagination-container {
    display: none;
  }

}
@media only screen and (max-width: 1130px) {
  .courses-panel .content .courses-container .swiper-wrapper .course {
    max-width: 31.6666%;
  }
}
@media only screen and (max-width: 857px) {
  .courses-panel .content .courses-container .swiper-wrapper .course {
    max-width: 48.75%;
  }
}
@media only screen and (max-width: 823px) {
  .courses-panel .content .button {
    margin: 0 10% 25px 10%;
    width: 80%;
  }
}
@media only screen and (max-width: 613px) {
  .courses-panel .content .courses-container .swiper-wrapper .course {
    max-width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .courses-panel .content {
    padding: 0 0 0 24px;
  }
  .courses-panel .content h3 {
    font-size: 34px;
    line-height: 42px;
  }
}

/* title-and-button-panel */
.title-and-button-panel .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 75px 80px 10px 80px;
}
.title-and-button-panel .content h3 {
  font-size: 28px;
  letter-spacing: -0.2px;
  line-height: 32px;
  margin-right: 35px;
}
.title-and-button-panel .content .button-text {
  min-width: 230px;
  text-align: center;
}
.title-and-button-panel .content .button {
  background-color: var(--ssa-main);
  color: var(--white);
  display: inline-block;
  line-height: 48px;
  margin: 0 0 10px 0;
}
@media only screen and (max-width: 578px) {
  .title-and-button-panel .content {
    display: inline-block;
    text-align: center;
    padding-top: 40px;
  }
  .title-and-button-panel .content h3 {
    margin-right: 0;
  }
}

/* testimonials-panel */
.testimonials-panel {
  background-color: var(--cream);
  position: relative;
}
.testimonials-panel .spacer {
  height: 80px;
}
.testimonials-panel .content {
  max-width: 1280px;
  padding-top: 20px;
  padding-bottom: 30px;
}
.testimonials-panel .content h3 {
  color: var(--ssa-main);
  font-size: 42px;
  letter-spacing: -1.5px;
  line-height: 46px;
}
.testimonials-panel .content .testimonials-container {
  __padding: 0 120px;
}
.testimonials-panel .content .testimonials-container .testimonial.swiper-slide {
  box-shadow: none;
}
.testimonials-panel .content .testimonials-container .author-image {
  display: inline-block;
  position: relative;
  margin-right: 4%;
  float: left;
  width: 26%;
}
.testimonials-panel .content .testimonials-container .author-image .quotes {
  left: 0;
  position: absolute;
  top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  float: none;
  width: fit-content;
}
.testimonials-panel .content .testimonials-container .author-image .blank {
  display: inline-block;
  height: 100%;
  width: 100%;
}
.testimonials-panel .content .testimonials-container .testimonial-text {
  display: inline-block;
  float: left;
  width: 70%;
}
.testimonials-panel .content .testimonials-container .testimonial-text p {
  color: var(--ssa-main);
  display: inline-block;
  font-family: "Archivo", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 28px;
}
.testimonials-panel .content .testimonials-container .author-position {
  float: left;
  font-family: "Poppins";
}
.testimonials-panel .content .testimonials-container .testimonial .logo {
  float: right;
  width: fit-content;
}
@media only screen and (max-width: 960px) {
  .testimonials-panel .content .testimonials-container {
    padding: 0;
  }
}
@media only screen and (max-width: 700px) {
  .testimonials-panel .content .testimonials-container .author-image,
  .testimonials-panel .content .testimonials-container .testimonial-text {
    float: none;
  }
  .testimonials-panel .content .testimonials-container .author-image {
    margin-bottom: 50px;
    margin-right: 15%;
    margin-left: 15%;
    width: 70%;
  }
  .testimonials-panel .content .testimonials-container .testimonial-text {
    width: 100%;
  }
  .testimonials-panel .content .testimonials-container .testimonial-text p {
    font-size: 22px;
    line-height: 32px;
  }
  .testimonials-panel .content .testimonials-container .testimonial-text .author-position {
    float: none;
    margin-bottom: 20px;
    width: 100%;
  }
  .testimonials-panel .content .testimonials-container .testimonial .logo {
    float: none;
  }
}
@media only screen and (max-width: 500px) {
  .testimonials-panel .content h3 {
    font-size: 34px;
    line-height: 42px;
  }
}

/* faqs-panel */
.faqs-panel {
  position: relative;
}

.faqs-panel .content h3 {
  color: var(--ssa-main);
  font-size: 42px;
  letter-spacing: -1.5px;
  line-height: 46px;
  margin-bottom: 38px;
}
.faqs-container {
  border-top: 1px solid var(--grey);
  padding-bottom: 100px;
}
.faqs-container .faq {
  border-bottom: 1px solid var(--grey);
  display: inline-block;
  font-size: 20px;
  line-height: 28px;
  padding: 23px 20px 23px 0;
  width: 100%;
}
.faqs-container .faq h4 {
  float: left;
  font-weight: 400;
  max-width: 80%;
  line-height: 1.4;
}
.faqs-container .faq .answer {
  clear: both;
  display: none;
  float: left;
  font-size: 16px;
  padding: 40px 0 70px 0;
  max-width: 880px;
  width: 100%;
}
.faqs-container .faq a.cross {
  cursor: pointer;
  display: inline-block;
  float: right;
  text-decoration: none;
  transition: all ease 0.3s;
}
.faqs-container .faq a.cross span {
  font-size: 30px;
}
.faqs-container .faq a.closed {
  align-items: center;
  display: flex;
  justify-content: center;
  transform: rotate(45deg);
}
.faqs-container .faq a.closed.open {
  transform: rotate(0deg);
}
@media only screen and (max-width: 500px) {
  .faqs-panel .content h3 {
    font-size: 34px;
    line-height: 42px;
  }
}

/* contact-panel */
.contact-panel {
  background-color: var(--bg-1);
}
.contact-panel.white {
  background-color: var(--white);
}
.contact-panel .content {
  display: flex;
  justify-content: space-between;
  max-width: 1280px;
}
.contact-panel .content .text-and-image {
  margin-right: 55px;
  position: relative;
  width: 50%;
}
.contact-panel .content .text-and-image .arrow {
  height: 60px;
  position: absolute;
  right: 0;
  top: 40px;
  width: 140px;
}
.contact-panel .content .text-and-image h3 {
  color: var(--ssa-main);
  font-size: 42px;
  letter-spacing: -1.5px;
  line-height: 46px;
  margin-bottom: 24px;
  max-width: 490px;
  position: relative;
  z-index: 10;
}
.contact-panel .content .text-and-image p {
  margin-bottom: 15px;
  max-width: 490px;
}
.contact-panel .content .text-and-image img {
  width: 100%;
}
.contact-panel .content div.wpforms-container-full {
  display: inline-block;
  margin: 0;
  width: 45%;
}
.contact-panel .content .wpforms-container .wpforms-field {
  padding: 0 0 30px 0;
}
div.wpforms-container-full input[type=date], div.wpforms-container-full input[type=datetime], div.wpforms-container-full input[type=datetime-local], div.wpforms-container-full input[type=email], div.wpforms-container-full input[type=month], div.wpforms-container-full input[type=number], div.wpforms-container-full input[type=password], div.wpforms-container-full input[type=range], div.wpforms-container-full input[type=search], div.wpforms-container-full input[type=tel], div.wpforms-container-full input[type=text], div.wpforms-container-full input[type=time], div.wpforms-container-full input[type=url], div.wpforms-container-full input[type=week], div.wpforms-container-full select, div.wpforms-container-full textarea {
  border: 1px solid var(--bg-2) !important;
}
.contact-panel .content .wpforms-container .wpforms-field-label {
  color: var(--black);
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}
.contact-panel .content div.wpforms-container-full button[type=submit] {
  background-color: transparent !important;
  border: 1px solid var(--ssa-main);
  border-radius: 28px;
  box-shadow: none;
  color: var(--ssa-main) !important;
  float: right;
  height: 48px;
  width: 130px;
}
.contact-panel .content div.wpforms-container-full button[type=submit]:hover {
  background-color: transparent !important;
  background-image: none;
}
.contact-panel .content div.wpforms-container-full button[type=submit]:focus:after {
  border: 0px !important;
}
@media only screen and (max-width: 780px) {
  .contact-panel .content {
    display: inline-block;
  }
  .contact-panel .content .text-and-image,
  .contact-panel .content div.wpforms-container-full {
    margin-right: 0;
    width: 100%;
  }


  footer .hbspt-form { width: 100% !important; }
}
@media only screen and (max-width: 500px) {
  .contact-panel .content .text-and-image h3 {
    font-size: 34px;
    line-height: 42px;
  }
  .contact-panel .content .text-and-image .arrow {
    display: none;
  }
}

/* logo-grid */
.logo-grid .content {
  max-width: 1280px;
  padding-top: 86px;
  padding-bottom: 0;
}
.logo-grid .content h3 {
  color: var(--ssa-main);
  font-size: 42px;
  letter-spacing: -1.5px;
  line-height: 46px;
  margin-bottom: 57px;
}
.logo-grid .content .logo-container .swiper-wrapper {
  align-items: center;
}
.logo-grid .content .swiper-slide {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.logo-grid .content .swiper-slide img {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  float: none;
  max-height: 80%;
  max-width: 100%;
}
@media only screen and (max-width: 778px) {
  .logo-grid .content {
    padding-right: 0;
  }
  .logo-grid .content .logo-container img {
    margin-right: 40px;
  }
  .slick-slider .slick-track {
    align-items: center;
    display: flex;
  }
}
@media only screen and (max-width: 500px) {
  .logo-grid .content h3 {
    font-size: 34px;
    line-height: 42px;
  }
}

/* buying-options-panel */
.buying-options-panel {
  background-color: var(--cream);
  padding-top: 75px;
  padding-bottom: 75px;
}
.buying-options-panel .content h3 {
  background: url('https://info.staffskillsacademy.co.uk/hubfs/icons/down-arrow.webp') top right no-repeat;
  color: var(--ssa-main);
  display: inline-block;
  font-size: 42px;
  letter-spacing: -1.5px;
  line-height: 46px;
  margin-bottom: 0;
  padding-bottom: 77px;
  padding-right: 150px;
}
.buying-options-panel .options {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 4%;
}
.buying-options-panel h4.bubble {
  border-radius: 8px;
  background-color: var(--ssa-highlight);
  color: var(--link-color);
  font-size: 14px;
  height: 32px;
  line-height: 34px;
  margin-bottom: 25px;
  padding: 0 22px;
  width: fit-content;
}
.buying-options-panel .blank-spacer {
  height: 32px;
  margin-bottom: 25px;
}
.buying-options-panel h4 {
  color: var(--black);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 14px;
}
.buying-options-panel .option {
  border-right: 1px solid var(--grey);
  padding-right: 40px;
  position: relative;
  width: 30%;
}
.buying-options-panel .option:last-of-type {
  border-right: 0;
  padding-right: 0;
}
.buying-options-panel .option ul {
  list-style-type: none;
}
.buying-options-panel .option ul li {
  align-items: center;
  display: flex;
  margin-bottom: 20px;
  width: 90%;
}
.buying-options-panel .option ul li img {
  margin-right: 16px;
}
.buying-options-panel .drop-down h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 20px;
}
.buying-options-panel .drop-down h4.inline {
  display: inline-block;
  float: left;
  margin-right: 16px;
}
.buying-options-panel .money-description {
  clear: both;
  padding-bottom: 58px;
}
.buying-options-panel .money-description h5 {
  color: var(--ssa-main);
  float: left;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 50px;
  margin-right: 5px;
}
.buying-options-panel .money-description span {
  display: inline-block;
  line-height: 50px;
  margin-top: 8px;
}
.buying-options-panel .money-description p {
  clear: both;
}
.buying-options-panel .money-description .button {
  background-color: var(--ssa-main);
  color: var(--white);
  font-size: 16px;
  width: 100%;
}
.buying-options-panel .money-description .button:disabled,
.buying-options-panel .money-description .button.disabled {
  cursor: default;
  opacity: 0.4;
}
.buying-options-panel .money-description .button.outline {
  border-color: var(--ssa-main);
  color: var(--ssa-main);
}
.buying-options-panel .money-description div {
  margin-bottom: 10px;
}
.buying-options-panel .money-description .button-holder {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-right: 40px;
}
@media only screen and (max-width: 940px) {
  .buying-options-panel .option {
    margin-bottom: 40px;
    width: 48%;
  }
  .buying-options-panel .option:nth-of-type(2n) {
    border-right: 0;
    padding-right: 0;
  }
  .buying-options-panel .option:last-of-type {
    border-right: 1px solid var(--grey);
    padding-right: 40px;
  }
}
@media only screen and (max-width: 760px) {
  .buying-options-panel .content h3 {
    background: transparent;
    padding-right: 0;
  }
}
@media only screen and (max-width: 680px) {
  .buying-options-panel .blank-spacer {
    height: 0;
    margin-bottom: 0;
  }
  .buying-options-panel .content h3 {
    background: transparent;
    padding: 0 30px 30px 0;
  }
  .buying-options-panel .option {
    width: 100%;
  }
  .buying-options-panel .option,
  .buying-options-panel .option:last-of-type {
    border-right: 0;
    padding-right: 0;
  }
  .buying-options-panel .money-description {
    padding-bottom: 0;
  }
  .buying-options-panel .money-description .button-holder {
    padding-right: 0;
    position: relative;
  }
}

/* full-width-image-with-text-panel */
.full-width-image-with-text-panel .content {
  padding-top: 85px;
  padding-bottom: 85px;
  position: relative;
}
.full-width-image-with-text-panel .content h3 {
  color: var(--white);
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -2.57px;
  line-height: 72px;
  margin-bottom: 28px;
  max-width: 570px;
}
.full-width-image-with-text-panel .content h4 {
  color: var(--white);
  font-family: "Archivo", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.2px;
  line-height: 32px;
  margin-bottom: 37px;
}
.full-width-image-with-text-panel .content .button {
  background-color: var(--ssa-highlight);
  color: var(--black);
  margin: 0;
}
@media only screen and (max-width: 500px) {
  .full-width-image-with-text-panel .content {
    min-height: 300px;
  }
  .full-width-image-with-text-panel .content .text {
    padding: 0;
    position: absolute;
    bottom: 10%;
    width: calc(100% - 44px);
  }
  .full-width-image-with-text-panel .content h3 {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0;
  }
  .full-width-image-with-text-panel .content h4 {
    display: none;
  }
}

/* payment page */
.payment-page .content {
  display: flex;
  flex-direction: row-reverse;
  gap: 15%;
  padding-top: 75px;
  padding-bottom: 75px;
}
.payment-page .content .payment-panel {
  width: 50%;
}
.payment-page .content .simpay-styled .simpay-form-control h2 {
  font-family: "Archivo", sans-serif !important;
  margin-top: 54px;
}
.payment-page .content .simpay-checkout-form--stripe_checkout-styled.simpay-styled,
.payment-page .content .simpay-checkout-form--embedded.simpay-styled {
  max-width: 100%;
}
.payment-page .content .simpay-embedded-heading.simpay-styled h3 {
  color: var(--ssa-main);
  margin-bottom: 14px !important;
}
.payment-page .content .simpay-embedded-heading.simpay-styled {
  background-color: var(--cream);
  border-radius: 8px;
  padding: 30px;
}
.payment-page .content .simpay-styled .simpay-form-control .simpay-btn:not(.stripe-button-el) {
  background: var(--ssa-main);
}
.payment-page aside {
  width: 35%;
}
.payment-page .pricing-calculator {
  position: sticky;
  top: 50px;
}
.payment-page aside .drop-down h4.inline {
  display: inline-block;
  float: left;
  margin-right: 16px;
}
.payment-page aside .drop-down h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 20px;
}
.payment-page aside .money-description {
  background-color: var(--ssa-highlight);
  border-radius: 8px;
  clear: both;
  padding: 16px 23px;
}
.payment-page aside .money-description p {
  display: inline-block;
  margin-bottom: 16px;
  width: 100%;
}
.payment-page aside .money-description h5 {
  color: var(--ssa-main);
  float: left;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 50px;
  margin-right: 5px;
}
.payment-page .content .simpay-styled .simpay-form-control .simpay-btn:not(.stripe-button-el):disabled {
  opacity: 0.2;
}
.payment-page .content .simpay-checkout-form--stripe_checkout-styled.simpay-styled a,
.payment-page .content .simpay-checkout-form--overlay.simpay-styled a, .simpay-checkout-form--embedded.simpay-styled a {
  color: var(--ssa-main) !important;
  font-weight: 600;
}
.payment-page .content .simpay-btn.simpay-checkout-btn {
  border-radius: 24px !important;
}
@media only screen and (max-width: 860px) {
  .payment-page .content {
    display: inline-block;
  }
  .payment-page .content .payment-panel,
  .payment-page aside {
    width: 100%;
  }
  .payment-page aside {
    margin-bottom: 50px;
  }
  .payment-page .content {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 500px) {
  .payment-page .content {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

/* two-column-rich-text-panel */
.two-column-rich-text-panel .content {
  display: flex;
  gap: 6%;
  padding-top: 74px;
  padding-bottom: 74px;
}
.two-column-rich-text-panel .column {
  width: 47%;
}
.two-column-rich-text-panel .column h3 {
  margin-bottom: 30px;
}
.two-column-rich-text-panel .column img.size-full {
  width: 100%;
}
.two-column-rich-text-panel blockquote {
  background-color: var(--cream);
  color: var(--ssa-main);
  font-family: "Archivo", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 33px;
  padding: 25px;
}
@media only screen and (max-width: 680px) {
  .two-column-rich-text-panel .content {
    display: inline-block;
  }
  .two-column-rich-text-panel .content .column {
    width: 100%;
  }
  .two-column-rich-text-panel .content .column:first-of-type {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 500px) {
  .two-column-rich-text-panel .content {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

/* staff-panel */
.staff-panel {
  background-color: var(--cream);
}
.staff-panel .content {
  padding-top: 50px;
}
.staff-panel h3 {
  color: var(--ssa-main);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 42px;
}
.staff-panel .image-team {
  border-top: 1px solid var(--border-grey);
  float: left;
  margin: 0 5% 78px 0;
  padding-top: 20px;
  width: 70%;
}
.staff-panel .image-team h3,
.staff-panel .second-team h3,
.staff-panel .third-team h3 {
  color: var(--black);
  font-size: 24px;
  letter-spacing: 0px;
  margin-bottom: 33px;
}
.staff-panel .image-team .team-person {
  align-items: center;
  display: flex;
  float: left;
  margin: 0 10% 24px 0;
  min-height: 84px;
  width: 40%;
}
.staff-panel .image-team .team-person img {
  margin-right: 20px;
}
.staff-panel .image-team .team-person .info {
  font-size: 16px;
  line-height: 26px;
}
.staff-panel .second-team,
.staff-panel .third-team {
  border-top: 1px solid var(--border-grey);
  float: left;
  margin-bottom: 78px;
  padding-top: 20px;
  width: 25%;
}
@media only screen and (max-width: 950px) {
  .staff-panel .image-team {
    width: 100%;
  }
  .staff-panel .second-team,
  .staff-panel .third-team {
    margin-right: 10%;
    width: 45%;
  }
  .staff-panel .third-team {
    margin-right: 0;
  }
}
@media only screen and (max-width: 720px) {
  .staff-panel .image-team .team-person {
    margin-right: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 535px) {
  .staff-panel .second-team,
  .staff-panel .third-team {
    margin-bottom: 30px;
    margin-right: 0%;
    width: 100%;
  }
}

/* blog pages */
.blog-intro,
.blog-content {
  background-color: var(--cream);
  position: relative;
}
.blog-intro .content,
.blog-content .content {
  padding-bottom: 75px;
  padding-top: 75px;
}
.blog-intro .content h1 {
  color: var(--ssa-main);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 46px;
  margin-bottom: 30px;
}
.blog-intro .content h1 a {
  text-decoration: none;
}
.blog-intro .intro-img {
  display: inline-block;
  float: left;
  margin: 0 40px 30px 0;
  max-width: 570px;
}
.blog-intro .intro-img img {
  width: 100%;
}
.blog-intro .excerpt {
  margin-bottom: 40px;
}
.blog-intro .intro-text .time-author {
  display: inline-block;
  margin-top: 10px;
}
.blog-intro .intro-text .time-author .time {
  color: var(--ssa-main);
  margin-right: 10px;
}
.blog-intro .intro-text .time-author .author {
  color: var(--ssa-main);
}
.blog-intro .intro-text .button {
  background-color: var(--ssa-highlight);
  color: var(--ssa-main);
  float: right;
  margin: 0;
}

.blog {
  padding-top: 26px;
  padding-bottom: 80px;
}
.blog .content #blogList {
  align-items: stretch;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
#blogList .listing-item {
  flex-basis: 23%;
  margin-bottom: 60px;
  max-width: 255px;
  width: 100%;
}
#blogList .listing-item h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 21px;
  margin-bottom: 20px;
}
#blogList .listing-item h3 a {
  text-decoration: none;
}
#blogList .listing-item .listing-item-img {
  border-radius: 8px;
  display: inline-block;
  height: 146px;
  margin-bottom: 20px;
  max-width: 255px;
  width: 100%;
}
.blog .content .load-more-container {
  text-align: center;
  width: 100%;
}
.blog .content .load-more-container .button {
  background-color: var(--ssa-main);
  color: var(--white);
  width: 205px;
}

.blog-content {
  margin-bottom: 60px;
  position: relative;
}
.blog-content .content .inside-content {
  max-width: 770px;
  width: 100%;
}
.blog-content .content img {
  border-radius: 8px;
  margin-bottom: 40px;
  max-width: 770px;
  width: 100%;
}
.blog-content .content h1 {
  color: var(--ssa-main);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 46px;
  margin-bottom: 30px;
}
.blog-content .content h3, .blog-content .content p {
  margin-bottom: 30px;
}
.blog-content .content blockquote {
  border: 1px solid var(--grey);
  margin-bottom: 30px;
  padding: 30px 30px 0 30px;
}

.blog-promo-block .content h3 {
  color: var(--ssa-main);
  font-size: 42px;
  letter-spacing: -1.5px;
  line-height: 46px;
}
.blog-promo-block .content #blogList {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.blog-promo-block .content #blogList .listing-item {
  max-width: 255px;
  width: 100%;
}
.blog-promo-block .content #blogList .listing-item .listing-item-content a {
  text-decoration: none;
}
@media only screen and (max-width: 860px) {
  #blogList .listing-item {
    flex-basis: 30%;
  }
  .blog-intro .intro-img {
    margin-right: 0;
  }
}
@media only screen and (max-width: 677px) {
  .blog-promo-block .content #blogList {
    gap: 8%;
  }
  .blog-promo-block .content #blogList .listing-item {
    width: 46%;
  }
}
@media only screen and (max-width: 640px) {
  #blogList .listing-item {
    flex-basis: 48%;
  }
}

/* courses page */
.courses {
  background-color: var(--courses-background);
  padding: 74px 0 74px 0;
  position: relative;
}
.courses .content h2 {
  color: var(--ssa-main);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 44px;
  margin-bottom: 60px;
  width: 100%;
}
.courses .categories {
  display: inline-block;
  float: left;
  margin-right: 3%;
  min-width: 160px;
  width: 20%;
}
.courses .categories .filter-sort {
  cursor: pointer;
  display: none;
  height: 18px;
  margin-bottom: 30px;
}
.courses .categories .filter-sort::before {
  content: url('https://info.staffskillsacademy.co.uk/hubfs/icons/sliders.webp');
  margin-right: 6px;
}
.courses .categories ul {
  list-style-type: none;
  padding-left: 0;
}
.courses .categories ul.children {
  margin: 0 0 0 20px;
}
.courses .courses-main-area {
  display: inline-block;
  width: 76%;
}
.courses .courses-main-area h1 {
  font-family: "Poppins", sans-serif !important;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  margin: 30px 0;
}
.courses .categories li {
  display: inline-block;
  width: 100%;
}
.courses .categories a {
  display: inline-block;
  font-family: "Archivo", sans-serif;
  margin-bottom: 20px;
  text-decoration: none;
}
.courses .categories .current-cat > a {
  border-bottom: 4px solid var(--ssa-main);
}
.courses .categories hr {
  border-top: 1px solid var(--bg-2);
  margin-bottom: 24px;
}
.courses .courses-main-area .filters {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  width: 100%;
}
.courses-main-area .drop-down.sort-by {
  display: inline-block;
  margin-right: 5%;
  width: 30%;
}
.courses-main-area .drop-down.search {
  width: 65%;
}

.courses .courses-main-area h2 {
  display: inline-block;
  float: left;
  color: var(--ssa-main);
  margin-right: 18px;
  margin-bottom: 20px;
}
.courses .courses-main-area h2.fw {
  width: 100%;
}
.search-form {
  position: relative;
  width: 65%;
}
.search-form input {
  width: 100%;
}
.search-form .search-term {
  position: relative;
}
.search-form .search-term::after {
  content: url(https://info.staffskillsacademy.co.uk/hubfs/icons/icon-search.webp);
  display: inline-block;
  height: 18px;
  width: 18px;
  position: absolute;
  top: 14px;
  right: 20px;
}
.courses-main-area .carousel .course {
  display: inline-block;
  max-width: 265px;
  margin: 0 20px 40px 20px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
}
#coursesList .course .listing-item-img {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  display: inline-block;
  height: 146px;
  width: 100%;
}
#coursesList .course .course-content {
  background-color: var(--white);
  display: inline-block;
  padding: 16px 24px 34px 24px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
#coursesList .course .course-content a {
  display: inline-block;
  text-decoration: none;
  _width: 100%;
}
#coursesList .course .course-content h4 {
  color: var(--black);
  font-size: 19px;
  line-height: 22px;
  margin-bottom: 30px;
}
#coursesList .course .course-content p {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 37px;
}
#coursesList .course .course-content span {
  display: inline-block;
  float: left;
  margin-right: 7px;
}
#coursesList .course .course-content span.right-arrow {
  display: inline-block;
  float: right;
}
.courses-main-area .course-type-container {
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
#coursesList {
  clear: both;
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}
#coursesList .course {
  background-color: var(--white);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  -webkit-box-shadow: 5px 5px 9px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 5px 5px 9px 0px rgba(0,0,0,0.2);
  box-shadow: 5px 5px 9px 0px rgba(0,0,0,0.2);
  margin: 0 0 30px 0;
  width: 30%;
}
.courses-main-area .numeric {
  float: left;
  margin-bottom: 30px;
}
.courses-main-area .button {
  border-color: var(--ssa-main);
  color: var(--ssa-main);
  margin: -6px 0 20px 20px;
  float: right;
}
.courses-main-area ul.category-list {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0 40px;
  margin-bottom: 140px;
}
.courses-main-area .category-list li {
  border-bottom: 1px solid var(--bg-2);
  color: var(--ssa-main);
  font-family: "Archivo", sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.17px;
  line-height: 32px;
  padding: 20px 0;
  width: calc(50% - 20px);
}
.courses-main-area .category-list li a {
  text-decoration: none;
}
.courses-main-area .category-list .numeric {
  display: inline-flex;
  float: none;
  margin-left: 15px;
}
.course-industry {
  background-color: var(--white);
}
.course-industry #coursesList {
  gap: 3%;
}
.course-industry #coursesList .course {
  width: 22.75%;
}
.course-industry h2 {
  color: var(--ssa-main);
  display: inline-block;
}
.course-industry h2 span {
  float: left;
}
.course-industry h2 .numeric {
  margin-left: 16px;
}
.course-industry .paragraphs {
  border-bottom: 1px solid var(--border-grey);
  display: flex;
  gap: 5%;
  padding-bottom: 50px;
  margin-bottom: 30px;
}
.course-industry .paragraph {
  width: 47.5%;
}
/* mobile */
@media only screen and (max-width: 1160px) {
  .courses-main-area .button {
    clear: both;
    float: left;
    margin-left: 0;
  }
}
@media only screen and (max-width: 960px) {
  #coursesList .course {
    margin-bottom: 22px;
    width: 100%;
  }
}
@media only screen and (max-width: 880px) {
  .courses .categories {
    margin-right: 0;
    width: 100%;
  }
  .courses .categories .filter-sort {
    display: flex;
  }
  .courses .course-category-list {
    background: var(--white);
    display: none;
    margin-bottom: 40px;
    max-height: 500px;
    overflow-y: scroll;
    padding: 0 24px 0 24px;
    border-radius: 16px;
    border-top: 16px solid var(--white);
    border-bottom: 16px solid var(--white);
  }
  .courses .courses-main-area .filters {
    display: none;
  }
}
@media only screen and (max-width: 880px) {
  .courses-panel {}
}

/* course individual page */
.single-course-page {
  padding: 45px 0;
  position: relative;
}
.single-course-page .content-area {
  float: left;
  margin-right: 5%;
  width: 70%;
}
.single-course-page .content-area h1 {
  color: var(--ssa-main);
  font-size: 42px;
  font-weight: 900;
  line-height: 46px;
  margin-bottom: 30px;
}
.single-course-page img.main-image {
  border-radius: 16px;
  -webkit-box-shadow: 5px 5px 9px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 5px 5px 9px 0px rgba(0,0,0,0.2);
  box-shadow: 5px 5px 9px 0px rgba(0,0,0,0.2);
  margin-bottom: 60px;
  width: 100%;
}
.single-course-page .aside {
  float: left;
  width: 25%;
}
.single-course-page .aside .item {
  align-items: center;
  border-top: 1px solid var(--grey-light);
  display: flex;
  padding: 10px 0;
}
.single-course-page .aside .item img {
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  display: inline-block;
  height: 20px;
  margin: 0 17px 0 0;
  width: 20px;
}
.single-course-page .tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 55px;
}
.single-course-page .tabs a {
  cursor: pointer;
  font-family: "Archivo", sans-serif;
  font-size: 19px;
  font-weight: 700;
  padding-bottom: 5px;
  text-decoration: none;
  margin-right: 20px;
}
.single-course-page .tabs a.selected {
  border-bottom: 4px solid var(--ssa-main);
}
.single-course-page .tab-content .tab.hidden {
  display: none;
}
.single-course-page.faq {
  background-color: var(--cream);
  padding-top: 0;
}
.single-course-page .faq-heading {
  color: var(--ssa-main);
  font-size: 42px;
  font-weight: 900;
  line-height: 46px;
  margin-bottom: 38px;
}
/* mobile */
@media only screen and (max-width: 840px) {
  .single-course-page .content-area {
    float: none;
    margin-bottom: 50px;
    width: 100%;
  }
  .single-course-page .aside {
    float: none;
    width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .single-course-page {
    padding: 26px 0;
  }
  .single-course-page .content-area h1 {
    font-size: 34px;
    line-height: 42px;
  }
}

/* wellbeing-hub-panel */
.wellbeing-hub-panel {
  position: relative;
  padding: 50px 0;
}
.wellbeing-hub-panel h2,
.wellbeing-hub-panel h3 {
  color: var(--ssa-main);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 46px;
  margin-bottom: 10px;
  width: 60%;
}
.wellbeing-hub-panel h3 u,
.wellbeing-hub-panel h2 u {
  text-decoration: none;
  position: relative;
}
.wellbeing-hub-panel h3 u::after,
.wellbeing-hub-panel h2 u::after {
  background: url(https://info.staffskillsacademy.co.uk/hubfs/icons/underline-blue.webp) 100% 100% / cover no-repeat;
  bottom: -8px;
  content: '';
  display: block;
  height: 15%;
  left: 5%;
  right: 5%;
  position: absolute;
  width: 90%;
}
.wellbeing-hub-panel img.main-image {
  width: 100%;
}
.wellbeing-hub-panel .text {
  display: flex;
  gap: 130px;
}
.wellbeing-hub-panel .text .lhs-text {
  text-align: left;
  width: 50%;
}
.wellbeing-hub-panel .text .lhs-text h4 {
  font-size: 24px;
  font-weight: 900;
  line-height: 30px;
  margin-bottom: 16px;
}
.wellbeing-hub-panel .text .lhs-text p {
  margin-bottom: 20px;
}
.wellbeing-hub-panel .text .lhs-text .button {
  width: fit-content;
}
.wellbeing-hub-panel .text ul {
  list-style-type: none;
}
.wellbeing-hub-panel .text ul li  {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.wellbeing-hub-panel .text ul li img {
  margin-right: 15px;
}
@media only screen and (max-width: 860px) {
  .wellbeing-hub-panel h3 {
    width: 100%;
  }
  .wellbeing-hub-panel .text {
    gap: 60px;
  }
}
@media only screen and (max-width: 640px) {
  .wellbeing-hub-panel .text {
    display: inline-block;
  }
  .wellbeing-hub-panel .text .lhs-text {
    margin-bottom: 30px;
    width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .wellbeing-hub-panel h3 {
    font-size: 34px;
    line-height: 42px;
  }
}

/* courses-listing-panel */
.courses-listing-panel {
  position: relative;
}
.courses-listing-panel h3 {
  color: var(--ssa-main);
  font-size: 42px;
  letter-spacing: -1.5px;
  line-height: 46px;
}
.courses-listing-panel h4 {
  font-size: 24px;
  line-height: 26px;
  margin-bottom: 70px;
}
.courses-listing-panel .course-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
  justify-content: space-between;
  align-items: stretch;
}
.courses-listing-panel .course-group {
  border-top: 1px solid #d8d8d8;
  margin-bottom: 40px;
  padding-top: 20px;
  width: 31.3333333%;
}
.courses-listing-panel .course-group h5 {
  color: var(--ssa-main);
  font-size: 24px;
  font-weight: 900;
  line-height: 30px;
  margin-bottom: 27px;
}
.courses-listing-panel .course-group ul {
  padding-left: 20px;
  line-height: 26px;
}
.courses-listing-panel .lower-title-1 {
  color: var(--ssa-main);
  font-size: 28px;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}
.courses-listing-panel .lower-title-2 {
  font-size: 28px;
  letter-spacing: -0.2px;
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 640px) {
  .courses-listing-panel .course-group {
    width: 48.5%;
  }
}
@media only screen and (max-width: 500px) {
  .courses-listing-panel .course-groups {
    gap: 0;
  }
  .courses-listing-panel .course-group {
    width: 100%;
  }
  .courses-panel .content {
    padding: 0 0 0 24px;
  }
}

/* industry-selector-panel */
.industry-selector-panel .content {
  padding-top: 70px;
}
.industry-selector-panel h3 {
  color: var(--ssa-main);
  font-size: 42px;
  letter-spacing: -1.5px;
  line-height: 46px;
}
.industry-selector-panel h4 {
  font-size: 24px;
  font-weight: 900;
  line-height: 26px;
  margin-bottom: 70px;
}
.industry-selector-panel .industries {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.industry-selector-panel .industries .industry {
  margin-bottom: 20px;
  text-align: center;
  width: 18%;
}
.industry-selector-panel .industries .industry .image {
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 16px;
  height: 200px;
  width: 200px;
}
.industry-selector-panel .industries .industry h5 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}
@media only screen and (max-width: 500px) {
  .industry-selector-panel .content {
    padding-top: 25px;
  }
}

/* search results page */
.search-results .content {
  padding-top: 70px;
  padding-bottom: 70px;
}
.search-results .content > h1 {
  color: var(--ssa-main);
  font-size: 42px;
  letter-spacing: -1.5px;
  font-weight: 900;
  margin-bottom: 40px;
}
.search-results .content > p {
  margin-bottom: 30px;
}
#searchList .listing-items-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
}
#searchList .listing-item {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  -webkit-box-shadow: 7px 7px 9px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 7px 7px 9px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 7px 7px 9px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
  width: 22.75%;
}
#searchList .listing-item .listing-item-img {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  display: inline-block;
  height: 146px;
  width: 100%;
}
#searchList .listing-item .listing-item-content {
  font-size: 14px;
  line-height: 18px;
  padding: 16px 24px 34px 24px;
}
#searchList .listing-item .listing-item-content a {
  text-decoration: none;
}
#searchList .listing-item .listing-item-content h4 {
  color: var(--black);
  font-size: 19px;
  line-height: 22px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 900px) {
  #searchList .listing-item {
    width: 31.3333%;
  }
}
@media only screen and (max-width: 900px) {
  #searchList .listing-item {
    width: 48.5%;
  }
}
@media only screen and (max-width: 500px) {
  .search-results .content {
    padding: 30px 24px;
  }
  #searchList .listing-items-container {
    gap: 0;
  }
  #searchList .listing-item {
    width: 100%;
  }
}

/* text panel */
.text-panel .content {
  padding-top: 50px;
  padding-bottom: 50px;
}
.text-panel .content .content-area {
  float: left;
  margin-right: 5%;
  width: 70%;
}
.text-panel .content .aside {
  float: left;
  width: 25%;
}
.text-panel .content h1 {
  color: var(--ssa-main);
  font-size: 42px;
  font-weight: 900;
  line-height: 46px;
  margin-bottom: 40px;
}
.text-panel .content h2,
.text-panel .content h3 {
  color: var(--black);
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 40px;
}
/* mobile */
@media only screen and (max-width: 840px) {
  .text-panel .content .content-area {
    float: none;
    margin: 0 0 50px 0;
    width: 100%;
  }
  .text-panel .aside {
    display: none;
  }
}
@media only screen and (max-width: 500px) {
  .text-panel .content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .text-panel .content-area h1 {
    font-size: 34px;
    line-height: 42px;
  }
}

/* 2-column-image-with-text-list-panel */
.two-column-image-with-text-list-panel .content .flex-holder {
  display: flex;
  justify-content: space-between;
  gap: 5%;
  padding: 60px 50px 0 50px;
}
.two-column-image-with-text-list-panel .content .column {
  width: 47.5%;
}
.two-column-image-with-text-list-panel .content .column .main-image {
  border-radius: 16px;
  margin-bottom: 40px;
  width: 100%;
}
.two-column-image-with-text-list-panel .content .column h3 {
  color: var(--ssa-main);
  font-size: 42px;
  letter-spacing: -1.5px;
  line-height: 46px;
  margin-bottom: 28px;
}
.two-column-image-with-text-list-panel .content .column ul {
  display: inline-block;
  list-style-type: none;
  margin-bottom: 30px;
}
.two-column-image-with-text-list-panel .content .column ul li {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-bottom: 16px;
}
.two-column-image-with-text-list-panel .content .column ul img {
  margin-right: 16px;
}
.two-column-image-with-text-list-panel .content .button.blue.fit-content {
  margin: 0 auto 60px auto;
}
/* mobile */
@media only screen and (max-width: 760px) {
  .two-column-image-with-text-list-panel .content {
    display: inline-block;
    gap: 0;
    padding: 50px 50px 0 50px;
  }
  .two-column-image-with-text-list-panel .content .column {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 500px) {
  .two-column-image-with-text-list-panel .content {
    padding: 24px 24px 0 24px;
  }
  .two-column-image-with-text-list-panel .content .column {
    margin-bottom: 24px;
  }
}

/* footer */
footer {
  background-image: linear-gradient(-57deg, rgba(12, 111, 138, 1) 0%, rgba(8, 85, 112, 1) 100%);
}
footer .content {
  color: var(--white);
  display: flex;
  max-width: 1280px;
  padding: 70px 20px 50px 20px;
}

footer .content a {
  color: var(--white);
}

footer .content .lhs {
  display: inline-block;
  margin-right: 5%;
  width: 50%;
}
footer .content .lhs img {
  margin-bottom: 25px;
}
footer .content ul {
  display: inline-block;
  list-style-type: none;
  margin-bottom: 20px;
  width: 100%;
}
footer .content ul li {
  display: inline-block;
  float: left;
  margin-right: 30px;
}
footer .content ul li:last-of-type {
  margin-right: 0;
}
footer .content .rhs {
  display: inline-block;
  width: 40%;
}
footer .content p {
  display: inline-block;
  float: left;
  margin: 0 30px 50px 0;
}
footer .content ul {
  clear: both;
  margin-bottom: 20px;
  padding-left: 0;
  width: 100%;
}
@media only screen and (max-width: 1210px) {
  footer .content ul li {
    margin: 0 0 10px 0;
    width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  footer .content {
    display: inline-block;
    padding: 25px 50px;
  }
  footer .content ul {
    margin-bottom: 0;
  }
  footer .content .lhs {
    display: inline-block;
    margin: 0 0 40px 0;
    width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  footer .content {
    padding: 24px;
  }
}

/* fsb version */
footer.fsb {
  background-color: #333333;
  background-image: none;
  text-align: center;
}
footer.fsb .content {
  display: inline-block;
}
footer.fsb .footer-logo {
  height: auto;
  max-width: 150px;
  margin-bottom: 0.5em;
}
footer.fsb .content p {
  font-size: 13px;
  margin-bottom: 1em;
  width: 100%;
}
footer.fsb .content ul li {
  float: none;
  font-size: 14px;
  margin: 0 3px;
  width: fit-content;
}
footer.fsb .content .white-button {
  display: inline-block;
  font-size: 14px;
  background-color: #fff;
  width: fit-content;
  margin: 20px auto;
  border: 1px solid #000;
  border-radius: 4px;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
}


#mega-menu-wrap-staff-skills-academy-menu, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu ul.mega-sub-menu, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-row, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-column, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu a.mega-menu-link, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu span.mega-menu-badge {
  transition: none;
  border-radius: 0;
  box-shadow: none;
  background: none;
  border: 0;
  bottom: auto;
  box-sizing: border-box;
  clip: auto;
  color: white;
  display: block;
  float: none;
  font-family: inherit;
  font-size: 14px;
  height: auto;
  left: auto;
  line-height: 1.7;
  list-style-type: none;
  margin: 0;
  min-height: auto;
  max-height: none;
  min-width: auto;
  max-width: none;
  opacity: 1;
  outline: none;
  overflow: visible;
  padding: 0;
  position: relative;
  pointer-events: auto;
  right: auto;
  text-align: left;
  text-decoration: none;
  text-indent: 0;
  text-transform: none;
  transform: none;
  top: auto;
  vertical-align: baseline;
  visibility: inherit;
  width: auto;
  word-wrap: break-word;
  white-space: normal;
}
#mega-menu-wrap-staff-skills-academy-menu:before, #mega-menu-wrap-staff-skills-academy-menu:after, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu:before, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu:after, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu ul.mega-sub-menu:before, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu ul.mega-sub-menu:after, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item:before, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item:after, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-row:before, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-row:after, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-column:before, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-column:after, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu a.mega-menu-link:before, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu a.mega-menu-link:after, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu span.mega-menu-badge:before, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu span.mega-menu-badge:after {
  display: none;
}
#mega-menu-wrap-staff-skills-academy-menu {
  border-radius: 0;
}
@media only screen and (min-width: 1252px) {
  #mega-menu-wrap-staff-skills-academy-menu {
    background: rgba(255, 255, 255, 0);
  }
}
#mega-menu-wrap-staff-skills-academy-menu.mega-keyboard-navigation .mega-menu-toggle:focus, #mega-menu-wrap-staff-skills-academy-menu.mega-keyboard-navigation .mega-toggle-block:focus, #mega-menu-wrap-staff-skills-academy-menu.mega-keyboard-navigation .mega-toggle-block a:focus, #mega-menu-wrap-staff-skills-academy-menu.mega-keyboard-navigation .mega-toggle-block .mega-search input[type=text]:focus, #mega-menu-wrap-staff-skills-academy-menu.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus, #mega-menu-wrap-staff-skills-academy-menu.mega-keyboard-navigation #mega-menu-staff-skills-academy-menu a:focus, #mega-menu-wrap-staff-skills-academy-menu.mega-keyboard-navigation #mega-menu-staff-skills-academy-menu span:focus, #mega-menu-wrap-staff-skills-academy-menu.mega-keyboard-navigation #mega-menu-staff-skills-academy-menu input:focus, #mega-menu-wrap-staff-skills-academy-menu.mega-keyboard-navigation #mega-menu-staff-skills-academy-menu li.mega-menu-item a.mega-menu-link:focus, #mega-menu-wrap-staff-skills-academy-menu.mega-keyboard-navigation #mega-menu-staff-skills-academy-menu form.mega-search-open:has(input[type=text]:focus) {
  outline-style: solid;
  outline-width: 3px;
  outline-color: #109cde;
  outline-offset: -3px;
}
#mega-menu-wrap-staff-skills-academy-menu.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus {
  outline-offset: 2px;
}
#mega-menu-wrap-staff-skills-academy-menu.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
  background: rgba(255, 255, 255, 0);
  color: #ffffff;
  font-weight: normal;
  text-decoration: none;
  border-color: #fff;
}
@media only screen and (max-width: 1251px) {
  #mega-menu-wrap-staff-skills-academy-menu.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
    color: #ffffff;
    background: #085570;
  }
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu {
  text-align: right;
  padding: 0px 0px 0px 0px;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu a.mega-menu-link {
  cursor: pointer;
  display: inline;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu a.mega-menu-link .mega-description-group {
  vertical-align: middle;
  display: inline-block;
  transition: none;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu a.mega-menu-link .mega-description-group .mega-menu-title, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu a.mega-menu-link .mega-description-group .mega-menu-description {
  transition: none;
  line-height: 1.5;
  display: block;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu a.mega-menu-link .mega-description-group .mega-menu-description {
  font-style: italic;
  font-size: 0.8em;
  text-transform: none;
  font-weight: normal;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
  display: flex;
  align-items: center;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link:before {
  flex: 0 0 auto;
  align-self: flex-start;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-tabbed.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
  display: block;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item.mega-icon-top > a.mega-menu-link {
  display: table-cell;
  vertical-align: middle;
  line-height: initial;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
  display: block;
  margin: 0 0 6px 0;
  text-align: center;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item.mega-icon-top > a.mega-menu-link > span.mega-title-below {
  display: inline-block;
  transition: none;
}
@media only screen and (max-width: 1251px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
    display: block;
    line-height: 40px;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
    display: inline-block;
    margin: 0 6px 0 0;
    text-align: left;
  }
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item.mega-icon-right > a.mega-menu-link:before {
  float: right;
  margin: 0 0 0 6px;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-animating > ul.mega-sub-menu {
  pointer-events: none;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu li.mega-disable-link > a.mega-menu-link {
  cursor: inherit;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link {
  cursor: pointer;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu p {
  margin-bottom: 10px;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu input, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu img {
  max-width: 100%;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item > ul.mega-sub-menu {
  display: block;
  visibility: hidden;
  opacity: 1;
  pointer-events: auto;
}
@media only screen and (max-width: 1251px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item > ul.mega-sub-menu {
    display: none;
    visibility: visible;
    opacity: 1;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu.mega-menu-item.mega-toggle-on ul.mega-sub-menu {
    display: block;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu.mega-menu-item.mega-toggle-on li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu {
    display: none;
  }
}
@media only screen and (min-width: 1252px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu[data-effect="fade"] li.mega-menu-item > ul.mega-sub-menu {
    opacity: 0;
    transition: opacity 200ms ease-in, visibility 200ms ease-in;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu[data-effect="fade"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu[data-effect="fade"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu[data-effect="fade"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu[data-effect="fade"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
    opacity: 1;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu[data-effect="fade_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
    opacity: 0;
    transform: translate(0, 10px);
    transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu[data-effect="fade_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu[data-effect="fade_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu[data-effect="fade_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
    opacity: 1;
    transform: translate(0, 0);
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu[data-effect="slide_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
    transform: translate(0, 10px);
    transition: transform 200ms ease-in, visibility 200ms ease-in;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu[data-effect="slide_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu[data-effect="slide_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu[data-effect="slide_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
    transform: translate(0, 0);
  }
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children > ul.mega-sub-menu {
  display: none;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on > ul.mega-sub-menu {
  display: block;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu.mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu.mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
  visibility: visible;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu {
  visibility: inherit;
  opacity: 1;
  display: block;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-1-columns > ul.mega-sub-menu > li.mega-menu-item {
  float: left;
  width: 100%;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-2-columns > ul.mega-sub-menu > li.mega-menu-item {
  float: left;
  width: 50%;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-3-columns > ul.mega-sub-menu > li.mega-menu-item {
  float: left;
  width: 33.3333333333%;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-4-columns > ul.mega-sub-menu > li.mega-menu-item {
  float: left;
  width: 25%;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-5-columns > ul.mega-sub-menu > li.mega-menu-item {
  float: left;
  width: 20%;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-6-columns > ul.mega-sub-menu > li.mega-menu-item {
  float: left;
  width: 16.6666666667%;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item a[class^="dashicons"]:before {
  font-family: dashicons;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item a.mega-menu-link:before {
  display: inline-block;
  font: inherit;
  font-family: dashicons;
  position: static;
  margin: 0 6px 0 0px;
  vertical-align: top;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: inherit;
  background: transparent;
  height: auto;
  width: auto;
  top: auto;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item.mega-hide-text a.mega-menu-link:before {
  margin: 0;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item.mega-hide-text li.mega-menu-item a.mega-menu-link:before {
  margin: 0 6px 0 0;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-align-bottom-left.mega-toggle-on > a.mega-menu-link {
  border-radius: 0;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-align-bottom-right > ul.mega-sub-menu {
  right: 0;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-align-bottom-right.mega-toggle-on > a.mega-menu-link {
  border-radius: 0;
}
@media only screen and (min-width: 1252px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu.mega-menu-item {
    position: static;
  }
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-item {
  margin: 0 0px 0 0;
  display: inline-block;
  height: auto;
  vertical-align: middle;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-item.mega-item-align-right {
  float: right;
}
@media only screen and (min-width: 1252px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-item.mega-item-align-right {
    margin: 0 0 0 0px;
  }
}
@media only screen and (min-width: 1252px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-item.mega-item-align-float-left {
    float: left;
  }
}
@media only screen and (min-width: 1252px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-item > a.mega-menu-link:focus {
    background: rgba(255, 255, 255, 0);
    color: #ffffff;
    font-weight: normal;
    text-decoration: none;
    border-color: #fff;
  }
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
  background: rgba(255, 255, 255, 0);
  color: #ffffff;
  font-weight: normal;
  text-decoration: none;
  border-color: #fff;
}
@media only screen and (max-width: 1251px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
    color: #ffffff;
    background: #085570;
  }
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
  background: rgba(255, 255, 255, 0);
  color: #ffffff;
  font-weight: normal;
  text-decoration: none;
  border-color: #fff;
}
@media only screen and (max-width: 1251px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
    color: #ffffff;
    background: #085570;
  }
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-item > a.mega-menu-link {
  line-height: 40px;
  height: 40px;
  padding: 0px 10px 0px 10px;
  vertical-align: baseline;
  width: auto;
  display: block;
  color: #ffffff;
  text-transform: none;
  text-decoration: none;
  text-align: left;
  background: rgba(0, 0, 0, 0);
  border: 0;
  border-radius: 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: normal;
  outline: none;
}
@media only screen and (min-width: 1252px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-item.mega-multi-line > a.mega-menu-link {
    line-height: inherit;
    display: table-cell;
    vertical-align: middle;
  }
}
@media only screen and (max-width: 1251px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-item.mega-multi-line > a.mega-menu-link br {
    display: none;
  }
}
@media only screen and (max-width: 1251px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-item {
    display: list-item;
    margin: 0;
    clear: both;
    border: 0;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-item.mega-item-align-right {
    float: none;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-item > a.mega-menu-link {
    border-radius: 0;
    border: 0;
    margin: 0;
    line-height: 40px;
    height: 40px;
    padding: 0 10px;
    background: transparent;
    text-align: left;
    color: #ffffff;
    font-size: 16px;
  }
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row {
  width: 100%;
  float: left;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column {
  float: left;
  min-height: 1px;
}
@media only screen and (min-width: 1252px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-1 {
    width: 100%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-2 {
    width: 50%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-2 {
    width: 100%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-3 {
    width: 33.3333333333%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-3 {
    width: 66.6666666667%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-3 {
    width: 100%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-4 {
    width: 25%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-4 {
    width: 50%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-4 {
    width: 75%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-4 {
    width: 100%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-5 {
    width: 20%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-5 {
    width: 40%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-5 {
    width: 60%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-5 {
    width: 80%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-5 {
    width: 100%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-6 {
    width: 16.6666666667%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-6 {
    width: 33.3333333333%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-6 {
    width: 50%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-6 {
    width: 66.6666666667%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-6 {
    width: 83.3333333333%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-6 {
    width: 100%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-7 {
    width: 14.2857142857%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-7 {
    width: 28.5714285714%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-7 {
    width: 42.8571428571%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-7 {
    width: 57.1428571429%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-7 {
    width: 71.4285714286%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-7 {
    width: 85.7142857143%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-7 {
    width: 100%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-8 {
    width: 12.5%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-8 {
    width: 25%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-8 {
    width: 37.5%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-8 {
    width: 50%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-8 {
    width: 62.5%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-8 {
    width: 75%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-8 {
    width: 87.5%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-8 {
    width: 100%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-9 {
    width: 11.1111111111%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-9 {
    width: 22.2222222222%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-9 {
    width: 33.3333333333%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-9 {
    width: 44.4444444444%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-9 {
    width: 55.5555555556%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-9 {
    width: 66.6666666667%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-9 {
    width: 77.7777777778%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-9 {
    width: 88.8888888889%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-9 {
    width: 100%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-10 {
    width: 10%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-10 {
    width: 20%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-10 {
    width: 30%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-10 {
    width: 40%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-10 {
    width: 50%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-10 {
    width: 60%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-10 {
    width: 70%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-10 {
    width: 80%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-10 {
    width: 90%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-10 {
    width: 100%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-11 {
    width: 9.0909090909%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-11 {
    width: 18.1818181818%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-11 {
    width: 27.2727272727%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-11 {
    width: 36.3636363636%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-11 {
    width: 45.4545454545%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-11 {
    width: 54.5454545455%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-11 {
    width: 63.6363636364%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-11 {
    width: 72.7272727273%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-11 {
    width: 81.8181818182%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-11 {
    width: 90.9090909091%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-11 {
    width: 100%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-12 {
    width: 8.3333333333%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-12 {
    width: 16.6666666667%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-12 {
    width: 25%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-12 {
    width: 33.3333333333%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-12 {
    width: 41.6666666667%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-12 {
    width: 50%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-12 {
    width: 58.3333333333%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-12 {
    width: 66.6666666667%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-12 {
    width: 75%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-12 {
    width: 83.3333333333%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-12 {
    width: 91.6666666667%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-12-of-12 {
    width: 100%;
  }
}
@media only screen and (max-width: 1251px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column {
    width: 100%;
    clear: both;
  }
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
  padding: 15px 15px 15px 15px;
  width: 100%;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu {
  z-index: 999;
  border-radius: 0;
  background: #085570;
  border: 0;
  padding: 58px 0px 58px 0px;
  position: absolute;
  width: 100%;
  max-width: none;
  left: 0;
}
@media only screen and (max-width: 1251px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu {
    float: left;
    position: static;
    width: 100%;
  }
}
@media only screen and (min-width: 1252px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-1 {
    width: 100%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-2 {
    width: 50%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-2 {
    width: 100%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-3 {
    width: 33.3333333333%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-3 {
    width: 66.6666666667%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-3 {
    width: 100%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-4 {
    width: 25%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-4 {
    width: 50%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-4 {
    width: 75%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-4 {
    width: 100%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-5 {
    width: 20%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-5 {
    width: 40%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-5 {
    width: 60%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-5 {
    width: 80%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-5 {
    width: 100%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-6 {
    width: 16.6666666667%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-6 {
    width: 33.3333333333%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-6 {
    width: 50%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-6 {
    width: 66.6666666667%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-6 {
    width: 83.3333333333%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-6 {
    width: 100%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-7 {
    width: 14.2857142857%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-7 {
    width: 28.5714285714%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-7 {
    width: 42.8571428571%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-7 {
    width: 57.1428571429%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-7 {
    width: 71.4285714286%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-7 {
    width: 85.7142857143%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-7 {
    width: 100%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-8 {
    width: 12.5%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-8 {
    width: 25%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-8 {
    width: 37.5%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-8 {
    width: 50%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-8 {
    width: 62.5%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-8 {
    width: 75%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-8 {
    width: 87.5%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-8 {
    width: 100%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-9 {
    width: 11.1111111111%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-9 {
    width: 22.2222222222%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-9 {
    width: 33.3333333333%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-9 {
    width: 44.4444444444%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-9 {
    width: 55.5555555556%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-9 {
    width: 66.6666666667%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-9 {
    width: 77.7777777778%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-9 {
    width: 88.8888888889%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-9 {
    width: 100%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-10 {
    width: 10%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-10 {
    width: 20%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-10 {
    width: 30%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-10 {
    width: 40%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-10 {
    width: 50%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-10 {
    width: 60%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-10 {
    width: 70%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-10 {
    width: 80%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-10 {
    width: 90%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-10 {
    width: 100%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-11 {
    width: 9.0909090909%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-11 {
    width: 18.1818181818%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-11 {
    width: 27.2727272727%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-11 {
    width: 36.3636363636%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-11 {
    width: 45.4545454545%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-11 {
    width: 54.5454545455%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-11 {
    width: 63.6363636364%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-11 {
    width: 72.7272727273%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-11 {
    width: 81.8181818182%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-11 {
    width: 90.9090909091%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-11 {
    width: 100%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-12 {
    width: 8.3333333333%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-12 {
    width: 16.6666666667%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-12 {
    width: 25%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-12 {
    width: 33.3333333333%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-12 {
    width: 41.6666666667%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-12 {
    width: 50%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-12 {
    width: 58.3333333333%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-12 {
    width: 66.6666666667%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-12 {
    width: 75%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-12 {
    width: 83.3333333333%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-12 {
    width: 91.6666666667%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-12-of-12 {
    width: 100%;
  }
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu .mega-description-group .mega-menu-description {
  margin: 5px 0;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu {
  clear: both;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
  margin-left: 10px;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu {
  margin-left: 10px;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
  color: white;
  font-family: inherit;
  font-size: 14px;
  display: block;
  float: left;
  clear: none;
  padding: 15px 15px 15px 15px;
  vertical-align: top;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
  clear: left;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title {
  color: #b7f4af;
  font-family: inherit;
  font-size: 19px;
  text-transform: none;
  text-decoration: none;
  font-weight: inherit;
  text-align: left;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 5px 0px;
  vertical-align: top;
  display: block;
  visibility: inherit;
  border: 0;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title:hover, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title:hover {
  border-color: rgba(0, 0, 0, 0);
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
  color: white;
  /* Mega Menu > Menu Themes > Mega Menus > Second Level Menu Items */
  font-family: inherit;
  font-size: 16px;
  text-transform: none;
  text-decoration: none;
  font-weight: inherit;
  text-align: left;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  vertical-align: top;
  display: block;
  border: 0;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
  border-color: rgba(0, 0, 0, 0);
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
  color: white;
  /* Mega Menu > Menu Themes > Mega Menus > Second Level Menu Items (Hover) */
  font-weight: inherit;
  text-decoration: none;
  background: rgba(0, 0, 0, 0);
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus > span.mega-title-below, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus > span.mega-title-below {
  text-decoration: none;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
  color: white;
  /* Mega Menu > Menu Themes > Mega Menus > Third Level Menu Items */
  font-family: inherit;
  font-size: 14px;
  text-transform: none;
  text-decoration: none;
  font-weight: normal;
  text-align: left;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  vertical-align: top;
  display: block;
  border: 0;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover {
  border-color: rgba(0, 0, 0, 0);
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
  display: flex;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus {
  color: white;
  /* Mega Menu > Menu Themes > Mega Menus > Third Level Menu Items (Hover) */
  font-weight: normal;
  text-decoration: none;
  background: rgba(0, 0, 0, 0);
}
@media only screen and (max-width: 1251px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu {
    border: 0;
    padding: 10px;
    border-radius: 0;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {
    width: 100%;
    clear: both;
  }
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
  color: white;
  font-family: inherit;
  font-size: 14px;
  text-transform: none;
  text-decoration: none;
  font-weight: normal;
  margin: 0;
  border: 0;
  padding: 0px 0px 0px 0px;
  vertical-align: top;
  display: block;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
  color: white;
  font-weight: normal;
  text-decoration: none;
  background: rgba(0, 0, 0, 0);
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-flyout ul.mega-sub-menu {
  z-index: 999;
  position: absolute;
  width: auto;
  max-width: none;
  padding: 0px 0px 0px 0px;
  border: 0;
  background: #f1f1f1;
  border-radius: 0;
}
@media only screen and (max-width: 1251px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-flyout ul.mega-sub-menu {
    float: left;
    position: static;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
  }
}
@media only screen and (min-width: 1252px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item > a.mega-menu-link {
    white-space: nowrap;
    min-width: 150px;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item.mega-has-description > a.mega-menu-link {
    white-space: normal;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item.mega-has-description > a.mega-menu-link > .mega-description-group > .mega-menu-title {
    white-space: nowrap;
  }
}
@media only screen and (max-width: 1251px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {
    clear: both;
  }
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
  display: block;
  background: #f1f1f1;
  color: #666;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  padding: 0px 10px 0px 10px;
  line-height: 35px;
  text-decoration: none;
  text-transform: none;
  vertical-align: baseline;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
@media only screen and (max-width: 1251px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
@media only screen and (max-width: 1251px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
  background: #dddddd;
  font-weight: normal;
  text-decoration: none;
  color: #666;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
}
@media only screen and (max-width: 1251px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
    position: static;
    left: 0;
    width: 100%;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
    padding-left: 20px;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu ul.mega-sub-menu a.mega-menu-link {
    padding-left: 30px;
  }
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
  display: inline-block;
  width: auto;
  background: transparent;
  position: relative;
  pointer-events: auto;
  left: auto;
  min-width: auto;
  font-size: inherit;
  padding: 0;
  margin: 0 0 0 6px;
  height: auto;
  line-height: inherit;
  color: inherit;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
  content: "";
  font-family: dashicons;
  font-weight: normal;
  display: inline-block;
  margin: 0;
  vertical-align: top;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: rotate(0);
  color: inherit;
  position: relative;
  background: transparent;
  height: auto;
  width: auto;
  right: auto;
  line-height: inherit;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item-has-children li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
  float: right;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item-has-children.mega-collapse-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
  content: "";
}
@media only screen and (max-width: 1251px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
    float: right;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
    content: "";
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item-has-children.mega-hide-sub-menu-on-mobile > a.mega-menu-link > span.mega-indicator {
    display: none;
  }
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu:not(.mega-menu-tabbed) li.mega-menu-item-has-children:not(.mega-collapse-children) > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link > span.mega-indicator {
  display: none;
}
@media only screen and (min-width: 1252px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-flyout li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
    content: "";
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link {
    text-align: right;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator {
    float: left;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
    content: "";
    margin: 0 6px 0 0;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link:before {
    float: right;
    margin: 0 0 0 6px;
  }
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
    left: -100%;
    top: 0;
  }
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li[class^="mega-lang-item"] > a.mega-menu-link > img {
  display: inline;
}
#mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu a.mega-menu-link > img.wpml-ls-flag, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu a.mega-menu-link > img.iclflag {
  display: inline;
  margin-right: 8px;
}
@media only screen and (max-width: 1251px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-hide-on-mobile, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-mobile, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-mobile {
    display: none;
  }
}
@media only screen and (min-width: 1252px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-hide-on-desktop, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-desktop, #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-desktop {
    display: none;
  }
}
@media only screen and (max-width: 1251px) {
  #mega-menu-wrap-staff-skills-academy-menu:after {
    content: "";
    display: table;
    clear: both;
  }
}
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle {
  display: none;
  z-index: 1;
  cursor: pointer;
  background: rgba(255, 255, 255, 0);
  border-radius: 0;
  line-height: 40px;
  height: 40px;
  text-align: left;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  white-space: nowrap;
}
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle img {
  max-width: 100%;
  padding: 0;
}
@media only screen and (max-width: 1251px) {
  #mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle .mega-toggle-blocks-left, #mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle .mega-toggle-blocks-center, #mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle .mega-toggle-blocks-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-preferred-size: 33.33%;
  -webkit-flex-basis: 33.33%;
  flex-basis: 33.33%;
}
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle .mega-toggle-blocks-left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block {
  margin-left: 6px;
}
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block:only-child {
  margin-right: 6px;
}
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle .mega-toggle-blocks-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle .mega-toggle-blocks-center .mega-toggle-block {
  margin-left: 3px;
  margin-right: 3px;
}
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle .mega-toggle-blocks-right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {
  margin-right: 6px;
}
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block:only-child {
  margin-left: 6px;
}
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle .mega-toggle-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 100%;
  outline: 0;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
@media only screen and (max-width: 1251px) {
  #mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle + #mega-menu-staff-skills-academy-menu {
    background: #085570;
    padding: 0px 0px 0px 0px;
    display: none;
    position: absolute;
    width: 100%;
    z-index: 9999999;
  }
  #mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle.mega-menu-open + #mega-menu-staff-skills-academy-menu {
    display: block;
  }
}
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle .mega-toggle-block-0 {
  cursor: pointer;
  /*! 
  * Hamburgers 
  * @description Tasty CSS-animated hamburgers 
  * @author Jonathan Suh @jonsuh 
  * @site https://jonsuh.com/hamburgers 
  * @link https://github.com/jonsuh/hamburgers 
  */
}
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  transform: scale(0.8);
  align-self: center;
  outline: 0;
  background: none;
}
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
  outline: 0;
}
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner, #mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
  width: 40px;
  height: 4px;
  background-color: white;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
  content: "";
  display: block;
}
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before {
  top: -10px;
}
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
  bottom: -10px;
}
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner {
  top: 2px;
}
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
  top: 20px;
}
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}
#mega-menu-wrap-staff-skills-academy-menu .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}
/** Push menu onto new line **/
#mega-menu-wrap-staff-skills-academy-menu {
  clear: both;
}
@media only screen and (min-width: 1252px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu {
    max-height: 500px;
    overflow: auto;
  }
}
@media only screen and (max-width: 1251px) {
  #mega-menu-wrap-staff-skills-academy-menu #mega-menu-staff-skills-academy-menu li.mega-menu-megamenu > ul.mega-sub-menu {
    max-height: 400px;
    overflow: auto;
  }
}
.wp-block {}


@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialicons/v142/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

.legal-consent-container *:not(a){
  color: #000000 ;
}

form .hs-error-msg {
  margin-top: 0;
  font-size: 10px;
  white-space: nowrap;
}


.legal-consent-container a{
  color: #085570 ;
}

.legal-consent-container *{
  font-size: 12px !important;
}