@charset "UTF-8";
:root {
  --layout__padding--lr: 20px;
  --layout__padding--tb: 20px;
}

@media (min-width: 750px) {
  :root {
    --layout__padding--lr: 40px;
    --layout__padding--tb: 20px;
  }
}
body {
  background: rgb(255, 255, 255);
  margin: 0;
  font-family: "gotham", sans-serif;
  font-weight: 400;
}

body, .g-font__body {
  color: rgb(0, 0, 0);
  font-size: 16px;
  line-height: 1.35;
}
@media (min-width: 750px) {
  body, .g-font__body {
    font-size: 16px;
  }
}

strong, b {
  font-family: "gotham", sans-serif;
  font-weight: 700;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  line-height: 1.1;
  padding: 0;
  margin: 0 0 0.25em 0;
  color: rgb(0, 0, 0);
}

h1, .h1 {
  font-size: 32px;
  line-height: 1;
  font-family: "termina", sans-serif;
  font-weight: 500;
}
@media (min-width: 750px) {
  h1, .h1 {
    font-size: 39px;
  }
}

h2, .h2 {
  font-size: 26px;
  text-transform: uppercase;
  font-family: "termina", sans-serif;
  font-weight: 500;
}
@media (min-width: 750px) {
  h2, .h2 {
    font-size: 26px;
  }
}

h3, .h3 {
  color: rgb(225, 0, 29);
  font-size: 22px;
  font-family: "gotham", sans-serif;
  font-weight: 700;
}
@media (min-width: 750px) {
  h3, .h3 {
    font-size: 22px;
  }
}

h4, .h4 {
  color: rgb(225, 0, 29);
  font-size: 20px;
  font-family: "gotham", sans-serif;
  font-weight: 700;
}
@media (min-width: 750px) {
  h4, .h4 {
    font-size: 20px;
  }
}

h5, .h5 {
  color: rgb(225, 0, 29);
  font-size: 18px;
  font-family: "gotham", sans-serif;
  font-weight: 700;
}
@media (min-width: 750px) {
  h5, .h5 {
    font-size: 18px;
  }
}

h6, .h6 {
  color: rgb(225, 0, 29);
  font-size: 16px;
  font-family: "gotham", sans-serif;
  font-weight: 700;
}
@media (min-width: 750px) {
  h6, .h6 {
    font-size: 16px;
  }
}

.g-font--giant {
  font-size: 65px;
  font-family: "gotham", sans-serif;
  font-weight: 700;
}
@media (min-width: 750px) {
  .g-font--giant {
    font-size: 85px;
  }
}

.g-font--huge {
  font-size: 32px;
  line-height: 1;
  font-family: "gotham", sans-serif;
  font-weight: 700;
}
@media (min-width: 750px) {
  .g-font--huge {
    font-size: 48px;
  }
}

.g-font--big {
  font-size: 22px;
  font-family: "gotham", sans-serif;
  font-weight: 700;
}
@media (min-width: 750px) {
  .g-font--big {
    font-size: 22px;
  }
}

.g-font--small {
  font-size: 12px;
}

input, textarea {
  font-family: "gotham", sans-serif;
  font-weight: 400;
}

button {
  font-family: "gotham", sans-serif;
  font-weight: 400;
}

p {
  margin: 10px 0;
  min-height: 20px;
}

a {
  color: rgb(0, 0, 0);
  text-decoration: underline;
  padding: 3px 0;
}
a:hover, a:active, a:focus {
  text-decoration: none;
}

.g-animations__all-3s, .g-animations__children-all-3s * {
  transition: all ease-in-out 0.3s;
}

.g-animations__colour {
  transition: color ease-in-out 0.12s;
}

.g-animations__none {
  transition: none;
}

