@charset "UTF-8";
/*
Theme Name: RCS
Author: Hybrid Studio Ltd
Author URI: https://thisishybrid.com
Description: Multilingual WordPress theme
Version: 2.1
License: © Copyright Hybrid Studio Ltd


RCS is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Global variables
# Responsive breakpoints
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Sitemap plugin
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: 0; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-list, .slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }

.slick-track:after, .slick-track:before {
  content: "";
  display: table; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }

[dir=rtl] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

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

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

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block; }

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

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible; }

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

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

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

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal; }

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

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

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible; }

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

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

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

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

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

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal; }

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

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

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

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

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

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

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

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

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit; }

html {
  box-sizing: border-box; }

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
  color: #222;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.5; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  clear: both;
  letter-spacing: -0.01em; }

main {
  flex-grow: 1;
  margin-top: 55px; }
  @media (min-width: 992px) {
    main {
      margin-top: 0; } }
  main .content-block-row a {
    word-break: break-word; }
  main .content-block-row h2 {
    margin-bottom: 30px;
    margin-top: 60px; }
    main .content-block-row h2:first-of-type {
      margin-top: 0; }
  main .content-block-row {
    margin-bottom: 60px;
    clear: both; }
    main .content-block-row.sub-page-list {
      width: 100%;
      margin: 0; }
  main h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.7em !important;
    line-height: 1.1em;
    margin: 0 0 20px;
    color: #015562; }
    @media (min-width: 576px) {
      main h2 {
        font-size: 2.2em !important; } }
  main h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-weight: bold;
    font-size: 1.3em;
    color: #015562;
    line-height: 1.2em;
    margin: 30px 0 10px; }
    @media (min-width: 576px) {
      main h3 {
        font-size: 1.4em; } }
  main h4 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-weight: bold;
    font-size: 1.3em;
    color: #015562;
    line-height: 1.4em;
    margin: 30px 0 10px; }
  main ul, main ol {
    margin: 0;
    padding: 0; }
  main .standard-ul ul, main .color-ul ul {
    list-style-type: disc;
    font-size: 1.1em; }
    @media (min-width: 576px) {
      main .standard-ul ul, main .color-ul ul {
        font-size: 1.2em; } }
  main .standard-ul ol, main .color-ul ol {
    list-style-type: decimal;
    font-size: 1.1em; }
    @media (min-width: 576px) {
      main .standard-ul ol, main .color-ul ol {
        font-size: 1.2em; } }
  main .standard-ul ul, main .standard-ul ol, main .color-ul ul, main .color-ul ol {
    margin-top: 10px;
    margin-left: 40px;
    margin-bottom: 30px; }
    main .standard-ul ul 0
li, main .standard-ul ol 0
li, main .color-ul ul 0
li, main .color-ul ol 0
li {
      padding-left: 5px;
      margin-bottom: 13.33333px; }
  main .color-ul li::marker {
    font-weight: 600; }
  main .standard-ul ul ul, main .standard-ul ol ol, main .color-ul ul ul, main .color-ul ol ol {
    margin-left: 30px !important;
    margin-bottom: 0;
    font-size: 1em; }

p {
  margin: 0 0 1em;
  font-size: 1.1em;
  line-height: 1.5em !important; }
  @media (min-width: 576px) {
    p {
      font-size: 1.2em; } }

dfn,
cite,
em,
i {
  font-style: italic; }

blockquote, .blockquote {
  margin: 0 0 20px 0;
  padding: 45px 30px;
  background-color: #E5EEEF;
  border-radius: 30px; }
  @media (min-width: 768px) {
    blockquote, .blockquote {
      padding: 0 40px 30px 125px; } }
  blockquote p, .blockquote p {
    color: #015562;
    font-size: 1.1em;
    line-height: 1.5em !important;
    margin: 0;
    width: fit-content;
    text-align: center;
    margin-bottom: 20px;
    /*
		&:after {
			content: '’';
			display: inline-block;
			margin-left: $small-margin/4;
		}
*/ }
    @media (min-width: 768px) {
      blockquote p, .blockquote p {
        text-align: left; } }
  blockquote:before, .blockquote:before {
    filter: brightness(0) saturate(100%) invert(61%) sepia(8%) saturate(3657%) hue-rotate(140deg) brightness(89%) contrast(76%);
    background-image: url("assets/img/quotemarks.svg");
    background-size: contain;
    background-repeat: no-repeat;
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto 20px; }
    @media (min-width: 768px) {
      blockquote:before, .blockquote:before {
        width: 80px;
        position: relative;
        left: -90px;
        top: 58px;
        margin: 0; } }

address {
  margin: 0 0 1.5em; }

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em; }

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace; }

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help; }

mark,
ins {
  background: #fff9c0;
  text-decoration: none; }

big {
  font-size: 125%; }

/* Elements
--------------------------------------------- */
body {
  background: #fff; }

hr {
  background-color: #015562;
  border: 0;
  height: 2px;
  margin: 60px 0 30px; }

ul,
ol {
  margin: 0 0 1.5em 30px; }

ul {
  list-style: none; }

ol {
  list-style: decimal; }

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em; }

dt {
  font-weight: 600; }

dd {
  margin: 0 1.5em 1.5em; }

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
  width: 800px; }
  @media (min-width: 768px) {
    embed,
    iframe,
    object {
      min-height: 450px; } }

img {
  height: auto;
  max-width: 100%; }

figure {
  margin: 1em 0; }

table {
  margin: 0 0 1.5em;
  width: 100%; }

.content-block-row table, th, td {
  border: 1px solid #999;
  border-collapse: collapse;
  margin-top: 20px; }

th, td {
  padding: 10px;
  font-size: 0.9em; }

/* Links
--------------------------------------------- */
a {
  color: #CC3333;
  transition: 0.3s; }

a:hover,
a:focus,
a:active {
  color: inherit; }

a:focus {
  outline: thin dotted; }

a:hover,
a:active {
  outline: 0; }

.invert a {
  color: inherit; }
  .invert a:hover {
    color: #31A0B1; }

.anchor {
  display: block;
  position: relative;
  top: -170px;
  visibility: hidden; }

.primary, button.primary {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1em;
  text-decoration: none !important;
  text-align: left;
  letter-spacing: 0.02em;
  color: #015562 !important;
  background-color: #FCC547;
  border-radius: 60px !important;
  padding: 24px 30px;
  transition: 0.3s;
  width: 100%;
  text-align: center; }
  @media (min-width: 576px) {
    .primary, button.primary {
      width: auto; } }
  .primary:hover, .primary:focus, button.primary:hover, button.primary:focus {
    background-color: #fff;
    cursor: pointer; }
  .primary.arrow, button.primary.arrow {
    display: inline-block;
    padding-right: 90px !important;
    background-image: url("assets/img/icon-arrow.svg");
    background-position-x: 92%;
    background-position-y: center;
    background-repeat: no-repeat;
    transition: 0.3s;
    background-size: 50px; }
    .primary.arrow:hover, button.primary.arrow:hover {
      background-position-x: 95%; }
    @media (min-width: 992px) {
      .primary.arrow, button.primary.arrow {
        background-position-x: 90%; }
        .primary.arrow:hover, button.primary.arrow:hover {
          background-position-x: 92%; } }

.secondary {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1em;
  text-decoration: none !important;
  text-align: left;
  letter-spacing: 0.02em;
  color: #015562 !important;
  background-color: #FCC547;
  border-radius: 60px !important;
  padding: 24px 30px;
  transition: 0.3s;
  width: 100%;
  color: #fff !important;
  background-color: #015562; }
  @media (min-width: 576px) {
    .secondary {
      width: auto; } }
  .secondary:hover, .secondary:focus {
    background-color: #fff;
    cursor: pointer; }
  .secondary:hover, .secondary:focus {
    background-color: #000; }
  .secondary.light {
    background-color: #31A0B1; }
    .secondary.light:hover, .secondary.light:focus {
      background-color: #000; }
  .secondary.arrow {
    display: inline-block;
    padding-right: 90px !important;
    background-image: url("assets/img/icon-arrow.svg");
    background-position-x: 92%;
    background-position-y: center;
    background-repeat: no-repeat;
    transition: 0.3s;
    background-size: 50px;
    background-image: url("assets/img/icon-arrow-light.svg"); }
    .secondary.arrow:hover {
      background-position-x: 95%; }
    @media (min-width: 992px) {
      .secondary.arrow {
        background-position-x: 90%; }
        .secondary.arrow:hover {
          background-position-x: 92%; } }

.tertiary {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1em;
  text-decoration: none !important;
  text-align: left;
  letter-spacing: 0.02em;
  color: #015562 !important;
  background-color: #FCC547;
  border-radius: 60px !important;
  padding: 24px 30px;
  transition: 0.3s;
  width: 100%;
  color: #fff !important;
  background-color: #45314C; }
  @media (min-width: 576px) {
    .tertiary {
      width: auto; } }
  .tertiary:hover, .tertiary:focus {
    background-color: #fff;
    cursor: pointer; }
  .tertiary:hover, .tertiary:focus {
    background-color: #000; }

.quadriary {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1em;
  text-decoration: none !important;
  text-align: left;
  letter-spacing: 0.02em;
  color: #015562 !important;
  background-color: #FCC547;
  border-radius: 60px !important;
  padding: 24px 30px;
  transition: 0.3s;
  width: 100%;
  color: #fff !important;
  background-color: #45314C;
  background-color: #CC3333 !important; }
  @media (min-width: 576px) {
    .quadriary {
      width: auto; } }
  .quadriary:hover, .quadriary:focus {
    background-color: #fff;
    cursor: pointer; }
  .quadriary:hover, .quadriary:focus {
    background-color: #000; }
  .quadriary:hover, .quadriary:focus {
    background-color: #000 !important; }

.ghost {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1em;
  text-decoration: none !important;
  text-align: left;
  letter-spacing: 0.02em;
  color: #015562 !important;
  background-color: #FCC547;
  border-radius: 60px !important;
  padding: 24px 30px;
  transition: 0.3s;
  width: 100%;
  color: #fff !important;
  background-color: rgba(255, 255, 255, 0);
  text-align: center;
  border-width: 2px;
  border-color: #fff;
  border-style: solid; }
  @media (min-width: 576px) {
    .ghost {
      width: auto; } }
  .ghost:hover, .ghost:focus {
    background-color: #fff;
    cursor: pointer; }
  .ghost:hover, .ghost:focus {
    border-color: #fff;
    background-color: white;
    color: #015562 !important; }
  .ghost.dark {
    color: #015562 !important;
    border-color: #015562;
    background-color: rgba(1, 85, 98, 0); }
    .ghost.dark:hover, .ghost.dark:focus {
      border-color: #015562;
      background-color: #015562;
      color: #fff !important; }
  .ghost.light-on-green:hover, .ghost.light-on-green:focus {
    color: #015562 !important;
    background-color: white !important; }
  .ghost.light-on-purple:hover, .ghost.light-on-purple:focus {
    color: #45314C !important; }
  .ghost.black {
    color: #000 !important;
    border-color: #000;
    background-color: transparent; }
    .ghost.black:hover, .ghost.black:focus {
      border-color: #000;
      background-color: black;
      color: #fff !important; }

.smaller {
  font-size: 0.75em;
  padding: 20px 30px !important; }

.x-small {
  font-size: 0.75em;
  padding: 13.33333px 20px !important; }

button.jumbo-cta {
  font-size: 0.9em;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  padding: 10px 20px 10px 10px !important;
  background-image: none !important; }
  @media (min-width: 576px) {
    button.jumbo-cta {
      font-size: 1.2em;
      padding-right: 100px !important; } }
  button.jumbo-cta:before {
    display: inline-block;
    margin-right: 10px;
    transform: scale(0.6); }
    @media (min-width: 576px) {
      button.jumbo-cta:before {
        margin-right: 10px;
        padding: 20px !important;
        transform: scale(1); } }

button.jumbo-cta.download {
  background-position-x: 93%; }
  @media (min-width: 576px) {
    button.jumbo-cta.download {
      background-image: url("assets/img/icon-arrow-light-download.svg") !important; } }
  button.jumbo-cta.download:hover {
    background-position-y: 60%; }
  button.jumbo-cta.download:before {
    content: url("assets/img/icon-document.svg"); }

@media (min-width: 576px) {
  button.jumbo-cta.book-place {
    background-image: url("assets/img/icon-arrow-light-lrg.svg") !important; } }

button.jumbo-cta.book-place:before {
  content: url("assets/img/icon-calendar.svg"); }

button.jumbo-cta.apply-now {
  background-color: #FCC547; }
  @media (min-width: 576px) {
    button.jumbo-cta.apply-now {
      background-image: url("assets/img/icon-arrow-light-lrg.svg") !important; } }
  button.jumbo-cta.apply-now:before {
    content: url("assets/img/icon-list.svg"); }
  button.jumbo-cta.apply-now:hover {
    background-color: #CC3333; }

a:has( > .feature-link) {
  text-decoration: none !important; }

a .feature-link, .feature-link a, a .cta-1 {
  font-size: 1em;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #000;
  text-align: left;
  text-decoration: none;
  margin: 40px 0;
  background-color: #FCC547;
  padding: 30px 100px 30px 30px;
  width: fit-content;
  border: solid 2px #FCC547;
  border-radius: 50px;
  display: block;
  cursor: pointer;
  background-image: url("assets/img/icon-arrow.svg");
  background-position-x: calc(100% - 30px);
  background-position-y: center;
  background-repeat: no-repeat;
  transition: 0.3s; }
  a .feature-link:hover, a .feature-link:focus, .feature-link a:hover, .feature-link a:focus, a .cta-1:hover, a .cta-1:focus {
    background-color: #fff;
    background-position-x: calc(100% - 20px);
    border: solid 2px #000; }

@media (min-width: 768px) {
  .tile {
    margin-bottom: 0; } }

.tile a {
  color: #222;
  text-decoration: none;
  margin-bottom: 30px;
  position: relative;
  background-color: #E5EEEF;
  /*
			display: flex;
			flex-direction: column;
	*/ }
  @media (min-width: 768px) {
    .tile a {
      margin-bottom: 0; } }
  .tile a .image-wrapper {
    margin-bottom: 6.66667px;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-top: 75%;
    position: relative; }
    .tile a .image-wrapper img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      display: block;
      transition: 0.3s; }
  .tile a .post-category {
    /*
		    position: relative;
		    top: 34px;
		    z-index: 1;
*/ }
    .tile a .post-category ul {
      margin: 0 !important; }
      .tile a .post-category ul li {
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        font-style: normal;
        line-height: 1em;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        text-decoration: none;
        display: inline-block !important;
        color: #015562;
        padding: 10px 0 !important;
        margin-right: 5px;
        width: auto; }
  .tile a .content {
    padding: 10px 20px 30px;
    min-height: 220px; }
  .tile a .post-title {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #015562;
    font-size: 1.5em;
    line-height: 1.1em;
    display: block;
    max-width: 90%;
    padding: 8px 0 20px; }
    @media (min-width: 576px) {
      .tile a .post-title {
        font-size: 1.2em; } }
    @media (min-width: 768px) {
      .tile a .post-title {
        font-size: 1.3em; } }
  .tile a .post-date {
    color: #015562;
    font-size: 1em;
    display: block; }
  .tile a button {
    width: 100%; }
  .tile a:hover .title {
    text-decoration: underline;
    color: #FCC547; }
  .tile a:hover button {
    color: #fff !important;
    background-color: #015562 !important; }
  .tile a:hover .post-title {
    text-decoration: underline;
    color: #015562; }
    .tile a:hover .post-title:after {
      margin-left: 24px; }
  .tile a:hover img {
    transform: scale(1.1);
    transition: 0.3s; }
  .tile a:hover button.arrow {
    background-position-x: 93%; }

.tile.news a {
  background: none; }
  .tile.news a .post-title {
    font-size: 1.4em;
    padding-top: 0;
    padding-bottom: 10px;
    color: #015562;
    transition: 0.3s; }
  .tile.news a:hover .post-title, .tile.news a:focus .post-title {
    color: #31A0B1; }

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 0;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.2;
  padding: 0.6em 1em 0.4em; }

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa; }

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb; }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #333;
  border: 2px solid #ccc;
  border-radius: 0;
  padding: 10px 15px; }

.search-form input[type="search"] {
  border-color: #fff;
  border-color: #eee; }

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111; }

select {
  background-color: white;
  border: solid 2px #015562;
  cursor: pointer;
  display: inline-block;
  font: inherit;
  color: #333;
  line-height: 1.5em;
  padding: 0.5em 3.5em 0.5em 1em;
  width: 100%;
  /* reset */
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat; }

select:focus {
  border-color: #FCC547;
  outline: 0; }

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000; }

textarea {
  width: 100%; }

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
.content-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px; }
  @media (min-width: 576px) {
    .content-wrapper {
      padding: 0 30px; } }

.entry-content .content-wrapper, .page-content .content-wrapper {
  width: auto;
  max-width: 100%;
  margin: 0; }
  @media (min-width: 992px) {
    .entry-content .content-wrapper, .page-content .content-wrapper {
      width: 80%;
      max-width: 900px; } }

.entry-content .content-wrapper:has( > .content-block-row) {
  padding-top: 40px;
  margin-bottom: 120px; }

.entry-content .content-wrapper .content-block-row img {
  border-radius: 30px; }

.entry-content .content-wrapper .content-block-row a img {
  transform: scale(1);
  transition: 0.3s; }
  .entry-content .content-wrapper .content-block-row a img:hover {
    transform: scale(1.02); }

.entry-content .content-wrapper .thumbnail-caption {
  display: block;
  margin: 10px 0 30px; }

.video-wrapper {
  padding: 56.25% 0 0 0;
  position: relative; }

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.two-column {
  display: flex;
  flex-direction: column;
  row-gap: 30px; }
  @media (min-width: 992px) {
    .two-column {
      flex-direction: row;
      gap: 20px; } }
  @media (min-width: 992px) {
    .two-column .left-column, .two-column .right-column {
      width: 50%; } }
  .two-column .left-column img, .two-column .right-column img {
    display: block; }
  .two-column .left-column {
    margin-bottom: 20px; }
    @media (min-width: 992px) {
      .two-column .left-column {
        margin-bottom: 0; } }
    .two-column .left-column .wp-caption {
      margin-bottom: 0; }
  .two-column li {
    display: flex;
    flex-direction: column;
    width: 100%; }

.two-column li {
  /*
			width: 48%;
			max-width: 48%;
*/ }

.two-column li {
  /*
			width: 31.9%;
			max-width: 31.9%;
*/ }
    .two-column li a {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      margin-bottom: 0; }

.two-column-wrapper {
  display: flex;
  flex-direction: column; }
  @media (min-width: 768px) {
    .two-column-wrapper {
      flex-direction: row;
      gap: 30px; } }
  @media (min-width: 768px) {
    .two-column-wrapper .left-column, .two-column-wrapper .right-column {
      width: 50%; } }
  .two-column-wrapper .left-column img, .two-column-wrapper .right-column img {
    display: block; }
  .two-column-wrapper .left-column {
    margin-bottom: 30px; }
    @media (min-width: 768px) {
      .two-column-wrapper .left-column {
        margin-bottom: 0; } }
    .two-column-wrapper .left-column .wp-caption {
      margin-bottom: 0; }

ul.two-column {
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0; }
  @media (min-width: 576px) {
    ul.two-column {
      flex-direction: row; } }
  @media (min-width: 768px) {
    ul.two-column li {
      width: calc(50% - 10px); } }

.three-column {
  display: flex;
  gap: 20px;
  padding: 0;
  flex-wrap: wrap;
  flex-direction: row; }
  .three-column li {
    display: flex;
    flex-direction: column;
    width: 100%; }
    @media (min-width: 768px) {
      .three-column li {
        width: 48%;
        max-width: 48%; } }
    @media (min-width: 992px) {
      .three-column li {
        width: 31.9%;
        max-width: 31.9%; } }
    .three-column li a {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      margin-bottom: 0; }

.four-column {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  flex-direction: row; }
  .four-column li {
    display: flex;
    flex-direction: column;
    flex-grow: 1; }
    @media (min-width: 576px) {
      .four-column li {
        width: 48%; } }
    @media (min-width: 992px) {
      .four-column li {
        max-width: 31%; } }
    @media (min-width: 1260px) {
      .four-column li {
        max-width: 23%; } }
    .four-column li a {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      margin-bottom: 0; }
  .four-column.training_workshops li {
    border: #E5EEEF 2px solid !important;
    width: 100%; }

#additional-featured-links {
  margin: 0 -9999rem 30px !important;
  /* add back negative margin value */
  padding: 60px 9999rem 60px;
  background: rgba(249, 249, 249, 0.5); }
  @media (min-width: 992px) {
    #additional-featured-links {
      margin: 0 -9999rem 90px;
      padding: 20px 9999rem 90px; } }

#additional-form {
  margin: 0 -9999rem 30px !important;
  /* add back negative margin value */
  padding: 60px 9999rem 60px;
  background: #eee;
  flex: auto; }
  @media (min-width: 992px) {
    #additional-form {
      margin: 0 -9999rem 90px;
      padding: 20px 9999rem 90px; } }

.additional-content #featured-links-content {
  padding: 0 30px 120px;
  margin: 0; }
  @media (min-width: 992px) {
    .additional-content #featured-links-content {
      margin: 0 0 120px 0; } }
  .additional-content #featured-links-content h3 {
    margin: 0 0 30px; }
  .additional-content #featured-links-content .three-column li {
    width: auto;
    display: flex;
    align-items: stretch; }
    @media (min-width: 576px) {
      .additional-content #featured-links-content .three-column li {
        width: 48%;
        max-width: 48%;
        margin-bottom: 30px; } }
    @media (min-width: 768px) {
      .additional-content #featured-links-content .three-column li {
        width: 32%;
        max-width: 32%;
        margin-bottom: 30px; } }
    .additional-content #featured-links-content .three-column li a {
      font-size: 0.8em;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-start; }

.additional-content .footer-form {
  padding: 0 30px;
  max-width: 800px;
  margin: 0 0 120px; }

header#masthead {
  background-color: #015562;
  width: 100%;
  position: fixed;
  top: 0;
  margin: 0;
  padding: 0;
  z-index: 999; }
  @media (min-width: 992px) {
    header#masthead {
      position: relative;
      top: auto; } }

header.entry-header {
  background-size: cover;
  background-position: center center;
  position: relative; }
  header.entry-header .two-column {
    padding: 0;
    position: relative;
    z-index: 1; }
    @media (min-width: 1260px) {
      header.entry-header .two-column {
        gap: 0;
        padding: 0 30px; } }
    header.entry-header .two-column .left-column {
      padding: 60px 20px 0; }
      @media (min-width: 576px) {
        header.entry-header .two-column .left-column {
          padding: 30px 40px 30px 30px; } }
      @media (min-width: 1260px) {
        header.entry-header .two-column .left-column {
          padding-left: 0; } }
    header.entry-header .two-column .right-column h1, header.entry-header .two-column .right-column ul li {
      font-size: 1.2em; }
    header.entry-header .two-column .right-column ul li {
      border-bottom: 2px solid #015562; }
      header.entry-header .two-column .right-column ul li a {
        text-decoration: none;
        color: #015562; }
  header.entry-header #breadcrumbs {
    display: none;
    color: #015562; }
    @media (min-width: 576px) {
      header.entry-header #breadcrumbs {
        display: block;
        font-size: 1em;
        margin: 30px 0 0; } }
    header.entry-header #breadcrumbs a {
      color: #015562;
      text-decoration: none;
      border-bottom: solid #015562 2px; }
      header.entry-header #breadcrumbs a:hover {
        color: #000;
        background-color: #FCC547;
        border-color: #000; }
  header.entry-header h1 {
    color: #015562;
    font-size: 2.1em;
    line-height: 1.1em;
    margin-top: 30px; }
    @media (min-width: 576px) {
      header.entry-header h1 {
        margin: 30px 0 50px 0;
        font-size: 3em;
        line-height: 1.1em;
        max-width: 800px; } }
    @media (min-width: 768px) {
      header.entry-header h1 {
        font-size: 4.2em; } }
  header.entry-header .standfirst {
    display: block;
    color: #015562;
    margin-bottom: 60px;
    font-size: 1.1em;
    line-height: 1.5em; }
    @media (min-width: 576px) {
      header.entry-header .standfirst {
        font-size: 1.2em;
        max-width: 650px; } }
  header.entry-header #not-hero h1 {
    margin-top: 30px; }
  @media (min-width: 576px) {
    header.entry-header :has( > #hero) {
      min-height: 250px; } }
  header.entry-header #hero {
    display: flex;
    flex-direction: column; }
    @media (min-width: 576px) {
      header.entry-header #hero a {
        display: inline-block; } }
    header.entry-header #hero button:first-of-type {
      margin-bottom: 20px;
      margin-right: 0; }
      @media (min-width: 576px) {
        header.entry-header #hero button:first-of-type {
          margin-right: 20px;
          margin-bottom: 0; } }
    header.entry-header #hero hr {
      margin-top: 0; }
  header.entry-header #hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #015562;
    mix-blend-mode: multiply; }
    @media (min-width: 992px) {
      header.entry-header #hero-overlay {
        width: 50%; } }