@keyframes animation--loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes animation--fade-in {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes animation--fade-out {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.g-fontIconBase, .elementor-widget-n-accordion .e-n-accordion-item-title::after, .c-search__loadMore.loading::before, .c-search__loadMore::after, .c-blogList__loadMore.loading::before, .c-blogList__loadMore::after, .c-linkList__item--pdf .c-linkList__itemBtn::before, .c-anchorMenu__title::before, .c-accordion__toggle::after, .elementor-form .elementor-field-type-select .select-caret-down-wrapper::before, .g-header__primaryMenu .g-menu__level1 > .g-menu__item > .g-menu__link::before, .g-forms__select::before, .g-btn__arrow::after, .elementor-button--arrow .elementor-button.elementor-button-link::after, .g-btn__download::before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.g-icon--spinner {
  display: inline-block;
  font-size: 38px;
  line-height: 1;
  animation: animation--loading 1.2s linear infinite;
}

/**
*    
*   Columns
*   Note: must update CSSTColumns Enum /_components/Enums.vb    
*    
**/
.g-columns {
  padding-left: 15px;
  padding-right: 15px;
}

.g-columns__group, .g-forms {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.g-columns__group::after, .g-forms::after {
  clear: both;
  content: "";
  display: table;
}
@media (min-width: 750px) {
  .g-columns__group, .g-forms {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.g-columns__item, .g-columns__item--twelve, .g-columns__item--eleven, .g-columns__item--ten, .g-columns__item--nine, .g-columns__item--eight, .g-columns__item--seven, .g-columns__item--six, .g-columns__item--five, .g-columns__item--four, .g-columns__item--three, .g-columns__item--two, .g-columns__item--one {
  width: 100%;
  box-sizing: border-box;
  padding: 15px 0 15px 0;
}
@media (min-width: 750px) {
  .g-columns__item, .g-columns__item--twelve, .g-columns__item--eleven, .g-columns__item--ten, .g-columns__item--nine, .g-columns__item--eight, .g-columns__item--seven, .g-columns__item--six, .g-columns__item--five, .g-columns__item--four, .g-columns__item--three, .g-columns__item--two, .g-columns__item--one {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 750px) {
  .g-columns__item--one {
    width: 8.3333333333%;
  }
}

@media (min-width: 750px) {
  .g-columns__item--two {
    width: 16.6666666667%;
  }
}

@media (min-width: 750px) {
  .g-columns__item--three {
    width: 25%;
  }
}

@media (min-width: 750px) {
  .g-columns__item--four {
    width: 33.3333333333%;
  }
}

@media (min-width: 750px) {
  .g-columns__item--five {
    width: 41.6666666667%;
  }
}

@media (min-width: 750px) {
  .g-columns__item--six {
    width: 50%;
  }
}

@media (min-width: 750px) {
  .g-columns__item--seven {
    width: 58.3333333333%;
  }
}

@media (min-width: 750px) {
  .g-columns__item--eight {
    width: 66.6666666667%;
  }
}

@media (min-width: 750px) {
  .g-columns__item--nine {
    width: 75%;
  }
}

@media (min-width: 750px) {
  .g-columns__item--ten {
    width: 83.3333333333%;
  }
}

@media (min-width: 750px) {
  .g-columns__item--eleven {
    width: 91.6666666667%;
  }
}

@media (min-width: 750px) {
  .g-columns__item--twelve {
    width: 100%;
  }
}

.g-btn, .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button, .g-elementor__btn .elementor-button, .elementor-button.elementor-button-link, .g-btn--secondary, .elementor-form button.elementor-button, .g-elementor__btn--secondary .elementor-button, .g-btn__download, .g-btn__arrow, .elementor-button--arrow .elementor-button.elementor-button-link {
  position: relative;
  cursor: pointer;
  border: 2px solid rgb(80, 80, 80);
  display: inline-block;
  padding: 15px 25px;
  font-size: 16px;
  transition: all 0.15s ease;
  line-height: 1.1;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  white-space: normal;
  color: rgb(80, 80, 80);
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: "gotham", sans-serif;
  font-weight: 500;
}
.g-btn:visited, .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button:visited, .g-elementor__btn .elementor-button:visited, .elementor-button.elementor-button-link:visited, .g-btn--secondary:visited, .elementor-form button.elementor-button:visited, .g-elementor__btn--secondary .elementor-button:visited, .g-btn__download:visited, .g-btn__arrow:visited {
  color: rgb(80, 80, 80);
}
.g-btn:hover, .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button:hover, .g-elementor__btn .elementor-button:hover, .elementor-button.elementor-button-link:hover, .g-btn:active, .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button:active, .g-elementor__btn .elementor-button:active, .elementor-button.elementor-button-link:active, .g-btn:focus, .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button:focus, .g-elementor__btn .elementor-button:focus, .elementor-button.elementor-button-link:focus, .g-btn--secondary:hover, .elementor-form button.elementor-button:hover, .g-elementor__btn--secondary .elementor-button:hover, .g-btn--secondary:active, .elementor-form button.elementor-button:active, .g-elementor__btn--secondary .elementor-button:active, .g-btn--secondary:focus, .elementor-form button.elementor-button:focus, .g-elementor__btn--secondary .elementor-button:focus, .g-btn__download:hover, .g-btn__download:active, .g-btn__download:focus, .g-btn__arrow:hover, .g-btn__arrow:active, .g-btn__arrow:focus {
  color: rgb(80, 80, 80);
  text-decoration: none;
}
.g-btn:disabled, .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button:disabled, .g-elementor__btn .elementor-button:disabled, .elementor-button.elementor-button-link:disabled, .g-btn[disabled], .elementor-cta--skin-classic .elementor-cta [disabled].elementor-cta__button.elementor-button, .g-elementor__btn [disabled].elementor-button, [disabled].elementor-button.elementor-button-link, .g-btn--secondary:disabled, .elementor-form button.elementor-button:disabled, .g-elementor__btn--secondary .elementor-button:disabled, .g-btn--secondary[disabled], .elementor-form button[disabled].elementor-button, .g-elementor__btn--secondary [disabled].elementor-button, .g-btn__download:disabled, .g-btn__download[disabled], .g-btn__arrow:disabled, .g-btn__arrow[disabled] {
  cursor: default;
}

.g-btn, .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button, .g-elementor__btn .elementor-button, .elementor-button.elementor-button-link, .g-btn__download {
  background: none;
  border-color: none;
  font-size: 16px;
}
.g-btn:hover, .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button:hover, .g-elementor__btn .elementor-button:hover, .elementor-button.elementor-button-link:hover, .g-btn:active, .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button:active, .g-elementor__btn .elementor-button:active, .elementor-button.elementor-button-link:active, .g-btn:focus, .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button:focus, .g-elementor__btn .elementor-button:focus, .elementor-button.elementor-button-link:focus, .g-btn__download:hover, .g-btn__download:active, .g-btn__download:focus {
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
  border-color: rgb(0, 0, 0);
}
.g-btn:focus, .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button:focus, .g-elementor__btn .elementor-button:focus, .elementor-button.elementor-button-link:focus, .g-btn__download:focus {
  box-shadow: 0px 0px 0px 2px rgb(0, 0, 0);
}
.g-btn:disabled:hover, .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button:disabled:hover, .g-elementor__btn .elementor-button:disabled:hover, .elementor-button.elementor-button-link:disabled:hover, .g-btn:disabled:active, .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button:disabled:active, .g-elementor__btn .elementor-button:disabled:active, .elementor-button.elementor-button-link:disabled:active, .g-btn:disabled:focus, .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button:disabled:focus, .g-elementor__btn .elementor-button:disabled:focus, .elementor-button.elementor-button-link:disabled:focus, .g-btn[disabled]:hover, .elementor-cta--skin-classic .elementor-cta [disabled].elementor-cta__button.elementor-button:hover, .g-elementor__btn [disabled].elementor-button:hover, [disabled].elementor-button.elementor-button-link:hover, .g-btn[disabled]:active, .elementor-cta--skin-classic .elementor-cta [disabled].elementor-cta__button.elementor-button:active, .g-elementor__btn [disabled].elementor-button:active, [disabled].elementor-button.elementor-button-link:active, .g-btn[disabled]:focus, .elementor-cta--skin-classic .elementor-cta [disabled].elementor-cta__button.elementor-button:focus, .g-elementor__btn [disabled].elementor-button:focus, [disabled].elementor-button.elementor-button-link:focus, .g-btn--disabled:hover, .g-btn--disabled:active, .g-btn--disabled:focus, .g-btn__download:disabled:hover, .g-btn__download:disabled:active, .g-btn__download:disabled:focus, .g-btn__download[disabled]:hover, .g-btn__download[disabled]:active, .g-btn__download[disabled]:focus, .g-btn__download--disabled:hover, .g-btn__download--disabled:active, .g-btn__download--disabled:focus {
  background: none;
}

.g-btn__download {
  padding-left: 40px;
}
.g-btn__download::before {
  content: "\e912";
  display: inline-flex;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  font-size: 12px;
}
.g-btn__download::after {
  display: none;
}

.g-btn--secondary, .elementor-form button.elementor-button, .g-elementor__btn--secondary .elementor-button {
  color: rgb(255, 255, 255);
  background-color: rgb(225, 0, 29);
  border-color: rgb(225, 0, 29);
  font-size: 16px;
}
.g-btn--secondary:visited, .elementor-form button.elementor-button:visited, .g-elementor__btn--secondary .elementor-button:visited {
  color: rgb(255, 255, 255);
}
.g-btn--secondary:hover, .elementor-form button.elementor-button:hover, .g-elementor__btn--secondary .elementor-button:hover, .g-btn--secondary:active, .elementor-form button.elementor-button:active, .g-elementor__btn--secondary .elementor-button:active, .g-btn--secondary:focus, .elementor-form button.elementor-button:focus, .g-elementor__btn--secondary .elementor-button:focus {
  color: rgb(255, 255, 255);
  background: rgb(0, 0, 0);
  border-color: rgb(0, 0, 0);
}
.g-btn--secondary:focus, .elementor-form button.elementor-button:focus, .g-elementor__btn--secondary .elementor-button:focus {
  box-shadow: 0px 0px 0px 2px rgb(0, 0, 0);
}
.g-btn--secondary:disabled:hover, .elementor-form button.elementor-button:disabled:hover, .g-elementor__btn--secondary .elementor-button:disabled:hover, .g-btn--secondary:disabled:active, .elementor-form button.elementor-button:disabled:active, .g-elementor__btn--secondary .elementor-button:disabled:active, .g-btn--secondary:disabled:focus, .elementor-form button.elementor-button:disabled:focus, .g-elementor__btn--secondary .elementor-button:disabled:focus, .g-btn--secondary[disabled]:hover, .elementor-form button[disabled].elementor-button:hover, .g-elementor__btn--secondary [disabled].elementor-button:hover, .g-btn--secondary[disabled]:active, .elementor-form button[disabled].elementor-button:active, .g-elementor__btn--secondary [disabled].elementor-button:active, .g-btn--secondary[disabled]:focus, .elementor-form button[disabled].elementor-button:focus, .g-elementor__btn--secondary [disabled].elementor-button:focus {
  background: rgb(225, 0, 29);
}

.g-btn__arrow, .elementor-button--arrow .elementor-button.elementor-button-link {
  width: 100%;
  padding: 20px 60px 20px 30px;
  background: none;
  border-color: rgb(0, 0, 0);
  border-radius: 55px;
  text-align: left;
  text-transform: none;
}
.g-btn__arrow::after, .elementor-button--arrow .elementor-button.elementor-button-link::after {
  content: "\e90e";
  position: absolute;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  right: 30px;
  transform: translate(0, -50%);
  font-size: 25px;
}
.g-btn__arrow:hover, .elementor-button--arrow .elementor-button.elementor-button-link:hover, .g-btn__arrow:active, .elementor-button--arrow .elementor-button.elementor-button-link:active, .g-btn__arrow:focus, .elementor-button--arrow .elementor-button.elementor-button-link:focus {
  color: rgb(255, 255, 255);
  background: rgb(0, 0, 0);
}
.g-btn__arrow:hover::after, .elementor-button--arrow .elementor-button.elementor-button-link:hover::after, .g-btn__arrow:active::after, .elementor-button--arrow .elementor-button.elementor-button-link:active::after, .g-btn__arrow:focus::after, .elementor-button--arrow .elementor-button.elementor-button-link:focus::after {
  color: rgb(255, 255, 255);
}

.g-forms__buttonRow {
  width: 100%;
  padding: 10px 0 10px 0;
  text-align: right;
}

/**
*    
*   Element labels
*    
**/
.g-forms__element, .elementor-form .elementor-field-group {
  position: relative;
  padding-bottom: 30px;
}
.g-forms__element > .g-forms__error, .elementor-form .elementor-field-group > .g-forms__error, .g-forms__element > .g-forms__required, .elementor-form .elementor-field-group > .g-forms__required {
  top: 0;
  right: 15px;
  position: absolute;
}

.g-forms__label, .elementor-form .elementor-field-label {
  display: inline-block;
  width: 100%;
  font-size: 16px;
  margin-bottom: 10px;
  color: rgb(0, 0, 0);
  font-family: "gotham", sans-serif;
  font-weight: 700;
}

.g-forms__required {
  color: rgb(169, 0, 0);
  display: inline-block;
  font-family: "gotham", sans-serif;
  font-weight: 700;
}

/**
 *    
 *   Form inputs
 *    
 **/
.g-forms__selectList, .g-forms__textbox, .c-search .g-search__textbox, .elementor-form .elementor-field-type-text .elementor-field, .elementor-form .elementor-field-type-email .elementor-field, .g-forms__textarea, .elementor-form .elementor-field-type-textarea .elementor-field {
  width: 100%;
  color: rgb(0, 0, 0);
  border: 1px solid rgb(80, 80, 80);
  border-radius: 2px;
}

/**
*    
*   Textbox, textarea
*    
**/
.g-forms__textarea, .elementor-form .elementor-field-type-textarea .elementor-field {
  height: 100px;
}

.g-forms__textbox, .c-search .g-search__textbox, .elementor-form .elementor-field-type-text .elementor-field, .elementor-form .elementor-field-type-email .elementor-field, .g-forms__textbox--search {
  border: 1px solid rgb(80, 80, 80);
  padding: 10px 20px;
  outline: none;
  font-size: 14px;
  background: rgb(255, 255, 255);
  min-height: 40px;
  background: rgb(255, 255, 255);
  line-height: 1.15;
}
.g-forms__textbox::-webkit-input-placeholder, .c-search .g-search__textbox::-webkit-input-placeholder, .elementor-form .elementor-field-type-text .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-email .elementor-field::-webkit-input-placeholder, .g-forms__textbox--search::-webkit-input-placeholder {
  color: rgb(0, 0, 0);
}
.g-forms__textbox:focus, .c-search .g-search__textbox:focus, .elementor-form .elementor-field-type-text .elementor-field:focus, .elementor-form .elementor-field-type-email .elementor-field:focus, .g-forms__textbox--search:focus {
  box-shadow: 0px 0px 0px 1px rgb(225, 0, 29);
}
.g-forms__textbox:focus::-webkit-input-placeholder, .c-search .g-search__textbox:focus::-webkit-input-placeholder, .elementor-form .elementor-field-type-text .elementor-field:focus::-webkit-input-placeholder, .elementor-form .elementor-field-type-email .elementor-field:focus::-webkit-input-placeholder, .g-forms__textbox--search:focus::-webkit-input-placeholder {
  color: rgb(0, 0, 0);
}

/**
*    
*   Select list
*   Needs dropdown.js included to make this all work.
*    
**/
.g-forms__select {
  position: relative;
  background: rgb(255, 255, 255);
}
.g-forms__select::before {
  content: "\e911";
  position: absolute;
  display: flex;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  width: 25px;
  height: 25px;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
  background: rgb(225, 0, 29);
  border-radius: 2px;
  z-index: 0;
}

.g-forms__selectList {
  min-height: 40px;
  position: relative;
  padding: 14px 45px 14px 20px;
  background: none;
  z-index: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/**
*
*   Radio button/list and Checkbox button/list.
*
**/
/* ******************************************************************************** */
.g-forms__radioList, .g-forms__checkboxList {
  margin: 0;
  padding: 0;
  list-style: none;
}
.g-forms__radioList li, .g-forms__checkboxList li {
  padding: 0 0 10px 0;
}

.g-forms__radio, .g-forms__checkbox, .g-forms__radioList li, .g-forms__checkboxList li {
  position: relative;
}
.g-forms__radio input, .g-forms__checkbox input, .g-forms__radioList li input, .g-forms__checkboxList li input {
  position: absolute;
  opacity: 0;
}
.g-forms__radio input:focus + label, .g-forms__checkbox input:focus + label, .g-forms__radioList li input:focus + label, .g-forms__checkboxList li input:focus + label {
  border-color: rgb(225, 0, 29);
}
.g-forms__radio input:checked + label:after, .g-forms__checkbox input:checked + label:after, .g-forms__radioList li input:checked + label:after, .g-forms__checkboxList li input:checked + label:after {
  opacity: 1;
}
.g-forms__radio label, .g-forms__checkbox label, .g-forms__radioList li label, .g-forms__checkboxList li label {
  display: inline-flex;
  padding: 5px 0 5px 35px;
  border-bottom: 1px solid transparent;
  align-items: center;
}
.g-forms__radio label:before, .g-forms__checkbox label:before, .g-forms__radioList li label:before, .g-forms__checkboxList li label:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid rgb(80, 80, 80);
  box-sizing: border-box;
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
}
.g-forms__radio label:after, .g-forms__checkbox label:after, .g-forms__radioList li label:after, .g-forms__checkboxList li label:after {
  top: 10px;
  left: 5px;
  width: 10px;
  height: 10px;
  content: "";
  opacity: 0;
  z-index: 200;
  line-height: 1;
  position: absolute;
  box-sizing: border-box;
  background: rgb(225, 0, 29);
  border-radius: 15px;
}

.g-forms__checkbox label:before, .g-forms__checkboxList li label:before {
  border-radius: 0;
}
.g-forms__checkbox label:after, .g-forms__checkboxList li label:after {
  top: -4px;
  left: 1px;
  width: unset;
  height: unset;
  content: "✓";
  background: none;
}

.g-layout__container {
  position: relative;
  width: 100%;
  max-width: 2560px;
  margin: 0 auto;
  text-align: left;
  background: rgb(255, 255, 255);
}
.g-layout__container *, .g-layout__container *:before, .g-layout__container *:after {
  box-sizing: border-box;
}
.g-layout__container img {
  max-width: 100%;
  border: none;
  height: auto;
}
.g-layout__container iframe {
  border: none;
}

.g-layout__content {
  overflow: hidden;
}
.g-layout__content:not(:has(.elementor)) {
  padding: 0 var(--layout__padding--lr);
}
.g-layout__content:not(:has(.elementor)) .g-layout__page {
  margin: 0 auto;
  max-width: 1148px;
}

.g-layout__maxWidth {
  margin: 0 auto;
  max-width: 1148px;
}

.g-layout__padding {
  padding: var(--layout__padding--tb) var(--layout__padding--lr);
}

.g-layout__skip {
  display: block;
  margin: 25px auto;
  padding: 30px 25px;
  border: solid 1px rgb(255, 255, 255);
  color: white !important;
  position: absolute;
  border-radius: 15px;
  left: 50%;
  z-index: 1000;
  transform: translateX(-50%);
  top: -150px;
  font-size: 19px;
  background: rgb(147, 149, 152);
  text-decoration: none;
  transition: top 0.25s ease-in-out;
}
.g-layout__skip:focus-visible, .g-layout__skip:focus {
  top: 0px;
}

.g-layout__content ul:not([class]), .mce-content-body ul:not([class]) {
  padding: 0;
  margin: 10px 0 10px 40px;
}
.g-layout__content ul:not([class]) ul, .g-layout__content ul:not([class]) ol, .mce-content-body ul:not([class]) ul, .mce-content-body ul:not([class]) ol {
  margin-top: 0;
  margin-bottom: 0;
}
.g-layout__content ol, .mce-content-body ol {
  padding: 0;
  margin: 10px 0 10px 40px;
}
.g-layout__content ol > li, .mce-content-body ol > li {
  margin-bottom: 10px;
}
.g-layout__content ol > li:last-of-type, .mce-content-body ol > li:last-of-type {
  margin-bottom: 0;
}
.g-layout__content ol ul, .g-layout__content ol ol, .mce-content-body ol ul, .mce-content-body ol ol {
  margin-top: 0;
  margin-bottom: 0;
}
.g-layout__content table, .mce-content-body table {
  background: rgb(255, 255, 255);
  border: none;
  border-collapse: collapse;
}
.g-layout__content table thead, .g-layout__content table tfoot, .mce-content-body table thead, .mce-content-body table tfoot {
  font-family: "gotham", sans-serif;
  font-weight: 700;
}
.g-layout__content table thead th, .g-layout__content table thead td, .g-layout__content table tfoot th, .g-layout__content table tfoot td, .mce-content-body table thead th, .mce-content-body table thead td, .mce-content-body table tfoot th, .mce-content-body table tfoot td {
  padding: 20px 15px;
  color: rgb(255, 255, 255);
  background: rgb(225, 0, 29);
  text-align: left;
}
.g-layout__content table thead tr:nth-child(2) th, .g-layout__content table thead tr:nth-child(2) td, .g-layout__content table tfoot tr:nth-child(2) th, .g-layout__content table tfoot tr:nth-child(2) td, .mce-content-body table thead tr:nth-child(2) th, .mce-content-body table thead tr:nth-child(2) td, .mce-content-body table tfoot tr:nth-child(2) th, .mce-content-body table tfoot tr:nth-child(2) td {
  color: rgb(0, 0, 0);
  background: rgb(238, 233, 215);
}
.g-layout__content table tbody tr, .mce-content-body table tbody tr {
  vertical-align: top;
  border-bottom: 1px solid rgb(0, 0, 0);
}
.g-layout__content table tbody td, .g-layout__content table tbody th, .mce-content-body table tbody td, .mce-content-body table tbody th {
  padding: 15px;
  text-align: left;
}
.g-layout__content table td > *:first-child, .g-layout__content table th > *:first-child, .mce-content-body table td > *:first-child, .mce-content-body table th > *:first-child {
  margin-top: 0px;
}
.g-layout__content table td > *:last-child, .g-layout__content table th > *:last-child, .mce-content-body table td > *:last-child, .mce-content-body table th > *:last-child {
  margin-bottom: 0px;
}

.g-layout--mobileMenuOpen .g-header__menuCloseBtn {
  display: flex;
}
.g-layout--mobileMenuOpen .g-header__menuBackBtn {
  display: block;
  text-align: left;
  padding-left: 30px;
  cursor: pointer;
}
.g-layout--mobileMenuOpen .g-header__menuBackBtn span {
  margin: 0 10px 0 0;
}
.g-layout--mobileMenuOpen .g-header__menuOpenBtn {
  display: none;
}
.g-layout--mobileMenuOpen .g-header__nav {
  display: flex;
}

.g-layout--searchOpen .g-header__search {
  display: flex;
}

.g-header {
  position: sticky;
  top: 0;
  color: rgb(255, 255, 255);
  background: rgb(255, 255, 255);
  z-index: 1;
  transition: all 0.5s ease;
}
.g-header .g-layout__padding {
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (min-width: 1024px) {
  .g-header .g-layout__padding {
    padding-top: 60px;
    padding-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .g-header {
    position: relative;
  }
}
@media (min-width: 1024px) and (min-height: 700px) {
  .g-header {
    position: sticky;
  }
}

.g-header__content {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (min-width: 1024px) {
  .g-header__content {
    position: static;
    flex-flow: row nowrap;
    gap: 0;
  }
}

.g-header__logo {
  display: flex;
  align-items: flex-end;
  flex: 0 1 265px;
}
@media (min-width: 1024px) {
  .g-header__logo {
    flex: 0 0 265px;
  }
}

.g-header__logoLink {
  line-height: 0;
}

.g-header__menuOpenBtn, .g-header__menuCloseBtn, .g-header__menuBackBtn {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-end;
  justify-content: center;
  flex: 0 0 auto;
  background: none;
  border: none;
  color: rgb(0, 0, 0);
  font-size: 18px;
  line-height: 1;
  padding: 20px 0;
  text-align: center;
}
.g-header__menuOpenBtn span, .g-header__menuCloseBtn span, .g-header__menuBackBtn span {
  margin-left: 10px;
}
@media (min-width: 1024px) {
  .g-header__menuOpenBtn, .g-header__menuCloseBtn, .g-header__menuBackBtn {
    display: none !important;
  }
}

.g-header__menuCloseBtn {
  display: none;
}

.g-header__nav {
  display: none;
  position: absolute;
  flex-flow: column nowrap;
  justify-content: space-between;
  width: calc(100% + var(--layout__padding--lr) + var(--layout__padding--lr));
  max-height: 100vh;
  top: 100%;
  left: calc(var(--layout__padding--lr) * -1);
  padding-bottom: 150px;
  background: rgb(0, 0, 0);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
  overflow: auto;
  z-index: 999;
}
@media (min-width: 1024px) {
  .g-header__nav {
    position: static;
    display: flex;
    align-items: flex-end;
    height: 100%;
    width: 100%;
    padding: 40px 0 20px 60px;
    gap: 30px;
    box-shadow: none;
    background: rgb(255, 255, 255);
  }
}

.g-header__navPrimary {
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 1024px) {
  .g-header__navPrimary {
    flex-flow: row nowrap;
    align-items: center;
  }
}

.g-header__navSecondary {
  width: 100%;
  padding: 35px var(--layout__padding--lr);
  background: rgb(0, 0, 0);
}
@media (min-width: 1024px) {
  .g-header__navSecondary {
    position: absolute;
    top: 0;
    left: 0;
    height: 55px;
    padding: 10px var(--layout__padding--lr);
  }
}

.g-header__secondaryMenu .g-menu__level1 {
  display: flex;
  flex-flow: column nowrap;
  gap: 40px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.g-header__secondaryMenu .g-menu__link {
  padding: 10px 0;
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 16px;
  font-family: "gotham", sans-serif;
  font-weight: 700;
}
.g-header__secondaryMenu .g-menu__link:hover, .g-header__secondaryMenu .g-menu__link:focus, .g-header__secondaryMenu .g-menu__link:active {
  color: rgb(225, 0, 29);
}
.g-header__secondaryMenu .g-btn, .g-header__secondaryMenu .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button, .elementor-cta--skin-classic .elementor-cta .g-header__secondaryMenu .elementor-cta__button.elementor-button, .g-header__secondaryMenu .g-elementor__btn .elementor-button, .g-elementor__btn .g-header__secondaryMenu .elementor-button, .g-header__secondaryMenu .elementor-button.elementor-button-link {
  padding: 5px 15px;
  margin: 40px 0 0 0;
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
  font-size: 13px;
}
.g-header__secondaryMenu .g-btn:hover, .g-header__secondaryMenu .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button:hover, .elementor-cta--skin-classic .elementor-cta .g-header__secondaryMenu .elementor-cta__button.elementor-button:hover, .g-header__secondaryMenu .g-elementor__btn .elementor-button:hover, .g-elementor__btn .g-header__secondaryMenu .elementor-button:hover, .g-header__secondaryMenu .elementor-button.elementor-button-link:hover, .g-header__secondaryMenu .g-btn:focus, .g-header__secondaryMenu .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button:focus, .elementor-cta--skin-classic .elementor-cta .g-header__secondaryMenu .elementor-cta__button.elementor-button:focus, .g-header__secondaryMenu .g-elementor__btn .elementor-button:focus, .g-elementor__btn .g-header__secondaryMenu .elementor-button:focus, .g-header__secondaryMenu .elementor-button.elementor-button-link:focus, .g-header__secondaryMenu .g-btn:active, .g-header__secondaryMenu .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button:active, .elementor-cta--skin-classic .elementor-cta .g-header__secondaryMenu .elementor-cta__button.elementor-button:active, .g-header__secondaryMenu .g-elementor__btn .elementor-button:active, .g-elementor__btn .g-header__secondaryMenu .elementor-button:active, .g-header__secondaryMenu .elementor-button.elementor-button-link:active {
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
}
@media (min-width: 1024px) {
  .g-header__secondaryMenu {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
  }
  .g-header__secondaryMenu .g-menu__level1 {
    flex-flow: row nowrap;
    gap: 0;
  }
  .g-header__secondaryMenu .g-menu__item {
    border-left: 3px solid rgb(255, 255, 255);
  }
  .g-header__secondaryMenu .g-menu__item:first-of-type {
    border-left: none;
  }
  .g-header__secondaryMenu .g-menu__link {
    padding: 0 10px;
    font-size: 13px;
  }
  .g-header__secondaryMenu .g-btn, .g-header__secondaryMenu .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button, .elementor-cta--skin-classic .elementor-cta .g-header__secondaryMenu .elementor-cta__button.elementor-button, .g-header__secondaryMenu .g-elementor__btn .elementor-button, .g-elementor__btn .g-header__secondaryMenu .elementor-button, .g-header__secondaryMenu .elementor-button.elementor-button-link {
    margin: 0 0 0 10px;
  }
}

.g-header__primaryMenu .g-menu__level1, .g-header__primaryMenu .g-menu__level2, .g-header__primaryMenu .g-menu__level3 {
  padding: 0;
  margin: 0;
  list-style: none;
}
.g-header__primaryMenu .g-menu__link {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-family: "termina", sans-serif;
  font-weight: 500;
}
.g-header__primaryMenu .g-menu__link:hover, .g-header__primaryMenu .g-menu__link:focus, .g-header__primaryMenu .g-menu__link:active {
  color: rgb(225, 0, 29);
}
@media (min-width: 1024px) {
  .g-header__primaryMenu .g-menu__level1 {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border: none;
    gap: 5px;
  }
}
.g-header__primaryMenu .g-menu__level1 > .g-menu__item {
  border-bottom: 1px solid rgb(80, 80, 80);
}
@media (min-width: 1024px) and (max-width: 2460px) {
  .g-header__primaryMenu .g-menu__level1 > .g-menu__item:nth-last-child(2) .g-menu__level2 {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1024px) {
  .g-header__primaryMenu .g-menu__level1 > .g-menu__item {
    border: none;
  }
  .g-header__primaryMenu .g-menu__level1 > .g-menu__item:last-of-type .g-menu__level2 {
    right: 0;
    left: auto;
  }
}
.g-header__primaryMenu .g-menu__level1 > .g-menu__item > .g-menu__link {
  padding: 20px var(--layout__padding--lr);
  font-size: 18px;
  cursor: pointer;
}
.g-header__primaryMenu .g-menu__level1 > .g-menu__item > .g-menu__link::before {
  content: "\e916";
  font-size: 13px;
  opacity: 0;
}
@media (min-width: 1024px) {
  .g-header__primaryMenu .g-menu__level1 > .g-menu__item > .g-menu__link {
    padding: 10px;
    font-size: 13px;
    color: rgb(0, 0, 0);
    font-family: "gotham", sans-serif;
    font-weight: 700;
  }
  .g-header__primaryMenu .g-menu__level1 > .g-menu__item > .g-menu__link::before {
    display: none;
  }
  .g-header__primaryMenu .g-menu__level1 > .g-menu__item > .g-menu__link:hover, .g-header__primaryMenu .g-menu__level1 > .g-menu__item > .g-menu__link:focus, .g-header__primaryMenu .g-menu__level1 > .g-menu__item > .g-menu__link:active {
    color: rgb(225, 0, 29);
  }
}
.g-header__primaryMenu .g-menu__level1 > .g-menu__item--hasChildren > .g-menu__link::before {
  opacity: 1;
}
.g-header__primaryMenu .g-menu__level1 > .g-menu__item.expanded .g-menu__level2 {
  display: block;
}
.g-header__primaryMenu .g-menu__level2 {
  display: none;
  width: 100%;
  padding: 0 var(--layout__padding--lr) 20px var(--layout__padding--lr);
  background: rgb(0, 0, 0);
  font-size: 16px;
}
@media (min-width: 1024px) {
  .g-header__primaryMenu .g-menu__level2 {
    position: absolute;
    top: 100%;
    transform: translate(0, -20px);
    width: 350px;
    padding: 25px 40px 5px 55px;
    box-shadow: 0 21px 20px 0 rgba(0, 0, 0, 0.3);
    z-index: 100;
  }
}
@media (min-width: 1024px) {
  .g-header__primaryMenu .g-menu__level2 > .g-layout__maxWidth {
    display: flex;
  }
}
.g-header__primaryMenu .g-menu__level2 .g-menu__col > .g-menu__item > .g-menu__link {
  padding: 0 0 15px 0;
  color: rgb(255, 255, 255);
}
.g-header__primaryMenu .g-menu__level2 .g-menu__col > .g-menu__item > .g-menu__link:hover, .g-header__primaryMenu .g-menu__level2 .g-menu__col > .g-menu__item > .g-menu__link:focus, .g-header__primaryMenu .g-menu__level2 .g-menu__col > .g-menu__item > .g-menu__link:active {
  color: rgb(225, 0, 29);
}
.g-header__primaryMenu .g-menu__level2 .g-menu__col > .g-menu__item > .g-menu__link--title {
  padding: 0 0 10px 0;
}
.g-header__primaryMenu .g-menu__level2 .g-menu__col > .g-menu__item > .g-menu__link--title:hover, .g-header__primaryMenu .g-menu__level2 .g-menu__col > .g-menu__item > .g-menu__link--title:focus, .g-header__primaryMenu .g-menu__level2 .g-menu__col > .g-menu__item > .g-menu__link--title:active {
  color: rgb(255, 255, 255);
}
.g-header__primaryMenu .g-menu__level2 .g-menu__col > .g-menu__item--hasChildren > .g-menu__link {
  padding-bottom: 5px;
  margin: 0 0 10px 0;
  border-bottom: 1px solid rgb(80, 80, 80);
}
.g-header__primaryMenu .g-menu__level3 {
  padding: 0 0 20px 30px;
}
.g-header__primaryMenu .g-menu__level3 > .g-menu__item > .g-menu__link {
  padding: 10px 0;
  font-family: "gotham", sans-serif;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .g-header__primaryMenu .g-menu__level3 > .g-menu__item > .g-menu__link {
    padding: 5px 0;
  }
}

.g-footer {
  position: relative;
  width: 100%;
  font-size: 16px;
  color: rgb(255, 255, 255);
  background: rgb(0, 0, 0);
}
.g-footer::before {
  content: "";
  display: block;
  height: 20px;
  width: 100%;
  background: linear-gradient(120deg, rgb(225, 0, 29) 0%, rgb(225, 0, 29) 15%, rgb(80, 80, 80) 15.1%, rgb(80, 80, 80) 100%);
}
@media (min-width: 1024px) {
  .g-footer::before {
    background: linear-gradient(120deg, rgb(225, 0, 29) 0%, rgb(225, 0, 29) 230px, rgb(80, 80, 80) 231px, rgb(80, 80, 80) 100%);
  }
}

.g-footer__top {
  position: relative;
  padding-top: 40px;
  padding-bottom: 60px;
  text-align: center;
}
.g-footer__top .g-layout__maxWidth {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 35px;
}
@media (min-width: 1024px) {
  .g-footer__top {
    padding-top: 85px;
    padding-bottom: 100px;
    text-align: left;
  }
  .g-footer__top .g-layout__maxWidth {
    grid-template-columns: 1fr 340px;
  }
}

.g-footer__logoLink {
  width: 320px;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .g-footer__logoLink {
    width: 265px;
  }
}

.g-footer__menu {
  display: flex;
  flex-flow: column nowrap;
  gap: 25px;
  align-items: center;
  justify-content: flex-end;
}
.g-footer__menu .g-btn, .g-footer__menu .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button, .elementor-cta--skin-classic .elementor-cta .g-footer__menu .elementor-cta__button.elementor-button, .g-footer__menu .g-elementor__btn .elementor-button, .g-elementor__btn .g-footer__menu .elementor-button, .g-footer__menu .elementor-button.elementor-button-link, .g-footer__menu .g-btn--secondary, .g-footer__menu .elementor-form button.elementor-button, .elementor-form .g-footer__menu button.elementor-button, .g-footer__menu .g-elementor__btn--secondary .elementor-button, .g-elementor__btn--secondary .g-footer__menu .elementor-button {
  min-width: 170px;
}
.g-footer__menu .g-btn--secondary:hover, .g-footer__menu .elementor-form button.elementor-button:hover, .elementor-form .g-footer__menu button.elementor-button:hover, .g-footer__menu .g-elementor__btn--secondary .elementor-button:hover, .g-elementor__btn--secondary .g-footer__menu .elementor-button:hover, .g-footer__menu .g-btn--secondary:focus, .g-footer__menu .elementor-form button.elementor-button:focus, .elementor-form .g-footer__menu button.elementor-button:focus, .g-footer__menu .g-elementor__btn--secondary .elementor-button:focus, .g-elementor__btn--secondary .g-footer__menu .elementor-button:focus, .g-footer__menu .g-btn--secondary:active, .g-footer__menu .elementor-form button.elementor-button:active, .elementor-form .g-footer__menu button.elementor-button:active, .g-footer__menu .g-elementor__btn--secondary .elementor-button:active, .g-elementor__btn--secondary .g-footer__menu .elementor-button:active {
  border-color: rgb(225, 0, 29);
}
.g-footer__menu .g-footer__btnLogin {
  color: rgb(0, 0, 0);
  background: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
}
.g-footer__menu .g-footer__btnLogin:hover, .g-footer__menu .g-footer__btnLogin:focus, .g-footer__menu .g-footer__btnLogin:active {
  color: rgb(255, 255, 255);
  background: rgb(0, 0, 0);
  border-color: rgb(255, 255, 255);
}
@media (min-width: 1024px) {
  .g-footer__menu {
    grid-row: span 2;
  }
}

@media (min-width: 1024px) {
  .g-footer__text {
    display: flex;
    flex-flow: column nowrap;
  }
}

.g-loader__background {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.g-loader {
  position: relative;
  top: 50%;
  left: 50%;
  width: 115px;
  height: 115px;
  transform: translate(-50%, -50%);
  background: rgb(255, 255, 255);
  border-radius: 10px;
}

.g-loader__spinner {
  width: 75px;
  height: 75px;
  padding: 20px;
  animation: animation--loading 1.2s linear infinite;
}

.g-comments__title {
  margin: 0 0 25px 0;
  font-size: 22px;
  color: rgb(0, 0, 0);
}

.g-comments__item {
  padding: 50px 0;
  border-top: 1px solid rgb(147, 149, 152);
  font-size: 16px;
}

.g-comments__itemName {
  padding: 0 0 10px 0;
  font-size: 22px;
  font-family: "gotham", sans-serif;
  font-weight: 400;
}

.g-comments__itemDate {
  padding: 0 0 25px 0;
}

.g-comments__form {
  padding: 50px 0;
  border-top: 1px solid rgb(147, 149, 152);
}
.g-comments__form .g-forms__textbox, .g-comments__form .c-search .g-search__textbox, .c-search .g-comments__form .g-search__textbox, .g-comments__form .elementor-form .elementor-field-type-text .elementor-field, .elementor-form .elementor-field-type-text .g-comments__form .elementor-field, .g-comments__form .elementor-form .elementor-field-type-email .elementor-field, .elementor-form .elementor-field-type-email .g-comments__form .elementor-field {
  border-color: rgb(147, 149, 152);
}

.g-notification {
  padding-top: 0;
  padding-bottom: 0;
  color: rgb(255, 255, 255);
  background: rgb(225, 0, 29);
}
.g-notification__item {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  padding: 15px 0;
  font-size: 14px;
}
@media (min-width: 750px) {
  .g-notification__item {
    font-size: 16px;
  }
}
.g-notification__itemIcon {
  flex: 0 0 auto;
  padding: 0 15px 0 0 0;
  font-size: 30px;
  color: rgb(255, 170, 51);
}
@media (min-width: 750px) {
  .g-notification__itemIcon {
    padding: 0 30px 0 0;
  }
}
.g-notification__itemContent {
  flex: 1 1 auto;
  padding: 0 15px 0 0;
}
@media (min-width: 750px) {
  .g-notification__itemContent {
    padding: 0 30px 0 0;
  }
}
.g-notification__itemTitle {
  font-family: "gotham", sans-serif;
  font-weight: 700;
}
.g-notification__itemClose {
  display: flex;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
  border: 1px solid rgb(255, 255, 255);
  border-radius: 2px;
  text-decoration: none;
}

.elementor > .e-con, .elementor-section-wrap > .e-con {
  max-width: 100%;
  --content-width: 1148px;
  --padding-top: var(--layout__padding--tb);
  --padding-bottom: var(--layout__padding--tb);
  --padding-left: var(--layout__padding--lr);
  --padding-right: var(--layout__padding--lr);
}
.elementor > .e-con:has(.c-headerImage), .elementor-section-wrap > .e-con:has(.c-headerImage) {
  --padding-top: 0;
  --padding-bottom: 0;
}
.elementor a:not([class]), .elementor-section-wrap a:not([class]) {
  text-decoration: underline;
}

.elementor-editor-active .elementor-top-section:hover {
  z-index: 9999;
}

.elementor-button--arrow .elementor-button.elementor-button-link .elementor-button-content-wrapper {
  justify-content: flex-start;
}

.elementor-form .elementor-field-label::after {
  padding: 0;
  color: rgb(0, 0, 0);
}
.elementor-form .elementor-field-type-select .elementor-field-textual {
  padding: 10px 20px;
  padding-right: 40px;
}
.elementor-form .elementor-field-type-select .select-caret-down-wrapper {
  display: flex;
  width: 25px;
  height: 25px;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
  background: rgb(225, 0, 29);
  border-radius: 2px;
}
.elementor-form .elementor-field-type-select .select-caret-down-wrapper .e-font-icon-svg {
  display: none;
}
.elementor-form .elementor-field-type-select .select-caret-down-wrapper::before {
  content: "\e911";
}
.elementor-form .elementor-field-type-submit {
  justify-content: flex-end;
}
.elementor-form button.elementor-button {
  flex: 0 0 auto !important;
}

.g-tiles {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-flow: row;
  gap: 30px;
  margin: 20px 0;
}
.g-tiles:has(.g-tiles__item + .g-tiles__item):hover .g-tiles__item, .g-tiles:has(.g-tiles__item + .g-tiles__item):focus .g-tiles__item {
  opacity: 0.5;
}
@media (min-width: 750px) {
  .g-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .g-tiles {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .g-tiles--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.g-tiles__item {
  display: flex;
  flex-flow: column nowrap;
  border: 1px solid rgb(209, 211, 212);
  border-radius: 2px;
  justify-content: space-between;
}
.g-tiles__item:hover, .g-tiles__item:focus {
  opacity: 1 !important;
}
.g-tiles__item:hover .g-tiles__itemImg, .g-tiles__item:focus .g-tiles__itemImg {
  transform: scale(1.1);
}
.g-tiles__itemImgWrap {
  width: 100%;
  overflow: hidden;
}
.g-tiles__itemImg {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  aspect-ratio: 1.13;
}
.g-tiles__itemImg--contain {
  object-fit: contain;
}
.g-tiles__itemImg--logo {
  object-fit: contain;
  padding: 30px;
}
.g-tiles__itemText {
  padding: 15px;
  text-align: center;
  font-size: 18px;
}
.g-tiles__itemText .g-btn, .g-tiles__itemText .elementor-button.elementor-button-link, .g-tiles__itemText .g-elementor__btn .elementor-button, .g-elementor__btn .g-tiles__itemText .elementor-button, .g-tiles__itemText .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button, .elementor-cta--skin-classic .elementor-cta .g-tiles__itemText .elementor-cta__button.elementor-button {
  margin: 15px 0 0 0;
}

.c-social {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  padding: 40px 0;
  justify-content: space-evenly;
}

.c-social__item {
  display: inline-block;
  margin-right: 40px;
}
.c-social__item:last-child {
  margin-right: 0;
}
.c-social__item [class*=g-fontIcon--] {
  font-size: 28px;
  color: rgb(147, 149, 152);
}

.c-social__list {
  display: flex;
  flex-flow: row nowrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.c-social__link {
  font-size: 24px;
  padding: 5px 0;
  text-decoration: none;
  color: rgb(0, 0, 0);
  transition: color ease-in-out 200ms;
}
.c-social__link:hover, .c-social__link:focus, .c-social__link:active {
  text-decoration: none;
  color: rgb(225, 0, 29);
}

.c-accordion {
  padding: 20px;
  background: none;
  border-radius: 20px;
  border: 2px solid rgb(0, 0, 0);
}
@media (min-width: 1024px) {
  .c-accordion {
    padding: 15px 35px;
  }
}
.c-accordion--open {
  z-index: 5;
}
.c-accordion--open .c-accordion__toggle::after {
  transform: translate(0, -50%) rotate(180deg);
}
.c-accordion--startOpen .c-accordion__contentWrap {
  display: block;
}
.c-accordion__toggle {
  width: 100%;
  cursor: pointer;
  border: none;
  display: block;
  outline: none;
  position: relative;
  font-size: 20px;
  text-align: left;
  padding: 0 40px 0 0;
  margin: 0;
  background: none;
  color: rgb(0, 0, 0);
  font-family: "gotham", sans-serif;
  font-weight: 400;
}
.c-accordion__toggle::after {
  content: "\e916";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(0, -50%);
  color: rgb(0, 0, 0);
  font-size: 16px;
  transition: all 0.15s ease;
  line-height: 1;
}
.c-accordion__toggle:hover, .c-accordion__toggle:focus {
  color: rgb(147, 149, 152);
}
.c-accordion__toggle:hover::after, .c-accordion__toggle:focus::after {
  color: rgb(55, 88, 18);
}
.c-accordion__toggle--close::after {
  content: "\e900";
}
.c-accordion .c-accordion__toggleImage {
  top: 50%;
  left: 0;
  position: absolute;
  transform: translateY(-50%);
  margin-right: 35px;
}
.c-accordion__contentWrap {
  display: none;
}
.c-accordion__content {
  padding: 20px 0 0 0;
}
@media (min-width: 1024px) {
  .c-accordion__content {
    padding: 30px 0 0 0;
  }
}

.c-anchorMenu {
  position: relative;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  background: rgb(225, 0, 29);
  top: 0;
  transition: transform 0.5s linear;
  z-index: 10;
}
.c-anchorMenu.scrolled {
  position: fixed;
  transform: translate(0, 0);
}
@media (min-width: 1024px) {
  .c-anchorMenu--full .c-anchorMenu__title {
    display: none;
  }
  .c-anchorMenu--full .c-anchorMenu__list {
    position: static;
    display: flex !important;
    flex-flow: row wrap;
    margin: 0 -35px;
  }
  .c-anchorMenu--full .c-anchorMenu__itemBtn {
    border-bottom: none;
    border-right: 1px solid rgb(255, 255, 255);
  }
  .c-anchorMenu--full .c-anchorMenu__itemBtnText {
    display: inline;
  }
}
.c-anchorMenu__title {
  font-family: "gotham", sans-serif;
  font-weight: 700;
  position: relative;
  padding: 30px 0;
  font-size: 19px;
  color: rgb(255, 255, 255);
  cursor: pointer;
}
.c-anchorMenu__title::before {
  content: "\e911";
  position: absolute;
  right: 0;
}
.c-anchorMenu__list {
  display: none;
  position: absolute;
  width: 100%;
  left: 0;
  background: rgb(225, 0, 29);
  z-index: 10;
}
.c-anchorMenu__item {
  flex: 0 0 auto;
}
.c-anchorMenu__item:last-child .c-anchorMenu__itemBtn {
  border-bottom: none;
  border-right: none;
}
.c-anchorMenu__itemBtn {
  font-family: "gotham", sans-serif;
  font-weight: 700;
  display: block;
  padding: 25px var(--layout__padding--lr);
  font-size: 19px;
  color: rgb(255, 255, 255);
  border-bottom: 1px solid rgb(255, 255, 255);
}
@media (min-width: 1024px) {
  .c-anchorMenu__itemBtnText {
    display: block;
  }
}

@media (min-width: 601px) {
  #wpadminbar ~ .g-layout__container .c-anchorMenu.scrolled {
    top: 32px;
  }
}
.c-headerImage {
  --headerThemeColour1: rgb(225, 0, 29);
  --headerThemeColour2: rgb(225, 0, 29);
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  min-height: 435px;
  padding: 0 0 20px 0;
  text-align: center;
  overflow: visible;
}
.c-headerImage::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 100%;
  width: 100vw;
  background: rgb(0, 0, 0);
  z-index: 0;
}
.c-headerImage::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 20px;
  width: 100vw;
  max-width: 2560px;
  background: linear-gradient(120deg, var(--headerThemeColour1) 0%, var(--headerThemeColour1) 15%, rgb(0, 0, 0) 15.1%, rgb(0, 0, 0) 100%);
  z-index: 2;
}
@media (min-width: 1024px) {
  .c-headerImage {
    min-height: 480px;
  }
  .c-headerImage::after {
    background: linear-gradient(120deg, var(--headerThemeColour1) 0%, var(--headerThemeColour1) 230px, rgb(0, 0, 0) 231px, rgb(0, 0, 0) 100%);
  }
}
.c-headerImage--default .c-headerImage__iconOverlay::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  background: var(--headerThemeColour1);
  mix-blend-mode: multiply;
}
.c-headerImage--homepage {
  --headerThemeColour1: rgb(225, 0, 29);
  --headerThemeColour2: #760a14;
}
.c-headerImage--homepage .c-headerImage__background::before {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 834px;
  right: 10%;
  bottom: 0;
  transform: translate(100%, 0);
  background: url(/wp-content/themes/site-theme/images/header-icon.svg) no-repeat;
  background-position: bottom left;
  background-size: contain;
  opacity: 0.5;
  z-index: 1;
}
@media (min-width: 750px) {
  .c-headerImage--homepage .c-headerImage__background::before {
    right: 285px;
    opacity: 1;
    mix-blend-mode: multiply;
    background-size: cover;
  }
}
.c-headerImage--homepage .c-headerImage__backgroundImage img {
  object-position: center;
}
@media (min-width: 1024px) {
  .c-headerImage--homepage {
    min-height: 708px;
  }
  .c-headerImage--homepage .c-headerImage__iconOverlay {
    left: 265px;
    width: 860px;
  }
}
.c-headerImage__background {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 100%;
  width: 100vw;
  max-width: 2560px;
  margin: 0 auto;
  overflow: hidden;
}
.c-headerImage__background:has(.c-headerImage__backgroundImage, .c-headerImage__backgroundVideo)::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 230px;
  width: 100vw;
  max-width: 2560px;
  margin: 0 auto;
  z-index: 1;
  background: transparent linear-gradient(180deg, rgba(0, 0, 0, 0.0274509804) 0%, #545454 100%) 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
}
.c-headerImage__backgroundVideo, .c-headerImage__backgroundImage {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
}
.c-headerImage__backgroundVideo video {
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.c-headerImage__backgroundImage img {
  max-width: 2560px !important;
  height: 100% !important;
  width: 100vw !important;
  object-fit: cover;
  object-position: center right;
}
.c-headerImage__iconOverlay {
  position: absolute;
  height: 100%;
  width: 560px;
  left: 33%;
  bottom: 18px;
  transform: translate(-100%, 0);
  overflow: visible;
  z-index: 2;
}
@media (min-width: 750px) {
  .c-headerImage__iconOverlay {
    left: 245px;
    width: 590px;
  }
}
.c-headerImage__iconSVG {
  height: 100%;
  width: 100%;
}
.c-headerImage__iconSVGStop1 {
  stop-color: var(--headerThemeColour1);
}
.c-headerImage__iconSVGStop2 {
  stop-color: var(--headerThemeColour2);
}
.c-headerImage__content {
  position: relative;
  padding: 30px 15px;
  color: rgb(255, 255, 255);
  text-shadow: 0px 0px 50px #000;
  z-index: 3;
}
.c-headerImage__content h1, .c-headerImage__content h2, .c-headerImage__content h3, .c-headerImage__content h4, .c-headerImage__content h5, .c-headerImage__content h6 {
  color: rgb(255, 255, 255);
}
@media (min-width: 1024px) {
  .c-headerImage__content {
    padding: 40px 0;
  }
}
.c-headerImage__btn {
  margin: 20px 0 0 0;
  display: inline-block !important;
}

.c-linkList {
  --linkListThemeColour1: rgb(225, 0, 29);
  --linkListThemeColour2: rgb(255, 255, 255);
  position: relative;
  padding: 50px 0 80px 0;
  margin-bottom: -20px;
  z-index: 1;
}
.c-linkList::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100vw;
  height: 100%;
  max-width: 2560px;
  background: var(--linkListThemeColour1);
  z-index: 0;
}
.c-linkList--column .c-linkList__item {
  flex: 0 0 100%;
}
.c-linkList__title {
  position: relative;
  margin: 0 0 30px 0;
  color: var(--linkListThemeColour2);
}
.c-linkList__list {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  justify-content: center;
  margin: 0 -20px;
}
.c-linkList__item {
  flex: 1 1 100%;
  padding: 0 20px 20px 20px;
  text-align: center;
}
@media (min-width: 750px) {
  .c-linkList__item {
    flex: 0 0 auto;
  }
}
.c-linkList__item--pdf .c-linkList__itemBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
.c-linkList__item--pdf .c-linkList__itemBtn::before {
  content: "\e917";
  font-size: 24px;
  margin-right: 10px;
}
.c-linkList__itemBtn, .c-linkList__itemBtn:visited {
  font-family: "gotham", sans-serif;
  font-weight: 400;
  width: 100%;
  color: var(--linkListThemeColour2);
  border-color: var(--linkListThemeColour2);
  background: none;
}
.c-linkList__itemBtn:hover, .c-linkList__itemBtn:active, .c-linkList__itemBtn:focus, .c-linkList__itemBtn:visited:hover, .c-linkList__itemBtn:visited:active, .c-linkList__itemBtn:visited:focus {
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
  border-color: rgb(255, 255, 255);
}

.elementor-widget-st-link-list:not(:has(.c-linkList__item)) {
  display: none;
}

.elementor-editor-active .elementor-widget-st-link-list {
  display: block;
}

.c-imageBoxList {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-auto-flow: row;
  gap: 40px 35px;
}
@media (min-width: 750px) {
  .c-imageBoxList--2, .c-imageBoxList--3, .c-imageBoxList--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .c-imageBoxList--1 .c-imageBoxList__item {
    flex-flow: row nowrap;
    gap: 30px;
    padding: 30px 50px;
  }
  .c-imageBoxList--1 .c-imageBoxList__itemImageWrap {
    flex: 0 0 200px;
    padding: 0;
    text-align: center;
  }
  .c-imageBoxList--1 .c-imageBoxList__itemContent {
    flex: 1 1 auto;
    padding: 0;
  }
  .c-imageBoxList--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-imageBoxList--2 .c-imageBoxList__itemTitle {
    font-size: 26px;
  }
  .c-imageBoxList--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-imageBoxList--3 .c-imageBoxList__itemTitle {
    font-size: 22px;
  }
  .c-imageBoxList--4 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
  }
}
.c-imageBoxList--imageCover .c-imageBoxList__itemImageWrap {
  padding: 0;
}
.c-imageBoxList--imageCover .c-imageBoxList__itemImage {
  aspect-ratio: 1.78;
  object-fit: cover;
  width: 100%;
}
.c-imageBoxList--center {
  text-align: center;
}
.c-imageBoxList--center .c-imageBoxList__item {
  align-items: center;
}
.c-imageBoxList--right {
  text-align: right;
}
.c-imageBoxList--right .c-imageBoxList__item {
  align-items: flex-end;
}
.c-imageBoxList--style2 .c-imageBoxList__item {
  justify-content: center;
  align-items: center;
  padding: 0;
  background: rgb(225, 0, 29);
  overflow: hidden;
}
.c-imageBoxList--style2 .c-imageBoxList__item:hover, .c-imageBoxList--style2 .c-imageBoxList__item:focus, .c-imageBoxList--style2 .c-imageBoxList__item:active {
  transform: none;
}
.c-imageBoxList--style2 .c-imageBoxList__item:hover .c-imageBoxList__itemImageWrap, .c-imageBoxList--style2 .c-imageBoxList__item:focus .c-imageBoxList__itemImageWrap, .c-imageBoxList--style2 .c-imageBoxList__item:active .c-imageBoxList__itemImageWrap {
  transform: translate(0, 102%);
}
.c-imageBoxList--style2 .c-imageBoxList__item:hover .c-imageBoxList__itemImage, .c-imageBoxList--style2 .c-imageBoxList__item:focus .c-imageBoxList__itemImage, .c-imageBoxList--style2 .c-imageBoxList__item:active .c-imageBoxList__itemImage {
  transform: translate(0, 0);
}
.c-imageBoxList--style2 .c-imageBoxList__itemImageWrap {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 25px 10%;
  background: rgb(255, 255, 255);
  border-radius: 20px;
  cursor: pointer;
  transition: 0.5s all ease-in;
  z-index: 2;
}
.c-imageBoxList--style2 .c-imageBoxList__itemImage {
  max-height: 100%;
  max-width: 200px;
  object-fit: contain;
  transform: translate(0, 0);
}
.c-imageBoxList--style2 .c-imageBoxList__itemContent {
  flex: 0 0 auto;
  padding: 35px;
  color: rgb(255, 255, 255);
}
.c-imageBoxList--style2 .c-imageBoxList__itemTitle {
  color: rgb(255, 255, 255);
}
.c-imageBoxList__item {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  padding: 0 0 25px 0;
  background: rgb(255, 255, 255);
  border: 2px solid rgb(225, 0, 29);
  border-radius: 20px;
  transition: 0.5s all ease-in;
}
.c-imageBoxList__item:hover {
  transform: scale(1.025);
}
@media (min-width: 750px) {
  .c-imageBoxList__item:hover {
    transform: scale(1.1);
  }
}
.c-imageBoxList__item.t-colour__theme--primary {
  border: none;
}
.c-imageBoxList__item.t-colour__theme--secondary_light, .c-contentBlocks--secondary_light .c-imageBoxList__item.c-contentBlocks__item {
  border: none;
}
.c-imageBoxList__item.t-colour__theme--secondary_light .c-imageBoxList__itemTitle, .c-contentBlocks--secondary_light .c-imageBoxList__item.c-contentBlocks__item .c-imageBoxList__itemTitle {
  color: rgb(225, 0, 29);
}
.c-imageBoxList__item.t-colour__theme--tertiary, .c-contentBlocks--tertiary .c-imageBoxList__item.c-contentBlocks__item {
  border: none;
}
.c-imageBoxList__itemImageWrap {
  position: relative;
  flex: 0 0 auto;
  padding: 25px 10% 0 10%;
}
.c-imageBoxList__itemImage {
  transition: 0.5s all ease-in;
  max-height: 250px;
  max-width: 300px;
  height: auto;
  width: auto;
}
@media (min-width: 1024px) {
  .c-imageBoxList__itemImage {
    max-height: none;
    max-width: 100%;
  }
}
.c-imageBoxList__itemImage--empty {
  flex: 1 0 auto;
}
.c-imageBoxList__itemContent {
  display: flex;
  flex-flow: column nowrap;
  flex: 1 0 auto;
  padding: 15px 20px 20px 20px;
}
.c-imageBoxList__itemTitle {
  color: rgb(0, 0, 0);
  font-size: 20px;
  margin: 0 0 15px 0;
}
.c-imageBoxList__itemDescription {
  flex: 1 1 auto;
}
.c-imageBoxList__itemBtn {
  flex: 0 0 auto;
  margin: 30px 20px 0 20px;
}
.c-imageBoxList__itemLink {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.e-n-accordion .c-imageBoxList__item:hover {
  transform: scale(1);
}

.c-blogList {
  padding: 0 0 80px 0;
}
.c-blogList--secondary .c-blogList__itemLinkWrap:hover, .c-blogList--secondary .c-blogList__itemLinkWrap:focus, .c-blogList--secondary .c-blogList__itemLinkWrap:active {
  border-color: rgb(219, 225, 35);
}
.c-blogList--tertiary .c-blogList__itemLinkWrap:hover, .c-blogList--tertiary .c-blogList__itemLinkWrap:focus, .c-blogList--tertiary .c-blogList__itemLinkWrap:active {
  border-color: rgb(172, 222, 230);
}
.c-blogList__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-flow: row;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .c-blogList__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-blogList__itemLinkWrap {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  height: 100%;
  padding: 25px;
  border: 2px solid rgb(0, 0, 0);
  border-radius: 20px;
  text-decoration: none;
}
.c-blogList__itemLinkWrap:hover, .c-blogList__itemLinkWrap:focus, .c-blogList__itemLinkWrap:active {
  text-decoration: none;
}
.c-blogList__itemCategoryIcon {
  display: none;
}
.c-blogList__itemText {
  display: flex;
  flex-flow: column nowrap;
  color: rgb(0, 0, 0);
  font-family: "gotham", sans-serif;
  font-weight: 400;
}
.c-blogList__itemTitle {
  color: rgb(0, 0, 0);
  padding: 0 0 30px 0;
  font-size: 18px;
  text-transform: none;
}
.c-blogList__itemDate {
  font-size: 14px;
  text-transform: uppercase;
}
.c-blogList__itemTeaser {
  flex: 1 0 auto;
  padding: 0 0 20px 0;
  font-size: 16px;
}
.c-blogList__loadMoreWrap {
  text-align: center;
}
.c-blogList__loadMore {
  position: relative;
  margin: 40px 0 0 0;
}
.c-blogList__loadMore::after {
  content: "\e911";
  padding: 0 0 0 20px;
}
.c-blogList__loadMore.loading::before {
  content: "\e907";
  position: absolute;
  top: 10px;
  right: 40px;
  font-size: 25px;
  animation: animation--loading 1.2s linear infinite;
}
.c-blogList__loadMore.loading::after {
  visibility: hidden;
}
.c-blogList__loader {
  margin: 40px 0 0 0;
  text-align: center;
}
.c-blogList__loader .g-icon--spinner {
  font-size: 50px;
}

.c-blogList--listing .c-blogList__item:first-child .c-blogList__itemLinkWrap {
  background: rgba(225, 0, 29, 0.15);
}
.c-blogList--listing .c-blogList__item:first-child .c-blogList__itemCategoryIcon {
  display: inline;
  padding: 0 0 30px 0;
  text-align: center;
}
.c-blogList--listing .c-blogList__item:first-child .c-blogList__itemTitle {
  font-size: 20px;
}
@media (min-width: 1024px) {
  .c-blogList--listing .c-blogList__item:first-child {
    grid-column: span 2;
  }
  .c-blogList--listing .c-blogList__item:first-child .c-blogList__itemLinkWrap {
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
  }
  .c-blogList--listing .c-blogList__item:first-child .c-blogList__itemCategoryIcon {
    flex: 0 0 auto;
    padding: 0 90px 0 50px;
  }
}

.c-blogList--recent {
  padding: 0 30px;
  width: 100%;
}
@media (min-width: 400px) {
  .c-blogList--recent {
    padding: 0 50px;
  }
}

.c-blogList--recent .c-blogList__slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.c-blogList--recent .c-blogList__items {
  --blogRecentItemWidth: 100%;
  --blogRecentItemsOffset: 0%;
  display: flex;
  flex-flow: row nowrap;
  gap: 0;
  padding: 40px 0 0 0;
  transform: translate(0, 0);
}
.c-blogList--recent .c-blogList__items.animate {
  transition: 0.25s transform;
}
@media (min-width: 800px) {
  .c-blogList--recent .c-blogList__items {
    --blogRecentItemWidth: 50%;
  }
}
@media (min-width: 1024px) {
  .c-blogList--recent .c-blogList__items {
    --blogRecentItemsOffset: 5%;
    transform: translate(var(--blogRecentItemsOffset), 0);
  }
}
@media (min-width: 1200px) {
  .c-blogList--recent .c-blogList__items {
    --blogRecentItemsOffset: 1%;
    --blogRecentItemWidth: 33%;
  }
}
.c-blogList--recent .c-blogList__item {
  flex: 0 0 var(--blogRecentItemWidth);
  padding: 0 5px;
}
@media (min-width: 800px) {
  .c-blogList--recent .c-blogList__item {
    padding: 0 25px;
  }
}
.c-blogList--recent .c-blogList__itemLinkWrap {
  position: relative;
  align-items: center;
  justify-content: flex-start;
  padding: 50px 15px 25px 15px;
  text-align: center;
}
.c-blogList--recent .c-blogList__itemLinkWrap--secondary:hover, .c-blogList--recent .c-blogList__itemLinkWrap--secondary:focus, .c-blogList--recent .c-blogList__itemLinkWrap--secondary:active {
  border-color: rgb(219, 225, 35);
}
.c-blogList--recent .c-blogList__itemLinkWrap--secondary .c-blogList__itemCategoryIcon {
  background-color: rgb(219, 225, 35);
  border-color: rgb(219, 225, 35);
}
.c-blogList--recent .c-blogList__itemLinkWrap--tertiary:hover, .c-blogList--recent .c-blogList__itemLinkWrap--tertiary:focus, .c-blogList--recent .c-blogList__itemLinkWrap--tertiary:active {
  border-color: rgb(172, 222, 230);
}
.c-blogList--recent .c-blogList__itemLinkWrap--tertiary .c-blogList__itemCategoryIcon {
  background-color: rgb(172, 222, 230);
  border-color: rgb(172, 222, 230);
}
.c-blogList--recent .c-blogList__itemCategoryIcon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  transform: translate(0, -50%);
  width: 70px;
  height: 70px;
  padding: 12px;
  color: rgb(0, 0, 0);
  background: rgb(255, 255, 255);
  border: 2px solid rgb(0, 0, 0);
  border-radius: 50%;
}
.c-blogList--recent .c-blogList__itemText {
  height: 100%;
}
.c-blogList--recent .c-blogList__itemCategoryName {
  padding: 18px 0 15px 0;
  text-transform: uppercase;
}
.c-blogList--recent .c-blogList__itemTitle {
  flex: 1 0 auto;
}
.c-blogList--recent .c-blogList__nav {
  width: 100%;
}
.c-blogList--recent .c-blogList__navPrev, .c-blogList--recent .c-blogList__navNext {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  color: rgb(0, 0, 0);
  font-size: 40px;
  text-decoration: none;
}
.c-blogList--recent .c-blogList__navPrev:hover, .c-blogList--recent .c-blogList__navPrev:focus, .c-blogList--recent .c-blogList__navPrev:active, .c-blogList--recent .c-blogList__navNext:hover, .c-blogList--recent .c-blogList__navNext:focus, .c-blogList--recent .c-blogList__navNext:active {
  color: rgb(0, 0, 0);
}
.c-blogList--recent .c-blogList__navPrev {
  left: 0;
}
.c-blogList--recent .c-blogList__navNext {
  right: 0;
}

.c-blogPost .e-con {
  padding: 0;
}
.c-blogPost .e-parent {
  --layout__padding--tb: 10px;
}
.c-blogPost > .g-layout__padding {
  padding-top: 0;
}
.c-blogPost__container {
  display: flex;
  flex-flow: row wrap;
  padding: 50px 0 0 0;
}
@media (min-width: 750px) {
  .c-blogPost__container {
    flex-flow: row nowrap;
  }
}
.c-blogPost__leftCol {
  flex: 1 1 auto;
  padding: 0 0 60px 0;
  order: 2;
}
@media (min-width: 750px) {
  .c-blogPost__leftCol {
    order: 0;
    padding: 0 80px 0 0;
  }
}
.c-blogPost__rightCol {
  display: flex;
  flex-flow: column nowrap;
  gap: 40px;
  flex: 0 0 340px;
  max-width: 100%;
  padding: 0 0 40px 0;
}
.c-blogPost__date {
  font-size: 14px;
}
.c-blogPost__content {
  padding: 15px 0 0 0;
}
.c-blogPost__share {
  font-size: 14px;
  font-family: "gotham", sans-serif;
  font-weight: 700;
}
@media (min-width: 750px) {
  .c-blogPost__share {
    text-align: right;
  }
}
.c-blogPost__shareLink {
  margin: 0 0 0 15px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 18px;
}
.c-blogPost__powerpress a {
  color: rgb(0, 0, 0);
}

.t-category--hazard-alerts .c-headerImage__wrap {
  background-image: url("/wp-content/themes/site-theme/images/header-hazardAlerts.jpg?v=2");
  background-size: auto 100%;
  background-position: top right;
}
.c-search .c-headerImage {
  background-color: rgb(225, 0, 29);
}
.c-search .g-search {
  position: relative;
  max-width: 600px;
  margin: 40px 0;
}
.c-search .g-search__textbox {
  border-radius: 33px;
}
.c-search .g-search__submit {
  position: absolute;
  right: 10px;
  top: 15px;
  font-size: 18px;
  background: none;
  border: none;
  cursor: pointer;
}
.c-search__item {
  padding: 20px 0;
}
.c-search__item:hover .c-search__itemTitle, .c-search__item:focus .c-search__itemTitle, .c-search__item:active .c-search__itemTitle {
  color: rgb(225, 0, 29);
}
.c-search__itemLink {
  padding-left: 20px;
}
.c-search__itemTitle {
  color: rgb(0, 0, 0);
}
.c-search__itemTeaser {
  padding: 0 0 30px 0;
  color: rgb(0, 0, 0);
}
.c-search__itemDetails {
  padding: 0 0 8px 0;
}
.c-search__itemTag {
  padding: 10px 15px;
  background: rgb(147, 149, 152);
  margin: 0 20px 0 0;
}
.c-search__loadMoreWrap {
  text-align: center;
}
.c-search__loadMore {
  position: relative;
  margin: 0 auto;
}
.c-search__loadMore::after {
  content: "\e911";
}
.c-search__loadMore.loading {
  padding-left: 55px;
}
.c-search__loadMore.loading::before {
  content: "\e907";
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 30px;
  animation: animation--loading 1.2s linear infinite;
}

.elementor-widget-n-accordion .e-n-accordion-item {
  background: none;
  border-bottom: 1px solid rgb(80, 80, 80);
  border-radius: 0px;
  --n-accordion-padding: 15px 35px 15px 70px;
  --n-accordion-border-width: 0px;
  --n-accordion-border-radius: 0px;
  --n-accordion-border-color: rgb(80, 80, 80);
  --n-accordion-item-title-space-between: 0px;
  --n-accordion-title-font-size: 18px;
  --n-accordion-title-normal-color: rgb(0, 0, 0);
  --n-accordion-title-hover-color: rgb(225, 0, 29);
  --n-accordion-title-active-color: rgb(225, 0, 29);
}
.elementor-widget-n-accordion .e-n-accordion-item:first-of-type {
  border-top: 1px solid rgb(80, 80, 80);
}
.elementor-widget-n-accordion .e-n-accordion-item-title {
  position: relative;
}
.elementor-widget-n-accordion .e-n-accordion-item-title::after {
  content: "\e916";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
  color: rgb(0, 0, 0);
  font-size: 16px;
  transition: all 0.15s ease;
  line-height: 1;
}
.elementor-widget-n-accordion .e-n-accordion-item-title:hover::after, .elementor-widget-n-accordion .e-n-accordion-item-title:focus::after {
  color: rgb(225, 0, 29);
}
.elementor-widget-n-accordion .e-n-accordion-item-title-text {
  padding: 0 40px 0 0;
  font-family: "gotham", sans-serif;
  font-weight: 700;
}
.elementor-widget-n-accordion .e-n-accordion-item-title-icon {
  display: none !important;
}
.elementor-widget-n-accordion .e-n-accordion-item > .e-con {
  --layout__padding--tb: 10px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1024px) {
  .elementor-widget-n-accordion .e-n-accordion-item > .e-con {
    padding-left: 35px;
    padding-right: 35px;
  }
}
.elementor-widget-n-accordion [open] .e-n-accordion-item-title::after {
  transform: translate(0, -50%) rotate(180deg);
}

.elementor-widget-n-carousel {
  --e-n-carousel-swiper-padding-bottom: 0;
  --e-n-carousel-arrow-size: 30px;
}
.elementor-widget-n-carousel > .elementor-widget-container > .swiper {
  --e-n-carousel-swiper-padding-bottom: 0;
}
.elementor-widget-n-carousel .swiper-slide {
  overflow: hidden;
}
.elementor-widget-n-carousel .swiper-pagination-bullets {
  --e-n-carousel-dots-vertical-offset: -40px;
}
.elementor-widget-n-carousel .elementor-swiper-button-prev {
  --e-n-carousel-arrow-prev-caption-spacing: 0px;
  --e-n-carousel-arrow-prev-translate-y: -50%;
  --e-n-carousel-arrow-normal-color: rgb(255, 255, 255);
}
.elementor-widget-n-carousel .elementor-swiper-button-next {
  --e-n-carousel-arrow-next-caption-spacing: 0px;
  --e-n-carousel-arrow-next-translate-y: -50%;
  --e-n-carousel-arrow-normal-color: rgb(255, 255, 255);
}
.elementor-widget-n-carousel .swiper-pagination-bullet {
  --e-n-carousel-dots-normal-color: rgb(255, 255, 255);
  --e-n-carousel-swiper-pagination-size: 15px;
  --swiper-pagination-bullet-inactive-opacity: 0.75;
}

.e-n-tabs {
  --n-tabs-heading-justify-content: flex-start;
  --n-tabs-title-color: rgb(147, 149, 152);
  --n-tabs-title-background-color: rgb(147, 149, 152);
  --n-tabs-title-background-color-hover: rgb(225, 0, 29);
  --n-tabs-title-background-color-active: rgb(225, 0, 29);
}

.c-downloadList__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-flow: row;
  gap: 35px;
}
.c-downloadList__item {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 35px;
  font-size: 20px;
  color: rgb(0, 0, 0);
  background-color: rgb(238, 233, 215);
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
}
.c-downloadList__item:hover, .c-downloadList__item:focus, .c-downloadList__item:active {
  color: rgb(0, 0, 0);
}
.c-downloadList__item:hover .c-downloadList__itemBtn, .c-downloadList__item:focus .c-downloadList__itemBtn, .c-downloadList__item:active .c-downloadList__itemBtn {
  background: rgb(55, 88, 18);
}
@media (min-width: 1024px) {
  .c-downloadList__item {
    flex-flow: row nowrap;
    align-items: center;
    text-align: left;
  }
}
.c-downloadList__itemText {
  padding: 0 0 20px 0;
}
@media (min-width: 1024px) {
  .c-downloadList__itemText {
    padding: 0 20px 0 0;
  }
}
.c-downloadList__itemDescription {
  font-size: 16px;
}
.c-downloadList__itemBtn {
  min-width: 200px;
}

@media (min-width: 1024px) {
  .c-downloadList--grid.c-downloadList--3 .c-downloadList__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-downloadList--grid.c-downloadList--3 .c-downloadList__item {
    flex-flow: column nowrap;
    align-items: center;
    text-align: center;
  }
  .c-downloadList--grid.c-downloadList--3 .c-downloadList__itemText {
    padding: 0 0 20px 0;
  }
}

@media (min-width: 1024px) {
  .c-downloadList--grid.c-downloadList--4 .c-downloadList__list {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-downloadList--grid.c-downloadList--4 .c-downloadList__item {
    flex-flow: column nowrap;
    align-items: center;
    text-align: center;
  }
  .c-downloadList--grid.c-downloadList--4 .c-downloadList__itemText {
    padding: 0 0 20px 0;
  }
}

@media (min-width: 500px) {
  .c-downloadList--list .c-downloadList__item {
    flex-flow: row nowrap;
    align-items: center;
    text-align: left;
  }
}
@media (min-width: 500px) {
  .c-downloadList--list .c-downloadList__itemText {
    padding: 0 20px 0 0;
  }
}

.c-downloadList--grid .c-downloadList__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-flow: row;
  gap: 35px;
}
@media (min-width: 750px) {
  .c-downloadList--grid .c-downloadList__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-contentBlocks {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-auto-flow: row;
  gap: 40px 35px;
  align-items: flex-start;
}
@media (min-width: 750px) {
  .c-contentBlocks--2, .c-contentBlocks--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .c-contentBlocks .c-contentBlocks__itemTitle, .c-contentBlocks .c-contentBlocks__itemContent {
    padding-left: 60px;
    padding-right: 60px;
  }
  .c-contentBlocks--1 .c-contentBlocks__itemBtn {
    width: auto;
  }
  .c-contentBlocks--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-contentBlocks--2 .c-contentBlocks__itemTitle, .c-contentBlocks--2 .c-contentBlocks__itemContent {
    padding-left: 35px;
    padding-right: 35px;
  }
  .c-contentBlocks--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-contentBlocks--3 .c-contentBlocks__itemTitle, .c-contentBlocks--3 .c-contentBlocks__itemContent {
    padding-left: 20px;
    padding-right: 20px;
  }
  .c-contentBlocks--4 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
  }
  .c-contentBlocks--4 .c-contentBlocks__itemTitle, .c-contentBlocks--4 .c-contentBlocks__itemContent {
    padding-left: 20px;
    padding-right: 20px;
  }
  .c-contentBlocks--4 .c-contentBlocks__itemTitle {
    display: flex;
    align-items: center;
    min-height: 100px;
  }
}
.c-contentBlocks--stretch {
  align-items: stretch;
}
.c-contentBlocks--center {
  text-align: center;
}
.c-contentBlocks--center .c-imageBoxList__item {
  align-items: center;
}
.c-contentBlocks--right {
  text-align: right;
}
.c-contentBlocks--right .c-imageBoxList__item {
  align-items: flex-end;
}
.c-contentBlocks__item {
  display: flex;
  flex-flow: column nowrap;
  border-radius: 20px;
  color: rgb(0, 0, 0);
  overflow: hidden;
}
.c-contentBlocks__itemTitle {
  padding: 30px 20px 0 20px;
  font-size: 20px;
  font-family: "gotham", sans-serif;
  font-weight: 700;
}
.c-contentBlocks__itemContent {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  flex: 1 0 auto;
  padding: 15px 20px 35px 20px;
}
.c-contentBlocks__itemContent *:first-child {
  margin-top: 0;
}
.c-contentBlocks__itemContent *:last-child {
  margin-bottom: 0;
}
.c-contentBlocks__itemBtn {
  min-width: auto;
  margin: 20px 0 0 0;
  width: 100%;
}
.c-contentBlocks--default .c-contentBlocks__item {
  border: 2px solid rgb(0, 0, 0);
}
.c-contentBlocks--green .c-contentBlocks__item {
  background: rgb(229, 234, 223);
}
.c-contentBlocks--green .c-contentBlocks__itemTitle {
  padding-top: 20px;
  padding-bottom: 20px;
  color: rgb(255, 255, 255);
  background: rgb(225, 0, 29);
  font-size: 24px;
  text-transform: uppercase;
}
.c-contentBlocks--green .c-contentBlocks__itemContent {
  padding-top: 30px;
  padding-bottom: 30px;
}
.c-contentBlocks--secondary_light .c-contentBlocks__itemTitle {
  font-size: 22px;
}
.c-contentBlocks--tertiary .c-contentBlocks__itemTitle {
  font-size: 22px;
}

.c-cta {
  --ctaThemeColour1: rgb(0, 0, 0);
  --ctaImageAlign: center right;
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  overflow: visible;
}
@media (min-width: 1024px) {
  .c-cta {
    aspect-ratio: 1148/446;
  }
}
.c-cta--background-top {
  --ctaImageAlign: top right;
}
.c-cta--background-bottom {
  --ctaImageAlign: bottom right;
}
@media (min-width: 1024px) {
  .c-cta--noImage {
    justify-content: center;
  }
  .c-cta--noImage .c-cta__content::before {
    display: none;
  }
}
@media (min-width: 1024px) {
  .c-cta--default {
    justify-content: center;
  }
  .c-cta--default .c-cta__content::before {
    display: none;
  }
}
.c-cta--primary {
  --ctaThemeColour1: rgb(225, 0, 29);
}
.c-cta--multi.c-cta--overlayLeft .c-cta__overlay {
  background: transparent linear-gradient(252deg, #DBE123 0%, #DBE123 7%, #FFE600 7.1%, #FFE600 8%, #FEBE11 8.1%, #FEBE11 9.5%, #5A2F92 9.6%, #5A2F92 19.5%, rgb(225, 0, 29) 19.6%, rgb(225, 0, 29) 21%, rgb(0, 0, 0) 21.1%, rgb(0, 0, 0) 31%, transparent 31.1%, transparent 100%) 0% 0% no-repeat padding-box;
}
@media (min-width: 1366px) {
  .c-cta--multi.c-cta--overlayLeft .c-cta__overlay {
    background: transparent linear-gradient(252deg, #DBE123 0px, #DBE123 95px, #FFE600 96px, #FFE600 105px, #FEBE11 106px, #FEBE11 130px, #5A2F92 131px, #5A2F92 280px, rgb(225, 0, 29) 281px, rgb(225, 0, 29) 305px, rgb(0, 0, 0) 306px, rgb(0, 0, 0) 455px, transparent 456px, transparent 100%) 0% 0% no-repeat padding-box;
  }
}
.c-cta--multi.c-cta--overlayRight .c-cta__overlay {
  background: transparent linear-gradient(108deg, #DBE123 0%, #DBE123 7%, #FFE600 7.1%, #FFE600 8%, #FEBE11 8.1%, #FEBE11 9.5%, #5A2F92 9.6%, #5A2F92 19.5%, rgb(225, 0, 29) 19.6%, rgb(225, 0, 29) 21%, rgb(0, 0, 0) 21.1%, rgb(0, 0, 0) 31%, transparent 31.1%, transparent 100%) 0% 0% no-repeat padding-box;
}
@media (min-width: 1366px) {
  .c-cta--multi.c-cta--overlayRight .c-cta__overlay {
    background: transparent linear-gradient(108deg, #DBE123 0px, #DBE123 95px, #FFE600 96px, #FFE600 105px, #FEBE11 106px, #FEBE11 130px, #5A2F92 131px, #5A2F92 280px, rgb(225, 0, 29) 281px, rgb(225, 0, 29) 305px, rgb(0, 0, 0) 306px, rgb(0, 0, 0) 455px, transparent 456px, transparent 100%) 0% 0% no-repeat padding-box;
  }
}
.c-cta--overlayLeft {
  --ctaImageAlign: center left;
}
.c-cta--overlayLeft.c-cta--background-top {
  --ctaImageAlign: top left;
}
.c-cta--overlayLeft.c-cta--background-bottom {
  --ctaImageAlign: bottom left;
}
.c-cta--overlayLeft .c-cta__overlay {
  background: var(--ctaThemeColour1);
  clip-path: polygon(85% 0, 100% 0, 100% 100%, 70% 100%);
}
.c-cta--overlayLeft .c-cta__overlay::before {
  content: "";
  display: block;
  position: absolute;
  left: 70%;
  bottom: 0;
  width: 110px;
  height: 90px;
  background: url(/wp-content/themes/site-theme/images/cta-banner-icon.svg) no-repeat;
  background-size: contain;
  background-position: bottom left;
  opacity: 0.15;
}
@media (min-width: 1366px) {
  .c-cta--overlayLeft .c-cta__overlay {
    clip-path: polygon(85% 0, 100% 0, 100% 100%, 70% 100%);
  }
}
@media (min-width: 750px) {
  .c-cta--overlayLeft .c-cta__overlay::before {
    width: 268px;
    height: 221px;
  }
}
@media (min-width: 1024px) {
  .c-cta--overlayLeft {
    aspect-ratio: 1148/622;
  }
}
.c-cta--overlayRight .c-cta__overlay {
  background: transparent linear-gradient(108deg, var(--ctaThemeColour1) 0%, var(--ctaThemeColour1) 30%, transparent 30.1%, transparent 100%) 0% 0% no-repeat padding-box;
}
@media (min-width: 1024px) {
  .c-cta--overlayRight {
    aspect-ratio: 1148/622;
  }
}
@media (min-width: 1366px) {
  .c-cta--overlayRight .c-cta__overlay {
    background: transparent linear-gradient(108deg, var(--ctaThemeColour1) 0%, var(--ctaThemeColour1) 300px, transparent 301px, transparent 100%) 0% 0% no-repeat padding-box;
  }
}
@media (min-width: 1024px) and (max-width: 2000px) {
  .c-cta--overlayRight .c-cta__contentBody {
    transform: translate(300px, 0);
  }
}
.c-cta--overlayLeft .c-cta__background::after, .c-cta--overlayRight .c-cta__background::after {
  content: "";
}
.c-cta--overlayLeft .c-cta__overlay, .c-cta--overlayRight .c-cta__overlay {
  z-index: 4;
}
.c-cta__background {
  position: relative;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 100%;
  width: 100vw;
  max-width: 2560px;
  background: rgb(147, 149, 152);
  z-index: 1;
}
@media (min-width: 1024px) {
  .c-cta__background {
    position: absolute;
  }
}
.c-cta__background::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 100%;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
  background: transparent linear-gradient(180deg, rgba(121, 121, 121, 0.0274509804) 0%, #3D3D3D 100%) 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
}
.c-cta__backgroundImage {
  display: block;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  z-index: 0;
}
.c-cta__backgroundImage img {
  display: block;
  max-width: 2560px !important;
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
  object-position: var(--ctaImageAlign);
}
.c-cta__content {
  position: relative;
  width: 100%;
  padding: 50px 80px 50px 0;
  color: rgb(255, 255, 255);
  z-index: 3;
  font-family: "gotham", sans-serif;
  font-weight: 500;
}
.c-cta__content h1, .c-cta__content h2, .c-cta__content h3, .c-cta__content h4, .c-cta__content h5, .c-cta__content h6, .c-cta__content a, .c-cta__content a:visited {
  color: rgb(255, 255, 255);
}
.c-cta__content::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  transform: translate(calc(var(--layout__padding--lr) * -1), 0);
  background: rgb(0, 0, 0);
  z-index: 0;
}
@media (min-width: 1024px) {
  .c-cta__content {
    width: 100%;
    padding: 40px 0 70px;
    transform: none;
  }
  .c-cta__content::before {
    left: 50%;
    transform: translate(-50%, 0);
    mix-blend-mode: multiply;
    opacity: 0.4;
  }
}
.c-cta__contentBody {
  position: relative;
  z-index: 1;
}
.c-cta__contentBody p:first-of-type:has(img) {
  position: absolute;
  top: -75px;
  transform: translate(0, -100%);
}
@media (min-width: 1024px) {
  .c-cta__contentBody {
    width: 40%;
  }
}
.c-cta__btn {
  position: relative;
  margin-top: 15px;
  color: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
  background: none;
  z-index: 1;
}
.c-cta__btn:hover, .c-cta__btn:focus, .c-cta__btn:active {
  background: rgb(225, 0, 29);
  border-color: rgb(225, 0, 29);
}
.c-cta__overlay {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 100%;
  width: 100vw;
  max-width: 2560px !important;
  background: transparent linear-gradient(108deg, var(--ctaThemeColour1) 0%, var(--ctaThemeColour1) 10%, transparent 10.1%, transparent 100%) 0% 0% no-repeat padding-box;
  z-index: 2;
}
.c-cta__overlay--desktop {
  display: none;
}
@media (min-width: 1024px) {
  .c-cta__overlay {
    background: transparent linear-gradient(108deg, var(--ctaThemeColour1) 0%, var(--ctaThemeColour1) 50%, transparent 50.1%, transparent 100%) 0% 0% no-repeat padding-box;
  }
  .c-cta__overlay--mobile {
    display: none;
  }
  .c-cta__overlay--desktop {
    display: block;
  }
}

.c-athleticsMenu__category {
  padding: 0 0 30px 0;
}
.c-athleticsMenu__categoryName {
  font-family: "gotham", sans-serif;
  font-weight: 700;
  padding: 0 10px 0 65px;
  text-align: center;
}
.c-athleticsMenu__categoryItem {
  display: flex;
  flex-flow: row nowrap;
  padding: 3px 0;
  gap: 15px;
}
.c-athleticsMenu__categoryItem .g-btn, .c-athleticsMenu__categoryItem .elementor-button.elementor-button-link, .c-athleticsMenu__categoryItem .g-elementor__btn .elementor-button, .g-elementor__btn .c-athleticsMenu__categoryItem .elementor-button, .c-athleticsMenu__categoryItem .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button, .elementor-cta--skin-classic .elementor-cta .c-athleticsMenu__categoryItem .elementor-cta__button.elementor-button {
  flex: 1 1 auto;
}
.c-athleticsMenu__categoryItemColour {
  display: inline-block;
  flex-shrink: 0;
  flex-grow: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.c-teamList {
  padding: 0 0 60px 0;
  --teamList-bioWidth: 96%;
}
@media (min-width: 750px) {
  .c-teamList {
    --teamList-bioWidth: 450px;
  }
}
@keyframes animation--teamBioOpen {
  0% {
    width: 0px;
    height: 0px;
  }
  30% {
    width: var(--teamList-bioWidth);
    height: 100px;
    margin-left: 0px;
    margin-top: 0px;
  }
  100% {
    width: var(--teamList-bioWidth);
    height: 550px;
  }
}
.c-teamList:focus-visible {
  outline: none;
}
.c-teamList__item {
  position: relative;
}
.c-teamList__item.open {
  opacity: 1 !important;
}
.c-teamList__item.open .c-teamList__itemBio {
  display: flex;
  animation: animation--teamBioOpen 1s ease-in-out;
  animation-fill-mode: forwards;
}
@media (min-width: 750px) and (max-width: 1023px) {
  .c-teamList__item:nth-child(2n+2) .c-teamList__itemBio {
    right: 70%;
    left: auto;
  }
}
@media (min-width: 1024px) {
  .c-teamList .g-tiles--3 .c-teamList__item:nth-child(3n+2) .c-teamList__itemBio {
    left: 50%;
    transform: translate(-50%, 0);
  }
  .c-teamList .g-tiles--3 .c-teamList__item:nth-child(3n+3) .c-teamList__itemBio {
    right: 70%;
    left: auto;
  }
}
@media (min-width: 1024px) {
  .c-teamList .g-tiles--4 .c-teamList__item:nth-child(4n+3) .c-teamList__itemBio {
    left: 50%;
    transform: translate(-50%, 0);
  }
  .c-teamList .g-tiles--4 .c-teamList__item:nth-child(4n+4) .c-teamList__itemBio {
    right: 70%;
    left: auto;
  }
}
.c-teamList__itemBio {
  display: none;
  position: absolute;
  flex-flow: column nowrap;
  top: 60px;
  left: 2%;
  width: 96%;
  padding: 20px;
  color: rgb(255, 255, 255);
  background: rgb(0, 0, 0);
  overflow: hidden;
  z-index: 2;
}
.c-teamList__itemBio a {
  color: rgb(255, 255, 255);
}
.c-teamList__itemBio a:visited {
  color: rgb(255, 255, 255);
}
.c-teamList__itemBio a:hover, .c-teamList__itemBio a:focus, .c-teamList__itemBio a:active {
  color: rgb(225, 0, 29);
}
@media (min-width: 750px) {
  .c-teamList__itemBio {
    left: 70%;
    width: 450px;
  }
}
.c-teamList__itemBtn {
  margin: 0 auto 15px auto;
}
.c-teamList__itemBioContent {
  padding: 0 10px 0 0;
  flex: 1 1 auto;
  overflow: auto;
}
.c-teamList__itemBioContent::-webkit-scrollbar {
  width: 2px;
}
.c-teamList__itemBioContent::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.c-teamList__itemBioContent::-webkit-scrollbar-thumb {
  background-color: rgb(147, 149, 152);
  outline: 1px solid slategrey;
}
.c-teamList__itemBioClose {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
}
.c-teamList__itemBioClose:hover, .c-teamList__itemBioClose:active, .c-teamList__itemBioClose:focus {
  color: rgb(225, 0, 29) !important;
}

.c-events {
  padding: 60px 0 80px 0;
}
.c-events.past .c-events__group--0 {
  display: none;
}
.c-events.past .c-events__group--1 {
  display: block;
}
.c-events__group--1 {
  display: none;
}
.c-events__groupHeader {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.c-events__items {
  padding: 20px 0 60px 0;
}
.c-events__items .g-tiles__itemImg {
  aspect-ratio: 335/190;
}

.c-eventsDetails .g-layout__padding {
  padding-top: 0;
  padding-bottom: 60px;
}
.c-eventsDetails__info {
  padding: 60px 0 40px 0;
}
.c-eventsDetails__content {
  max-width: 800px;
  padding: 0 0 20px 0;
}

.g-header__primaryMenu {
  z-index: 58 !important;
}

.g-header__menus {
  z-index: 57 !important;
}

.g-header {
  z-index: 56 !important;
}

.g-layout__content {
  z-index: 55 !important;
}

.g-footer {
  z-index: 54 !important;
}

.t-hideItem {
  display: none !important;
}

@media (min-width: 750px) {
  .t-hideItem--desktop {
    display: none !important;
  }
}

@media (max-width: 749px) {
  .t-hideItem--mobile {
    display: none !important;
  }
}

.t-text__uppercase {
  text-transform: uppercase;
}

.t-text__lowercase {
  text-transform: lowercase;
}

.t-font__regular {
  font-family: "gotham", sans-serif;
  font-weight: 400;
}

.t-font__medium {
  font-family: "gotham", sans-serif;
  font-weight: 500;
}

.t-font__bold {
  font-family: "gotham", sans-serif;
  font-weight: 700;
}

/**
   *    
   *   Themes
   *   Note: must clear server cache to view updated themes in selector
   *   (BackgroundColour, FontColour, HeadingColour, AnchorColour, AnchorHoverColour)
   *    
   **/
.t-colour__theme--default {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}
.t-colour__theme--default h1, .t-colour__theme--default h2, .t-colour__theme--default h3, .t-colour__theme--default h4, .t-colour__theme--default h5, .t-colour__theme--default h6, .t-colour__theme--default .h1, .t-colour__theme--default .h2, .t-colour__theme--default .h3, .t-colour__theme--default .h4, .t-colour__theme--default .h5, .t-colour__theme--default .h6 {
  color: rgb(0, 0, 0);
}
.t-colour__theme--default .g-forms__textbox::-webkit-input-placeholder, .t-colour__theme--default .elementor-form .elementor-field-type-text .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-text .t-colour__theme--default .elementor-field::-webkit-input-placeholder, .t-colour__theme--default .elementor-form .elementor-field-type-email .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-email .t-colour__theme--default .elementor-field::-webkit-input-placeholder, .t-colour__theme--default .c-search .g-search__textbox::-webkit-input-placeholder, .c-search .t-colour__theme--default .g-search__textbox::-webkit-input-placeholder, .t-colour__theme--default .g-forms__textarea::-webkit-input-placeholder, .t-colour__theme--default .elementor-form .elementor-field-type-textarea .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-textarea .t-colour__theme--default .elementor-field::-webkit-input-placeholder {
  color: rgb(0, 0, 0);
}
.t-colour__theme--default .g-btn::after, .t-colour__theme--default .elementor-button.elementor-button-link::after, .t-colour__theme--default .g-elementor__btn .elementor-button::after, .g-elementor__btn .t-colour__theme--default .elementor-button::after, .t-colour__theme--default .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button::after, .elementor-cta--skin-classic .elementor-cta .t-colour__theme--default .elementor-cta__button.elementor-button::after, .t-colour__theme--default .g-forms__textbox, .t-colour__theme--default .elementor-form .elementor-field-type-text .elementor-field, .elementor-form .elementor-field-type-text .t-colour__theme--default .elementor-field, .t-colour__theme--default .elementor-form .elementor-field-type-email .elementor-field, .elementor-form .elementor-field-type-email .t-colour__theme--default .elementor-field, .t-colour__theme--default .c-search .g-search__textbox, .c-search .t-colour__theme--default .g-search__textbox, .t-colour__theme--default .g-forms__select {
  border-color: rgb(0, 0, 0);
}
.t-colour__theme--default a, .t-colour__theme--default .g-btn, .t-colour__theme--default .elementor-button.elementor-button-link, .t-colour__theme--default .g-elementor__btn .elementor-button, .g-elementor__btn .t-colour__theme--default .elementor-button, .t-colour__theme--default .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button, .elementor-cta--skin-classic .elementor-cta .t-colour__theme--default .elementor-cta__button.elementor-button, .t-colour__theme--default .g-btn__input, .t-colour__theme--default .g-forms__select, .t-colour__theme--default .g-forms__textbox, .t-colour__theme--default .elementor-form .elementor-field-type-text .elementor-field, .elementor-form .elementor-field-type-text .t-colour__theme--default .elementor-field, .t-colour__theme--default .elementor-form .elementor-field-type-email .elementor-field, .elementor-form .elementor-field-type-email .t-colour__theme--default .elementor-field, .t-colour__theme--default .c-search .g-search__textbox, .c-search .t-colour__theme--default .g-search__textbox {
  color: rgb(0, 0, 0);
}

.t-colour__theme--primary {
  background-color: rgb(225, 0, 29);
  color: rgb(255, 255, 255);
}
.t-colour__theme--primary h1, .t-colour__theme--primary h2, .t-colour__theme--primary h3, .t-colour__theme--primary h4, .t-colour__theme--primary h5, .t-colour__theme--primary h6, .t-colour__theme--primary .h1, .t-colour__theme--primary .h2, .t-colour__theme--primary .h3, .t-colour__theme--primary .h4, .t-colour__theme--primary .h5, .t-colour__theme--primary .h6 {
  color: rgb(255, 255, 255);
}
.t-colour__theme--primary .g-forms__textbox::-webkit-input-placeholder, .t-colour__theme--primary .elementor-form .elementor-field-type-text .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-text .t-colour__theme--primary .elementor-field::-webkit-input-placeholder, .t-colour__theme--primary .elementor-form .elementor-field-type-email .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-email .t-colour__theme--primary .elementor-field::-webkit-input-placeholder, .t-colour__theme--primary .c-search .g-search__textbox::-webkit-input-placeholder, .c-search .t-colour__theme--primary .g-search__textbox::-webkit-input-placeholder, .t-colour__theme--primary .g-forms__textarea::-webkit-input-placeholder, .t-colour__theme--primary .elementor-form .elementor-field-type-textarea .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-textarea .t-colour__theme--primary .elementor-field::-webkit-input-placeholder {
  color: rgb(255, 255, 255);
}
.t-colour__theme--primary .g-btn::after, .t-colour__theme--primary .elementor-button.elementor-button-link::after, .t-colour__theme--primary .g-elementor__btn .elementor-button::after, .g-elementor__btn .t-colour__theme--primary .elementor-button::after, .t-colour__theme--primary .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button::after, .elementor-cta--skin-classic .elementor-cta .t-colour__theme--primary .elementor-cta__button.elementor-button::after, .t-colour__theme--primary .g-forms__textbox, .t-colour__theme--primary .elementor-form .elementor-field-type-text .elementor-field, .elementor-form .elementor-field-type-text .t-colour__theme--primary .elementor-field, .t-colour__theme--primary .elementor-form .elementor-field-type-email .elementor-field, .elementor-form .elementor-field-type-email .t-colour__theme--primary .elementor-field, .t-colour__theme--primary .c-search .g-search__textbox, .c-search .t-colour__theme--primary .g-search__textbox, .t-colour__theme--primary .g-forms__select {
  border-color: rgb(255, 255, 255);
}

.t-colour__theme--primary_light {
  background-color: rgb(184, 201, 131);
  color: rgb(0, 0, 0);
}
.t-colour__theme--primary_light h1, .t-colour__theme--primary_light h2, .t-colour__theme--primary_light h3, .t-colour__theme--primary_light h4, .t-colour__theme--primary_light h5, .t-colour__theme--primary_light h6, .t-colour__theme--primary_light .h1, .t-colour__theme--primary_light .h2, .t-colour__theme--primary_light .h3, .t-colour__theme--primary_light .h4, .t-colour__theme--primary_light .h5, .t-colour__theme--primary_light .h6 {
  color: rgb(0, 0, 0);
}
.t-colour__theme--primary_light .g-forms__textbox::-webkit-input-placeholder, .t-colour__theme--primary_light .elementor-form .elementor-field-type-text .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-text .t-colour__theme--primary_light .elementor-field::-webkit-input-placeholder, .t-colour__theme--primary_light .elementor-form .elementor-field-type-email .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-email .t-colour__theme--primary_light .elementor-field::-webkit-input-placeholder, .t-colour__theme--primary_light .c-search .g-search__textbox::-webkit-input-placeholder, .c-search .t-colour__theme--primary_light .g-search__textbox::-webkit-input-placeholder, .t-colour__theme--primary_light .g-forms__textarea::-webkit-input-placeholder, .t-colour__theme--primary_light .elementor-form .elementor-field-type-textarea .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-textarea .t-colour__theme--primary_light .elementor-field::-webkit-input-placeholder {
  color: rgb(0, 0, 0);
}
.t-colour__theme--primary_light .g-btn::after, .t-colour__theme--primary_light .elementor-button.elementor-button-link::after, .t-colour__theme--primary_light .g-elementor__btn .elementor-button::after, .g-elementor__btn .t-colour__theme--primary_light .elementor-button::after, .t-colour__theme--primary_light .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button::after, .elementor-cta--skin-classic .elementor-cta .t-colour__theme--primary_light .elementor-cta__button.elementor-button::after, .t-colour__theme--primary_light .g-forms__textbox, .t-colour__theme--primary_light .elementor-form .elementor-field-type-text .elementor-field, .elementor-form .elementor-field-type-text .t-colour__theme--primary_light .elementor-field, .t-colour__theme--primary_light .elementor-form .elementor-field-type-email .elementor-field, .elementor-form .elementor-field-type-email .t-colour__theme--primary_light .elementor-field, .t-colour__theme--primary_light .c-search .g-search__textbox, .c-search .t-colour__theme--primary_light .g-search__textbox, .t-colour__theme--primary_light .g-forms__select {
  border-color: rgb(0, 0, 0);
}

.t-colour__theme--primary_dark {
  background-color: rgb(55, 88, 18);
  color: rgb(255, 255, 255);
}
.t-colour__theme--primary_dark h1, .t-colour__theme--primary_dark h2, .t-colour__theme--primary_dark h3, .t-colour__theme--primary_dark h4, .t-colour__theme--primary_dark h5, .t-colour__theme--primary_dark h6, .t-colour__theme--primary_dark .h1, .t-colour__theme--primary_dark .h2, .t-colour__theme--primary_dark .h3, .t-colour__theme--primary_dark .h4, .t-colour__theme--primary_dark .h5, .t-colour__theme--primary_dark .h6 {
  color: rgb(255, 255, 255);
}
.t-colour__theme--primary_dark .g-forms__textbox::-webkit-input-placeholder, .t-colour__theme--primary_dark .elementor-form .elementor-field-type-text .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-text .t-colour__theme--primary_dark .elementor-field::-webkit-input-placeholder, .t-colour__theme--primary_dark .elementor-form .elementor-field-type-email .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-email .t-colour__theme--primary_dark .elementor-field::-webkit-input-placeholder, .t-colour__theme--primary_dark .c-search .g-search__textbox::-webkit-input-placeholder, .c-search .t-colour__theme--primary_dark .g-search__textbox::-webkit-input-placeholder, .t-colour__theme--primary_dark .g-forms__textarea::-webkit-input-placeholder, .t-colour__theme--primary_dark .elementor-form .elementor-field-type-textarea .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-textarea .t-colour__theme--primary_dark .elementor-field::-webkit-input-placeholder {
  color: rgb(255, 255, 255);
}
.t-colour__theme--primary_dark .g-btn::after, .t-colour__theme--primary_dark .elementor-button.elementor-button-link::after, .t-colour__theme--primary_dark .g-elementor__btn .elementor-button::after, .g-elementor__btn .t-colour__theme--primary_dark .elementor-button::after, .t-colour__theme--primary_dark .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button::after, .elementor-cta--skin-classic .elementor-cta .t-colour__theme--primary_dark .elementor-cta__button.elementor-button::after, .t-colour__theme--primary_dark .g-forms__textbox, .t-colour__theme--primary_dark .elementor-form .elementor-field-type-text .elementor-field, .elementor-form .elementor-field-type-text .t-colour__theme--primary_dark .elementor-field, .t-colour__theme--primary_dark .elementor-form .elementor-field-type-email .elementor-field, .elementor-form .elementor-field-type-email .t-colour__theme--primary_dark .elementor-field, .t-colour__theme--primary_dark .c-search .g-search__textbox, .c-search .t-colour__theme--primary_dark .g-search__textbox, .t-colour__theme--primary_dark .g-forms__select {
  border-color: rgb(255, 255, 255);
}

.t-colour__theme--secondary {
  background-color: rgb(219, 225, 35);
  color: rgb(0, 0, 0);
}
.t-colour__theme--secondary h1, .t-colour__theme--secondary h2, .t-colour__theme--secondary h3, .t-colour__theme--secondary h4, .t-colour__theme--secondary h5, .t-colour__theme--secondary h6, .t-colour__theme--secondary .h1, .t-colour__theme--secondary .h2, .t-colour__theme--secondary .h3, .t-colour__theme--secondary .h4, .t-colour__theme--secondary .h5, .t-colour__theme--secondary .h6 {
  color: rgb(0, 0, 0);
}
.t-colour__theme--secondary .g-forms__textbox::-webkit-input-placeholder, .t-colour__theme--secondary .elementor-form .elementor-field-type-text .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-text .t-colour__theme--secondary .elementor-field::-webkit-input-placeholder, .t-colour__theme--secondary .elementor-form .elementor-field-type-email .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-email .t-colour__theme--secondary .elementor-field::-webkit-input-placeholder, .t-colour__theme--secondary .c-search .g-search__textbox::-webkit-input-placeholder, .c-search .t-colour__theme--secondary .g-search__textbox::-webkit-input-placeholder, .t-colour__theme--secondary .g-forms__textarea::-webkit-input-placeholder, .t-colour__theme--secondary .elementor-form .elementor-field-type-textarea .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-textarea .t-colour__theme--secondary .elementor-field::-webkit-input-placeholder {
  color: rgb(0, 0, 0);
}
.t-colour__theme--secondary .g-btn::after, .t-colour__theme--secondary .elementor-button.elementor-button-link::after, .t-colour__theme--secondary .g-elementor__btn .elementor-button::after, .g-elementor__btn .t-colour__theme--secondary .elementor-button::after, .t-colour__theme--secondary .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button::after, .elementor-cta--skin-classic .elementor-cta .t-colour__theme--secondary .elementor-cta__button.elementor-button::after, .t-colour__theme--secondary .g-forms__textbox, .t-colour__theme--secondary .elementor-form .elementor-field-type-text .elementor-field, .elementor-form .elementor-field-type-text .t-colour__theme--secondary .elementor-field, .t-colour__theme--secondary .elementor-form .elementor-field-type-email .elementor-field, .elementor-form .elementor-field-type-email .t-colour__theme--secondary .elementor-field, .t-colour__theme--secondary .c-search .g-search__textbox, .c-search .t-colour__theme--secondary .g-search__textbox, .t-colour__theme--secondary .g-forms__select {
  border-color: rgb(0, 0, 0);
}

.t-colour__theme--secondary_light, .c-contentBlocks--secondary_light .c-contentBlocks__item {
  background-color: rgb(238, 233, 215);
  color: rgb(0, 0, 0);
}
.t-colour__theme--secondary_light h1, .c-contentBlocks--secondary_light .c-contentBlocks__item h1, .t-colour__theme--secondary_light h2, .c-contentBlocks--secondary_light .c-contentBlocks__item h2, .t-colour__theme--secondary_light h3, .c-contentBlocks--secondary_light .c-contentBlocks__item h3, .t-colour__theme--secondary_light h4, .c-contentBlocks--secondary_light .c-contentBlocks__item h4, .t-colour__theme--secondary_light h5, .c-contentBlocks--secondary_light .c-contentBlocks__item h5, .t-colour__theme--secondary_light h6, .c-contentBlocks--secondary_light .c-contentBlocks__item h6, .t-colour__theme--secondary_light .h1, .c-contentBlocks--secondary_light .c-contentBlocks__item .h1, .t-colour__theme--secondary_light .h2, .c-contentBlocks--secondary_light .c-contentBlocks__item .h2, .t-colour__theme--secondary_light .h3, .c-contentBlocks--secondary_light .c-contentBlocks__item .h3, .t-colour__theme--secondary_light .h4, .c-contentBlocks--secondary_light .c-contentBlocks__item .h4, .t-colour__theme--secondary_light .h5, .c-contentBlocks--secondary_light .c-contentBlocks__item .h5, .t-colour__theme--secondary_light .h6, .c-contentBlocks--secondary_light .c-contentBlocks__item .h6 {
  color: rgb(0, 0, 0);
}
.t-colour__theme--secondary_light .g-forms__textbox::-webkit-input-placeholder, .c-contentBlocks--secondary_light .c-contentBlocks__item .g-forms__textbox::-webkit-input-placeholder, .t-colour__theme--secondary_light .elementor-form .elementor-field-type-text .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-text .t-colour__theme--secondary_light .elementor-field::-webkit-input-placeholder, .c-contentBlocks--secondary_light .c-contentBlocks__item .elementor-form .elementor-field-type-text .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-text .c-contentBlocks--secondary_light .c-contentBlocks__item .elementor-field::-webkit-input-placeholder, .t-colour__theme--secondary_light .elementor-form .elementor-field-type-email .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-email .t-colour__theme--secondary_light .elementor-field::-webkit-input-placeholder, .c-contentBlocks--secondary_light .c-contentBlocks__item .elementor-form .elementor-field-type-email .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-email .c-contentBlocks--secondary_light .c-contentBlocks__item .elementor-field::-webkit-input-placeholder, .t-colour__theme--secondary_light .c-search .g-search__textbox::-webkit-input-placeholder, .c-search .t-colour__theme--secondary_light .g-search__textbox::-webkit-input-placeholder, .c-contentBlocks--secondary_light .c-contentBlocks__item .c-search .g-search__textbox::-webkit-input-placeholder, .c-search .c-contentBlocks--secondary_light .c-contentBlocks__item .g-search__textbox::-webkit-input-placeholder, .t-colour__theme--secondary_light .g-forms__textarea::-webkit-input-placeholder, .c-contentBlocks--secondary_light .c-contentBlocks__item .g-forms__textarea::-webkit-input-placeholder, .t-colour__theme--secondary_light .elementor-form .elementor-field-type-textarea .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-textarea .t-colour__theme--secondary_light .elementor-field::-webkit-input-placeholder, .c-contentBlocks--secondary_light .c-contentBlocks__item .elementor-form .elementor-field-type-textarea .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-textarea .c-contentBlocks--secondary_light .c-contentBlocks__item .elementor-field::-webkit-input-placeholder {
  color: rgb(0, 0, 0);
}
.t-colour__theme--secondary_light .g-btn::after, .c-contentBlocks--secondary_light .c-contentBlocks__item .g-btn::after, .t-colour__theme--secondary_light .elementor-button.elementor-button-link::after, .c-contentBlocks--secondary_light .c-contentBlocks__item .elementor-button.elementor-button-link::after, .t-colour__theme--secondary_light .g-elementor__btn .elementor-button::after, .g-elementor__btn .t-colour__theme--secondary_light .elementor-button::after, .c-contentBlocks--secondary_light .c-contentBlocks__item .g-elementor__btn .elementor-button::after, .g-elementor__btn .c-contentBlocks--secondary_light .c-contentBlocks__item .elementor-button::after, .t-colour__theme--secondary_light .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button::after, .elementor-cta--skin-classic .elementor-cta .t-colour__theme--secondary_light .elementor-cta__button.elementor-button::after, .c-contentBlocks--secondary_light .c-contentBlocks__item .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button::after, .elementor-cta--skin-classic .elementor-cta .c-contentBlocks--secondary_light .c-contentBlocks__item .elementor-cta__button.elementor-button::after, .t-colour__theme--secondary_light .g-forms__textbox, .c-contentBlocks--secondary_light .c-contentBlocks__item .g-forms__textbox, .t-colour__theme--secondary_light .elementor-form .elementor-field-type-text .elementor-field, .elementor-form .elementor-field-type-text .t-colour__theme--secondary_light .elementor-field, .c-contentBlocks--secondary_light .c-contentBlocks__item .elementor-form .elementor-field-type-text .elementor-field, .elementor-form .elementor-field-type-text .c-contentBlocks--secondary_light .c-contentBlocks__item .elementor-field, .t-colour__theme--secondary_light .elementor-form .elementor-field-type-email .elementor-field, .elementor-form .elementor-field-type-email .t-colour__theme--secondary_light .elementor-field, .c-contentBlocks--secondary_light .c-contentBlocks__item .elementor-form .elementor-field-type-email .elementor-field, .elementor-form .elementor-field-type-email .c-contentBlocks--secondary_light .c-contentBlocks__item .elementor-field, .t-colour__theme--secondary_light .c-search .g-search__textbox, .c-search .t-colour__theme--secondary_light .g-search__textbox, .c-contentBlocks--secondary_light .c-contentBlocks__item .c-search .g-search__textbox, .c-search .c-contentBlocks--secondary_light .c-contentBlocks__item .g-search__textbox, .t-colour__theme--secondary_light .g-forms__select, .c-contentBlocks--secondary_light .c-contentBlocks__item .g-forms__select {
  border-color: rgb(0, 0, 0);
}

.t-colour__theme--secondary_dark {
  background-color: rgb(75, 63, 40);
  color: rgb(255, 255, 255);
}
.t-colour__theme--secondary_dark h1, .t-colour__theme--secondary_dark h2, .t-colour__theme--secondary_dark h3, .t-colour__theme--secondary_dark h4, .t-colour__theme--secondary_dark h5, .t-colour__theme--secondary_dark h6, .t-colour__theme--secondary_dark .h1, .t-colour__theme--secondary_dark .h2, .t-colour__theme--secondary_dark .h3, .t-colour__theme--secondary_dark .h4, .t-colour__theme--secondary_dark .h5, .t-colour__theme--secondary_dark .h6 {
  color: rgb(255, 255, 255);
}
.t-colour__theme--secondary_dark .g-forms__textbox::-webkit-input-placeholder, .t-colour__theme--secondary_dark .elementor-form .elementor-field-type-text .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-text .t-colour__theme--secondary_dark .elementor-field::-webkit-input-placeholder, .t-colour__theme--secondary_dark .elementor-form .elementor-field-type-email .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-email .t-colour__theme--secondary_dark .elementor-field::-webkit-input-placeholder, .t-colour__theme--secondary_dark .c-search .g-search__textbox::-webkit-input-placeholder, .c-search .t-colour__theme--secondary_dark .g-search__textbox::-webkit-input-placeholder, .t-colour__theme--secondary_dark .g-forms__textarea::-webkit-input-placeholder, .t-colour__theme--secondary_dark .elementor-form .elementor-field-type-textarea .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-textarea .t-colour__theme--secondary_dark .elementor-field::-webkit-input-placeholder {
  color: rgb(255, 255, 255);
}
.t-colour__theme--secondary_dark .g-btn::after, .t-colour__theme--secondary_dark .elementor-button.elementor-button-link::after, .t-colour__theme--secondary_dark .g-elementor__btn .elementor-button::after, .g-elementor__btn .t-colour__theme--secondary_dark .elementor-button::after, .t-colour__theme--secondary_dark .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button::after, .elementor-cta--skin-classic .elementor-cta .t-colour__theme--secondary_dark .elementor-cta__button.elementor-button::after, .t-colour__theme--secondary_dark .g-forms__textbox, .t-colour__theme--secondary_dark .elementor-form .elementor-field-type-text .elementor-field, .elementor-form .elementor-field-type-text .t-colour__theme--secondary_dark .elementor-field, .t-colour__theme--secondary_dark .elementor-form .elementor-field-type-email .elementor-field, .elementor-form .elementor-field-type-email .t-colour__theme--secondary_dark .elementor-field, .t-colour__theme--secondary_dark .c-search .g-search__textbox, .c-search .t-colour__theme--secondary_dark .g-search__textbox, .t-colour__theme--secondary_dark .g-forms__select {
  border-color: rgb(255, 255, 255);
}

.t-colour__theme--tertiary, .c-contentBlocks--tertiary .c-contentBlocks__item {
  background-color: rgb(172, 222, 230);
  color: rgb(0, 0, 0);
}
.t-colour__theme--tertiary h1, .c-contentBlocks--tertiary .c-contentBlocks__item h1, .t-colour__theme--tertiary h2, .c-contentBlocks--tertiary .c-contentBlocks__item h2, .t-colour__theme--tertiary h3, .c-contentBlocks--tertiary .c-contentBlocks__item h3, .t-colour__theme--tertiary h4, .c-contentBlocks--tertiary .c-contentBlocks__item h4, .t-colour__theme--tertiary h5, .c-contentBlocks--tertiary .c-contentBlocks__item h5, .t-colour__theme--tertiary h6, .c-contentBlocks--tertiary .c-contentBlocks__item h6, .t-colour__theme--tertiary .h1, .c-contentBlocks--tertiary .c-contentBlocks__item .h1, .t-colour__theme--tertiary .h2, .c-contentBlocks--tertiary .c-contentBlocks__item .h2, .t-colour__theme--tertiary .h3, .c-contentBlocks--tertiary .c-contentBlocks__item .h3, .t-colour__theme--tertiary .h4, .c-contentBlocks--tertiary .c-contentBlocks__item .h4, .t-colour__theme--tertiary .h5, .c-contentBlocks--tertiary .c-contentBlocks__item .h5, .t-colour__theme--tertiary .h6, .c-contentBlocks--tertiary .c-contentBlocks__item .h6 {
  color: rgb(0, 0, 0);
}
.t-colour__theme--tertiary .g-forms__textbox::-webkit-input-placeholder, .c-contentBlocks--tertiary .c-contentBlocks__item .g-forms__textbox::-webkit-input-placeholder, .t-colour__theme--tertiary .elementor-form .elementor-field-type-text .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-text .t-colour__theme--tertiary .elementor-field::-webkit-input-placeholder, .c-contentBlocks--tertiary .c-contentBlocks__item .elementor-form .elementor-field-type-text .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-text .c-contentBlocks--tertiary .c-contentBlocks__item .elementor-field::-webkit-input-placeholder, .t-colour__theme--tertiary .elementor-form .elementor-field-type-email .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-email .t-colour__theme--tertiary .elementor-field::-webkit-input-placeholder, .c-contentBlocks--tertiary .c-contentBlocks__item .elementor-form .elementor-field-type-email .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-email .c-contentBlocks--tertiary .c-contentBlocks__item .elementor-field::-webkit-input-placeholder, .t-colour__theme--tertiary .c-search .g-search__textbox::-webkit-input-placeholder, .c-search .t-colour__theme--tertiary .g-search__textbox::-webkit-input-placeholder, .c-contentBlocks--tertiary .c-contentBlocks__item .c-search .g-search__textbox::-webkit-input-placeholder, .c-search .c-contentBlocks--tertiary .c-contentBlocks__item .g-search__textbox::-webkit-input-placeholder, .t-colour__theme--tertiary .g-forms__textarea::-webkit-input-placeholder, .c-contentBlocks--tertiary .c-contentBlocks__item .g-forms__textarea::-webkit-input-placeholder, .t-colour__theme--tertiary .elementor-form .elementor-field-type-textarea .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-textarea .t-colour__theme--tertiary .elementor-field::-webkit-input-placeholder, .c-contentBlocks--tertiary .c-contentBlocks__item .elementor-form .elementor-field-type-textarea .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-textarea .c-contentBlocks--tertiary .c-contentBlocks__item .elementor-field::-webkit-input-placeholder {
  color: rgb(0, 0, 0);
}
.t-colour__theme--tertiary .g-btn::after, .c-contentBlocks--tertiary .c-contentBlocks__item .g-btn::after, .t-colour__theme--tertiary .elementor-button.elementor-button-link::after, .c-contentBlocks--tertiary .c-contentBlocks__item .elementor-button.elementor-button-link::after, .t-colour__theme--tertiary .g-elementor__btn .elementor-button::after, .g-elementor__btn .t-colour__theme--tertiary .elementor-button::after, .c-contentBlocks--tertiary .c-contentBlocks__item .g-elementor__btn .elementor-button::after, .g-elementor__btn .c-contentBlocks--tertiary .c-contentBlocks__item .elementor-button::after, .t-colour__theme--tertiary .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button::after, .elementor-cta--skin-classic .elementor-cta .t-colour__theme--tertiary .elementor-cta__button.elementor-button::after, .c-contentBlocks--tertiary .c-contentBlocks__item .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button::after, .elementor-cta--skin-classic .elementor-cta .c-contentBlocks--tertiary .c-contentBlocks__item .elementor-cta__button.elementor-button::after, .t-colour__theme--tertiary .g-forms__textbox, .c-contentBlocks--tertiary .c-contentBlocks__item .g-forms__textbox, .t-colour__theme--tertiary .elementor-form .elementor-field-type-text .elementor-field, .elementor-form .elementor-field-type-text .t-colour__theme--tertiary .elementor-field, .c-contentBlocks--tertiary .c-contentBlocks__item .elementor-form .elementor-field-type-text .elementor-field, .elementor-form .elementor-field-type-text .c-contentBlocks--tertiary .c-contentBlocks__item .elementor-field, .t-colour__theme--tertiary .elementor-form .elementor-field-type-email .elementor-field, .elementor-form .elementor-field-type-email .t-colour__theme--tertiary .elementor-field, .c-contentBlocks--tertiary .c-contentBlocks__item .elementor-form .elementor-field-type-email .elementor-field, .elementor-form .elementor-field-type-email .c-contentBlocks--tertiary .c-contentBlocks__item .elementor-field, .t-colour__theme--tertiary .c-search .g-search__textbox, .c-search .t-colour__theme--tertiary .g-search__textbox, .c-contentBlocks--tertiary .c-contentBlocks__item .c-search .g-search__textbox, .c-search .c-contentBlocks--tertiary .c-contentBlocks__item .g-search__textbox, .t-colour__theme--tertiary .g-forms__select, .c-contentBlocks--tertiary .c-contentBlocks__item .g-forms__select {
  border-color: rgb(0, 0, 0);
}

.t-colour__theme--grey {
  background-color: rgb(147, 149, 152);
  color: rgb(255, 255, 255);
}
.t-colour__theme--grey h1, .t-colour__theme--grey h2, .t-colour__theme--grey h3, .t-colour__theme--grey h4, .t-colour__theme--grey h5, .t-colour__theme--grey h6, .t-colour__theme--grey .h1, .t-colour__theme--grey .h2, .t-colour__theme--grey .h3, .t-colour__theme--grey .h4, .t-colour__theme--grey .h5, .t-colour__theme--grey .h6 {
  color: rgb(255, 255, 255);
}
.t-colour__theme--grey .g-forms__textbox::-webkit-input-placeholder, .t-colour__theme--grey .elementor-form .elementor-field-type-text .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-text .t-colour__theme--grey .elementor-field::-webkit-input-placeholder, .t-colour__theme--grey .elementor-form .elementor-field-type-email .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-email .t-colour__theme--grey .elementor-field::-webkit-input-placeholder, .t-colour__theme--grey .c-search .g-search__textbox::-webkit-input-placeholder, .c-search .t-colour__theme--grey .g-search__textbox::-webkit-input-placeholder, .t-colour__theme--grey .g-forms__textarea::-webkit-input-placeholder, .t-colour__theme--grey .elementor-form .elementor-field-type-textarea .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-textarea .t-colour__theme--grey .elementor-field::-webkit-input-placeholder {
  color: rgb(255, 255, 255);
}
.t-colour__theme--grey .g-btn::after, .t-colour__theme--grey .elementor-button.elementor-button-link::after, .t-colour__theme--grey .g-elementor__btn .elementor-button::after, .g-elementor__btn .t-colour__theme--grey .elementor-button::after, .t-colour__theme--grey .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button::after, .elementor-cta--skin-classic .elementor-cta .t-colour__theme--grey .elementor-cta__button.elementor-button::after, .t-colour__theme--grey .g-forms__textbox, .t-colour__theme--grey .elementor-form .elementor-field-type-text .elementor-field, .elementor-form .elementor-field-type-text .t-colour__theme--grey .elementor-field, .t-colour__theme--grey .elementor-form .elementor-field-type-email .elementor-field, .elementor-form .elementor-field-type-email .t-colour__theme--grey .elementor-field, .t-colour__theme--grey .c-search .g-search__textbox, .c-search .t-colour__theme--grey .g-search__textbox, .t-colour__theme--grey .g-forms__select {
  border-color: rgb(255, 255, 255);
}

.t-colour__theme--black {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}
.t-colour__theme--black h1, .t-colour__theme--black h2, .t-colour__theme--black h3, .t-colour__theme--black h4, .t-colour__theme--black h5, .t-colour__theme--black h6, .t-colour__theme--black .h1, .t-colour__theme--black .h2, .t-colour__theme--black .h3, .t-colour__theme--black .h4, .t-colour__theme--black .h5, .t-colour__theme--black .h6 {
  color: rgb(255, 255, 255);
}
.t-colour__theme--black .g-forms__textbox::-webkit-input-placeholder, .t-colour__theme--black .elementor-form .elementor-field-type-text .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-text .t-colour__theme--black .elementor-field::-webkit-input-placeholder, .t-colour__theme--black .elementor-form .elementor-field-type-email .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-email .t-colour__theme--black .elementor-field::-webkit-input-placeholder, .t-colour__theme--black .c-search .g-search__textbox::-webkit-input-placeholder, .c-search .t-colour__theme--black .g-search__textbox::-webkit-input-placeholder, .t-colour__theme--black .g-forms__textarea::-webkit-input-placeholder, .t-colour__theme--black .elementor-form .elementor-field-type-textarea .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-textarea .t-colour__theme--black .elementor-field::-webkit-input-placeholder {
  color: rgb(255, 255, 255);
}
.t-colour__theme--black .g-btn::after, .t-colour__theme--black .elementor-button.elementor-button-link::after, .t-colour__theme--black .g-elementor__btn .elementor-button::after, .g-elementor__btn .t-colour__theme--black .elementor-button::after, .t-colour__theme--black .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button::after, .elementor-cta--skin-classic .elementor-cta .t-colour__theme--black .elementor-cta__button.elementor-button::after, .t-colour__theme--black .g-forms__textbox, .t-colour__theme--black .elementor-form .elementor-field-type-text .elementor-field, .elementor-form .elementor-field-type-text .t-colour__theme--black .elementor-field, .t-colour__theme--black .elementor-form .elementor-field-type-email .elementor-field, .elementor-form .elementor-field-type-email .t-colour__theme--black .elementor-field, .t-colour__theme--black .c-search .g-search__textbox, .c-search .t-colour__theme--black .g-search__textbox, .t-colour__theme--black .g-forms__select {
  border-color: rgb(255, 255, 255);
}
.t-colour__theme--black a, .t-colour__theme--black .g-btn, .t-colour__theme--black .elementor-button.elementor-button-link, .t-colour__theme--black .g-elementor__btn .elementor-button, .g-elementor__btn .t-colour__theme--black .elementor-button, .t-colour__theme--black .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button, .elementor-cta--skin-classic .elementor-cta .t-colour__theme--black .elementor-cta__button.elementor-button, .t-colour__theme--black .g-btn__input, .t-colour__theme--black .g-forms__select, .t-colour__theme--black .g-forms__textbox, .t-colour__theme--black .elementor-form .elementor-field-type-text .elementor-field, .elementor-form .elementor-field-type-text .t-colour__theme--black .elementor-field, .t-colour__theme--black .elementor-form .elementor-field-type-email .elementor-field, .elementor-form .elementor-field-type-email .t-colour__theme--black .elementor-field, .t-colour__theme--black .c-search .g-search__textbox, .c-search .t-colour__theme--black .g-search__textbox {
  color: rgb(255, 255, 255);
}

.t-colour__theme--white {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}
.t-colour__theme--white h1, .t-colour__theme--white h2, .t-colour__theme--white h3, .t-colour__theme--white h4, .t-colour__theme--white h5, .t-colour__theme--white h6, .t-colour__theme--white .h1, .t-colour__theme--white .h2, .t-colour__theme--white .h3, .t-colour__theme--white .h4, .t-colour__theme--white .h5, .t-colour__theme--white .h6 {
  color: rgb(0, 0, 0);
}
.t-colour__theme--white .g-forms__textbox::-webkit-input-placeholder, .t-colour__theme--white .elementor-form .elementor-field-type-text .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-text .t-colour__theme--white .elementor-field::-webkit-input-placeholder, .t-colour__theme--white .elementor-form .elementor-field-type-email .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-email .t-colour__theme--white .elementor-field::-webkit-input-placeholder, .t-colour__theme--white .c-search .g-search__textbox::-webkit-input-placeholder, .c-search .t-colour__theme--white .g-search__textbox::-webkit-input-placeholder, .t-colour__theme--white .g-forms__textarea::-webkit-input-placeholder, .t-colour__theme--white .elementor-form .elementor-field-type-textarea .elementor-field::-webkit-input-placeholder, .elementor-form .elementor-field-type-textarea .t-colour__theme--white .elementor-field::-webkit-input-placeholder {
  color: rgb(0, 0, 0);
}
.t-colour__theme--white .g-btn::after, .t-colour__theme--white .elementor-button.elementor-button-link::after, .t-colour__theme--white .g-elementor__btn .elementor-button::after, .g-elementor__btn .t-colour__theme--white .elementor-button::after, .t-colour__theme--white .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button::after, .elementor-cta--skin-classic .elementor-cta .t-colour__theme--white .elementor-cta__button.elementor-button::after, .t-colour__theme--white .g-forms__textbox, .t-colour__theme--white .elementor-form .elementor-field-type-text .elementor-field, .elementor-form .elementor-field-type-text .t-colour__theme--white .elementor-field, .t-colour__theme--white .elementor-form .elementor-field-type-email .elementor-field, .elementor-form .elementor-field-type-email .t-colour__theme--white .elementor-field, .t-colour__theme--white .c-search .g-search__textbox, .c-search .t-colour__theme--white .g-search__textbox, .t-colour__theme--white .g-forms__select {
  border-color: rgb(0, 0, 0);
}
.t-colour__theme--white a, .t-colour__theme--white .g-btn, .t-colour__theme--white .elementor-button.elementor-button-link, .t-colour__theme--white .g-elementor__btn .elementor-button, .g-elementor__btn .t-colour__theme--white .elementor-button, .t-colour__theme--white .elementor-cta--skin-classic .elementor-cta .elementor-cta__button.elementor-button, .elementor-cta--skin-classic .elementor-cta .t-colour__theme--white .elementor-cta__button.elementor-button, .t-colour__theme--white .g-btn__input, .t-colour__theme--white .g-forms__select, .t-colour__theme--white .g-forms__textbox, .t-colour__theme--white .elementor-form .elementor-field-type-text .elementor-field, .elementor-form .elementor-field-type-text .t-colour__theme--white .elementor-field, .t-colour__theme--white .elementor-form .elementor-field-type-email .elementor-field, .elementor-form .elementor-field-type-email .t-colour__theme--white .elementor-field, .t-colour__theme--white .c-search .g-search__textbox, .c-search .t-colour__theme--white .g-search__textbox {
  color: rgb(0, 0, 0);
}

.t-colour__text--primary {
  color: rgb(225, 0, 29) !important;
}

.t-colour__textHover--primary:hover, .t-colour__textHover--primary:focus, .t-colour__textHover--primary:active {
  color: rgb(225, 0, 29) !important;
}

.t-colour__background--primary {
  background: rgb(225, 0, 29) !important;
}

.t-colour__backgroundHover--primary:hover, .t-colour__backgroundHover--primary:focus, .t-colour__backgroundHover--primary:active {
  background: rgb(225, 0, 29) !important;
}

.t-colour__border--primary {
  border-color: rgb(225, 0, 29) !important;
}

.t-colour__text--primary_light {
  color: rgb(184, 201, 131) !important;
}

.t-colour__textHover--primary_light:hover, .t-colour__textHover--primary_light:focus, .t-colour__textHover--primary_light:active {
  color: rgb(184, 201, 131) !important;
}

.t-colour__background--primary_light {
  background: rgb(184, 201, 131) !important;
}

.t-colour__backgroundHover--primary_light:hover, .t-colour__backgroundHover--primary_light:focus, .t-colour__backgroundHover--primary_light:active {
  background: rgb(184, 201, 131) !important;
}

.t-colour__border--primary_light {
  border-color: rgb(184, 201, 131) !important;
}

.t-colour__text--primary_dark {
  color: rgb(55, 88, 18) !important;
}

.t-colour__textHover--primary_dark:hover, .t-colour__textHover--primary_dark:focus, .t-colour__textHover--primary_dark:active {
  color: rgb(55, 88, 18) !important;
}

.t-colour__background--primary_dark {
  background: rgb(55, 88, 18) !important;
}

.t-colour__backgroundHover--primary_dark:hover, .t-colour__backgroundHover--primary_dark:focus, .t-colour__backgroundHover--primary_dark:active {
  background: rgb(55, 88, 18) !important;
}

.t-colour__border--primary_dark {
  border-color: rgb(55, 88, 18) !important;
}

.t-colour__text--secondary {
  color: rgb(219, 225, 35) !important;
}

.t-colour__textHover--secondary:hover, .t-colour__textHover--secondary:focus, .t-colour__textHover--secondary:active {
  color: rgb(219, 225, 35) !important;
}

.t-colour__background--secondary {
  background: rgb(219, 225, 35) !important;
}

.t-colour__backgroundHover--secondary:hover, .t-colour__backgroundHover--secondary:focus, .t-colour__backgroundHover--secondary:active {
  background: rgb(219, 225, 35) !important;
}

.t-colour__border--secondary {
  border-color: rgb(219, 225, 35) !important;
}

.t-colour__text--secondary_light {
  color: rgb(238, 233, 215) !important;
}

.t-colour__textHover--secondary_light:hover, .t-colour__textHover--secondary_light:focus, .t-colour__textHover--secondary_light:active {
  color: rgb(238, 233, 215) !important;
}

.t-colour__background--secondary_light {
  background: rgb(238, 233, 215) !important;
}

.t-colour__backgroundHover--secondary_light:hover, .t-colour__backgroundHover--secondary_light:focus, .t-colour__backgroundHover--secondary_light:active {
  background: rgb(238, 233, 215) !important;
}

.t-colour__border--secondary_light {
  border-color: rgb(238, 233, 215) !important;
}

.t-colour__text--secondary_dark {
  color: rgb(75, 63, 40) !important;
}

.t-colour__textHover--secondary_dark:hover, .t-colour__textHover--secondary_dark:focus, .t-colour__textHover--secondary_dark:active {
  color: rgb(75, 63, 40) !important;
}

.t-colour__background--secondary_dark {
  background: rgb(75, 63, 40) !important;
}

.t-colour__backgroundHover--secondary_dark:hover, .t-colour__backgroundHover--secondary_dark:focus, .t-colour__backgroundHover--secondary_dark:active {
  background: rgb(75, 63, 40) !important;
}

.t-colour__border--secondary_dark {
  border-color: rgb(75, 63, 40) !important;
}

.t-colour__text--tertiary {
  color: rgb(172, 222, 230) !important;
}

.t-colour__textHover--tertiary:hover, .t-colour__textHover--tertiary:focus, .t-colour__textHover--tertiary:active {
  color: rgb(172, 222, 230) !important;
}

.t-colour__background--tertiary {
  background: rgb(172, 222, 230) !important;
}

.t-colour__backgroundHover--tertiary:hover, .t-colour__backgroundHover--tertiary:focus, .t-colour__backgroundHover--tertiary:active {
  background: rgb(172, 222, 230) !important;
}

.t-colour__border--tertiary {
  border-color: rgb(172, 222, 230) !important;
}

.t-colour__text--grey {
  color: rgb(147, 149, 152) !important;
}

.t-colour__textHover--grey:hover, .t-colour__textHover--grey:focus, .t-colour__textHover--grey:active {
  color: rgb(147, 149, 152) !important;
}

.t-colour__background--grey {
  background: rgb(147, 149, 152) !important;
}

.t-colour__backgroundHover--grey:hover, .t-colour__backgroundHover--grey:focus, .t-colour__backgroundHover--grey:active {
  background: rgb(147, 149, 152) !important;
}

.t-colour__border--grey {
  border-color: rgb(147, 149, 152) !important;
}

.t-colour__text--grey_light {
  color: rgb(209, 211, 212) !important;
}

.t-colour__textHover--grey_light:hover, .t-colour__textHover--grey_light:focus, .t-colour__textHover--grey_light:active {
  color: rgb(209, 211, 212) !important;
}

.t-colour__background--grey_light {
  background: rgb(209, 211, 212) !important;
}

.t-colour__backgroundHover--grey_light:hover, .t-colour__backgroundHover--grey_light:focus, .t-colour__backgroundHover--grey_light:active {
  background: rgb(209, 211, 212) !important;
}

.t-colour__border--grey_light {
  border-color: rgb(209, 211, 212) !important;
}

.t-colour__text--grey_dark {
  color: rgb(80, 80, 80) !important;
}

.t-colour__textHover--grey_dark:hover, .t-colour__textHover--grey_dark:focus, .t-colour__textHover--grey_dark:active {
  color: rgb(80, 80, 80) !important;
}

.t-colour__background--grey_dark {
  background: rgb(80, 80, 80) !important;
}

.t-colour__backgroundHover--grey_dark:hover, .t-colour__backgroundHover--grey_dark:focus, .t-colour__backgroundHover--grey_dark:active {
  background: rgb(80, 80, 80) !important;
}

.t-colour__border--grey_dark {
  border-color: rgb(80, 80, 80) !important;
}

.t-colour__text--black {
  color: rgb(0, 0, 0) !important;
}

.t-colour__textHover--black:hover, .t-colour__textHover--black:focus, .t-colour__textHover--black:active {
  color: rgb(0, 0, 0) !important;
}

.t-colour__background--black {
  background: rgb(0, 0, 0) !important;
}

.t-colour__backgroundHover--black:hover, .t-colour__backgroundHover--black:focus, .t-colour__backgroundHover--black:active {
  background: rgb(0, 0, 0) !important;
}

.t-colour__border--black {
  border-color: rgb(0, 0, 0) !important;
}

.t-colour__text--white {
  color: rgb(255, 255, 255) !important;
}

.t-colour__textHover--white:hover, .t-colour__textHover--white:focus, .t-colour__textHover--white:active {
  color: rgb(255, 255, 255) !important;
}

.t-colour__background--white {
  background: rgb(255, 255, 255) !important;
}

.t-colour__backgroundHover--white:hover, .t-colour__backgroundHover--white:focus, .t-colour__backgroundHover--white:active {
  background: rgb(255, 255, 255) !important;
}

.t-colour__border--white {
  border-color: rgb(255, 255, 255) !important;
}

.t-colour__text--success {
  color: rgb(111, 191, 74) !important;
}

.t-colour__textHover--success:hover, .t-colour__textHover--success:focus, .t-colour__textHover--success:active {
  color: rgb(111, 191, 74) !important;
}

.t-colour__background--success {
  background: rgb(111, 191, 74) !important;
}

.t-colour__backgroundHover--success:hover, .t-colour__backgroundHover--success:focus, .t-colour__backgroundHover--success:active {
  background: rgb(111, 191, 74) !important;
}

.t-colour__border--success {
  border-color: rgb(111, 191, 74) !important;
}

.t-colour__text--warning {
  color: rgb(255, 170, 51) !important;
}

.t-colour__textHover--warning:hover, .t-colour__textHover--warning:focus, .t-colour__textHover--warning:active {
  color: rgb(255, 170, 51) !important;
}

.t-colour__background--warning {
  background: rgb(255, 170, 51) !important;
}

.t-colour__backgroundHover--warning:hover, .t-colour__backgroundHover--warning:focus, .t-colour__backgroundHover--warning:active {
  background: rgb(255, 170, 51) !important;
}

.t-colour__border--warning {
  border-color: rgb(255, 170, 51) !important;
}

.t-colour__text--alert {
  color: rgb(169, 0, 0) !important;
}

.t-colour__textHover--alert:hover, .t-colour__textHover--alert:focus, .t-colour__textHover--alert:active {
  color: rgb(169, 0, 0) !important;
}

.t-colour__background--alert {
  background: rgb(169, 0, 0) !important;
}

.t-colour__backgroundHover--alert:hover, .t-colour__backgroundHover--alert:focus, .t-colour__backgroundHover--alert:active {
  background: rgb(169, 0, 0) !important;
}

.t-colour__border--alert {
  border-color: rgb(169, 0, 0) !important;
}/*# sourceMappingURL=main.css.map */