aside {
  margin: 0;
  padding: 40px 20px 0;
  width: 100%; }
  @media (min-width: 576px) {
    aside {
      padding: 40px 30px 30px; } }
  @media (min-width: 992px) {
    aside {
      border: none;
      max-width: 900px;
      width: 80%; } }
  @media (min-width: 1260px) {
    aside {
      width: 27%; } }
  @media (min-width: 1260px) {
    aside.push-up {
      padding-top: 0; } }
  aside.push-down {
    margin-top: 120px; }
    @media (min-width: 992px) {
      aside.push-down {
        width: 36%;
        max-width: 360px; } }
  aside a {
    color: #015562; }
    aside a:hover {
      color: #31A0B1; }
  aside h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.4em;
    font-weight: bold;
    padding: 0;
    margin: 0 0 20px 0; }
    aside h1:after {
      content: "";
      display: block;
      padding-bottom: 10px;
      border-bottom: solid 4px #CC3333;
      width: 100%; }
  aside h2 {
    font-size: 1.1em !important;
    margin: 0; }
  aside .ul {
    padding: 15px 0 0 0;
    margin-bottom: 30px; }
  aside ul {
    list-style: none;
    margin-bottom: 30px; }
    aside ul .current_page_item .children {
      border-left: solid 3px #FCC547; }
    aside ul .children {
      margin: 10px 0 20px 0;
      border-left: solid 3px #666;
      padding: 0 0 0 13.33333px !important; }
      aside ul .children .children {
        padding: 0;
        margin-bottom: 0; }
  aside #sidebar-menu {
    margin-bottom: 60px; }
    aside #sidebar-menu.level-2 {
      display: none; }
      @media (min-width: 1260px) {
        aside #sidebar-menu.level-2 {
          display: block; } }
    aside #sidebar-menu li {
      padding: 10px 15px;
      border-left: solid 2px;
      border-right: solid 2px;
      border-bottom: solid 2px;
      border-color: #015562;
      background-color: #fff; }
      aside #sidebar-menu li:hover {
        transition: 0.3s;
        background-color: #015562; }
        aside #sidebar-menu li:hover a {
          color: #fff !important; }
      aside #sidebar-menu li:first-child {
        border-top: solid 2px;
        border-color: #015562;
        border-radius: 30px 30px 0px 0px;
        padding-top: 15px; }
      aside #sidebar-menu li:last-child {
        border-radius: 0px 0px 30px 30px;
        padding-bottom: 15px; }
      aside #sidebar-menu li a {
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        font-style: normal;
        font-size: 0.9em;
        line-height: 1.36em;
        display: block;
        padding: 6.66667px 0; }
      aside #sidebar-menu li.current_page_item {
        background-color: #015562;
        border-color: #015562 !important; }
      aside #sidebar-menu li.current_page_item a:not(.children a) {
        color: #fff;
        text-decoration: none; }
    aside #sidebar-menu #recent {
      margin-bottom: 60px; }
      aside #sidebar-menu #recent a {
        display: block;
        text-decoration: none;
        font-size: 1em; }
        aside #sidebar-menu #recent a .post-category {
          display: inline-block; }
        aside #sidebar-menu #recent a .post-title {
          display: block;
          font-size: 1.2em;
          line-height: 1.3em;
          margin-bottom: 10px;
          text-decoration: underline; }
    aside #sidebar-menu #categories {
      margin-bottom: 60px; }
    aside #sidebar-menu button {
      width: 100%;
      text-align: center; }
  aside.training-workshop {
    width: 100%;
    max-width: 800px; }
    @media (min-width: 1260px) {
      aside.training-workshop {
        width: 32%; } }
    aside.training-workshop #key-information {
      padding: 20px 30px 30px;
      border: solid #CC3333 4px; }
      aside.training-workshop #key-information h1 {
        color: #CC3333;
        margin-bottom: 30px; }
      aside.training-workshop #key-information p {
        font-size: 1em; }
      aside.training-workshop #key-information button {
        margin-top: 30px; }

footer {
  color: #fff;
  background-color: #000;
  padding: 0 0 50px; }

footer .content-wrapper {
  /*
			display: flex;
			justify-content: space-between;
*/ }
  footer .content-wrapper .first-row {
    display: flex;
    justify-content: space-between;
    margin: 45px 0;
    flex-direction: column;
    gap: 30px; }
    @media (min-width: 768px) {
      footer .content-wrapper .first-row {
        flex-direction: row; } }
    footer .content-wrapper .first-row .footer-branding {
      display: block;
      max-width: 400px;
      /*
				svg {
					width: 100%;
				}
*/ }
    footer .content-wrapper .first-row #live-chat-button a {
      text-decoration: none; }
      @media (min-width: 768px) {
        footer .content-wrapper .first-row #live-chat-button a {
          margin-right: 15px; } }
      footer .content-wrapper .first-row #live-chat-button a button {
        color: #000 !important;
        display: flex;
        align-items: center;
        padding: 15px 30px;
        gap: 10px;
        justify-content: center; }
        footer .content-wrapper .first-row #live-chat-button a button:before {
          content: url("assets/img/icon-live-chat.svg"); }
  footer .content-wrapper .second-row {
    margin-bottom: 45px; }
    footer .content-wrapper .second-row .address {
      max-width: 300px;
      margin-bottom: 20px; }
    footer .content-wrapper .second-row .telephone {
      font-family: "Poppins", sans-serif;
      font-weight: 700;
      font-style: normal; }
  footer .content-wrapper #social {
    width: 100%;
    margin: 60px 0 0; }
    @media (min-width: 576px) {
      footer .content-wrapper #social {
        width: 100%;
        margin: 45px 0 0; } }
    @media (min-width: 992px) {
      footer .content-wrapper #social {
        margin: 0 0 30px;
        width: 40%; } }
    footer .content-wrapper #social ul {
      display: flex;
      align-items: center;
      gap: 25px; }
    footer .content-wrapper #social a {
      border-bottom: none; }
    footer .content-wrapper #social .svg-icon {
      fill: #fff;
      max-width: 50px; }
      footer .content-wrapper #social .svg-icon:hover {
        fill: #FCC547;
        transition: 0.3s; }
  footer .content-wrapper #footer-tertiary ul {
    display: flex;
    flex-direction: column; }
    @media (min-width: 576px) {
      footer .content-wrapper #footer-tertiary ul {
        flex-direction: row; } }
    footer .content-wrapper #footer-tertiary ul li {
      margin-right: 20px; }
      footer .content-wrapper #footer-tertiary ul li a {
        font-size: 0.9em; }
        footer .content-wrapper #footer-tertiary ul li a:hover, footer .content-wrapper #footer-tertiary ul li a:focus {
          color: #FCC547; }
  footer .content-wrapper #site-copyright {
    margin-top: 30px; }
    @media (min-width: 992px) {
      footer .content-wrapper #site-copyright {
        margin-top: 10px; } }
    footer .content-wrapper #site-copyright #copyright {
      font-size: 0.9em;
      display: inline; }
    footer .content-wrapper #site-copyright p {
      font-size: 0.9em;
      margin: 0;
      display: inline; }

#page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: flex-start; }

/* Content Blocks
--------------------------------------------- */
.content-block-row {
  margin-bottom: 30px; }

.featured {
  background-color: #E5EEEF;
  margin: 0 0 30px 0;
  padding: 45px 30px;
  border-radius: 30px; }
  @media (min-width: 576px) {
    .featured {
      padding: 45px 40px; } }
  .featured h2 {
    line-height: 1.2em; }
  .featured p {
    font-size: 1.2em;
    line-height: 1.5em !important;
    margin: 0 0 20px 0;
    /*
		@include sm {
			font-size: 1.8em;
			line-height: 1.2em !important;
		}
*/ }
    .featured p a {
      color: #CC3333; }
      .featured p a:hover {
        color: #015562; }
  .featured .feature-link a, .featured a .feature-link {
    color: #fff;
    background-image: url("assets/img/icon-arrow-light.svg") !important;
    background-color: #015562;
    border: none;
    margin-bottom: 0; }
    .featured .feature-link a:hover, .featured a .feature-link:hover {
      color: #fff;
      background-color: #000; }
  .featured.search {
    padding-top: 45px;
    background-color: #FCC547; }
    .featured.search p {
      font-size: 1.8em;
      font-weight: 600;
      line-height: 1.2em !important;
      color: #015562 !important;
      color: #fff; }
      @media (min-width: 576px) {
        .featured.search p {
          font-size: 2em; } }

.feature-content {
  background-color: #45314C;
  padding-top: 45px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center; }
  .feature-content h2, .feature-content p {
    padding-left: 30px;
    padding-right: 30px; }
    @media (min-width: 576px) {
      .feature-content h2, .feature-content p {
        padding: 0 40px; } }
  .feature-content h2 {
    color: #fff; }
  .feature-content p {
    color: #fff; }
    .feature-content p:last-of-type {
      margin-bottom: 60px; }
  .feature-content a {
    color: #FCC547; }
    .feature-content a:hover {
      color: #fff; }
  .feature-content ul {
    margin: 0 0 45px;
    padding-left: 60px;
    padding-right: 60px;
    font-size: 1.1em !important; }
    @media (min-width: 576px) {
      .feature-content ul {
        font-size: 1.2em !important;
        padding: 0 60px; } }
    .feature-content ul li {
      color: #fff;
      list-style: disc;
      text-align: left;
      margin-bottom: 10px; }
  .feature-content .wp-caption p {
    margin: 13.33333px 0 0;
    padding: 0 0 0 20px; }
  .feature-content img {
    border-radius: 0 !important; }

.download-links li:not(:last-child) {
  margin-bottom: 2px; }

.download-links li a {
  font-size: 0.9em;
  text-decoration: none;
  line-height: 1.25em;
  padding: 20px;
  background-color: rgba(49, 160, 177, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center; }
  @media (min-width: 576px) {
    .download-links li a {
      flex-wrap: nowrap;
      padding: 30px;
      justify-content: space-between; } }
  .download-links li a:hover {
    background-color: rgba(49, 160, 177, 0.3);
    cursor: pointer;
    transition: 0.3s;
    color: inherit; }
  .download-links li a .left {
    margin-bottom: 10px;
    border: none !important;
    width: 100%; }
    @media (min-width: 576px) {
      .download-links li a .left {
        margin-bottom: 0;
        width: 70%; } }

.download-links .right {
  position: relative;
  text-decoration: underline; }

.download-links span {
  display: block; }

.download-links .title {
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal; }

.accordion.download-links .accordion-content-panel {
  padding: 0; }

.content-block-row.footnote {
  padding-top: 20px;
  border-top: 2px solid #31A0B1;
  margin-top: 30px;
  line-height: 1em; }
  .content-block-row.footnote h1, .content-block-row.footnote p {
    font-size: 0.8em;
    line-height: 0;
    display: inline; }
  .content-block-row.footnote h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal; }

.sub-page-list {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px; }
  @media (min-width: 576px) {
    .sub-page-list {
      padding: 0 30px; } }
  .sub-page-list #categories {
    margin-bottom: 40px; }
    .sub-page-list #categories ul {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 10px; }
      .sub-page-list #categories ul li {
        display: flex; }
  .sub-page-list .news-home {
    margin-bottom: 120px; }

/*--------------------------------------------------------------
# Gravity Forms
--------------------------------------------------------------*/
.gform_wrapper .gform_heading h2.gform_title {
  display: none !important; }

.gform_wrapper .gfield_label {
  color: #fff !important;
  font-size: 1em !important;
  font-weight: 700 !important; }
  .gform_wrapper .gfield_label .gfield_required {
    font-size: 16px !important;
    font-weight: 200;
    color: #fff !important; }

.gform_wrapper .gform-field-label--type-sub, .gform_wrapper .gfield_description {
  color: #fff !important;
  font-size: 0.9em !important; }

.gform_wrapper .invert .gfield_label, .gform_wrapper .invert .gform-field-label--type-sub, .gform_wrapper .invert .gfield_description {
  color: #015562 !important; }
  .gform_wrapper .invert .gfield_label .gfield_required, .gform_wrapper .invert .gform-field-label--type-sub .gfield_required, .gform_wrapper .invert .gfield_description .gfield_required {
    color: #015562 !important; }

.gform_wrapper input[type="text"], .gform_wrapper input[type="email"], .gform_wrapper input[type="url"], .gform_wrapper input[type="password"], .gform_wrapper input[type="search"], .gform_wrapper input[type="number"], .gform_wrapper input[type="tel"], .gform_wrapper input[type="range"], .gform_wrapper input[type="date"], .gform_wrapper input[type="month"], .gform_wrapper input[type="week"], .gform_wrapper input[type="time"], .gform_wrapper input[type="datetime"], .gform_wrapper input[type="datetime-local"], .gform_wrapper input[type="color"], .gform_wrapper textarea {
  border-radius: 10px !important;
  font-size: 0.9em !important;
  border: none;
  padding-top: 24px !important;
  padding-bottom: 24px !important; }

.gform_wrapper .gform_button {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1em;
  text-decoration: none !important;
  text-align: left;
  letter-spacing: 0.02em;
  color: #015562 !important;
  background-color: #FCC547;
  border-radius: 60px !important;
  padding: 24px 30px;
  transition: 0.3s;
  width: 100%;
  font-weight: 600 !important;
  font-size: 1em !important;
  padding: 24px 30px !important;
  color: #fff !important;
  border: solid #fff 2px !important;
  background: rgba(255, 255, 255, 0) !important; }
  @media (min-width: 576px) {
    .gform_wrapper .gform_button {
      width: auto; } }
  .gform_wrapper .gform_button:hover, .gform_wrapper .gform_button:focus {
    background-color: #fff;
    cursor: pointer; }
  .gform_wrapper .gform_button:hover, .gform_wrapper .gform_button:focus {
    color: #45314C !important;
    background: white !important;
    cursor: pointer !important; }

.gform_wrapper .gform_validation_errors {
  box-shadow: none !important;
  border-radius: 20px !important;
  border: none !important;
  background-color: #CC3333 !important;
  padding: 20px !important; }
  .gform_wrapper .gform_validation_errors h2.gform_submission_error {
    margin: 0 !important;
    font-size: 1em !important;
    color: #fff !important;
    line-height: 26px !important;
    text-align: center; }
  .gform_wrapper .gform_validation_errors .gform-icon--circle-error {
    display: none !important; }
  .gform_wrapper .gform_validation_errors ol {
    color: #fff;
    padding-left: 30px !important;
    font-size: 16px !important;
    list-style: '–' !important; }
    .gform_wrapper .gform_validation_errors ol li {
      color: #fff;
      padding-left: 10px; }
      .gform_wrapper .gform_validation_errors ol li a {
        color: inherit; }

.gform_wrapper .validation_message {
  text-transform: none; }

.gform_wrapper .gform_fields {
  row-gap: 30px !important; }

.gform_wrapper.gform-theme--framework .gfield--type-choice .gfield_radio {
  flex-direction: row !important;
  flex-wrap: wrap; }

.gform_wrapper .gform_footer {
  position: relative;
  /*
		.gform_ajax_spinner {
			position: absolute;
			top: $standard-margin/2;
			left: 50%;
			transform: translateX(-50%);

		}
*/ }
  .gform_wrapper .gform_footer input.disabled {
    background-color: #666; }

.gform_wrapper .gform_confirmation_message {
  font-size: 1em;
  text-align: center;
  background: #FCC547;
  padding: 60px 30px;
  border-radius: 30px;
  color: #222; }
  .gform_wrapper .gform_confirmation_message h2 {
    color: #222 !important; }

.gform-theme--foundation .gfield textarea {
  padding: 15px !important; }

.gform-theme--foundation .gfield select {
  font-size: 0.888888em !important;
  border-radius: 10px; }

.gform-theme--framework .gfield_error input[type]:where(:not(.gform-text-input-reset):not([type=hidden])):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.gform-theme--framework .gfield_error textarea:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
  border: solid #CC3333 4px !important; }

.gform-theme--framework .gform-field-label--type-inline:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
  color: #fff !important;
  font-size: 1em !important; }

#contact-form-inverted .gform_wrapper .gfield_label {
  color: #015562 !important; }

#contact-form-inverted .gform_wrapper .gform_button {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1em;
  text-decoration: none !important;
  text-align: left;
  letter-spacing: 0.02em;
  color: #015562 !important;
  background-color: #FCC547;
  border-radius: 60px !important;
  padding: 24px 30px;
  transition: 0.3s;
  width: 100%;
  color: #fff !important;
  background-color: #015562;
  color: #fff !important;
  background: #015562 !important; }
  @media (min-width: 576px) {
    #contact-form-inverted .gform_wrapper .gform_button {
      width: auto; } }
  #contact-form-inverted .gform_wrapper .gform_button:hover, #contact-form-inverted .gform_wrapper .gform_button:focus {
    background-color: #fff;
    cursor: pointer; }
  #contact-form-inverted .gform_wrapper .gform_button:hover, #contact-form-inverted .gform_wrapper .gform_button:focus {
    background-color: #000; }
  #contact-form-inverted .gform_wrapper .gform_button:hover, #contact-form-inverted .gform_wrapper .gform_button:focus {
    color: #015562 !important;
    background-color: #fff !important; }

#contact-form-inverted .gform_validation_errors {
  background-color: #fff; }
  #contact-form-inverted .gform_validation_errors h2.gform_submission_error {
    color: red !important; }
  #contact-form-inverted .gform_validation_errors ol {
    color: red; }
    #contact-form-inverted .gform_validation_errors ol li {
      color: red; }
      #contact-form-inverted .gform_validation_errors ol li a {
        color: inherit; }

#contact-form-inverted .gform_confirmation_wrapper {
  color: #015562 !important; }

img.gform_ajax_spinner {
  position: fixed !important;
  z-index: 999999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block !important;
  overflow: hidden !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(34, 34, 34, 0.7);
  background-image: url('data:image/svg+xml,<svg width="24" height="24" stroke="%23fff" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g><circle cx="12" cy="12" r="9.5" fill="none" stroke-width="3" stroke-linecap="round"><animate attributeName="stroke-dasharray" dur="1.5s" calcMode="spline" values="0 150;42 150;42 150;42 150" keyTimes="0;0.475;0.95;1" keySplines="0.42,0,0.58,1;0.42,0,0.58,1;0.42,0,0.58,1" repeatCount="indefinite"/><animate attributeName="stroke-dashoffset" dur="1.5s" calcMode="spline" values="0;-16;-59;-59" keyTimes="0;0.475;0.95;1" keySplines="0.42,0,0.58,1;0.42,0,0.58,1;0.42,0,0.58,1" repeatCount="indefinite"/></circle><animateTransform attributeName="transform" type="rotate" dur="2s" values="0 12 12;360 12 12" repeatCount="indefinite"/></g></svg>');
  background-repeat: no-repeat;
  background-size: 4rem;
  background-position: center center;
  content: ""; }

div.carousel-text {
  /*
	border: 2px solid $accent-color-1;
	padding: $small-margin / 2 $standard-margin $standard-margin;

	@include md {
		padding: $small-margin / 2 $small-margin * 2 $small-margin * 2;
	}
*/ }
  div.carousel-text .blockquote {
    padding-bottom: 45px; }
  div.carousel-text .blockquote:after {
    margin-top: 30px; }
  div.carousel-text .quote p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.1em;
    line-height: 1.1em;
    margin-bottom: 10px !important; }
    @media (min-width: 768px) {
      div.carousel-text .quote p {
        margin-bottom: 20px; } }
  div.carousel-text .attribute {
    color: #015562;
    display: block;
    margin-top: 20px;
    font-size: 1.1em;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal; }
  div.carousel-text .position {
    font-size: 1.1em;
    color: #015562;
    display: block; }
  div.carousel-text .attribute, div.carousel-text .position, div.carousel-text .slick-dots {
    text-align: center; }
    @media (min-width: 768px) {
      div.carousel-text .attribute, div.carousel-text .position, div.carousel-text .slick-dots {
        text-align: left; } }
  div.carousel-text .slick-dots {
    margin-bottom: 30px;
    position: relative; }

/* Dots */
.slick-dotted.slick-slider {
  /*
	display: flex;
	flex-direction: row;
*/ }

.slick-dots {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center; }

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 20px;
  padding: 0;
  cursor: pointer; }

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent; }

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none; }

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  content: '●';
  top: -1px;
  opacity: 1; }

.slick-dots li button:before {
  font-size: 60px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: -15px;
  width: 20px;
  height: 20px;
  content: '○';
  text-align: center;
  color: #015562;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.slick-dots li.slick-active button:before {
  content: '●';
  top: -1px;
  color: #015562; }

.accordion-content {
  margin: 0;
  padding: 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333; }

.accordion-content h3 {
  margin: 0;
  padding: 0; }

.accordion-content.focus h3 {
  background-color: #f9f9f9; }

.accordion-content > * + * {
  border-top: 1px solid #d1d1d1; }

.accordion-content-trigger {
  background: none;
  color: #212121;
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  padding: 1em;
  position: relative;
  text-align: left;
  width: 100%;
  outline: none; }
  @media (min-width: 576px) {
    .accordion-content-trigger {
      padding: 1em 1.5em; } }

.accordion-content-trigger:focus,
.accordion-content-trigger:hover {
  background: #E5EEEF;
  cursor: pointer; }

button {
  border-style: none; }

.accordion-content button::-moz-focus-inner {
  border: 0; }

.accordion-content-title {
  display: block;
  pointer-events: none;
  border: transparent 2px solid;
  border-radius: 5px;
  padding: 0.25em 30px 0.25em 0;
  outline: none;
  line-height: 1.2em; }

.accordion-content-trigger:focus .accordion-content-title {
  border-color: #79adfb; }

.accordion-content-icon {
  border: solid #333;
  border-width: 0 2px 2px 0;
  height: 0.5rem;
  pointer-events: none;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 0.5rem; }
  @media (min-width: 576px) {
    .accordion-content-icon {
      right: 2em; } }

.accordion-content-trigger:focus .accordion-content-icon,
.accordion-content-trigger:hover .accordion-content-icon {
  border-color: #333; }

.accordion-content-trigger[aria-expanded="true"] .accordion-content-icon {
  transform: translateY(-50%) rotate(-135deg); }

.accordion-content-panel {
  margin: 0;
  padding: 1em 1.5em; }

/* For Edge bug https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/4806035/ */
.accordion-content-panel[hidden] {
  display: none; }

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

input {
  border: 1px solid #9e9e9e;
  border-radius: 0.3em;
  display: block;
  font-size: inherit;
  padding: 0.3em 0.5em; }

#search-locations {
  padding: 30px 30px;
  background-color: #eee;
  /*
	input {
		width: 100%;
	}
*/ }

.search-form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px; }
  @media (min-width: 576px) {
    .search-form {
      flex-direction: row; } }
  .search-form label, .search-form input {
    flex-grow: 1; }
  .search-form input[type="search"] {
    width: 100%;
    font-size: 1.2em;
    padding: 24px;
    border-radius: 10px;
    border-color: #015562; }
  .search-form input[type="submit"] {
    color: #fff !important;
    background-color: #015562;
    border: none;
    text-align: center;
    padding: 24px !important; }
    .search-form input[type="submit"]:hover, .search-form input[type="submit"]:focus {
      background-color: #000;
      cursor: pointer; }
  @media (min-width: 576px) {
    .search-form .search-submit {
      max-width: 200px; } }

.search-results .page-content .content-wrapper {
  width: auto;
  max-width: 1000px; }

.acf-map {
  width: 100%;
  height: 350px;
  margin: 0; }
  @media (min-width: 768px) {
    .acf-map {
      height: 650px; } }
  .acf-map img {
    max-width: inherit !important; }
  .acf-map .gm-style-iw-t button {
    top: 5px !important;
    right: 20px !important;
    width: 30px !important;
    height: 30px !important; }
    .acf-map .gm-style-iw-t button img {
      width: 24px !important;
      height: 24px !important; }
  .acf-map .gm-style .gm-style-iw-c {
    border-radius: 0; }
  .acf-map .gm-style-iw-d {
    padding: 6.66667px 20px 20px 10px;
    font-size: 1.2em;
    line-height: 1.6em;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    max-width: 370px; }
    .acf-map .gm-style-iw-d h4 {
      margin: 0; }
    .acf-map .gm-style-iw-d .address {
      line-height: 1.3em;
      margin-bottom: 10px; }
    .acf-map .gm-style-iw-d .notes {
      color: #666; }
    .acf-map .gm-style-iw-d .details {
      margin-top: 5px; }

.phone, .email, .website {
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: 0 5px;
  padding-left: 24px; }
  .phone .details, .email .details, .website .details {
    display: block; }
  .phone .notes, .email .notes, .website .notes {
    font-size: 0.8em;
    display: block; }

.phone {
  background-image: url("assets/img/icon-phone.svg");
  color: #FCC547; }

.email {
  background-image: url("assets/img/icon-email.svg"); }

.website {
  background-image: url("assets/img/icon-external-link.svg"); }

.location-list ul {
  margin: 0; }
  .location-list ul li {
    margin-bottom: 120px; }
    .location-list ul li ul li {
      margin-bottom: 60px; }

.location-list h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding-bottom: 10px;
  border-bottom: 4px solid; }

.location-list h4 {
  margin: 40px 0 10px; }

.location-list .address {
  margin-bottom: 20px; }

.location-list .notes {
  margin: 5px 0 20px; }

.location-list .phone, .location-list .email, .location-list .website {
  background-size: 22px;
  padding-left: 38px; }

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
.main-navigation {
  display: none; }
  @media (min-width: 1260px) {
    .main-navigation {
      display: block;
      width: 100%; } }

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding-left: 0; }
  @media (min-width: 1260px) {
    .main-navigation ul {
      display: flex; } }
  .main-navigation ul.menu .menu-item-has-children a {
    padding-right: 20px !important;
    background-image: url("assets/img/menu-arrow.svg");
    background-repeat: no-repeat;
    background-position: right center; }
  .main-navigation ul.sub-menu .menu-item a {
    background-image: none; }

.main-navigation ul li.menu-item {
  display: none; }
  @media (min-width: 1260px) {
    .main-navigation ul li.menu-item {
      display: list-item; } }

.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999; }

.main-navigation ul ul ul {
  left: -999em;
  top: 0; }

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  display: block;
  left: auto; }

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto; }

.main-navigation ul li:last-of-type:hover > ul,
.main-navigation ul li:last-of-type.focus > ul {
  right: 0; }

.main-navigation li {
  position: relative; }

.main-navigation a {
  display: block;
  text-decoration: none; }

.content-wrapper:has(#logo-wrapper) {
  display: flex;
  flex-direction: row;
  justify-content: space-between; }

#logo-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-content: center; }

.site-branding {
  flex-wrap: wrap;
  align-content: center;
  max-height: 80%;
  display: flex; }
  @media (min-width: 768px) {
    .site-branding {
      max-height: 80%; } }
  @media (min-width: 1260px) {
    .site-branding {
      max-width: 280px; } }
  .site-branding.sml {
    display: block;
    height: 50%; }
    @media (min-width: 1260px) {
      .site-branding.sml {
        display: none; } }
  .site-branding.lrg {
    display: none; }
    @media (min-width: 1260px) {
      .site-branding.lrg {
        display: block;
        height: 60%; } }
  .site-branding a {
    display: block;
    height: 100%; }
    .site-branding a svg {
      display: block;
      width: auto;
      height: 100%; }
      .site-branding a svg path {
        transition: 0.3s; }
    .site-branding a:hover svg path {
      fill: #FCC547; }

#large-menu {
  display: none; }
  @media (min-width: 1260px) {
    #large-menu {
      display: flex;
      flex-direction: column;
      margin: 0;
      padding: 0; } }
  #large-menu #search-bar-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    margin-top: 20px; }
    #large-menu #search-bar-wrapper #live-chat-button a {
      text-decoration: none; }
      #large-menu #search-bar-wrapper #live-chat-button a button {
        color: #000 !important;
        display: flex;
        align-items: center;
        padding: 15px 30px;
        gap: 10px; }
        #large-menu #search-bar-wrapper #live-chat-button a button:before {
          content: url("assets/img/icon-live-chat.svg"); }

/* Primary navigation
--------------------------------------------- */
#primary-navigation {
  display: flex;
  justify-content: flex-end; }
  #primary-navigation ul#primary-menu {
    justify-content: flex-end;
    gap: 20px;
    position: relative; }
  #primary-navigation li {
    position: static; }
    #primary-navigation li a {
      font-family: "Poppins", sans-serif;
      font-weight: 600;
      font-style: normal;
      font-size: 1em;
      line-height: 1.2em;
      color: #fff;
      padding: 28px 0;
      position: static; }
      #primary-navigation li a:hover {
        color: #FCC547; }
    #primary-navigation li:hover > a {
      color: #FCC547; }
  #primary-navigation li.emphasis a {
    color: #FCC547; }
  #primary-navigation li.two-column ul {
    column-count: 2;
    column-gap: 20px; }
  #primary-navigation ul .sub-menu {
    background-color: #fff;
    padding: 0;
    margin-top: -17px;
    display: block;
    column-count: 1;
    column-gap: 0; }
    #primary-navigation ul .sub-menu li {
      position: relative; }
    #primary-navigation ul .sub-menu a {
      font-size: 0.8em;
      color: #015562;
      font-family: "Poppins", sans-serif;
      font-weight: 600;
      font-style: normal;
      padding: 15px;
      border-bottom: solid rgba(1, 85, 98, 0.3) 2px;
      min-width: 250px;
      /*
			display: inline-block;
			width: 100%;
*/ }
      #primary-navigation ul .sub-menu a:hover {
        color: #000;
        border-bottom: solid #FCC547 2px;
        filter: inherit;
        background-color: #FCC547; }
  #primary-navigation ul ul li:hover > ul {
    left: 100%; }
  #primary-navigation ul ul .sub-menu {
    width: fit-content;
    border: none;
    margin: 0; }

/* Secondary navigation (Search bar above Primary)
--------------------------------------------- */
.secondary-navigation {
  display: none; }
  @media (min-width: 576px) {
    .secondary-navigation {
      display: flex;
      flex-direction: row; } }
  .secondary-navigation ul.menu {
    display: flex;
    margin: 0 20px;
    padding: 0; }
    .secondary-navigation ul.menu li a {
      color: #fff;
      text-decoration: none;
      font-weight: 400;
      padding: 20px 30px;
      display: block; }
      .secondary-navigation ul.menu li a:hover, .secondary-navigation ul.menu li a:focus {
        background-color: rgba(255, 255, 255, 0) !important; }
    .secondary-navigation ul.menu li.ghost {
      padding: 0; }
      .secondary-navigation ul.menu li.ghost a {
        padding: 20px 30px; }
        .secondary-navigation ul.menu li.ghost a:hover, .secondary-navigation ul.menu li.ghost a:focus {
          color: #015562;
          background-color: #fff; }
    .secondary-navigation ul.menu li.search a {
      display: flex;
      align-items: center;
      padding: 18.18182px 30px 18.18182px 20px;
      gap: 10px; }
      .secondary-navigation ul.menu li.search a:before {
        content: url("assets/img/icon-search.svg");
        position: relative;
        top: 5px; }
      .secondary-navigation ul.menu li.search a:hover:before {
        filter: brightness(0) saturate(100%) invert(22%) sepia(37%) saturate(2651%) hue-rotate(158deg) brightness(96%) contrast(99%); }
  .secondary-navigation .wpml-ls-legacy-list-horizontal {
    padding: 0;
    border: 0;
    clear: none; }
    .secondary-navigation .wpml-ls-legacy-list-horizontal ul li.wpml-ls-item {
      display: flex; }
      .secondary-navigation .wpml-ls-legacy-list-horizontal ul li.wpml-ls-item a {
        display: initial;
        color: #fff;
        padding: 25px 30px; }
        .secondary-navigation .wpml-ls-legacy-list-horizontal ul li.wpml-ls-item a:hover {
          color: #FCC547; }

/*
.wpml-ls-item a {
	padding: 0;
	margin: $small-margin 0;
	@include xl {
		margin: $small-margin*1.8 0 $standard-margin $small-margin;	
	}

	&:hover .wpml-ls-flag {
		border: solid 2px $primary-color;
	}
	.wpml-ls-flag {
		border: solid 2px $grey-light;
		height: 30px;
		transition: $transition;
	}
}
*/
/*
.search {
	display: none;
	@include xl {
		display: block;
		padding: $small-margin*2;
		border-left: solid $grey-light 2px;
	}
	&:hover {
		background-color: $secondary-color;
		border-left: solid $secondary-color 2px;
	}
	input {
		border: none;
		opacity: 0.4;
		transition: $transition;
		border-radius: 0;
		padding: 0;
	    position: relative;
		opacity: 1;
		&:hover {
			@include orangefilter();
		}
	}
}
*/
/* Small menu / Mobile navigation
--------------------------------------------- */
#small-menu {
  float: right; }
  @media (min-width: 1260px) {
    #small-menu {
      display: none; } }
  #small-menu button {
    cursor: pointer; }
  #small-menu li.emphasis {
    padding: 0; }
    #small-menu li.emphasis a {
      color: #fff;
      border: 2px solid #fff;
      padding: 20px 15px;
      text-align: center;
      width: 95%;
      position: absolute;
      bottom: -90px; }
      #small-menu li.emphasis a:hover {
        background-color: #fff;
        border: 2px solid #fff;
        color: #FCC547; }

.rmp_menu_trigger {
  top: 0px !important;
  right: -15px !important; }
  @media (min-width: 768px) {
    .rmp_menu_trigger {
      right: 00px !important; } }

.responsive-menu-pro-inner {
  border-radius: 0 !important; }
  .responsive-menu-pro-inner:before {
    border-radius: 0 !important; }
  .responsive-menu-pro-inner:after {
    border-radius: 0 !important; }

.rmp-menu-open {
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.2); }

ul.rmp-menu .rmp-menu-item {
  padding: 10px 0; }

.rmp-menu-item-link {
  color: #015562 !important;
  line-height: 30px !important; }
  .rmp-menu-item-link:hover {
    color: #CC3333 !important; }

ul.rmp-menu .rmp-menu-top-level-item {
  border-bottom: solid 2px rgba(1, 85, 98, 0.2); }

ul.rmp-submenu {
  margin-top: 10px !important; }
  ul.rmp-submenu .rmp-menu-item {
    padding: 0; }
    ul.rmp-submenu .rmp-menu-item a {
      padding-left: 0 !important; }

.rmp-menu-subarrow {
  right: -4px !important;
  transform: scale(0.6); }
  @media (min-width: 768px) {
    .rmp-menu-subarrow {
      right: 22px !important; } }

/* Footer navigation
--------------------------------------------- */
.footer-navigation ul {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0; }

.footer-navigation li {
  margin-bottom: 20px; }
  @media (min-width: 576px) {
    .footer-navigation li {
      margin-bottom: 10px; } }

/* Feature content panels (using feature_panel CPT)
----------------------------------------------*/
#feature-content-panels ul {
  margin-bottom: 40px; }
  #feature-content-panels ul li {
    margin-bottom: 30px; }
  #feature-content-panels ul .feature-content-panel {
    background-color: #45314C;
    margin: 0;
    flex-direction: column-reverse; }
    #feature-content-panels ul .feature-content-panel a {
      color: #FCC547;
      font-weight: 600; }
      #feature-content-panels ul .feature-content-panel a:hover {
        color: #fff; }
    @media (min-width: 992px) {
      #feature-content-panels ul .feature-content-panel.right .two-column {
        flex-direction: row-reverse; } }
    #feature-content-panels ul .feature-content-panel.yellow {
      background-color: #FCC547; }
      #feature-content-panels ul .feature-content-panel.yellow h2, #feature-content-panels ul .feature-content-panel.yellow .text {
        color: #000 !important; }
      #feature-content-panels ul .feature-content-panel.yellow a {
        color: #000; }
        #feature-content-panels ul .feature-content-panel.yellow a:hover {
          color: #CC3333; }
    #feature-content-panels ul .feature-content-panel.green {
      background-color: #015562; }
    #feature-content-panels ul .feature-content-panel .two-column {
      max-width: 1440px;
      margin: 0 auto;
      gap: 0; }
      #feature-content-panels ul .feature-content-panel .two-column .left-column {
        display: flex; }
      #feature-content-panels ul .feature-content-panel .two-column img {
        display: flex;
        width: 100%;
        object-fit: cover; }
    #feature-content-panels ul .feature-content-panel .text-content {
      padding: 30px 30px 60px;
      display: flex;
      flex-direction: column; }
      @media (min-width: 576px) {
        #feature-content-panels ul .feature-content-panel .text-content {
          padding: 60px; } }
      #feature-content-panels ul .feature-content-panel .text-content h2 {
        text-align: left;
        font-size: 2.2em !important;
        color: #fff; }
        @media (min-width: 576px) {
          #feature-content-panels ul .feature-content-panel .text-content h2 {
            font-size: 2.5em !important; } }
      #feature-content-panels ul .feature-content-panel .text-content .text {
        display: block;
        color: #fff;
        margin-bottom: 50px;
        flex-grow: 1; }
        #feature-content-panels ul .feature-content-panel .text-content .text ul {
          font-size: 1.2em;
          line-height: 1.4em !important;
          list-style: disc;
          margin-left: 30px; }
          #feature-content-panels ul .feature-content-panel .text-content .text ul li {
            margin-bottom: 10px; }
            #feature-content-panels ul .feature-content-panel .text-content .text ul li::marker {
              color: #31A0B1; }

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
  margin: 0 0 1.5em; }

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex; }

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  flex: 1 0 50%; }

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  flex: 1 0 50%; }

/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block; }

.post,
.page {
  margin: 0; }

.updated:not(.published) {
  display: none; }

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
  padding: 0 0 60px; }
  @media (min-width: 992px) {
    .page-content,
    .entry-content,
    .entry-summary {
      padding: 60px 0 60px; } }

.entry-content {
  padding-bottom: 0; }
  @media (min-width: 992px) {
    .entry-content {
      padding-top: 0;
      padding-bottom: 40px; } }

.post-date {
  text-transform: none;
  display: inline-block; }

.post-category ul {
  margin: 0 !important;
  padding: 0 !important; }
  .post-category ul li {
    list-style: none;
    max-width: none;
    display: inline-block;
    padding-left: 0 !important; }

.post-category a {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-block !important;
  color: #015562;
  padding: 10px 0 !important;
  margin-right: 5px;
  width: auto; }
  .post-category a:hover {
    color: #015562;
    background-color: rgba(1, 85, 98, 0); }

.single .entry-content .post-thumbnail {
  margin-bottom: 20px; }

.single .entry-content .content-wrapper {
  max-width: 800px; }
  .single .entry-content .content-wrapper .image-wrapper {
    line-height: 0; }
  .single .entry-content .content-wrapper #post-content {
    padding-right: 0; }

.page-content, .entry-content {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column; }
  @media (min-width: 992px) {
    .page-content, .entry-content {
      margin: 0 auto;
      max-width: 1440px;
      flex-direction: row;
      justify-content: space-between; } }

.page-links {
  clear: both;
  margin: 0 0 1.5em; }

.post-navigation, .posts-navigation, .pagination {
  margin: 30px 0 120px !important; }

.posts-navigation a, .pagination a, .pagination .current, .next, .prev {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1em;
  text-decoration: none !important;
  text-align: left;
  letter-spacing: 0.02em;
  color: #015562 !important;
  background-color: #FCC547;
  border-radius: 60px !important;
  padding: 24px 30px;
  transition: 0.3s;
  width: 100%;
  color: #fff !important;
  background-color: rgba(255, 255, 255, 0);
  text-align: center;
  border-width: 2px;
  border-color: #fff;
  border-style: solid;
  display: inline-block;
  color: #015562 !important;
  border-color: #015562;
  padding: 30px !important; }
  @media (min-width: 576px) {
    .posts-navigation a, .pagination a, .pagination .current, .next, .prev {
      width: auto; } }
  .posts-navigation a:hover, .posts-navigation a:focus, .pagination a:hover, .pagination a:focus, .pagination .current:hover, .pagination .current:focus, .next:hover, .next:focus, .prev:hover, .prev:focus {
    background-color: #fff;
    cursor: pointer; }
  .posts-navigation a:hover, .posts-navigation a:focus, .pagination a:hover, .pagination a:focus, .pagination .current:hover, .pagination .current:focus, .next:hover, .next:focus, .prev:hover, .prev:focus {
    border-color: #fff;
    background-color: white;
    color: #015562 !important; }
  .posts-navigation a:hover, .pagination a:hover, .pagination .current:hover, .next:hover, .prev:hover {
    color: #fff !important;
    background-color: #015562;
    border-color: #015562; }

.pagination {
  border-top: solid 7px #31A0B1; }
  .pagination ul {
    position: relative;
    padding-top: 30px;
    text-align: center; }
    .pagination ul li {
      display: inline; }
      .pagination ul li a:not(.prev, .next) {
        display: inline-block;
        text-align: center;
        font-size: 1em;
        min-width: 91px; }
        .pagination ul li a:not(.prev, .next):hover {
          border-color: #015562;
          color: #fff !important;
          background-color: #015562; }
      .pagination ul li a:hover {
        cursor: pointer; }
      .pagination ul li .prev, .pagination ul li .next {
        border: solid 2px #015562;
        width: auto !important;
        text-align: center;
        display: block; }
        .pagination ul li .prev:hover, .pagination ul li .next:hover {
          color: #fff !important;
          background-color: #015562;
          border: solid 2px #015562; }
      .pagination ul li .prev {
        display: block;
        width: fit-content;
        margin-bottom: 20px; }
        @media (min-width: 576px) {
          .pagination ul li .prev {
            position: absolute;
            left: 0;
            margin-top: 0;
            margin-bottom: 10px; } }
      .pagination ul li .next {
        display: block;
        margin-top: 20px;
        width: fit-content; }
        @media (min-width: 576px) {
          .pagination ul li .next {
            margin-top: 0;
            position: absolute;
            right: 0;
            top: 30px; } }
      .pagination ul li .current {
        color: #fff !important;
        background-color: #015562;
        display: inline-block;
        text-align: center;
        min-width: 91px;
        font-size: 1em;
        transition: 0.3s; }
        .pagination ul li .current:hover {
          border-color: #000;
          color: #fff !important;
          background-color: #000;
          cursor: pointer; }

.post-navigation .nav-links {
  padding-top: 30px;
  gap: 20px;
  flex-wrap: wrap; }
  @media (min-width: 576px) {
    .post-navigation .nav-links {
      flex-wrap: nowrap;
      justify-content: space-between; } }
  .post-navigation .nav-links .nav-previous {
    margin-right: auto; }
  .post-navigation .nav-links .nav-next {
    margin-left: auto; }
  .post-navigation .nav-links .nav-previous, .post-navigation .nav-links .nav-next {
    background: none;
    border: solid 2px #015562; }
    @media (min-width: 768px) {
      .post-navigation .nav-links .nav-previous, .post-navigation .nav-links .nav-next {
        max-width: 50%; } }
    .post-navigation .nav-links .nav-previous a, .post-navigation .nav-links .nav-next a {
      display: block;
      color: #015562;
      text-decoration: none;
      padding: 20px 20px 30px 20px; }
      .post-navigation .nav-links .nav-previous a .nav-subtitle, .post-navigation .nav-links .nav-next a .nav-subtitle {
        color: #FCC547;
        display: inline-block; }
      .post-navigation .nav-links .nav-previous a .nav-title, .post-navigation .nav-links .nav-next a .nav-title {
        display: block; }
    .post-navigation .nav-links .nav-previous:hover, .post-navigation .nav-links .nav-next:hover {
      cursor: pointer;
      color: #fff;
      border: solid 2px #015562;
      background-color: #015562;
      transition: 0.3s; }
      .post-navigation .nav-links .nav-previous:hover a, .post-navigation .nav-links .nav-next:hover a {
        color: #FCC547;
        text-decoration: none; }
        .post-navigation .nav-links .nav-previous:hover a .nav-title, .post-navigation .nav-links .nav-next:hover a .nav-title {
          color: #fff; }
        .post-navigation .nav-links .nav-previous:hover a .nav-subtitle, .post-navigation .nav-links .nav-next:hover a .nav-subtitle {
          color: #FCC547; }
  .post-navigation .nav-links .nav-previous {
    flex: 1 0 50%; }
  .post-navigation .nav-links .nav-next {
    flex: 1 1 50%;
    text-align: start; }
    @media (min-width: 576px) {
      .post-navigation .nav-links .nav-next {
        text-align: end; } }

#recent-post-tiles {
  margin: 30px 0 0;
  padding: 30px 0 60px; }
  #recent-post-tiles h2 {
    text-align: center; }
  #recent-post-tiles ul.three-column {
    list-style: none;
    margin: 60px 0 60px; }
    #recent-post-tiles ul.three-column li {
      display: flex;
      flex-direction: column;
      flex-grow: 1; }
      #recent-post-tiles ul.three-column li a {
        display: flex;
        flex-direction: column;
        flex-grow: 1; }

#contact-form {
  padding: 40px 30px 0;
  color: #fff;
  background-color: #45314C;
  margin-bottom: 40px; }
  @media (min-width: 768px) {
    #contact-form {
      padding: 40px; } }
  @media (min-width: 992px) {
    #contact-form {
      padding: 60px; } }
  #contact-form.fullwidth .content-block-row {
    display: flex;
    flex-direction: column; }
    #contact-form.fullwidth .content-block-row #form-left, #contact-form.fullwidth .content-block-row #form-right {
      width: 100%;
      max-width: 800px; }
    #contact-form.fullwidth .content-block-row h2 {
      color: #fff; }
  #contact-form .content-block-row {
    display: flex;
    flex-direction: column; }
    @media (min-width: 992px) {
      #contact-form .content-block-row {
        flex-direction: row;
        justify-content: space-between; } }
    #contact-form .content-block-row #form-left, #contact-form .content-block-row #form-right {
      width: 100%; }
      @media (min-width: 992px) {
        #contact-form .content-block-row #form-left, #contact-form .content-block-row #form-right {
          width: 45%; } }
    #contact-form .content-block-row h2 {
      color: #fff; }
    #contact-form .content-block-row a {
      color: #FCC547; }
      #contact-form .content-block-row a:hover {
        color: #fff; }

#sibling-links {
  margin: 0 -9999rem 30px !important;
  /* add back negative margin value */
  padding: 60px 9999rem 60px;
  background-color: #EAF5F7;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 60px !important; }
  @media (min-width: 992px) {
    #sibling-links {
      margin: 0 -9999rem 90px;
      padding: 20px 9999rem 90px; } }
  #sibling-links h2 {
    text-align: center;
    padding: 60px 0 30px; }
  #sibling-links ul li a {
    background-color: #fff; }
  #sibling-links ul li h2 {
    text-align: left;
    margin: 0;
    padding: 10px 0 20px;
    font-size: 1.5em !important; }
  #sibling-links ul li p {
    font-size: 1em; }

#accreditations {
  margin: 30px 0 60px; }
  #accreditations ul.logos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 60px;
    row-gap: 40px; }
    #accreditations ul.logos li img {
      max-height: 70px; }
      @media (min-width: 576px) {
        #accreditations ul.logos li img {
          max-height: 90px; } }

.home header.entry-header {
  padding: 0; }
  .home header.entry-header .two-column {
    padding: 0;
    gap: 0; }
    @media (min-width: 1260px) {
      .home header.entry-header .two-column {
        padding: 0 30px 75px 30px; } }
    .home header.entry-header .two-column .left-column {
      padding: 30px 20px 0; }
      @media (min-width: 576px) {
        .home header.entry-header .two-column .left-column {
          padding: 30px; } }
      @media (min-width: 992px) {
        .home header.entry-header .two-column .left-column {
          width: 50%; } }

.home header.entry-header .two-column .left-column {
  /*
					width: 50%;
					padding: $small-margin $small-margin*2 0 0;
					border: none;
*/ }
  .home header.entry-header h1 {
    font-size: 3em;
    line-height: 1em;
    margin: 40px 0 40px;
    color: #fff; }
    @media (min-width: 576px) {
      .home header.entry-header h1 {
        font-size: 3.2em;
        margin-bottom: 60px; } }
    @media (min-width: 768px) {
      .home header.entry-header h1 {
        font-size: 3.4em; } }
    @media (min-width: 992px) {
      .home header.entry-header h1 {
        font-size: 3.6em; } }
    @media (min-width: 1260px) {
      .home header.entry-header h1 {
        font-size: 4.4em;
        margin-top: 90px; } }
    @media (min-width: 1281px) {
      .home header.entry-header h1 {
        font-size: 4.6em;
        margin-bottom: 60px; } }
  .home header.entry-header .standfirst {
    font-size: 1em;
    line-height: 1.4em;
    color: #fff; }
    @media (min-width: 576px) {
      .home header.entry-header .standfirst {
        font-size: 1.2em; } }

.home h2 {
  margin-bottom: 30px; }
  @media (min-width: 576px) {
    .home h2 {
      margin-bottom: 60px; } }

.home .entry-content {
  max-width: none;
  display: block;
  padding-top: 30px;
  padding-bottom: 0; }
  @media (min-width: 576px) {
    .home .entry-content {
      padding-top: 60px; } }
  .home .entry-content .content-wrapper {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    /*
		    padding-left: 0;
		    padding-right: 0;
*/
    padding-top: 0; }
    @media (min-width: 992px) {
      .home .entry-content .content-wrapper {
        padding-bottom: 0; } }
    @media (min-width: 1260px) {
      .home .entry-content .content-wrapper {
        padding-bottom: 0; } }

.home #link-panels {
  margin-bottom: 40px; }
  .home #link-panels .link-panel {
    background-color: #E5EEEF; }
    .home #link-panels .link-panel .content {
      padding: 30px;
      min-height: 350px;
      display: flex;
      flex-direction: column; }
      .home #link-panels .link-panel .content h2 {
        font-size: 2.3em !important;
        margin-bottom: 20px;
        color: #015562; }
      .home #link-panels .link-panel .content .text {
        line-height: 1.2em;
        color: #015562;
        flex-grow: 1; }

.home #testimonials .testimonial {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  justify-content: center; }
  @media (min-width: 992px) {
    .home #testimonials .testimonial {
      flex-direction: row;
      align-items: center; } }
  .home #testimonials .testimonial img.wonky {
    margin: 0 auto;
    width: 80%;
    max-width: 400px;
    transform: rotate(-5deg);
    border: 10px solid #FFFFFF;
    box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.3);
    margin-bottom: -40px; }
    @media (min-width: 768px) {
      .home #testimonials .testimonial img.wonky {
        margin-bottom: -60px; } }
    @media (min-width: 992px) {
      .home #testimonials .testimonial img.wonky {
        width: 27%;
        margin-left: 40px;
        margin-right: -60px;
        margin-top: 0; } }
  .home #testimonials .testimonial .content {
    padding: 60px 30px;
    background-color: #E5EEEF; }
    @media (min-width: 768px) {
      .home #testimonials .testimonial .content {
        padding: 60px; } }
    @media (min-width: 992px) {
      .home #testimonials .testimonial .content {
        width: 73%;
        padding: 60px 60px 60px 120px; } }
    .home #testimonials .testimonial .content .quotemark {
      fill: #31A0B1; }
    .home #testimonials .testimonial .content .quote {
      font-size: 1.8em;
      line-height: 1.2em;
      font-weight: 600;
      color: #015562;
      margin: 20px 0 30px; }
    .home #testimonials .testimonial .content .attribute {
      margin-bottom: 30px; }
    .home #testimonials .testimonial .content .content-footer {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-end; }
  .home #testimonials .testimonial.alt {
    flex-direction: column;
    justify-content: center;
    padding-left: 0; }
    @media (min-width: 992px) {
      .home #testimonials .testimonial.alt {
        padding-right: 40px;
        flex-direction: row-reverse;
        align-items: center; } }
    .home #testimonials .testimonial.alt img.wonky {
      margin: 0 auto;
      width: 80%;
      max-width: 400px;
      margin-bottom: -60px;
      transform: rotate(5deg); }
      @media (min-width: 992px) {
        .home #testimonials .testimonial.alt img.wonky {
          width: 27%;
          margin-right: 40px;
          margin-left: -60px;
          margin-bottom: 0; } }
    .home #testimonials .testimonial.alt .content {
      padding: 60px 30px;
      background-color: #FCF6F2; }
      @media (min-width: 768px) {
        .home #testimonials .testimonial.alt .content {
          padding: 60px; } }
      @media (min-width: 992px) {
        .home #testimonials .testimonial.alt .content {
          padding: 60px 120px 60px 60px;
          width: 73%; } }
      .home #testimonials .testimonial.alt .content .quotemark {
        fill: #CC3333; }
      .home #testimonials .testimonial.alt .content .quote {
        color: #CC3333; }

.home #feature-content-panels ul li:not(:last-child) {
  margin-bottom: 30px; }

.home #video-embed {
  margin: 30px 0; }

.home #latest-news {
  margin: 75px 0 150px; }
  .home #latest-news h2 {
    font-size: 2.5em !important;
    margin-bottom: 45px;
    color: #015562; }
  .home #latest-news ul {
    margin-bottom: 60px; }
  .home #latest-news a.call-to-action button {
    width: 100%; }
    @media (min-width: 768px) {
      .home #latest-news a.call-to-action button {
        width: auto; } }

.page-template-section-landing .entry-header hr.hr-header {
  display: none; }

.page-template-section-landing .entry-content {
  display: block; }
  @media (min-width: 768px) {
    .page-template-section-landing .entry-content {
      display: flex;
      flex-direction: row; } }

#people-profiles {
  padding-top: 40px; }
  #people-profiles h2 {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: solid #015562 6px; }
  #people-profiles ul.people-profiles {
    margin-top: 30px;
    margin-bottom: 60px; }
    #people-profiles ul.people-profiles li {
      display: flex;
      flex-direction: column;
      gap: 30px;
      align-items: flex-start;
      padding-bottom: 30px;
      margin-bottom: 30px; }
      @media (min-width: 768px) {
        #people-profiles ul.people-profiles li {
          flex-direction: row; } }
      #people-profiles ul.people-profiles li:not(:last-child) {
        border-bottom: solid 4px #eee; }
      #people-profiles ul.people-profiles li .image {
        display: flex;
        width: 50%;
        max-width: 400px; }
        @media (min-width: 768px) {
          #people-profiles ul.people-profiles li .image {
            width: 39%;
            max-width: 200px;
            margin-top: 5px; } }
      #people-profiles ul.people-profiles li .content {
        display: flex;
        flex-direction: column;
        width: fit-content; }
        #people-profiles ul.people-profiles li .content h1 {
          margin: 0 0 10px 0;
          padding: 0;
          font-size: 1.6em;
          line-height: 1.1em;
          color: #015562; }
        #people-profiles ul.people-profiles li .content h2 {
          color: #222;
          font-size: 1.3em !important;
          margin: 0 0 20px;
          border: none;
          padding: 0; }
    #people-profiles ul.people-profiles.administration li {
      flex-direction: column;
      border-bottom: none; }
      #people-profiles ul.people-profiles.administration li h2 {
        width: 100%;
        margin: 0; }
      #people-profiles ul.people-profiles.administration li .image {
        width: 100%;
        max-width: none; }
      #people-profiles ul.people-profiles.administration li .content {
        flex-direction: column;
        gap: 10px; }
        @media (min-width: 576px) {
          #people-profiles ul.people-profiles.administration li .content {
            flex-direction: row;
            gap: 4%;
            justify-content: space-between; } }
        #people-profiles ul.people-profiles.administration li .content .left-col {
          width: 100%; }
          @media (min-width: 576px) {
            #people-profiles ul.people-profiles.administration li .content .left-col {
              width: 58%; } }
        #people-profiles ul.people-profiles.administration li .content .right-col {
          width: 100%; }
          @media (min-width: 576px) {
            #people-profiles ul.people-profiles.administration li .content .right-col {
              width: 32%; } }
          #people-profiles ul.people-profiles.administration li .content .right-col h1 {
            color: #222;
            font-size: 1em;
            line-height: 1.3em;
            margin: 0 0 5px 0; }
          #people-profiles ul.people-profiles.administration li .content .right-col ul li {
            gap: 0;
            margin: 0 0 20px 0;
            padding: 0; }
            #people-profiles ul.people-profiles.administration li .content .right-col ul li p {
              font-size: 1em;
              line-height: 1.1em !important;
              margin-bottom: 40px !important; }

ul.vacancies {
  width: 100%;
  margin: 120px 0 0; }
  ul.vacancies li .wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: solid 6px #015562;
    padding-top: 40px;
    margin-bottom: 30px;
    justify-content: space-between; }
    @media (min-width: 768px) {
      ul.vacancies li .wrapper {
        flex-direction: row;
        gap: 60px; } }
    ul.vacancies li .wrapper .content {
      display: flex;
      flex-direction: column;
      width: 100%; }
      @media (min-width: 768px) {
        ul.vacancies li .wrapper .content {
          width: 65%; } }
      ul.vacancies li .wrapper .content h1 {
        margin: 0;
        line-height: 1.2em;
        color: #015562; }
      ul.vacancies li .wrapper .content .dates {
        margin-bottom: 10px;
        font-size: 1.2em; }
        ul.vacancies li .wrapper .content .dates:first-of-type {
          margin-top: 30px; }
      ul.vacancies li .wrapper .content .detail {
        margin-top: 30px; }
    ul.vacancies li .wrapper .cta {
      width: fit-content; }
  ul.vacancies li h2 {
    font-size: 1.4em !important; }

.blog header.entry-header :has( > #hero), .archive header.entry-header :has( > #hero), .single header.entry-header :has( > #hero) {
  min-height: 30px; }

.blog header.entry-header h1, .blog header.entry-header .standfirst, .archive header.entry-header h1, .archive header.entry-header .standfirst, .single header.entry-header h1, .single header.entry-header .standfirst {
  color: #015562; }

.blog header.entry-header .right-column, .archive header.entry-header .right-column {
  background-color: #31A0B1;
  padding: 0 20px 60px;
  display: flex;
  flex-direction: row;
  gap: 20px; }
  @media (min-width: 576px) {
    .blog header.entry-header .right-column, .archive header.entry-header .right-column {
      padding: 0 30px 60px; } }
  @media (min-width: 992px) {
    .blog header.entry-header .right-column, .archive header.entry-header .right-column {
      padding: 75px 60px; } }
  .blog header.entry-header .right-column h1, .archive header.entry-header .right-column h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-weight: bold;
    margin-bottom: 0; }
  .blog header.entry-header .right-column #categories, .archive header.entry-header .right-column #categories {
    width: 100%;
    max-width: 550px; }
  .blog header.entry-header .right-column ul li, .archive header.entry-header .right-column ul li {
    border-bottom: none; }
    .blog header.entry-header .right-column ul li a, .archive header.entry-header .right-column ul li a {
      display: block;
      border-bottom: solid 2px rgba(1, 85, 98, 0.2);
      padding: 5px 0; }
      .blog header.entry-header .right-column ul li a:hover, .archive header.entry-header .right-column ul li a:hover {
        border-color: #015562; }

.single .entry-content {
  flex-direction: row;
  padding: 60px 0 180px; }
  .single .entry-content h1.entry-title {
    padding: 0 0 0 0;
    margin: 0 0 30px 0;
    font-size: 2em;
    line-height: 1em;
    color: #015562; }
    @media (min-width: 576px) {
      .single .entry-content h1.entry-title {
        padding: 30px 0 0 0;
        margin: 0 0 60px 0;
        font-size: 3.2em;
        line-height: 1em; } }
    @media (min-width: 768px) {
      .single .entry-content h1.entry-title {
        font-size: 4em;
        line-height: 1em; } }
  .single .entry-content #post-content {
    margin-bottom: 60px; }
    .single .entry-content #post-content img {
      border-radius: 30px; }
  .single .entry-content .entry-meta {
    color: #015562; }
    .single .entry-content .entry-meta .post-category {
      display: flex;
      flex-direction: column; }
      .single .entry-content .entry-meta .post-category ul {
        margin-bottom: 20px !important;
        margin-top: -10px; }
        .single .entry-content .entry-meta .post-category ul li a {
          text-transform: none !important;
          font-weight: 400;
          line-height: 0.2em;
          border-bottom: solid 2px #015562; }
          .single .entry-content .entry-meta .post-category ul li a:hover {
            color: #000;
            background-color: #FCC547; }
    .single .entry-content .entry-meta .post-date {
      width: 100%;
      padding-bottom: 15px;
      margin-bottom: 15px;
      display: flex;
      flex-direction: column;
      /*
			    font-size: 1em;
			    @include sm {
				    font-size: 1.4em;
			    }
*/ }

.single-post .entry-header h1 {
  font-size: 3.2em; }

.single-post .entry-content {
  background-color: #E5EEEF;
  width: 100%;
  max-width: none;
  border-top: solid 7px #31A0B1;
  border-bottom: solid 7px #31A0B1;
  display: block; }
  .single-post .entry-content blockquote {
    background-color: #fff; }
  .single-post .entry-content .fullwidth-wrapper {
    display: flex;
    flex-direction: column-reverse;
    max-width: 1440px;
    margin: 0 auto; }
    @media (min-width: 768px) {
      .single-post .entry-content .fullwidth-wrapper {
        flex-direction: row-reverse !important;
        justify-content: flex-start; } }
    .single-post .entry-content .fullwidth-wrapper .content-wrapper {
      max-width: none; }
      .single-post .entry-content .fullwidth-wrapper .content-wrapper #post-content {
        max-width: 700px; }
  .single-post .entry-content aside {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 30px;
    padding-top: 0;
    margin-bottom: 20px; }
    @media (min-width: 768px) {
      .single-post .entry-content aside {
        width: 30%;
        margin-bottom: 0;
        flex-direction: column;
        gap: 0; } }

.single-employee_stories .entry-content, .single-employer_story .entry-content {
  padding-top: 0; }
  .single-employee_stories .entry-content .content-wrapper, .single-employer_story .entry-content .content-wrapper {
    width: 70%; }
  .single-employee_stories .entry-content .main-content, .single-employer_story .entry-content .main-content {
    flex-grow: 1;
    max-width: none;
    margin-bottom: 0; }
    .single-employee_stories .entry-content .main-content #featured-image, .single-employer_story .entry-content .main-content #featured-image {
      margin-bottom: 40px; }
    .single-employee_stories .entry-content .main-content #post-content, .single-employer_story .entry-content .main-content #post-content {
      margin-bottom: 60px; }
      .single-employee_stories .entry-content .main-content #post-content h2, .single-employer_story .entry-content .main-content #post-content h2 {
        margin-top: 40px; }

.single-training_workshops .entry-header #categories, .single-employee_stories .entry-header #categories, .single-employ_workshops .entry-header #categories {
  margin: 30px 0; }
  .single-training_workshops .entry-header #categories ul, .single-employee_stories .entry-header #categories ul, .single-employ_workshops .entry-header #categories ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px; }
    .single-training_workshops .entry-header #categories ul li, .single-employee_stories .entry-header #categories ul li, .single-employ_workshops .entry-header #categories ul li {
      display: flex; }

.single-training_workshops .entry-content, .single-employee_stories .entry-content, .single-employ_workshops .entry-content {
  padding-top: 30px; }
  .single-training_workshops .entry-content .content-wrapper #featured-image, .single-employee_stories .entry-content .content-wrapper #featured-image, .single-employ_workshops .entry-content .content-wrapper #featured-image {
    margin-bottom: 40px; }
  .single-training_workshops .entry-content .content-wrapper #post-content, .single-employee_stories .entry-content .content-wrapper #post-content, .single-employ_workshops .entry-content .content-wrapper #post-content {
    margin-bottom: 60px; }
    .single-training_workshops .entry-content .content-wrapper #post-content h2, .single-employee_stories .entry-content .content-wrapper #post-content h2, .single-employ_workshops .entry-content .content-wrapper #post-content h2 {
      margin-top: 40px; }

.content-wrapper.contact {
  width: 100% !important;
  max-width: none; }
  .content-wrapper.contact #map-panel {
    margin-top: 0;
    background-color: #E5EEEF;
    font-size: 0.8em;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 30px; }
    @media (min-width: 768px) {
      .content-wrapper.contact #map-panel {
        flex-direction: row;
        margin-top: 40px; } }
    @media (min-width: 992px) {
      .content-wrapper.contact #map-panel {
        margin-bottom: 0; } }
    .content-wrapper.contact #map-panel .left-column {
      width: 100%;
      padding: 40px 30px 20px; }
      @media (min-width: 768px) {
        .content-wrapper.contact #map-panel .left-column {
          width: 50%;
          padding: 40px 30px 20px 40px; } }
      @media (min-width: 992px) {
        .content-wrapper.contact #map-panel .left-column {
          padding: 60px 60px 30px; } }
      @media (min-width: 1260px) {
        .content-wrapper.contact #map-panel .left-column {
          width: 40%; } }
    .content-wrapper.contact #map-panel .right-column {
      width: 100%; }
      @media (min-width: 768px) {
        .content-wrapper.contact #map-panel .right-column {
          width: 50%; } }
      @media (min-width: 1260px) {
        .content-wrapper.contact #map-panel .right-column {
          width: 60%; } }
    .content-wrapper.contact #map-panel h2 {
      color: #000;
      margin-bottom: 30px; }

.search-results .page-content article, .archive .page-content article {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  justify-content: space-between; }
  @media (min-width: 576px) {
    .search-results .page-content article, .archive .page-content article {
      margin-bottom: 60px; } }

.search-results .page-content .entry-header, .archive .page-content .entry-header {
  background: none;
  color: #333;
  margin-bottom: 20px;
  padding: 0;
  min-height: 0;
  width: 100%; }
  .search-results .page-content .entry-header #post-type, .archive .page-content .entry-header #post-type {
    border-bottom: 4px solid #31A0B1;
    padding-bottom: 5px;
    margin-bottom: 20px !important;
    color: #015562;
    font-size: 0.9em;
    font-weight: 700;
    text-transform: uppercase; }
    @media (min-width: 576px) {
      .search-results .page-content .entry-header #post-type, .archive .page-content .entry-header #post-type {
        margin: 0 0 30px 0; } }
  .search-results .page-content .entry-header h2 a, .archive .page-content .entry-header h2 a {
    font-size: 1em;
    line-height: 1.1em;
    color: #015562; }
    .search-results .page-content .entry-header h2 a:hover, .archive .page-content .entry-header h2 a:hover {
      color: #31A0B1;
      text-decoration: underline; }
  .search-results .page-content .entry-header .entry-meta, .archive .page-content .entry-header .entry-meta {
    margin-bottom: 0;
    color: #015562; }
    .search-results .page-content .entry-header .entry-meta .post-category, .archive .page-content .entry-header .entry-meta .post-category {
      text-transform: uppercase;
      font-weight: 600;
      margin-right: 20px;
      padding: 0 20px 0 0;
      border-right: 2px solid #31A0B1; }

.search-results .page-content .image-wrapper, .archive .page-content .image-wrapper {
  margin-top: 0;
  width: auto;
  align-self: flex-start;
  background-color: #31A0B1; }
  @media (min-width: 576px) {
    .search-results .page-content .image-wrapper, .archive .page-content .image-wrapper {
      margin-top: 5px;
      width: 25%; } }
  .search-results .page-content .image-wrapper.full, .archive .page-content .image-wrapper.full {
    flex-basis: content;
    width: 100%; }
  .search-results .page-content .image-wrapper a, .archive .page-content .image-wrapper a {
    display: flex; }
  .search-results .page-content .image-wrapper:hover img, .archive .page-content .image-wrapper:hover img {
    opacity: 0.3;
    transition: 0.3s; }

.search-results .page-content .entry-summary, .archive .page-content .entry-summary {
  width: auto;
  margin: 0;
  padding: 0; }
  @media (min-width: 576px) {
    .search-results .page-content .entry-summary, .archive .page-content .entry-summary {
      width: 72%; } }
  .search-results .page-content .entry-summary.full, .archive .page-content .entry-summary.full {
    width: 100%; }

.search-results .page-content .entry-footer, .archive .page-content .entry-footer {
  width: 100%;
  /*
		    padding-top: $small-margin / 2;
		    margin: $standard-margin 0 $standard-margin * 2 0;
		    color: $primary-color;
		    font-weight: 600;
			text-transform: uppercase;
*/
  background: none; }
  .search-results .page-content .entry-footer .cat-links, .archive .page-content .entry-footer .cat-links {
    border-left: 2px solid #eee;
    padding-left: 10px;
    margin-left: 10px; }

.search-results .page-content .posts-navigation, .archive .page-content .posts-navigation {
  padding-top: 30px;
  border-top: solid 6px #31A0B1; }

.search-results .page-content .featured p, .archive .page-content .featured p {
  margin-bottom: 30px; }

.error-404 {
  margin-top: 60px; }
  .error-404 .page-content {
    margin-top: 60px;
    margin-bottom: 120px; }
    @media (min-width: 992px) {
      .error-404 .page-content {
        margin-top: 30px; } }

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word; }

.bypostauthor {
  display: block; }

/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em; }

.widget select {
  max-width: 100%; }

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0; }

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block; }

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%; }

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-caption .wp-caption-text {
  margin: 5px 0 0; }

.wp-caption-text {
  text-align: left;
  font-size: 0.8em;
  line-height: 1.5em;
  max-width: 660px; }

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: block;
  grid-gap: 1.5em; }

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%; }

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr); }

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr); }

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr); }

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr); }

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr); }

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr); }

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr); }

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr); }

.gallery-caption {
  display: block; }

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/*----------------------------------------------
# Jetpack infinite scroll
--------------------------------------------- */
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none; }

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block; }

/*--------------------------------------------------------------
# Sitemap plugin
--------------------------------------------------------------*/
.simple-sitemap-container.tab-enabled {
  margin-top: 60px;
  margin-bottom: 60px; }
  .simple-sitemap-container.tab-enabled label {
    border-radius: 5px 5px 0 0 !important;
    background-color: #fff !important;
    border-color: #45314C !important;
    border: solid 2px;
    border-bottom: none;
    transition: 0.3s;
    float: none;
    margin-right: 0;
    padding: 10px 9.09091px; }
    @media (min-width: 576px) {
      .simple-sitemap-container.tab-enabled label {
        padding: 10px 20px; } }
    @media (min-width: 768px) {
      .simple-sitemap-container.tab-enabled label {
        float: left;
        margin-right: 5px; } }
    .simple-sitemap-container.tab-enabled label:hover {
      background-color: #45314C !important; }
      .simple-sitemap-container.tab-enabled label:hover h3 {
        color: #fff; }
    .simple-sitemap-container.tab-enabled label h3 {
      color: #45314C;
      font-size: 0.8em;
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-style: normal; }
      @media (min-width: 576px) {
        .simple-sitemap-container.tab-enabled label h3 {
          font-size: 1.15em; } }
  .simple-sitemap-container.tab-enabled input:checked + label {
    background-color: #45314C !important; }
    .simple-sitemap-container.tab-enabled input:checked + label h3 {
      color: #fff; }
  .simple-sitemap-container.tab-enabled .panel {
    border-top: 4px solid #45314C !important;
    border-radius: 0 0 10px 10px !important; }
  .simple-sitemap-container.tab-enabled ul.main {
    margin: 20px !important; }
    @media (min-width: 576px) {
      .simple-sitemap-container.tab-enabled ul.main {
        margin: 45px !important; } }
    .simple-sitemap-container.tab-enabled ul.main li {
      margin-bottom: 10px;
      font-size: 0.9em; }
      @media (min-width: 576px) {
        .simple-sitemap-container.tab-enabled ul.main li {
          font-size: 1em;
          margin-bottom: 5px; } }
      .simple-sitemap-container.tab-enabled ul.main li a {
        color: #015562; }
        .simple-sitemap-container.tab-enabled ul.main li a:hover {
          color: #000;
          background-color: #FCC547; }

.simple-sitemap-wrap:not(:first-of-type) {
  margin-top: 0; }

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Text highlight colour */
::selection {
  color: #015562;
  background: #FCC547; }

::-moz-selection {
  color: #015562;
  background: #E5EEEF; }

.light-bg-1 {
  background-color: #E5EEEF; }

.rounded-10 {
  border-radius: 10px;
  overflow: hidden; }

.rounded-20 {
  border-radius: 20px;
  overflow: hidden; }

.rounded-30 {
  border-radius: 30px;
  overflow: hidden; }

.flipped-180 {
  transform: rotate(180deg); }

.hr-light-teal {
  background-color: #31A0B1;
  height: 7px; }

/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; }

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; }

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0; }

/* Alignments
--------------------------------------------- */
.alignleft {
  margin-right: 0;
  float: none; }
  @media (min-width: 768px) {
    .alignleft {
      float: left;
      /*rtl:ignore*/
      margin-right: 1.5em; } }

.alignright {
  margin-left: 0;
  float: none; }
  @media (min-width: 768px) {
    .alignright {
      float: right;
      /*rtl:ignore*/
      margin-left: 1.5em; } }

/*
p:has(img.alignright) {
	img.alignright {
		border: red solid 2px;
		float: right;
	}
	img.alignleft {
		border: green solid 2px;
		float: left;
	}

}
*/
@media (min-width: 576px) {
  .alignleft, .alignright {
    /*rtl:ignore*/
    max-width: 40%; } }

@media (min-width: 768px) {
  .alignleft, .alignright {
    margin-bottom: 1.5em; } }

.alignleft img, .alignright img {
  width: 100%; }
  @media (min-width: 576px) {
    .alignleft img, .alignright img {
      width: auto; } }

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em; }

.centred {
  text-align: center; }

/*----------------------------------------------
# CHATBOT WIDGET (
--------------------------------------------- */
/*
	Styles will apply when device(view port) width is >768px
*/
@media (min-device-width: 768px) {
  .desktop_bubble_chat {
    height: 410px;
    max-height: 410px;
    width: 412px;
    position: fixed;
    bottom: 1em;
    right: 1em;
    border: none;
    outline: none;
    box-sizing: border-box;
    z-index: 999;
    overflow: hidden;
    padding: 0; } }

/*
	Styles will apply when device(view port) width is <=768px
*/
@media (max-device-width: 768px) {
  .desktop_bubble_chat {
    height: 100%;
    max-height: 100%;
    width: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
    z-index: 999;
    overflow: hidden;
    padding: 0; } }

/*
	Styles will apply when available width on window resize is >768px
*/
@media (min-width: 768px) {
  .desktop_bubble_chat {
    height: 410px;
    max-height: 410px;
    width: 412px;
    position: fixed;
    bottom: 1em;
    right: 1em;
    border: none;
    outline: none;
    box-sizing: border-box;
    z-index: 999;
    overflow: hidden;
    padding: 0; } }

/*
	Styles will apply when available width on window resize is <=768px
*/
@media (max-width: 768px) {
  .desktop_bubble_chat {
    height: 100%;
    max-height: 100%;
    width: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
    z-index: 999;
    overflow: hidden;
    padding: 0; } }

/*
	Styles will apply when isMobile function returns true
*/
.mobile_bubble_chat {
  height: 100%;
  max-height: 100%;
  width: 100%;
  position: fixed;
  bottom: 0;
  right: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
  z-index: 999;
  overflow: hidden;
  padding: 0; }

/*
	Style will apply when chat is minimized
*/
.minimized_chat {
  height: 56px; }
