@charset "UTF-8";
/*!
Theme Name: Luna
Theme URI: https://www.93digital.co.uk
Author: 93Devs
Author URI: https://www.93digital.co.uk
Description: 93Digital's Luna Theme
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: luna
Tags: Luna, 93digital, 93devs, starter-theme, boilerplate

This theme, like WordPress, is licensed under the GPL.

93Digital's development starter theme, the boilerplate for all our WordPress projects.
*/
/* ---------------------------------------
# Mixins
---------------------------------------- */
/* ---------------------------------------
# Variables
---------------------------------------- */
/**
 * Variables
 */
/* ---------------------------------------
# Typography.
---------------------------------------- */
/* ---------------------------------------
# Animation & Transitions.
---------------------------------------- */
/* ---------------------------------------
# Global Colours.
---------------------------------------- */
/* ---------------------------------------
# Site Specific Colours.
---------------------------------------- */
body {
  --primary-color: #FF0037;
}

body.gaming-theme {
  --primary-color: #CA00FF;
}

/* ---------------------------------------
# Social Media Colours.
---------------------------------------- */
/* ---------------------------------------
# Setup
---------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  tab-size: 4;
}

html {
  line-height: 1.15;
  text-size-adjust: 100%;
  font-size: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

hr {
  height: 0;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  text-indent: 0;
  border-color: inherit;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
select {
  text-transform: none;
}

button,
[type=reset],
[type=submit],
[type=button] {
  appearance: button;
}

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:-moz-ui-invalid {
  box-shadow: none;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  appearance: none;
  border-radius: 0;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  appearance: none;
}

::-webkit-file-upload-button {
  appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

figure {
  margin: 0;
}

a,
input,
button,
select,
textarea,
[tabindex]:not([tabindex="-1"]) {
  cursor: pointer;
}
a:focus,
input:focus,
button:focus,
select:focus,
textarea:focus,
[tabindex]:not([tabindex="-1"]):focus {
  outline: none;
}
body.remove-focus a:focus,
body.remove-focus input:focus,
body.remove-focus button:focus,
body.remove-focus select:focus,
body.remove-focus textarea:focus,
body.remove-focus [tabindex]:not([tabindex="-1"]):focus {
  outline: none !important;
}

* {
  scroll-margin-top: 4rem;
}
@media (min-width: 1240px) {
  * {
    scroll-margin-top: 6.5rem;
  }
}

body {
  font-family: "Roboto", sans-serif;
  position: relative;
  color: #151416;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
  font-size: 1rem;
}
@media (min-width: 1200px) {
  body {
    font-size: 1.25rem;
  }
}

::selection {
  color: white;
  background-color: black;
}

a:not([class]) {
  color: var(--primary-color);
}

.mobile-only {
  display: block !important;
}
@media (min-width: 810px) {
  .mobile-only {
    display: none !important;
  }
}

.screen-reader-text, .gfield_consent .gfield_required, .hidden_label .gfield_label, .gfield.hidden_label > label, .hidden_label.archive-container__filter-wrap > label, .hidden_label.m18__filter-wrap > label, .skip-link {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  position: absolute !important;
  word-wrap: normal !important;
}
.screen-reader-text:focus, .gfield_consent .gfield_required:focus, .hidden_label .gfield_label:focus, .gfield.hidden_label > label:focus, .hidden_label.archive-container__filter-wrap > label:focus, .hidden_label.m18__filter-wrap > label:focus, .skip-link:focus {
  background-color: #FFFFFF;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: inherit;
  font-weight: bold;
  height: auto;
  width: auto;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  left: 5px;
  z-index: 100000;
}

.skip-link:focus {
  outline: 0 !important;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1rem);
  }
  100% {
    transform: translateY(0);
  }
}
svg {
  display: block;
  width: auto;
  height: auto;
  fill: currentColor;
}

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

img.lazy {
  opacity: 0;
}

@media (min-width: 810px) {
  img:not(.initial) {
    transition: opacity 1s;
  }
}

img.error,
img.loaded,
img.initial {
  opacity: 1;
}

img:not([src]) {
  visibility: hidden;
}

.object-fit {
  width: 100%;
  height: 100%;
}
.object-fit--cover {
  object-fit: cover;
}
.object-fit--contain {
  object-fit: contain;
}
.object-fit--fill {
  object-fit: fill;
}
.object-fit--scale-down {
  object-fit: scale-down;
}

.object-position--center-top {
  object-position: center top;
}
.object-position--center-bottom {
  object-position: center bottom;
}
.object-position--top-left {
  object-position: top left;
}
.object-position--top-right {
  object-position: top right;
}
.object-position--bottom-left {
  object-position: bottom left;
}
.object-position--bottom-right {
  object-position: bottom right;
}

iframe {
  max-width: 100%;
}

.is-draggable {
  cursor: move;
  cursor: grab;
}
.is-draggable .is-grabbing {
  cursor: grabbing;
}

.spinner, .gform_ajax_spinner {
  display: block;
  width: 1.111rem;
  height: 1.111rem;
  border: 0.167rem solid;
  border-right-color: transparent;
  border-radius: 50%;
  animation: rotate 0.8s infinite linear;
}

img.gform_ajax_spinner {
  margin: 1em 0 !important;
  width: 1.111rem !important;
}

/* ---------------------------------------
# Utilities
---------------------------------------- */
.container, .m16--default .m16__wrapper, .m08__quote {
  width: 90%;
  display: block;
  margin-right: auto;
  margin-left: auto;
  max-width: 66rem;
}
.container--large {
  max-width: 70.556rem;
}
.container .container, .m16--default .m16__wrapper .container, .container .m16--default .m16__wrapper, .m16--default .container .m16__wrapper, .m16--default .m16__wrapper .m16__wrapper, .m08__quote .container, .m08__quote .m16--default .m16__wrapper, .m16--default .m08__quote .m16__wrapper, .container .m08__quote, .m16--default .m16__wrapper .m08__quote, .m08__quote .m08__quote {
  width: 100%;
  max-width: none;
}

.entry-content {
  width: 90%;
  max-width: 43.333rem;
  margin: 0 auto;
}
.entry-content > .m14:first-child {
  margin-top: 0;
}
@media (min-width: 810px) {
  .entry-content > .m14:first-child {
    margin-top: 3.85em;
  }
}
.entry-content > p:empty {
  display: none;
}

.break-out, figure.wp-block-video.alignfull, figure.wp-block-image.alignfull {
  position: relative;
  margin-left: -50vw !important;
  max-width: 100vw !important;
  width: 100vw !important;
  left: 50% !important;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .break-out, figure.wp-block-video.alignfull, figure.wp-block-image.alignfull {
    max-width: calc(100vw - 9px) !important;
  }
}

.heading, h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  display: block;
  position: relative;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  word-wrap: break-word;
}
@media (min-width: 1280px) {
  .heading, h1,
h2,
h3,
h4,
h5,
h6 {
    hyphens: auto;
  }
}
.heading:empty, h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty {
  display: none;
}

h1,
.heading--1,
.has-heading-1-font-size {
  font-weight: 900;
  font-style: italic;
  line-height: 1.02;
  font-size: 2.778rem;
  font-size: 10vw;
}
@media (min-width: 810px) {
  h1,
.heading--1,
.has-heading-1-font-size {
    font-size: 5.667rem;
    font-size: 5.111rem;
  }
}

h2,
.heading--2,
.has-heading-2-font-size {
  line-height: 1.1;
  font-size: 2.333rem;
  font-size: 8vw;
}
@media (min-width: 810px) {
  h2,
.heading--2,
.has-heading-2-font-size {
    font-size: 3.333rem;
  }
}

h3,
.heading--3,
.has-heading-3-font-size {
  line-height: 1.12;
  font-size: 2.111rem;
  font-size: 7vw;
}
@media (min-width: 810px) {
  h3,
.heading--3,
.has-heading-3-font-size {
    font-size: 3.111rem;
  }
}

h4,
.heading--4,
.single-takeout-item__heading,
.has-heading-4-font-size {
  line-height: 1.12;
  font-size: 6vw;
}
@media (min-width: 810px) {
  h4,
.heading--4,
.single-takeout-item__heading,
.has-heading-4-font-size {
    line-height: 2.556rem;
    font-size: 2rem;
  }
}

h5,
.heading--5,
.has-heading-5-font-size {
  font-size: 1.278rem;
  line-height: 1.42;
}
@media (min-width: 810px) {
  h5,
.heading--5,
.has-heading-5-font-size {
    font-size: 1.778rem;
  }
}

h6,
.heading--6,
.has-heading-6-font-size {
  font-size: 1.111rem;
  line-height: 1;
}
@media (min-width: 810px) {
  h6,
.heading--6,
.has-heading-6-font-size {
    font-size: 1.667rem;
  }
}

.heading--small, .g03 .gform_title,
.has-heading-small-font-size {
  font-size: 1.222rem;
  line-height: 1.556rem;
}

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

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.lowercase {
  text-transform: none;
}

.uppercase {
  text-transform: uppercase;
}

.underline {
  text-decoration: underline;
}

.font-weight--100 {
  font-weight: 100;
}

.font-weight--200 {
  font-weight: 200;
}

.font-weight--300 {
  font-weight: 300;
}

.font-weight--400 {
  font-weight: 400;
}

.font-weight--500 {
  font-weight: 500;
}

.font-weight--600 {
  font-weight: 600;
}

.font-weight--700 {
  font-weight: 700;
}

.font-weight--800 {
  font-weight: 800;
}

.font-weight--900 {
  font-weight: 900;
}

select,
textarea,
input[type=url],
input[type=tel],
input[type=text],
input[type=email],
input[type=search],
input[type=number],
input[type=password] {
  appearance: none;
}

.gfield_visibility_hidden {
  display: none !important;
}

.gform_submission_error,
.gform_confirmation_message {
  text-transform: none;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  color: #000000;
  margin: 0 0 2em;
}

.gform_wrapper {
  display: flex;
  flex-direction: column;
}
.gform_fields {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.gform_button svg {
  display: none;
}
.m09 .gform_button svg {
  display: block;
}

.validation_error {
  margin-top: 2em;
  order: 20;
}

.gfield, .archive-container__filter-wrap, .m18__filter-wrap {
  margin-bottom: 1em;
  width: 100%;
  display: block;
}
@media (min-width: 810px) {
  .gfield, .archive-container__filter-wrap, .m18__filter-wrap {
    width: calc(50% - .95em);
  }
}
.gfield_description {
  font-size: 0.778rem;
}
.m09--white .gfield_description, .m32 .gfield_description, .m37 .gfield_description {
  color: rgba(255, 255, 255, 0.95);
}
.gfield_error select,
.gfield_error textarea,
.gfield_error input[type=url],
.gfield_error input[type=tel],
.gfield_error input[type=text],
.gfield_error input[type=email],
.gfield_error input[type=search],
.gfield_error input[type=number],
.gfield_error input[type=password],
.gfield_error input[type=radio] + label::after,
.gfield_error input[type=radio] + label::before,
.gfield_error input[type=checkbox] + label::after,
.gfield_error input[type=checkbox] + label::before {
  border-color: black !important;
}
.m09--white .gfield_error select, .m32 .gfield_error select, .m37 .gfield_error select,
.m09--white .gfield_error textarea,
.m32 .gfield_error textarea,
.m37 .gfield_error textarea,
.m09--white .gfield_error input[type=url],
.m32 .gfield_error input[type=url],
.m37 .gfield_error input[type=url],
.m09--white .gfield_error input[type=tel],
.m32 .gfield_error input[type=tel],
.m37 .gfield_error input[type=tel],
.m09--white .gfield_error input[type=text],
.m32 .gfield_error input[type=text],
.m37 .gfield_error input[type=text],
.m09--white .gfield_error input[type=email],
.m32 .gfield_error input[type=email],
.m37 .gfield_error input[type=email],
.m09--white .gfield_error input[type=search],
.m32 .gfield_error input[type=search],
.m37 .gfield_error input[type=search],
.m09--white .gfield_error input[type=number],
.m32 .gfield_error input[type=number],
.m37 .gfield_error input[type=number],
.m09--white .gfield_error input[type=password],
.m32 .gfield_error input[type=password],
.m37 .gfield_error input[type=password],
.m09--white .gfield_error input[type=radio] + label::after,
.m32 .gfield_error input[type=radio] + label::after,
.m37 .gfield_error input[type=radio] + label::after,
.m09--white .gfield_error input[type=radio] + label::before,
.m32 .gfield_error input[type=radio] + label::before,
.m37 .gfield_error input[type=radio] + label::before,
.m09--white .gfield_error input[type=checkbox] + label::after,
.m32 .gfield_error input[type=checkbox] + label::after,
.m37 .gfield_error input[type=checkbox] + label::after,
.m09--white .gfield_error input[type=checkbox] + label::before,
.m32 .gfield_error input[type=checkbox] + label::before,
.m37 .gfield_error input[type=checkbox] + label::before {
  color: rgba(255, 255, 255, 0.95);
}
.gfield_error .validation_message {
  color: black;
  font-size: 0.778rem;
}
.m09--white .gfield_error .validation_message, .m32 .gfield_error .validation_message, .m37 .gfield_error .validation_message {
  color: rgba(255, 255, 255, 0.95);
}
.gfield label, .archive-container__filter-wrap label, .m18__filter-wrap label {
  display: block;
  margin-bottom: 0.1em;
  font-size: 0.889rem;
  font-weight: 700;
}
.gfield_radio, .gfield_checkbox, .gfield_consent, .gfield_textarea, .gfield_html {
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
}
.gfield_radio, .gfield_checkbox {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gfield_radio li, .gfield_checkbox li {
  position: relative;
}
.gfield_consent label {
  font-size: 0.667rem;
  font-weight: 400;
  line-height: 0.778rem;
}
.gfield_has_conditional[style*="display: none"] label {
  opacity: 0.5;
}
.gfield select, .archive-container__filter-wrap select, .m18__filter-wrap select,
.gfield textarea,
.archive-container__filter-wrap textarea,
.m18__filter-wrap textarea,
.gfield input[type=url],
.archive-container__filter-wrap input[type=url],
.m18__filter-wrap input[type=url],
.gfield input[type=tel],
.archive-container__filter-wrap input[type=tel],
.m18__filter-wrap input[type=tel],
.gfield input[type=text],
.archive-container__filter-wrap input[type=text],
.m18__filter-wrap input[type=text],
.gfield input[type=email],
.archive-container__filter-wrap input[type=email],
.m18__filter-wrap input[type=email],
.gfield input[type=search],
.archive-container__filter-wrap input[type=search],
.m18__filter-wrap input[type=search],
.gfield input[type=number],
.archive-container__filter-wrap input[type=number],
.m18__filter-wrap input[type=number],
.gfield input[type=password],
.archive-container__filter-wrap input[type=password],
.m18__filter-wrap input[type=password] {
  width: 100%;
  font-size: 1rem;
  border: 0.167rem solid #E0E5E5;
  border-radius: 0;
  background-color: #FFFFFF;
  padding: 0.65em 1em;
}
.m09--white .gfield_error .gfield select, .m09--white .gfield_error .archive-container__filter-wrap select, .m09--white .gfield_error .m18__filter-wrap select,
.m09--white .gfield_error .gfield textarea,
.m09--white .gfield_error .archive-container__filter-wrap textarea,
.m09--white .gfield_error .m18__filter-wrap textarea,
.m09--white .gfield_error .gfield input[type=url],
.m09--white .gfield_error .archive-container__filter-wrap input[type=url],
.m09--white .gfield_error .m18__filter-wrap input[type=url],
.m09--white .gfield_error .gfield input[type=tel],
.m09--white .gfield_error .archive-container__filter-wrap input[type=tel],
.m09--white .gfield_error .m18__filter-wrap input[type=tel],
.m09--white .gfield_error .gfield input[type=text],
.m09--white .gfield_error .archive-container__filter-wrap input[type=text],
.m09--white .gfield_error .m18__filter-wrap input[type=text],
.m09--white .gfield_error .gfield input[type=email],
.m09--white .gfield_error .archive-container__filter-wrap input[type=email],
.m09--white .gfield_error .m18__filter-wrap input[type=email],
.m09--white .gfield_error .gfield input[type=search],
.m09--white .gfield_error .archive-container__filter-wrap input[type=search],
.m09--white .gfield_error .m18__filter-wrap input[type=search],
.m09--white .gfield_error .gfield input[type=number],
.m09--white .gfield_error .archive-container__filter-wrap input[type=number],
.m09--white .gfield_error .m18__filter-wrap input[type=number],
.m09--white .gfield_error .gfield input[type=password],
.m09--white .gfield_error .archive-container__filter-wrap input[type=password],
.m09--white .gfield_error .m18__filter-wrap input[type=password] {
  border-color: rgba(var(--primary-color), 0.5);
}
.gfield select[disabled], .archive-container__filter-wrap select[disabled], .m18__filter-wrap select[disabled],
.gfield textarea[disabled],
.archive-container__filter-wrap textarea[disabled],
.m18__filter-wrap textarea[disabled],
.gfield input[type=url][disabled],
.archive-container__filter-wrap input[type=url][disabled],
.m18__filter-wrap input[type=url][disabled],
.gfield input[type=tel][disabled],
.archive-container__filter-wrap input[type=tel][disabled],
.m18__filter-wrap input[type=tel][disabled],
.gfield input[type=text][disabled],
.archive-container__filter-wrap input[type=text][disabled],
.m18__filter-wrap input[type=text][disabled],
.gfield input[type=email][disabled],
.archive-container__filter-wrap input[type=email][disabled],
.m18__filter-wrap input[type=email][disabled],
.gfield input[type=search][disabled],
.archive-container__filter-wrap input[type=search][disabled],
.m18__filter-wrap input[type=search][disabled],
.gfield input[type=number][disabled],
.archive-container__filter-wrap input[type=number][disabled],
.m18__filter-wrap input[type=number][disabled],
.gfield input[type=password][disabled],
.archive-container__filter-wrap input[type=password][disabled],
.m18__filter-wrap input[type=password][disabled] {
  pointer-events: none;
  background-color: #E0E5E5;
}
.gfield select:focus, .archive-container__filter-wrap select:focus, .m18__filter-wrap select:focus,
.gfield textarea:focus,
.archive-container__filter-wrap textarea:focus,
.m18__filter-wrap textarea:focus,
.gfield input[type=url]:focus,
.archive-container__filter-wrap input[type=url]:focus,
.m18__filter-wrap input[type=url]:focus,
.gfield input[type=tel]:focus,
.archive-container__filter-wrap input[type=tel]:focus,
.m18__filter-wrap input[type=tel]:focus,
.gfield input[type=text]:focus,
.archive-container__filter-wrap input[type=text]:focus,
.m18__filter-wrap input[type=text]:focus,
.gfield input[type=email]:focus,
.archive-container__filter-wrap input[type=email]:focus,
.m18__filter-wrap input[type=email]:focus,
.gfield input[type=search]:focus,
.archive-container__filter-wrap input[type=search]:focus,
.m18__filter-wrap input[type=search]:focus,
.gfield input[type=number]:focus,
.archive-container__filter-wrap input[type=number]:focus,
.m18__filter-wrap input[type=number]:focus,
.gfield input[type=password]:focus,
.archive-container__filter-wrap input[type=password]:focus,
.m18__filter-wrap input[type=password]:focus {
  border-color: var(--primary-color);
}
.gfield select.filter-select, .archive-container__filter-wrap select.filter-select, .m18__filter-wrap select.filter-select,
.gfield textarea.filter-select,
.archive-container__filter-wrap textarea.filter-select,
.m18__filter-wrap textarea.filter-select,
.gfield input[type=url].filter-select,
.archive-container__filter-wrap input[type=url].filter-select,
.m18__filter-wrap input[type=url].filter-select,
.gfield input[type=tel].filter-select,
.archive-container__filter-wrap input[type=tel].filter-select,
.m18__filter-wrap input[type=tel].filter-select,
.gfield input[type=text].filter-select,
.archive-container__filter-wrap input[type=text].filter-select,
.m18__filter-wrap input[type=text].filter-select,
.gfield input[type=email].filter-select,
.archive-container__filter-wrap input[type=email].filter-select,
.m18__filter-wrap input[type=email].filter-select,
.gfield input[type=search].filter-select,
.archive-container__filter-wrap input[type=search].filter-select,
.m18__filter-wrap input[type=search].filter-select,
.gfield input[type=number].filter-select,
.archive-container__filter-wrap input[type=number].filter-select,
.m18__filter-wrap input[type=number].filter-select,
.gfield input[type=password].filter-select,
.archive-container__filter-wrap input[type=password].filter-select,
.m18__filter-wrap input[type=password].filter-select {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-color: var(--primary-color);
  padding-left: 0.75em;
}
.gfield .ginput_container_select, .archive-container__filter-wrap .ginput_container_select, .m18__filter-wrap .ginput_container_select {
  position: relative;
}
.gfield .ginput_container_select::after, .archive-container__filter-wrap .ginput_container_select::after, .m18__filter-wrap .ginput_container_select::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 2.667rem;
  height: 100%;
  pointer-events: none;
  background-image: url(./assets/svg/ico_select.svg);
  background-repeat: repeat-y;
  background-position: center;
}
.gfield .ginput_container_consent, .archive-container__filter-wrap .ginput_container_consent, .m18__filter-wrap .ginput_container_consent {
  margin: 0.5em 0 1em;
}
.gfield select, .archive-container__filter-wrap select, .m18__filter-wrap select {
  appearance: none;
  padding-right: calc(2.5rem + 1em);
}
.gfield select.filter-select, .archive-container__filter-wrap select.filter-select, .m18__filter-wrap select.filter-select {
  background-image: url(assets/svg/ico_select_simple.svg);
  background-repeat: no-repeat;
  background-position: right 0.75em center;
}
.gfield textarea, .archive-container__filter-wrap textarea, .m18__filter-wrap textarea {
  resize: none;
  height: 8rem;
}
.gfield input[type=radio], .archive-container__filter-wrap input[type=radio], .m18__filter-wrap input[type=radio],
.gfield input[type=checkbox],
.archive-container__filter-wrap input[type=checkbox],
.m18__filter-wrap input[type=checkbox] {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  position: absolute !important;
  word-wrap: normal !important;
}
.gfield input[type=radio]:focus + label::before, .archive-container__filter-wrap input[type=radio]:focus + label::before, .m18__filter-wrap input[type=radio]:focus + label::before,
.gfield input[type=checkbox]:focus + label::before,
.archive-container__filter-wrap input[type=checkbox]:focus + label::before,
.m18__filter-wrap input[type=checkbox]:focus + label::before {
  border-color: var(--primary-color);
}
.gfield input[type=radio]:checked + label::after, .archive-container__filter-wrap input[type=radio]:checked + label::after, .m18__filter-wrap input[type=radio]:checked + label::after,
.gfield input[type=checkbox]:checked + label::after,
.archive-container__filter-wrap input[type=checkbox]:checked + label::after,
.m18__filter-wrap input[type=checkbox]:checked + label::after {
  opacity: 1;
  border-color: var(--primary-color);
}
.gfield input[type=radio] + label, .archive-container__filter-wrap input[type=radio] + label, .m18__filter-wrap input[type=radio] + label,
.gfield input[type=checkbox] + label,
.archive-container__filter-wrap input[type=checkbox] + label,
.m18__filter-wrap input[type=checkbox] + label {
  margin: 0 0 0.3em;
  padding: 0.5em 0 0 1.667rem;
  position: relative;
  user-select: none;
}
.gfield input[type=radio] + label::after, .archive-container__filter-wrap input[type=radio] + label::after, .m18__filter-wrap input[type=radio] + label::after, .gfield input[type=radio] + label::before, .archive-container__filter-wrap input[type=radio] + label::before, .m18__filter-wrap input[type=radio] + label::before,
.gfield input[type=checkbox] + label::after,
.archive-container__filter-wrap input[type=checkbox] + label::after,
.m18__filter-wrap input[type=checkbox] + label::after,
.gfield input[type=checkbox] + label::before,
.archive-container__filter-wrap input[type=checkbox] + label::before,
.m18__filter-wrap input[type=checkbox] + label::before {
  content: "";
  width: 1.278rem;
  height: 1.278rem;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0;
  background-color: #FFFFFF;
  border: 0.167rem solid #E0E5E5;
  cursor: pointer;
}
.gfield input[type=radio] + label::after, .archive-container__filter-wrap input[type=radio] + label::after, .m18__filter-wrap input[type=radio] + label::after,
.gfield input[type=checkbox] + label::after,
.archive-container__filter-wrap input[type=checkbox] + label::after,
.m18__filter-wrap input[type=checkbox] + label::after {
  opacity: 0;
  transition: opacity 0.1s ease;
}
.gfield input[type=radio] + label::before, .archive-container__filter-wrap input[type=radio] + label::before, .m18__filter-wrap input[type=radio] + label::before, .gfield input[type=radio] + label::after, .archive-container__filter-wrap input[type=radio] + label::after, .m18__filter-wrap input[type=radio] + label::after {
  border-radius: 100%;
}
.gfield input[type=radio] + label::after, .archive-container__filter-wrap input[type=radio] + label::after, .m18__filter-wrap input[type=radio] + label::after {
  box-shadow: inset 0 0 0 0.222rem white, inset 0 0 0 5.556rem var(--primary-color);
}
.gfield input[type=checkbox] + label::after, .archive-container__filter-wrap input[type=checkbox] + label::after, .m18__filter-wrap input[type=checkbox] + label::after {
  content: "✔";
  font-size: 0.833rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #151416;
}

.gform_ajax_spinner {
  margin-top: 1em;
}

#gf_form_focus {
  display: none !important;
}

.grecaptcha-badge {
  visibility: hidden;
}

body.gaming-theme .gfield .ginput_container_select::after, body.gaming-theme .archive-container__filter-wrap .ginput_container_select::after, body.gaming-theme .m18__filter-wrap .ginput_container_select::after {
  background-image: url(./assets/svg/ico_select_purple.svg);
}

.flag-icon.gb, .flag-icon.uk {
  display: inline-block;
  border: 1px solid #E0E5E5;
  width: 1.34em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3E%3Cpath fill='%23012169' d='M0 0h640v480H0z'/%3E%3Cpath fill='%23fff' d='m75 0l244 181L562 0h78v62L400 241l240 178v61h-80L320 301L81 480H0v-60l239-178L0 64V0z'/%3E%3Cpath fill='%23c8102e' d='m424 281l216 159v40L369 281zm-184 20l6 35L54 480H0zM640 0v3L391 191l2-44L590 0zM0 0l239 176h-60L0 42z'/%3E%3Cpath fill='%23fff' d='M241 0v480h160V0zM0 160v160h640V160z'/%3E%3Cpath fill='%23c8102e' d='M0 193v96h640v-96zM273 0v480h96V0z'/%3E%3C/svg%3E");
}

.flag-icon.us {
  display: inline-block;
  border: 1px solid #E0E5E5;
  width: 1.34em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3E%3Cpath fill='%23bd3d44' d='M0 0h640v480H0'/%3E%3Cpath stroke='%23fff' stroke-width='37' d='M0 55.3h640M0 129h640M0 203h640M0 277h640M0 351h640M0 425h640'/%3E%3Cpath fill='%23192f5d' d='M0 0h364.8v258.5H0'/%3E%3Cmarker id='flagUs4x30' markerHeight='30' markerWidth='30'%3E%3Cpath fill='%23fff' d='m14 0l9 27L0 10h28L5 27z'/%3E%3C/marker%3E%3Cpath fill='none' marker-mid='url(%23flagUs4x30)' d='m0 0l16 11h61h61h61h61h60L47 37h61h61h60h61L16 63h61h61h61h61h60L47 89h61h61h60h61L16 115h61h61h61h61h60L47 141h61h61h60h61L16 166h61h61h61h61h60L47 192h61h61h60h61L16 218h61h61h61h61h60z'/%3E%3C/svg%3E");
}

.flag-icon.es {
  display: inline-block;
  border: 1px solid #E0E5E5;
  width: 1.34em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3E%3Cpath fill='%23aa151b' d='M0 0h640v480H0z'/%3E%3Cpath fill='%23f1bf00' d='M0 120h640v240H0z'/%3E%3Cpath fill='%23ad1519' d='m127.3 213.3l-.8-.1l-1-1l-.7-.4l-.6-.8s-.7-1.1-.4-2c.3-.9.9-1.2 1.4-1.5a12 12 0 0 1 1.5-.5l1-.4l1.3-.3l.5-.3c.2 0 .7 0 1-.2l1-.2l1.6.1h4.8c.4 0 1.2.3 1.4.4a35 35 0 0 0 2 .7c.5.1 1.6.3 2.2.6c.5.3.9.7 1.1 1l.5 1v1.1l-.5.8l-.6 1l-.8.6s-.5.5-1 .4c-.4 0-4.8-.8-7.6-.8s-7.3.9-7.3.9'/%3E%3Cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='0.3' d='m127.3 213.3l-.8-.1l-1-1l-.7-.4l-.6-.8s-.7-1.1-.4-2c.3-.9.9-1.2 1.4-1.5a12 12 0 0 1 1.5-.5l1-.4l1.3-.3l.5-.3c.2 0 .7 0 1-.2l1-.2l1.6.1h4.8c.4 0 1.2.3 1.4.4a35 35 0 0 0 2 .7c.5.1 1.6.3 2.2.6c.5.3.9.7 1.1 1l.5 1v1.1l-.5.8l-.6 1l-.8.6s-.5.5-1 .4c-.4 0-4.8-.8-7.6-.8s-7.3.9-7.3.9z'/%3E%3Cpath fill='%23c8b100' d='M133.3 207c0-1.3.6-2.3 1.3-2.3c.8 0 1.4 1 1.4 2.4c0 1.3-.6 2.4-1.4 2.4s-1.3-1.1-1.3-2.5'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M133.3 207c0-1.3.6-2.3 1.3-2.3c.8 0 1.4 1 1.4 2.4c0 1.3-.6 2.4-1.4 2.4s-1.3-1.1-1.3-2.5z'/%3E%3Cpath fill='%23c8b100' d='M134 207c0-1.2.3-2.1.7-2.1c.3 0 .6 1 .6 2.1c0 1.3-.3 2.2-.6 2.2c-.4 0-.6-1-.6-2.2'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M134 207c0-1.2.3-2.1.7-2.1c.3 0 .6 1 .6 2.1c0 1.3-.3 2.2-.6 2.2c-.4 0-.6-1-.6-2.2z'/%3E%3Cpath fill='%23c8b100' d='M133.8 204.5c0-.4.4-.8.8-.8s1 .4 1 .8c0 .5-.5.9-1 .9s-.8-.4-.8-.9'/%3E%3Cpath fill='%23c8b100' d='M135.3 204.2v.6h-1.4v-.6h.5V203h-.7v-.6h.7v-.5h.5v.5h.6v.6h-.6v1.2z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M135.3 204.2v.6h-1.4v-.6h.5V203h-.7v-.6h.7v-.5h.5v.5h.6v.6h-.6v1.2h.4'/%3E%3Cpath fill='%23c8b100' d='M135.9 204.2v.6h-2.5v-.6h1V203h-.7v-.6h.7v-.5h.5v.5h.6v.6h-.6v1.2z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M135.9 204.2v.6h-2.5v-.6h1V203h-.7v-.6h.7v-.5h.5v.5h.6v.6h-.6v1.2h1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M134.9 203.7c.4.1.6.4.6.8c0 .5-.4.9-.8.9s-1-.4-1-.9c0-.4.3-.7.7-.8'/%3E%3Cpath fill='%23c8b100' d='M134.7 213.2H130v-1.1l-.3-1.2l-.2-1.5c-1.3-1.7-2.5-2.8-2.9-2.5c.1-.3.2-.6.5-.7c1.1-.7 3.5 1 5.2 3.6l.5.7h3.8l.4-.7c1.8-2.7 4.1-4.3 5.2-3.6c.3.1.4.4.5.7c-.4-.3-1.6.8-2.9 2.5l-.2 1.5l-.2 1.2l-.1 1.1z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M134.7 213.2H130v-1.1l-.3-1.2l-.2-1.5c-1.3-1.7-2.5-2.8-2.9-2.5c.1-.3.2-.6.5-.7c1.1-.7 3.5 1 5.2 3.6l.5.7h3.8l.4-.7c1.8-2.7 4.1-4.3 5.2-3.6c.3.1.4.4.5.7c-.4-.3-1.6.8-2.9 2.5l-.2 1.5l-.2 1.2l-.1 1.1z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M126.8 206.8c1-.5 3 1.1 4.6 3.6m11-3.6c-.8-.5-2.8 1.1-4.5 3.6'/%3E%3Cpath fill='%23c8b100' d='m127.8 215.3l-.5-1a27.3 27.3 0 0 1 14.7 0l-.5.8a5.7 5.7 0 0 0-.3.8a22.9 22.9 0 0 0-6.6-.8c-2.6 0-5.2.3-6.5.8z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m127.8 215.3l-.5-1a27.3 27.3 0 0 1 14.7 0l-.5.8a5.7 5.7 0 0 0-.3.8a22.9 22.9 0 0 0-6.6-.8c-2.6 0-5.2.3-6.5.8l-.3-.6'/%3E%3Cpath fill='%23c8b100' d='M134.6 217.7c2.4 0 5-.4 5.9-.6c.6-.2 1-.5 1-.8c0-.2-.2-.3-.4-.4c-1.4-.5-4-.8-6.5-.8s-5 .3-6.4.8c-.2 0-.3.2-.4.3c0 .4.3.7 1 .9c1 .2 3.5.6 5.8.6'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M134.6 217.7c2.4 0 5-.4 5.9-.6c.6-.2 1-.5 1-.8c0-.2-.2-.3-.4-.4c-1.4-.5-4-.8-6.5-.8s-5 .3-6.4.8c-.2 0-.3.2-.4.3c0 .4.3.7 1 .9c1 .2 3.5.6 5.8.6z'/%3E%3Cpath fill='%23c8b100' d='m142.1 213.2l-.5-.5s-.6.3-1.3.2c-.6 0-.9-1-.9-1s-.7.7-1.3.7c-.7 0-1-.6-1-.6s-.7.5-1.3.4c-.6 0-1.2-.8-1.2-.8s-.6.8-1.2.8c-.6.1-1-.5-1-.5s-.4.6-1.1.7s-1.4-.6-1.4-.6s-.5.7-1 1c-.5 0-1.2-.4-1.2-.4l-.2.5l-.3.1l.2.5a27 27 0 0 1 7.2-.9c3 0 5.5.4 7.4 1z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m142.1 213.2l-.5-.5s-.6.3-1.3.2c-.6 0-.9-1-.9-1s-.7.7-1.3.7c-.7 0-1-.6-1-.6s-.7.5-1.3.4c-.6 0-1.2-.8-1.2-.8s-.6.8-1.2.8c-.6.1-1-.5-1-.5s-.4.6-1.1.7s-1.4-.6-1.4-.6s-.5.7-1 1c-.5 0-1.2-.4-1.2-.4l-.2.5l-.3.1l.2.5a27 27 0 0 1 7.2-.9c3 0 5.5.4 7.4 1z'/%3E%3Cpath fill='%23c8b100' d='M134.7 210.7h.2a1 1 0 0 0 0 .4c0 .6.4 1 1 1a1 1 0 0 0 1-.7l.2-.3v.4c.1.5.6.8 1.1.8c.6 0 1-.4 1-1v-.1l.4-.4l.2.5a.9.9 0 0 0-.1.4a1 1 0 0 0 1 1c.4 0 .7-.2.9-.5l.2-.2v.3c0 .3.1.6.4.7c0 0 .4 0 1-.4l.7-.7v.4s-.5.8-1 1c-.2.2-.5.4-.8.3c-.3 0-.6-.3-.7-.6c-.2.2-.4.2-.7.2c-.6 0-1.2-.3-1.4-.8c-.3.3-.7.5-1.1.5a1.6 1.6 0 0 1-1.2-.6a1.6 1.6 0 0 1-1 .4a1.6 1.6 0 0 1-1.3-.6a1.6 1.6 0 0 1-2.4.2a1.6 1.6 0 0 1-1.2.6a1.5 1.5 0 0 1-1.1-.5c-.2.5-.8.8-1.4.8c-.2 0-.5 0-.7-.2c-.1.3-.4.6-.7.6c-.3 0-.6 0-.9-.2l-1-1l.1-.5l.8.7c.5.4.9.4.9.4c.3 0 .4-.4.4-.7v-.3l.2.2c.2.3.5.5.9.5a1 1 0 0 0 1-1a.9.9 0 0 0 0-.4v-.5l.4.4a.7.7 0 0 0 0 .1c0 .6.5 1 1 1c.6 0 1-.3 1.1-.9v-.3l.2.3c.2.4.6.7 1 .7c.7 0 1.1-.4 1.1-1a1 1 0 0 0 0-.3h.3'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M134.7 210.7h.2a1 1 0 0 0 0 .4c0 .6.4 1 1 1a1 1 0 0 0 1-.7l.2-.3v.4c.1.5.6.8 1.1.8c.6 0 1-.4 1-1v-.1l.4-.4l.2.5a.9.9 0 0 0-.1.4a1 1 0 0 0 1 1c.4 0 .7-.2.9-.5l.2-.2v.3c0 .3.1.6.4.7c0 0 .4 0 1-.4l.7-.7v.4s-.5.8-1 1c-.2.2-.5.4-.8.3c-.3 0-.6-.3-.7-.6c-.2.2-.4.2-.7.2c-.6 0-1.2-.3-1.4-.8c-.3.3-.7.5-1.1.5a1.6 1.6 0 0 1-1.2-.6a1.6 1.6 0 0 1-1 .4a1.6 1.6 0 0 1-1.3-.6a1.6 1.6 0 0 1-2.4.2a1.6 1.6 0 0 1-1.2.6a1.5 1.5 0 0 1-1.1-.5c-.2.5-.8.8-1.4.8c-.2 0-.5 0-.7-.2c-.1.3-.4.6-.7.6c-.3 0-.6 0-.9-.2l-1-1l.1-.5l.8.7c.5.4.9.4.9.4c.3 0 .4-.4.4-.7v-.3l.2.2c.2.3.5.5.9.5a1 1 0 0 0 1-1a.9.9 0 0 0 0-.4v-.5l.4.4a.7.7 0 0 0 0 .1c0 .6.5 1 1 1c.6 0 1-.3 1.1-.9v-.3l.2.3c.2.4.6.7 1 .7c.7 0 1.1-.4 1.1-1a1 1 0 0 0 0-.3h.3z'/%3E%3Cpath fill='%23c8b100' d='M134.6 213.3c-2.9 0-5.5.4-7.3 1l-.3-.2l.1-.3a27 27 0 0 1 7.5-1c3 0 5.7.4 7.6 1c0 0 .2.2.1.3l-.3.2a27.3 27.3 0 0 0-7.4-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='0.3' d='M134.6 213.3c-2.9 0-5.5.4-7.3 1l-.3-.2l.1-.3a27 27 0 0 1 7.5-1c3 0 5.7.4 7.6 1c0 0 .2.2.1.3l-.3.2a27.3 27.3 0 0 0-7.4-1z'/%3E%3Cpath fill='%23fff' d='M131.8 214.4c0-.3.2-.4.5-.4a.4.4 0 0 1 .4.4c0 .2-.2.4-.4.4a.4.4 0 0 1-.5-.4'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M131.8 214.4c0-.3.2-.4.5-.4a.4.4 0 0 1 .4.4c0 .2-.2.4-.4.4a.4.4 0 0 1-.5-.4z'/%3E%3Cpath fill='%23ad1519' d='M134.7 214.5h-1c-.1 0-.3 0-.3-.3l.3-.3h2a.3.3 0 0 1 .2.3a.3.3 0 0 1-.3.3h-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M134.7 214.5h-1c-.1 0-.3 0-.3-.3l.3-.3h2a.3.3 0 0 1 .2.3a.3.3 0 0 1-.3.3h-1'/%3E%3Cpath fill='%23058e6e' d='M130 214.9h-.7c-.1 0-.3 0-.3-.2a.3.3 0 0 1 .2-.3l.7-.1l.7-.1c.2 0 .3 0 .4.2a.3.3 0 0 1-.3.4z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M130 214.9h-.7c-.1 0-.3 0-.3-.2a.3.3 0 0 1 .2-.3l.7-.1l.7-.1c.2 0 .3 0 .4.2a.3.3 0 0 1-.3.4h-.7'/%3E%3Cpath fill='%23ad1519' d='m127.3 215.3l.3-.4h.7l-.4.6z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m127.3 215.3l.3-.4h.7l-.4.6l-.6-.2'/%3E%3Cpath fill='%23fff' d='M136.6 214.4c0-.3.2-.4.4-.4a.4.4 0 0 1 .5.4a.4.4 0 0 1-.5.4a.4.4 0 0 1-.4-.4'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M136.6 214.4c0-.3.2-.4.4-.4a.4.4 0 0 1 .5.4a.4.4 0 0 1-.5.4a.4.4 0 0 1-.4-.4z'/%3E%3Cpath fill='%23058e6e' d='M139.3 214.9h.6a.3.3 0 0 0 .4-.2a.3.3 0 0 0-.3-.3l-.6-.1l-.7-.1c-.2 0-.3 0-.4.2c0 .2.1.3.3.4z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M139.3 214.9h.6a.3.3 0 0 0 .4-.2a.3.3 0 0 0-.3-.3l-.6-.1l-.7-.1c-.2 0-.3 0-.4.2c0 .2.1.3.3.4h.7'/%3E%3Cpath fill='%23ad1519' d='m142 215.4l-.3-.5h-.7l.3.6z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m142 215.4l-.3-.5h-.7l.3.6l.6-.1'/%3E%3Cpath fill='%23ad1519' d='M134.6 217.1a25 25 0 0 1-6-.6a25.5 25.5 0 0 1 12.1 0c-1.6.4-3.7.6-6 .6'/%3E%3Cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='0.3' d='M134.6 217.1a25 25 0 0 1-6-.6a25.5 25.5 0 0 1 12.1 0c-1.6.4-3.7.6-6 .6z'/%3E%3Cpath fill='%23c8b100' d='m142 212l-.1-.3c-.2 0-.3 0-.4.2c0 .2 0 .4.2.4c0 0 .2 0 .3-.3'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m142 212l-.1-.3c-.2 0-.3 0-.4.2c0 .2 0 .4.2.4c0 0 .2 0 .3-.3z'/%3E%3Cpath fill='%23c8b100' d='M137.3 211.2c0-.2 0-.4-.2-.4c0 0-.2.1-.2.3c0 .2 0 .4.2.4l.3-.3'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M137.3 211.2c0-.2 0-.4-.2-.4c0 0-.2.1-.2.3c0 .2 0 .4.2.4l.3-.3z'/%3E%3Cpath fill='%23c8b100' d='m132 211.2l.1-.4c.2 0 .3.1.3.3c0 .2 0 .4-.2.4z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m132 211.2l.1-.4c.2 0 .3.1.3.3c0 .2 0 .4-.2.4z'/%3E%3Cpath fill='%23c8b100' d='m127.3 212l.1-.3c.2 0 .3 0 .4.2c0 .2 0 .4-.2.4c0 0-.2 0-.3-.3'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m127.3 212l.1-.3c.2 0 .3 0 .4.2c0 .2 0 .4-.2.4c0 0-.2 0-.3-.3z'/%3E%3Cpath fill='%23c8b100' d='m134.6 208.5l-.8.5l.6 1.3l.2.1l.2-.1l.7-1.3z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m134.6 208.5l-.8.5l.6 1.3l.2.1l.2-.1l.7-1.3l-.9-.5'/%3E%3Cpath fill='%23c8b100' d='m132.8 210.5l.4.5l1.3-.4l.1-.2l-.1-.2l-1.3-.3z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m132.8 210.5l.4.5l1.3-.4l.1-.2l-.1-.2l-1.3-.3l-.4.6'/%3E%3Cpath fill='%23c8b100' d='m136.4 210.5l-.3.5l-1.3-.4l-.2-.2l.2-.2l1.3-.3z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m136.4 210.5l-.3.5l-1.3-.4l-.2-.2l.2-.2l1.3-.3l.3.6'/%3E%3Cpath fill='%23c8b100' d='m129.3 209l-.7.7l.9 1l.2.1l.1-.1l.3-1.3z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m129.3 209l-.7.7l.9 1l.2.1l.1-.1l.3-1.3l-.8-.3'/%3E%3Cpath fill='%23c8b100' d='m128 211.2l.4.5l1.2-.6v-.2l-.1-.2l-1.3-.1l-.3.6'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m128 211.2l.4.5l1.2-.6v-.2l-.1-.2l-1.3-.1l-.3.6'/%3E%3Cpath fill='%23c8b100' d='m131.5 210.5l-.3.6H130l-.2-.2l.1-.3l1.2-.6z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m131.5 210.5l-.3.6H130l-.2-.2l.1-.3l1.2-.6l.5.5'/%3E%3Cpath fill='%23c8b100' d='M126.6 211.4v.6l-1.4.2l-.2-.1v-.2l1-.9z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M126.6 211.4v.6l-1.4.2l-.2-.1v-.2l1-.9l.6.4'/%3E%3Cpath fill='%23c8b100' d='M129.2 210.9c0-.3.2-.5.5-.5s.5.2.5.5a.5.5 0 0 1-.5.4a.5.5 0 0 1-.5-.4'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M129.2 210.9c0-.3.2-.5.5-.5s.5.2.5.5a.5.5 0 0 1-.5.4a.5.5 0 0 1-.5-.4z'/%3E%3Cpath fill='%23c8b100' d='m140 209l.7.7l-.9 1l-.2.1l-.1-.1l-.3-1.3z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m140 209l.7.7l-.9 1l-.2.1l-.1-.1l-.3-1.3l.8-.3'/%3E%3Cpath fill='%23c8b100' d='m141.4 211.2l-.5.5l-1.2-.6v-.2l.1-.2l1.3-.1z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m141.4 211.2l-.5.5l-1.2-.6v-.2l.1-.2l1.3-.1l.3.6'/%3E%3Cpath fill='%23c8b100' d='m137.8 210.5l.3.6h1.3l.2-.2l-.1-.3l-1.2-.6z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m137.8 210.5l.3.6h1.3l.2-.2l-.1-.3l-1.2-.6l-.5.5'/%3E%3Cpath fill='%23c8b100' d='m142.5 211.4l.1.6l1.3.2l.2-.1v-.2l-1-.9z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m142.5 211.4l.1.6l1.3.2l.2-.1v-.2l-1-.9l-.6.4'/%3E%3Cpath fill='%23c8b100' d='M134.2 210.4a.5.5 0 0 1 .4-.4c.3 0 .5.2.5.4a.5.5 0 0 1-.5.5a.5.5 0 0 1-.4-.5'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M134.2 210.4a.5.5 0 0 1 .4-.4c.3 0 .5.2.5.4a.5.5 0 0 1-.5.5a.5.5 0 0 1-.4-.5z'/%3E%3Cpath fill='%23c8b100' d='M139.1 210.9c0-.3.3-.5.5-.5a.5.5 0 0 1 .5.5a.5.5 0 0 1-.5.4a.5.5 0 0 1-.5-.4'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M139.1 210.9c0-.3.3-.5.5-.5a.5.5 0 0 1 .5.5a.5.5 0 0 1-.5.4a.5.5 0 0 1-.5-.4z'/%3E%3Cpath fill='%23c8b100' d='m124.8 212.2l-.6-.7c-.2-.2-.7-.3-.7-.3c0-.1.3-.3.6-.3a.5.5 0 0 1 .4.2v-.2s.3 0 .4.3v1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m124.8 212.2l-.6-.7c-.2-.2-.7-.3-.7-.3c0-.1.3-.3.6-.3a.5.5 0 0 1 .4.2v-.2s.3 0 .4.3v1z'/%3E%3Cpath fill='%23c8b100' d='M124.8 212c.1-.2.4-.2.5 0c.2.1.3.3.2.5l-.5-.1c-.2-.1-.3-.4-.2-.5'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M124.8 212c.1-.2.4-.2.5 0c.2.1.3.3.2.5l-.5-.1c-.2-.1-.3-.4-.2-.5z'/%3E%3Cpath fill='%23c8b100' d='m144.3 212.2l.6-.7c.2-.2.7-.3.7-.3c0-.1-.3-.3-.6-.3a.6.6 0 0 0-.4.2v-.2s-.3 0-.4.3v.7z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m144.3 212.2l.6-.7c.2-.2.7-.3.7-.3c0-.1-.3-.3-.6-.3a.6.6 0 0 0-.4.2v-.2s-.3 0-.4.3v.7z'/%3E%3Cpath fill='%23c8b100' d='M144.3 212c0-.2-.3-.2-.5 0c-.2.1-.2.3-.1.5l.5-.1c.2-.1.2-.4.1-.5'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M144.3 212c0-.2-.3-.2-.5 0c-.2.1-.2.3-.1.5l.5-.1c.2-.1.2-.4.1-.5z'/%3E%3Cpath fill='%23c8b100' d='M124 223h21.4v-5.5H124z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M124 223h21.4v-5.5H124z'/%3E%3Cpath fill='%23c8b100' d='M126.2 226.8a1 1 0 0 1 .4 0h16.5a1.4 1.4 0 0 1-1-1.2c0-.6.5-1.1 1-1.3a1.7 1.7 0 0 1-.4 0h-16a1.4 1.4 0 0 1-.5 0c.6.2 1 .7 1 1.3a1.3 1.3 0 0 1-1 1.2'/%3E%3Cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='0.4' d='M126.2 226.8a1 1 0 0 1 .4 0h16.5a1.4 1.4 0 0 1-1-1.2c0-.6.5-1.1 1-1.3a1.7 1.7 0 0 1-.4 0h-16a1.4 1.4 0 0 1-.5 0c.6.2 1 .7 1 1.3a1.3 1.3 0 0 1-1 1.2z'/%3E%3Cpath fill='%23c8b100' d='M126.6 226.8h16c.6 0 1 .3 1 .7c0 .4-.4.8-1 .8h-16c-.5 0-1-.4-1-.8s.5-.8 1-.8'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M126.6 226.8h16c.6 0 1 .3 1 .7c0 .4-.4.8-1 .8h-16c-.5 0-1-.4-1-.8s.5-.8 1-.8z'/%3E%3Cpath fill='%23c8b100' d='M126.6 223h16c.6 0 1 .4 1 .7c0 .4-.4.6-1 .6h-16c-.5 0-1-.2-1-.6c0-.3.5-.6 1-.6'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M126.6 223h16c.6 0 1 .4 1 .7c0 .4-.4.6-1 .6h-16c-.5 0-1-.2-1-.6c0-.3.5-.6 1-.6z'/%3E%3Cpath fill='%23005bbf' d='M149.6 317.4c-1.4 0-2.8-.3-3.7-.8a8.4 8.4 0 0 0-3.8-.8c-1.4 0-2.7.3-3.7.8a8.3 8.3 0 0 1-3.8.8c-1.5 0-2.8-.3-3.7-.8a8.4 8.4 0 0 0-3.7-.8a8 8 0 0 0-3.7.8a8.3 8.3 0 0 1-3.8.8v2.4c1.5 0 2.8-.4 3.8-.9a8.2 8.2 0 0 1 3.7-.8c1.4 0 2.7.3 3.7.8s2.2.9 3.7.9a8.4 8.4 0 0 0 3.8-.9c1-.5 2.3-.8 3.7-.8c1.5 0 2.8.3 3.8.8s2.2.9 3.7.9z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M149.6 317.4c-1.4 0-2.8-.3-3.7-.8a8.4 8.4 0 0 0-3.8-.8c-1.4 0-2.7.3-3.7.8a8.3 8.3 0 0 1-3.8.8c-1.5 0-2.8-.3-3.7-.8a8.4 8.4 0 0 0-3.7-.8a8 8 0 0 0-3.7.8a8.3 8.3 0 0 1-3.8.8v2.4c1.5 0 2.8-.4 3.8-.9a8.2 8.2 0 0 1 3.7-.8c1.4 0 2.7.3 3.7.8s2.2.9 3.7.9a8.4 8.4 0 0 0 3.8-.9c1-.5 2.3-.8 3.7-.8c1.5 0 2.8.3 3.8.8s2.2.9 3.7.9z'/%3E%3Cpath fill='%23ccc' d='M149.6 319.8a8 8 0 0 1-3.7-.9a8.3 8.3 0 0 0-3.8-.8c-1.4 0-2.7.3-3.7.8s-2.3.9-3.8.9s-2.8-.4-3.7-.9a8.4 8.4 0 0 0-3.7-.8a8.2 8.2 0 0 0-3.7.8c-1 .5-2.3.9-3.8.9v2.3c1.5 0 2.8-.4 3.8-.9a8.1 8.1 0 0 1 3.7-.7c1.4 0 2.7.2 3.7.7a8.3 8.3 0 0 0 7.5 0a8.5 8.5 0 0 1 7.5.1a8.1 8.1 0 0 0 3.7.8z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M149.6 319.8a8 8 0 0 1-3.7-.9a8.3 8.3 0 0 0-3.8-.8c-1.4 0-2.7.3-3.7.8s-2.3.9-3.8.9s-2.8-.4-3.7-.9a8.4 8.4 0 0 0-3.7-.8a8.2 8.2 0 0 0-3.7.8c-1 .5-2.3.9-3.8.9v2.3c1.5 0 2.8-.4 3.8-.9a8.1 8.1 0 0 1 3.7-.7c1.4 0 2.7.2 3.7.7a8.3 8.3 0 0 0 7.5 0a8.5 8.5 0 0 1 7.5.1a8.1 8.1 0 0 0 3.7.8v-2.3'/%3E%3Cpath fill='%23005bbf' d='M149.6 322a7 7 0 0 1-3.7-.8a8.3 8.3 0 0 0-3.8-.7c-1.4 0-2.7.2-3.7.7c-1 .6-2.3.9-3.8.9s-2.8-.4-3.7-.9a8.4 8.4 0 0 0-3.7-.8a8 8 0 0 0-3.7.8c-1 .5-2.3.9-3.8.9v2.3c1.5 0 2.8-.3 3.8-.9a10.2 10.2 0 0 1 7.4 0a7 7 0 0 0 3.7.9a8.4 8.4 0 0 0 3.8-.8c1-.5 2.3-.8 3.7-.8c1.5 0 2.8.3 3.8.8s2.2.8 3.7.8z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M149.6 322a7 7 0 0 1-3.7-.8a8.3 8.3 0 0 0-3.8-.7c-1.4 0-2.7.2-3.7.7c-1 .6-2.3.9-3.8.9s-2.8-.4-3.7-.9a8.4 8.4 0 0 0-3.7-.8a8 8 0 0 0-3.7.8c-1 .5-2.3.9-3.8.9v2.3c1.5 0 2.8-.3 3.8-.9a10.2 10.2 0 0 1 7.4 0a7 7 0 0 0 3.7.9a8.4 8.4 0 0 0 3.8-.8c1-.5 2.3-.8 3.7-.8c1.5 0 2.8.3 3.8.8s2.2.8 3.7.8V322'/%3E%3Cpath fill='%23ccc' d='M149.6 326.7a8 8 0 0 1-3.7-.8c-1-.5-2.3-.8-3.7-.8a8.4 8.4 0 0 0-3.8.8c-1 .5-2.3.8-3.8.8a7 7 0 0 1-3.7-.9a8.4 8.4 0 0 0-3.7-.7c-1.4 0-2.7.3-3.7.8s-2.3.8-3.8.8v-2.3a8.3 8.3 0 0 0 3.8-.9a10.2 10.2 0 0 1 7.4 0a8 8 0 0 0 3.7.9a8.4 8.4 0 0 0 3.8-.8c1-.5 2.3-.8 3.8-.8c1.4 0 2.7.3 3.7.8s2.3.8 3.7.8z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M149.6 326.7a8 8 0 0 1-3.7-.8c-1-.5-2.3-.8-3.7-.8a8.4 8.4 0 0 0-3.8.8c-1 .5-2.3.8-3.8.8a7 7 0 0 1-3.7-.9a8.4 8.4 0 0 0-3.7-.7c-1.4 0-2.7.3-3.7.8s-2.3.8-3.8.8v-2.3a8.3 8.3 0 0 0 3.8-.9a10.2 10.2 0 0 1 7.4 0a8 8 0 0 0 3.7.9a8.4 8.4 0 0 0 3.8-.8c1-.5 2.3-.8 3.8-.8c1.4 0 2.7.3 3.7.8s2.3.8 3.7.8v2.3'/%3E%3Cpath fill='%23005bbf' d='M149.6 329a8.1 8.1 0 0 1-3.7-.8c-1-.5-2.3-.8-3.7-.8a8.4 8.4 0 0 0-3.8.8c-1 .5-2.3.8-3.8.8a7 7 0 0 1-3.7-.9a8.4 8.4 0 0 0-3.7-.7c-1.4 0-2.7.3-3.7.8s-2.3.8-3.8.8v-2.3a8.3 8.3 0 0 0 3.8-.8c1-.5 2.3-.8 3.7-.8c1.4 0 2.7.3 3.7.7a8.4 8.4 0 0 0 7.5 0c1-.4 2.3-.7 3.8-.7c1.4 0 2.7.3 3.7.8s2.2.8 3.7.8z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M149.6 329a8.1 8.1 0 0 1-3.7-.8c-1-.5-2.3-.8-3.7-.8a8.4 8.4 0 0 0-3.8.8c-1 .5-2.3.8-3.8.8a7 7 0 0 1-3.7-.9a8.4 8.4 0 0 0-3.7-.7c-1.4 0-2.7.3-3.7.8s-2.3.8-3.8.8v-2.3a8.3 8.3 0 0 0 3.8-.8c1-.5 2.3-.8 3.7-.8c1.4 0 2.7.3 3.7.7a8.4 8.4 0 0 0 7.5 0c1-.4 2.3-.7 3.8-.7c1.4 0 2.7.3 3.7.8s2.2.8 3.7.8z'/%3E%3Cpath fill='%23c8b100' d='m126.2 308l.2.5c0 1.5-1.3 2.6-2.7 2.6h22a2.7 2.7 0 0 1-2.7-2.6v-.5a1.3 1.3 0 0 1-.3 0h-16a1.4 1.4 0 0 1-.5 0'/%3E%3Cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='0.4' d='m126.2 308l.2.5c0 1.5-1.3 2.6-2.7 2.6h22a2.7 2.7 0 0 1-2.7-2.6v-.5a1.3 1.3 0 0 1-.3 0h-16a1.4 1.4 0 0 1-.5 0z'/%3E%3Cpath fill='%23c8b100' d='M126.6 306.5h16c.6 0 1 .3 1 .8c0 .4-.4.7-1 .7h-16c-.5 0-1-.3-1-.8c0-.4.5-.7 1-.7'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M126.6 306.5h16c.6 0 1 .3 1 .8c0 .4-.4.7-1 .7h-16c-.5 0-1-.3-1-.8c0-.4.5-.7 1-.7z'/%3E%3Cpath fill='%23c8b100' d='M123.7 316.7h22V311h-22z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M123.7 316.7h22V311h-22z'/%3E%3Cpath fill='%23ad1519' d='M122 286.7c-2.2 1.2-3.7 2.5-3.4 3.2c0 .6.8 1 1.8 1.6c1.5 1.1 2.5 3 1.7 4a5.5 5.5 0 0 0-.1-8.8'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M122 286.7c-2.2 1.2-3.7 2.5-3.4 3.2c0 .6.8 1 1.8 1.6c1.5 1.1 2.5 3 1.7 4a5.5 5.5 0 0 0-.1-8.8z'/%3E%3Cpath fill='%23ccc' d='M126.8 305.6h15.6V229h-15.6v76.5z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M138 229.2v76.3m1.7-76.3v76.3m-12.9 0h15.6v-76.4h-15.6v76.5z'/%3E%3Cpath fill='%23ad1519' d='M158.4 257.7a49.6 49.6 0 0 0-23.3-2c-9.4 1.6-16.5 5.3-15.9 8.4v.2l-3.5-8.2c-.6-3.3 7.2-7.5 17.6-9.2a43 43 0 0 1 9.2-.7c6.6 0 12.4.8 15.8 2.1v9.4'/%3E%3Cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='0.4' d='M158.4 257.7a49.6 49.6 0 0 0-23.3-2c-9.4 1.6-16.5 5.3-15.9 8.4v.2l-3.5-8.2c-.6-3.3 7.2-7.5 17.6-9.2a43 43 0 0 1 9.2-.7c6.6 0 12.4.8 15.8 2.1v9.4'/%3E%3Cpath fill='%23ad1519' d='M126.8 267.3c-4.3-.3-7.3-1.4-7.6-3.2c-.3-1.5 1.2-3 3.8-4.5c1.2.1 2.5.3 3.8.3z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M126.8 267.3c-4.3-.3-7.3-1.4-7.6-3.2c-.3-1.5 1.2-3 3.8-4.5c1.2.1 2.5.3 3.8.3v7.4'/%3E%3Cpath fill='%23ad1519' d='M142.5 261.5c2.7.4 4.7 1 5.7 1.9l.1.2c.5 1-1.9 3-5.9 5.4v-7.5'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M142.5 261.5c2.7.4 4.7 1 5.7 1.9l.1.2c.5 1-1.9 3-5.9 5.4v-7.5'/%3E%3Cpath fill='%23ad1519' d='M117.1 282c-.4-1.2 3.8-3.6 9.8-5.8l7.8-3.2c8.3-3.7 14.4-7.9 13.6-9.4v-.2c.4.4 1 8 1 8c.8 1.3-4.8 5.5-12.4 9.1c-2.5 1.2-7.6 3-10 4c-4.4 1.4-8.7 4.3-8.3 5.3l-1.5-7.7'/%3E%3Cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='0.4' d='M117.1 282c-.4-1.2 3.8-3.6 9.8-5.8l7.8-3.2c8.3-3.7 14.4-7.9 13.6-9.4v-.2c.4.4 1 8 1 8c.8 1.3-4.8 5.5-12.4 9.1c-2.5 1.2-7.6 3-10 4c-4.4 1.4-8.7 4.3-8.3 5.3l-1.5-7.7z'/%3E%3Cpath fill='%23c8b100' d='M125.8 254c1.9-.6 3.1-1.5 2.5-3c-.4-1-1.4-1-2.8-.6l-2.6 1l2.3 5.8l.8-.3l.8-.3zm-1.2-2.7l.7-.3c.5-.2 1.2.1 1.4.8c.2.5.2 1-.5 1.5a4.4 4.4 0 0 1-.6.3zm7.3-2.5l-.9.3h-.8l1.3 6.1l4.3-.8l-.2-.4v-.4l-2.5.6zm8.4 5.2c.8-2.2 1.7-4.3 2.7-6.4a5.3 5.3 0 0 1-1 0a54.8 54.8 0 0 1-1.8 4.6l-2.4-4.3l-1 .1h-1a131.4 131.4 0 0 1 3.5 6zm8.8-4.7l.4-.9a3.4 3.4 0 0 0-1.7-.6c-1.7-.1-2.7.6-2.8 1.7c-.2 2.1 3.2 2 3 3.4c0 .6-.7.9-1.4.8c-.8 0-1.4-.5-1.4-1.2h-.3a7.3 7.3 0 0 1-.4 1.1a4 4 0 0 0 1.8.6c1.7.2 3-.5 3.2-1.7c.2-2-3.3-2.1-3.1-3.4c0-.5.4-.8 1.3-.7c.7 0 1 .4 1.2.9z'/%3E%3Cpath fill='%23ad1519' d='M277.9 211.6s-.7.8-1.3.9c-.5 0-1.1-.5-1.1-.5s-.5.5-1 .6c-.6.1-1.4-.6-1.4-.6l-1 1c-.6 0-1.1-.3-1.1-.3s-.3.4-.7.6h-.4l-.6-.4l-.7-.7l-.5-.3l-.4-1v-.5c-.1-.6.8-1.4 2.2-1.7a3.9 3.9 0 0 1 2 0c.5-.5 1.7-.8 3-.8s2.4.3 3 .7a5.5 5.5 0 0 1 2.9-.7c1.3 0 2.5.3 3 .8c.5-.2 1.2-.2 2 0c1.4.3 2.3 1 2.2 1.7v.5l-.4 1l-.6.3l-.6.7l-.6.3s-.3.2-.4 0c-.4-.1-.7-.5-.7-.5s-.6.4-1 .2c-.5-.2-1-1-1-1s-.9.8-1.4.7c-.6-.1-1-.6-1-.6s-.7.6-1.2.5c-.5-.1-1.2-.9-1.2-.9'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M277.9 211.6s-.7.8-1.3.9c-.5 0-1.1-.5-1.1-.5s-.5.5-1 .6c-.6.1-1.4-.6-1.4-.6l-1 1c-.6 0-1.1-.3-1.1-.3s-.3.4-.7.6h-.4l-.6-.4l-.7-.7l-.5-.3l-.4-1v-.5c-.1-.6.8-1.4 2.2-1.7a3.9 3.9 0 0 1 2 0c.5-.5 1.7-.8 3-.8s2.4.3 3 .7a5.5 5.5 0 0 1 2.9-.7c1.3 0 2.5.3 3 .8c.5-.2 1.2-.2 2 0c1.4.3 2.3 1 2.2 1.7v.5l-.4 1l-.6.3l-.6.7l-.6.3s-.3.2-.4 0c-.4-.1-.7-.5-.7-.5s-.6.4-1 .2c-.5-.2-1-1-1-1s-.9.8-1.4.7c-.6-.1-1-.6-1-.6s-.7.6-1.2.5c-.5-.1-1.2-.9-1.2-.9z'/%3E%3Cpath fill='%23c8b100' d='M276.5 207.6c0-1 .6-2 1.3-2c.8 0 1.3 1 1.3 2s-.5 1.8-1.3 1.8c-.7 0-1.3-.8-1.3-1.9'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M276.5 207.6c0-1 .6-2 1.3-2c.8 0 1.3 1 1.3 2s-.5 1.8-1.3 1.8c-.7 0-1.3-.8-1.3-1.9z'/%3E%3Cpath fill='%23c8b100' d='M277.3 207.6c0-1 .2-1.8.5-1.8c.4 0 .7.8.7 1.8s-.3 1.7-.6 1.7c-.4 0-.6-.8-.6-1.8'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M277.3 207.6c0-1 .2-1.8.5-1.8c.4 0 .7.8.7 1.8s-.3 1.7-.6 1.7c-.4 0-.6-.8-.6-1.8z'/%3E%3Cpath fill='%23c8b100' d='M271 215.3a4.5 4.5 0 0 0-.5-1a27.4 27.4 0 0 1 14.8 0l-.6.8a5.2 5.2 0 0 0-.3.8a22.9 22.9 0 0 0-6.6-.8c-2.6 0-5.2.3-6.6.8z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M271 215.3a4.5 4.5 0 0 0-.5-1a27.4 27.4 0 0 1 14.8 0l-.6.8a5.2 5.2 0 0 0-.3.8a22.9 22.9 0 0 0-6.6-.8c-2.6 0-5.2.3-6.6.8l-.2-.6'/%3E%3Cpath fill='%23c8b100' d='M277.8 217.7c2.4 0 5-.4 5.9-.6c.6-.2 1-.5 1-.8c0-.2-.2-.3-.4-.4a24.1 24.1 0 0 0-6.5-.8c-2.5 0-5 .3-6.4.8c-.2 0-.3.2-.4.3c0 .4.3.7 1 .9c1 .2 3.5.6 5.8.6'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M277.8 217.7c2.4 0 5-.4 5.9-.6c.6-.2 1-.5 1-.8c0-.2-.2-.3-.4-.4a24.1 24.1 0 0 0-6.5-.8c-2.5 0-5 .3-6.4.8c-.2 0-.3.2-.4.3c0 .4.3.7 1 .9c1 .2 3.5.6 5.8.6z'/%3E%3Cpath fill='%23fff' d='M283.5 208.4c0-.2.2-.4.4-.4s.5.2.5.4s-.2.4-.5.4a.4.4 0 0 1-.4-.4'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.2' d='M283.5 208.4c0-.2.2-.4.4-.4s.5.2.5.4s-.2.4-.5.4a.4.4 0 0 1-.4-.4zm-.2-1.4a.4.4 0 0 1 .4-.4c.2 0 .4.1.4.4s-.2.4-.4.4a.4.4 0 0 1-.4-.4zm-1.1-1c0-.2.2-.3.4-.3s.4.1.4.4c0 .2-.2.4-.4.4a.4.4 0 0 1-.4-.5zm-1.4-.4c0-.2.2-.4.4-.4c.3 0 .5.2.5.4s-.2.4-.4.4s-.5-.2-.5-.4zm-1.4 0c0-.2.2-.3.5-.3s.4.1.4.4c0 .2-.2.4-.4.4a.4.4 0 0 1-.5-.4z'/%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-width='0.3' d='m287.8 211.2l.2-1a2.7 2.7 0 0 0-2.7-2.8c-.5 0-1 .1-1.3.3'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m283 209.2l.2-.8c0-1.1-1.1-2-2.5-2c-.6 0-1.2.2-1.6.4'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.2' d='M288.2 210c0-.3.2-.5.4-.5s.4.2.4.4c0 .3-.2.4-.4.4s-.4-.1-.4-.4zm-.2-1.6c0-.2.2-.4.4-.4a.4.4 0 0 1 .5.4c0 .2-.2.4-.4.4c-.3 0-.5-.2-.5-.4zm-1-1.1a.4.4 0 0 1 .5-.4c.2 0 .4.1.4.4a.4.4 0 0 1-.4.4a.4.4 0 0 1-.5-.4zm-1.3-.7c0-.2.2-.4.5-.4s.4.2.4.4c0 .3-.2.5-.4.5a.4.4 0 0 1-.5-.5zm-1.4.1c0-.2.2-.4.5-.4s.4.2.4.4s-.2.4-.4.4s-.5-.2-.5-.4z'/%3E%3Cpath fill='%23c8b100' d='m285.3 213.2l-.5-.5s-.6.3-1.3.2c-.6 0-.9-1-.9-1s-.7.7-1.3.7c-.7 0-1-.6-1-.6s-.7.5-1.3.4c-.6 0-1.2-.8-1.2-.8s-.6.8-1.2.8c-.6.1-1-.5-1-.5s-.3.6-1.1.7s-1.4-.6-1.4-.6s-.4.7-1 1c-.5 0-1.2-.4-1.2-.4l-.1.5l-.3.1l.1.5a27 27 0 0 1 7.3-.9c2.8 0 5.4.4 7.3 1l.2-.6'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m285.3 213.2l-.5-.5s-.6.3-1.3.2c-.6 0-.9-1-.9-1s-.7.7-1.3.7c-.7 0-1-.6-1-.6s-.7.5-1.3.4c-.6 0-1.2-.8-1.2-.8s-.6.8-1.2.8c-.6.1-1-.5-1-.5s-.3.6-1.1.7s-1.4-.6-1.4-.6s-.4.7-1 1c-.5 0-1.2-.4-1.2-.4l-.1.5l-.3.1l.1.5a27 27 0 0 1 7.3-.9c2.8 0 5.4.4 7.3 1l.2-.6z'/%3E%3Cpath fill='%23fff' d='M271.3 208.4c0-.2.2-.4.4-.4s.4.2.4.4a.4.4 0 0 1-.4.4a.4.4 0 0 1-.4-.4'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.2' d='M271.3 208.4c0-.2.2-.4.4-.4s.4.2.4.4a.4.4 0 0 1-.4.4a.4.4 0 0 1-.4-.4zm.2-1.4c0-.3.2-.4.4-.4s.5.1.5.4s-.2.4-.5.4a.4.4 0 0 1-.4-.4zm1-1c0-.2.3-.3.5-.3s.5.1.5.4c0 .2-.2.4-.5.4a.4.4 0 0 1-.4-.5zm1.4-.4c0-.2.2-.4.5-.4s.4.2.4.4s-.2.4-.4.4s-.5-.2-.5-.4zm1.4 0c0-.2.2-.3.5-.3c.2 0 .4.1.4.4c0 .2-.2.4-.4.4a.4.4 0 0 1-.5-.4z'/%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-width='0.3' d='M267.8 211.2a2.8 2.8 0 0 1-.2-1a2.7 2.7 0 0 1 2.7-2.8c.5 0 1 .1 1.4.3'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M272.7 209.2a1.7 1.7 0 0 1-.3-.8c0-1 1.2-2 2.6-2a3 3 0 0 1 1.5.4'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.2' d='M266.6 210c0-.3.2-.5.4-.5c.3 0 .4.2.4.4a.4.4 0 0 1-.4.4c-.2 0-.4-.1-.4-.4zm.1-1.6c0-.2.3-.4.5-.4s.4.2.4.4s-.2.4-.4.4s-.4-.2-.4-.4zm1-1.1c0-.3.2-.4.5-.4a.4.4 0 0 1 .4.4a.4.4 0 0 1-.4.4a.4.4 0 0 1-.5-.4zm1.3-.7c0-.2.2-.4.5-.4c.2 0 .4.2.4.4c0 .3-.2.5-.4.5a.4.4 0 0 1-.5-.5zm1.4.1c0-.2.2-.4.5-.4a.4.4 0 0 1 .4.4a.4.4 0 0 1-.4.4c-.3 0-.5-.2-.5-.4z'/%3E%3Cpath fill='%23c8b100' d='M277.9 210.7h.2a1 1 0 0 0 0 .4c0 .6.5 1 1 1a1 1 0 0 0 1-.7l.2-.3v.4c.1.5.6.8 1.1.8c.6 0 1-.4 1-1a.7.7 0 0 0 0-.1l.4-.4l.2.5a1 1 0 0 0-.1.4a1 1 0 0 0 1 1c.4 0 .7-.2.9-.5l.2-.2v.3c0 .3.1.6.4.7c0 0 .4 0 1-.4s.7-.7.7-.7v.4s-.5.8-1 1c-.2.2-.5.4-.8.3c-.3 0-.6-.3-.7-.6a1.5 1.5 0 0 1-.7.2c-.6 0-1.2-.3-1.4-.8a1.5 1.5 0 0 1-1.1.5c-.5 0-1-.2-1.2-.6a1.5 1.5 0 0 1-1 .4c-.6 0-1-.2-1.4-.6c-.2.4-.7.6-1.2.6c-.4 0-.8-.1-1-.4a1.6 1.6 0 0 1-1.3.6c-.4 0-.8-.2-1.1-.5c-.2.5-.8.8-1.4.8c-.2 0-.5 0-.7-.2c-.1.3-.4.6-.7.6c-.3 0-.6 0-.9-.2a4.2 4.2 0 0 1-1-1l.1-.5l.8.7c.5.4.9.4.9.4c.3 0 .4-.4.4-.7v-.3l.2.2c.2.3.5.5.9.5a1 1 0 0 0 1-1a1 1 0 0 0 0-.4v-.5l.4.4v.1c0 .6.5 1 1 1c.6 0 1-.3 1.1-.9v-.3l.2.3c.2.4.6.7 1 .7c.6 0 1.1-.4 1.1-1a1 1 0 0 0 0-.3h.2'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M277.9 210.7h.2a1 1 0 0 0 0 .4c0 .6.5 1 1 1a1 1 0 0 0 1-.7l.2-.3v.4c.1.5.6.8 1.1.8c.6 0 1-.4 1-1a.7.7 0 0 0 0-.1l.4-.4l.2.5a1 1 0 0 0-.1.4a1 1 0 0 0 1 1c.4 0 .7-.2.9-.5l.2-.2v.3c0 .3.1.6.4.7c0 0 .4 0 1-.4s.7-.7.7-.7v.4s-.5.8-1 1c-.2.2-.5.4-.8.3c-.3 0-.6-.3-.7-.6a1.5 1.5 0 0 1-.7.2c-.6 0-1.2-.3-1.4-.8a1.5 1.5 0 0 1-1.1.5c-.5 0-1-.2-1.2-.6a1.5 1.5 0 0 1-1 .4c-.6 0-1-.2-1.4-.6c-.2.4-.7.6-1.2.6c-.4 0-.8-.1-1-.4a1.6 1.6 0 0 1-1.3.6c-.4 0-.8-.2-1.1-.5c-.2.5-.8.8-1.4.8c-.2 0-.5 0-.7-.2c-.1.3-.4.6-.7.6c-.3 0-.6 0-.9-.2a4.2 4.2 0 0 1-1-1l.1-.5l.8.7c.5.4.9.4.9.4c.3 0 .4-.4.4-.7v-.3l.2.2c.2.3.5.5.9.5a1 1 0 0 0 1-1a1 1 0 0 0 0-.4v-.5l.4.4v.1c0 .6.5 1 1 1c.6 0 1-.3 1.1-.9v-.3l.2.3c.2.4.6.7 1 .7c.6 0 1.1-.4 1.1-1a1 1 0 0 0 0-.3h.2z'/%3E%3Cpath fill='%23c8b100' d='M277.8 213.3c-2.9 0-5.5.4-7.3 1l-.3-.2l.1-.3c2-.6 4.6-1 7.5-1c3 0 5.7.4 7.6 1c0 0 .2.2.1.3l-.3.2a27 27 0 0 0-7.4-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M277.8 213.3c-2.9 0-5.5.4-7.3 1l-.3-.2l.1-.3c2-.6 4.6-1 7.5-1c3 0 5.7.4 7.6 1c0 0 .2.2.1.3l-.3.2a27 27 0 0 0-7.4-1z'/%3E%3Cpath fill='%23fff' d='M275 214.4c0-.3.2-.4.5-.4a.4.4 0 0 1 .4.4a.4.4 0 0 1-.4.4c-.3 0-.5-.2-.5-.4'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M275 214.4c0-.3.2-.4.5-.4a.4.4 0 0 1 .4.4a.4.4 0 0 1-.4.4c-.3 0-.5-.2-.5-.4z'/%3E%3Cpath fill='%23ad1519' d='M277.9 214.5h-1c-.1 0-.3 0-.3-.3l.3-.3h2a.3.3 0 0 1 .2.3a.3.3 0 0 1-.3.3h-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M277.9 214.5h-1c-.1 0-.3 0-.3-.3l.3-.3h2a.3.3 0 0 1 .2.3a.3.3 0 0 1-.3.3h-1'/%3E%3Cpath fill='%23058e6e' d='M273.2 214.9h-.6a.3.3 0 0 1-.4-.2a.3.3 0 0 1 .3-.3l.6-.1l.7-.1c.2 0 .3 0 .4.2a.3.3 0 0 1-.3.4z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M273.2 214.9h-.6a.3.3 0 0 1-.4-.2a.3.3 0 0 1 .3-.3l.6-.1l.7-.1c.2 0 .3 0 .4.2a.3.3 0 0 1-.3.4h-.7'/%3E%3Cpath fill='%23ad1519' d='m270.5 215.3l.3-.4h.7l-.4.6z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m270.5 215.3l.3-.4h.7l-.4.6l-.6-.2'/%3E%3Cpath fill='%23fff' d='M279.8 214.4c0-.3.2-.4.4-.4c.3 0 .5.1.5.4c0 .2-.2.4-.5.4a.4.4 0 0 1-.4-.4'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M279.8 214.4c0-.3.2-.4.4-.4c.3 0 .5.1.5.4c0 .2-.2.4-.5.4a.4.4 0 0 1-.4-.4z'/%3E%3Cpath fill='%23058e6e' d='M282.5 214.9h.7a.3.3 0 0 0 .3-.2a.3.3 0 0 0-.2-.3l-.7-.1l-.7-.1c-.2 0-.3 0-.4.2c0 .2.1.3.3.4z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M282.5 214.9h.7a.3.3 0 0 0 .3-.2a.3.3 0 0 0-.2-.3l-.7-.1l-.7-.1c-.2 0-.3 0-.4.2c0 .2.1.3.3.4h.7'/%3E%3Cpath fill='%23ad1519' d='m285.1 215.4l-.2-.5h-.7l.3.6z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m285.1 215.4l-.2-.5h-.7l.3.6l.6-.1'/%3E%3Cpath fill='%23ad1519' d='M277.8 217.1a25 25 0 0 1-6-.6a25.4 25.4 0 0 1 6-.7c2.4 0 4.5.3 6.1.7c-1.6.4-3.7.6-6 .6'/%3E%3Cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='0.3' d='M277.8 217.1a25 25 0 0 1-6-.6a25.4 25.4 0 0 1 6-.7c2.4 0 4.5.3 6.1.7c-1.6.4-3.7.6-6 .6z'/%3E%3Cpath fill='%23c8b100' d='m285.2 212l-.1-.3c-.2 0-.3 0-.4.2l.1.4c.2 0 .3 0 .4-.3'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m285.2 212l-.1-.3c-.2 0-.3 0-.4.2l.1.4c.2 0 .3 0 .4-.3z'/%3E%3Cpath fill='%23c8b100' d='M280.6 211.2c0-.2-.1-.4-.3-.4c0 0-.2.1-.2.3c0 .2 0 .4.2.4z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M280.6 211.2c0-.2-.1-.4-.3-.4c0 0-.2.1-.2.3c0 .2 0 .4.2.4z'/%3E%3Cpath fill='%23c8b100' d='M275.2 211.2c0-.2 0-.4.2-.4l.3.3l-.2.4c-.2 0-.3-.2-.3-.3'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M275.2 211.2c0-.2 0-.4.2-.4l.3.3l-.2.4c-.2 0-.3-.2-.3-.3z'/%3E%3Cpath fill='%23c8b100' d='m270.5 212l.1-.3c.2 0 .3 0 .4.2l-.1.4c-.2 0-.3 0-.4-.3'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m270.5 212l.1-.3c.2 0 .3 0 .4.2l-.1.4c-.2 0-.3 0-.4-.3z'/%3E%3Cpath fill='%23c8b100' d='m277.8 208.5l-.8.5l.6 1.3l.2.1l.3-.1l.6-1.3z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m277.8 208.5l-.8.5l.6 1.3l.2.1l.3-.1l.6-1.3l-.9-.5'/%3E%3Cpath fill='%23c8b100' d='m276 210.5l.4.5l1.3-.4l.1-.2l-.1-.2l-1.3-.3z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m276 210.5l.4.5l1.3-.4l.1-.2l-.1-.2l-1.3-.3l-.4.6'/%3E%3Cpath fill='%23c8b100' d='m279.6 210.5l-.3.5l-1.3-.4l-.1-.2v-.2l1.4-.3z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m279.6 210.5l-.3.5l-1.3-.4l-.1-.2v-.2l1.4-.3l.4.6'/%3E%3Cpath fill='%23c8b100' d='m272.5 209l-.7.7l.9 1l.2.1l.2-.1l.2-1.3z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m272.5 209l-.7.7l.9 1l.2.1l.2-.1l.2-1.3l-.8-.3'/%3E%3Cpath fill='%23c8b100' d='m271.1 211.2l.5.5l1.2-.6v-.2l-.1-.2l-1.3-.1z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m271.1 211.2l.5.5l1.2-.6v-.2l-.1-.2l-1.3-.1l-.3.6'/%3E%3Cpath fill='%23c8b100' d='m274.7 210.5l-.3.6h-1.3l-.2-.2l.1-.3l1.2-.6z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m274.7 210.5l-.3.6h-1.3l-.2-.2l.1-.3l1.2-.6l.5.5'/%3E%3Cpath fill='%23c8b100' d='M269.8 211.4v.6l-1.4.2l-.2-.1v-.2l1-.9z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M269.8 211.4v.6l-1.4.2l-.2-.1v-.2l1-.9l.6.4'/%3E%3Cpath fill='%23c8b100' d='M272.4 210.9c0-.3.2-.5.5-.5a.5.5 0 0 1 .5.5a.5.5 0 0 1-.5.4a.5.5 0 0 1-.5-.4'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M272.4 210.9c0-.3.2-.5.5-.5a.5.5 0 0 1 .5.5a.5.5 0 0 1-.5.4a.5.5 0 0 1-.5-.4z'/%3E%3Cpath fill='%23c8b100' d='m283.2 209l.7.7l-.9 1l-.2.1l-.1-.1l-.3-1.3z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m283.2 209l.7.7l-.9 1l-.2.1l-.1-.1l-.3-1.3l.8-.3'/%3E%3Cpath fill='%23c8b100' d='m284.6 211.2l-.5.5l-1.2-.6v-.2l.1-.2l1.3-.1z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m284.6 211.2l-.5.5l-1.2-.6v-.2l.1-.2l1.3-.1l.3.6'/%3E%3Cpath fill='%23c8b100' d='m281 210.5l.3.6h1.3l.2-.2l-.1-.3l-1.2-.6z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m281 210.5l.3.6h1.3l.2-.2l-.1-.3l-1.2-.6l-.5.5'/%3E%3Cpath fill='%23c8b100' d='M285.7 211.4v.6l1.4.2l.2-.1v-.2l-1-.9z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M285.7 211.4v.6l1.4.2l.2-.1v-.2l-1-.9l-.6.4'/%3E%3Cpath fill='%23c8b100' d='M277.4 210.4c0-.2.2-.4.5-.4c.2 0 .4.2.4.4c0 .3-.2.5-.4.5a.5.5 0 0 1-.5-.5'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M277.4 210.4c0-.2.2-.4.5-.4c.2 0 .4.2.4.4c0 .3-.2.5-.4.5a.5.5 0 0 1-.5-.5z'/%3E%3Cpath fill='%23c8b100' d='M282.3 210.9c0-.3.3-.5.5-.5c.3 0 .5.2.5.5s-.2.4-.5.4a.5.5 0 0 1-.5-.4'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M282.3 210.9c0-.3.3-.5.5-.5c.3 0 .5.2.5.5s-.2.4-.5.4a.5.5 0 0 1-.5-.4z'/%3E%3Cpath fill='%23c8b100' d='M277 205.4c0-.5.4-.8.8-.8s1 .3 1 .8s-.5.8-1 .8a.9.9 0 0 1-.8-.8'/%3E%3Cpath fill='%23c8b100' d='M278.5 205.1v.6H277v-.6h.4v-1.3h-.5v-.5h.5v-.6h.6v.6h.6v.6h-.6v1.2h.4'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M278.5 205.1v.6H277v-.6h.4v-1.3h-.5v-.5h.5v-.6h.6v.6h.6v.6h-.6v1.2h.4z'/%3E%3Cpath fill='%23c8b100' d='M279 205.1v.6h-2.4v-.6h1v-1.3h-.7v-.5h.6v-.6h.6v.6h.6v.6h-.6v1.2h1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M278.1 204.6c.4 0 .6.4.6.8c0 .5-.4.8-.9.8a.9.9 0 0 1-.8-.8c0-.4.2-.7.6-.8'/%3E%3Cpath fill='%23c8b100' d='m268 212.2l-.6-.7a2.3 2.3 0 0 0-.7-.3c0-.1.3-.3.6-.3c.2 0 .3 0 .4.2v-.2s.3 0 .4.3z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m268 212.2l-.6-.7a2.3 2.3 0 0 0-.7-.3c0-.1.3-.3.6-.3c.2 0 .3 0 .4.2v-.2s.3 0 .4.3z'/%3E%3Cpath fill='%23c8b100' d='M268 212c.1-.2.4-.2.5 0c.2.1.3.3.1.5l-.5-.1c-.1-.1-.2-.4 0-.5'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M268 212c.1-.2.4-.2.5 0c.2.1.3.3.1.5l-.5-.1c-.1-.1-.2-.4 0-.5z'/%3E%3Cpath fill='%23c8b100' d='m287.5 212.2l.6-.7c.2-.2.7-.3.7-.3c0-.1-.3-.3-.6-.3a.6.6 0 0 0-.4.2v-.2s-.3 0-.4.3v.7z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m287.5 212.2l.6-.7c.2-.2.7-.3.7-.3c0-.1-.3-.3-.6-.3a.6.6 0 0 0-.4.2v-.2s-.3 0-.4.3v.7z'/%3E%3Cpath fill='%23c8b100' d='M287.5 212c-.1-.2-.3-.2-.5 0c-.2.1-.2.3-.1.5l.5-.1c.2-.1.2-.4.1-.5'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M287.5 212c-.1-.2-.3-.2-.5 0c-.2.1-.2.3-.1.5l.5-.1c.2-.1.2-.4.1-.5z'/%3E%3Cpath fill='%23c8b100' d='M267.2 223h21.4v-5.5h-21.4z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M267.2 223h21.4v-5.5h-21.4z'/%3E%3Cpath fill='%23c8b100' d='M286.3 226.8a1 1 0 0 0-.4 0h-16.5c.6-.2 1-.7 1-1.2c0-.6-.4-1.1-1-1.3h17h-.1c-.6.2-1 .7-1 1.3c0 .5.4 1 1 1.2'/%3E%3Cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='0.4' d='M286.3 226.8a1 1 0 0 0-.4 0h-16.5c.6-.2 1-.7 1-1.2c0-.6-.4-1.1-1-1.3h17h-.1c-.6.2-1 .7-1 1.3c0 .5.4 1 1 1.2z'/%3E%3Cpath fill='%23c8b100' d='M269.9 226.8h16c.6 0 1 .3 1 .7c0 .4-.4.8-1 .8h-16c-.6 0-1-.4-1-.8s.5-.8 1-.8'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M269.9 226.8h16c.6 0 1 .3 1 .7c0 .4-.4.8-1 .8h-16c-.6 0-1-.4-1-.8s.5-.8 1-.8z'/%3E%3Cpath fill='%23c8b100' d='M269.9 223h16c.6 0 1 .4 1 .7c0 .4-.4.6-1 .6h-16c-.6 0-1-.2-1-.6c0-.3.4-.6 1-.6'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M269.9 223h16c.6 0 1 .4 1 .7c0 .4-.4.6-1 .6h-16c-.6 0-1-.2-1-.6c0-.3.4-.6 1-.6z'/%3E%3Cpath fill='%23005bbf' d='M263 317.4c1.4 0 2.7-.3 3.7-.8a8.4 8.4 0 0 1 3.7-.8c1.4 0 2.8.3 3.8.8s2.3.8 3.7.8c1.5 0 2.8-.3 3.8-.8a8.4 8.4 0 0 1 3.6-.8a8 8 0 0 1 3.7.8c1 .5 2.4.8 3.8.8v2.4a8.3 8.3 0 0 1-3.8-.9a8.2 8.2 0 0 0-3.7-.8c-1.4 0-2.7.3-3.6.8c-1 .5-2.3.9-3.8.9a8 8 0 0 1-3.7-.9a8.4 8.4 0 0 0-3.8-.8a8.3 8.3 0 0 0-3.7.8c-1 .5-2.3.9-3.8.9v-2.4'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M263 317.4c1.4 0 2.7-.3 3.7-.8a8.4 8.4 0 0 1 3.7-.8c1.4 0 2.8.3 3.8.8s2.3.8 3.7.8c1.5 0 2.8-.3 3.8-.8a8.4 8.4 0 0 1 3.6-.8a8 8 0 0 1 3.7.8c1 .5 2.4.8 3.8.8v2.4a8.3 8.3 0 0 1-3.8-.9a8.2 8.2 0 0 0-3.7-.8c-1.4 0-2.7.3-3.6.8c-1 .5-2.3.9-3.8.9a8 8 0 0 1-3.7-.9a8.4 8.4 0 0 0-3.8-.8a8.3 8.3 0 0 0-3.7.8c-1 .5-2.3.9-3.8.9v-2.4z'/%3E%3Cpath fill='%23ccc' d='M263 319.8c1.4 0 2.7-.4 3.7-.9s2.3-.8 3.7-.8c1.4 0 2.8.3 3.8.8s2.3.9 3.7.9a8.2 8.2 0 0 0 3.8-.9a8.4 8.4 0 0 1 3.6-.8c1.5 0 2.8.3 3.7.8c1 .5 2.4.9 3.8.9v2.3a8.3 8.3 0 0 1-3.8-.9a8.1 8.1 0 0 0-3.7-.7c-1.4 0-2.7.2-3.6.7c-1 .5-2.3.9-3.8.9a7 7 0 0 1-3.7-.9c-1-.4-2.3-.7-3.8-.7a8.3 8.3 0 0 0-3.7.7a8.1 8.1 0 0 1-3.8.9v-2.3'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M263 319.8c1.4 0 2.7-.4 3.7-.9s2.3-.8 3.7-.8c1.4 0 2.8.3 3.8.8s2.3.9 3.7.9a8.2 8.2 0 0 0 3.8-.9a8.4 8.4 0 0 1 3.6-.8c1.5 0 2.8.3 3.7.8c1 .5 2.4.9 3.8.9v2.3a8.3 8.3 0 0 1-3.8-.9a8.1 8.1 0 0 0-3.7-.7c-1.4 0-2.7.2-3.6.7c-1 .5-2.3.9-3.8.9a7 7 0 0 1-3.7-.9c-1-.4-2.3-.7-3.8-.7a8.3 8.3 0 0 0-3.7.7a8.1 8.1 0 0 1-3.8.9v-2.3'/%3E%3Cpath fill='%23005bbf' d='M263 322c1.4 0 2.7-.2 3.7-.8c1-.4 2.3-.7 3.7-.7c1.4 0 2.8.2 3.8.7s2.3.9 3.7.9a8.2 8.2 0 0 0 3.8-.9a8.4 8.4 0 0 1 3.6-.8a8 8 0 0 1 3.7.8c1 .5 2.4.9 3.8.9v2.3a8.3 8.3 0 0 1-3.8-.9a8.2 8.2 0 0 0-3.7-.7c-1.4 0-2.7.3-3.6.7c-1 .6-2.3.9-3.8.9c-1.4 0-2.8-.3-3.7-.8a8.4 8.4 0 0 0-3.8-.8a8.3 8.3 0 0 0-3.7.8c-1 .5-2.3.8-3.8.8V322'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M263 322c1.4 0 2.7-.2 3.7-.8c1-.4 2.3-.7 3.7-.7c1.4 0 2.8.2 3.8.7s2.3.9 3.7.9a8.2 8.2 0 0 0 3.8-.9a8.4 8.4 0 0 1 3.6-.8a8 8 0 0 1 3.7.8c1 .5 2.4.9 3.8.9v2.3a8.3 8.3 0 0 1-3.8-.9a8.2 8.2 0 0 0-3.7-.7c-1.4 0-2.7.3-3.6.7c-1 .6-2.3.9-3.8.9c-1.4 0-2.8-.3-3.7-.8a8.4 8.4 0 0 0-3.8-.8a8.3 8.3 0 0 0-3.7.8c-1 .5-2.3.8-3.8.8V322'/%3E%3Cpath fill='%23ccc' d='M263 326.7a8 8 0 0 0 3.7-.8c1-.5 2.3-.8 3.7-.8c1.4 0 2.8.3 3.8.8s2.3.8 3.7.8c1.5 0 2.8-.3 3.8-.9a8.4 8.4 0 0 1 3.6-.7c1.5 0 2.8.3 3.7.8a8.3 8.3 0 0 0 3.8.8v-2.3a8.3 8.3 0 0 1-3.8-.9a8.2 8.2 0 0 0-3.7-.7c-1.4 0-2.7.3-3.6.7c-1 .5-2.3.9-3.8.9c-1.4 0-2.8-.3-3.7-.8a8.4 8.4 0 0 0-3.8-.8a8.3 8.3 0 0 0-3.7.8c-1 .5-2.3.8-3.8.8v2.3'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M263 326.7a8 8 0 0 0 3.7-.8c1-.5 2.3-.8 3.7-.8c1.4 0 2.8.3 3.8.8s2.3.8 3.7.8c1.5 0 2.8-.3 3.8-.9a8.4 8.4 0 0 1 3.6-.7c1.5 0 2.8.3 3.7.8a8.3 8.3 0 0 0 3.8.8v-2.3a8.3 8.3 0 0 1-3.8-.9a8.2 8.2 0 0 0-3.7-.7c-1.4 0-2.7.3-3.6.7c-1 .5-2.3.9-3.8.9c-1.4 0-2.8-.3-3.7-.8a8.4 8.4 0 0 0-3.8-.8a8.3 8.3 0 0 0-3.7.8c-1 .5-2.3.8-3.8.8v2.3'/%3E%3Cpath fill='%23005bbf' d='M263 329a8.1 8.1 0 0 0 3.7-.8c1-.5 2.3-.8 3.7-.8c1.4 0 2.8.3 3.8.8s2.3.8 3.7.8a8.2 8.2 0 0 0 3.8-.9a8.4 8.4 0 0 1 3.6-.7c1.5 0 2.8.3 3.7.8c1 .5 2.4.8 3.8.8v-2.3a8.3 8.3 0 0 1-3.8-.8a8.2 8.2 0 0 0-3.7-.8a8.4 8.4 0 0 0-3.6.7a8.2 8.2 0 0 1-3.8.9c-1.4 0-2.8-.3-3.7-.8c-1-.5-2.3-.8-3.8-.8c-1.4 0-2.7.3-3.7.8s-2.3.8-3.8.8v2.3'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M263 329a8.1 8.1 0 0 0 3.7-.8c1-.5 2.3-.8 3.7-.8c1.4 0 2.8.3 3.8.8s2.3.8 3.7.8a8.2 8.2 0 0 0 3.8-.9a8.4 8.4 0 0 1 3.6-.7c1.5 0 2.8.3 3.7.8c1 .5 2.4.8 3.8.8v-2.3a8.3 8.3 0 0 1-3.8-.8a8.2 8.2 0 0 0-3.7-.8a8.4 8.4 0 0 0-3.6.7a8.2 8.2 0 0 1-3.8.9c-1.4 0-2.8-.3-3.7-.8c-1-.5-2.3-.8-3.8-.8c-1.4 0-2.7.3-3.7.8s-2.3.8-3.8.8v2.3z'/%3E%3Cpath fill='%23c8b100' d='m286.3 308l-.1.5c0 1.5 1.2 2.6 2.7 2.6h-22c1.5 0 2.7-1.2 2.7-2.6l-.1-.5z'/%3E%3Cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='0.4' d='m286.3 308l-.1.5c0 1.5 1.2 2.6 2.7 2.6h-22c1.5 0 2.7-1.2 2.7-2.6l-.1-.5z'/%3E%3Cpath fill='%23c8b100' d='M269.9 306.5h16c.6 0 1 .3 1 .8c0 .4-.4.7-1 .7h-16c-.6 0-1-.3-1-.8c0-.4.5-.7 1-.7'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M269.9 306.5h16c.6 0 1 .3 1 .8c0 .4-.4.7-1 .7h-16c-.6 0-1-.3-1-.8c0-.4.5-.7 1-.7z'/%3E%3Cpath fill='%23c8b100' d='M266.9 316.7h22V311h-22z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M266.9 316.7h22V311h-22z'/%3E%3Cpath fill='%23ad1519' d='M290.6 286.7c2.1 1.2 3.6 2.5 3.4 3.2c-.1.6-.8 1-1.8 1.6c-1.6 1.1-2.5 3-1.8 4a5.5 5.5 0 0 1 .2-8.8'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M290.6 286.7c2.1 1.2 3.6 2.5 3.4 3.2c-.1.6-.8 1-1.8 1.6c-1.6 1.1-2.5 3-1.8 4a5.5 5.5 0 0 1 .2-8.8z'/%3E%3Cpath fill='%23ccc' d='M270.1 305.6h15.6V229h-15.6v76.5z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M281.4 229.1v76.3m1.8-76.3v76.3m-13 .2h15.5V229h-15.6v76.5z'/%3E%3Cpath fill='%23ad1519' d='M254.2 257.7a49.6 49.6 0 0 1 23.3-2c9.3 1.6 16.4 5.3 15.9 8.4v.2l3.5-8.2c.6-3.3-7.3-7.5-17.6-9.2a53.5 53.5 0 0 0-9.2-.7c-6.7 0-12.4.8-15.9 2.1z'/%3E%3Cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='0.4' d='M254.2 257.7a49.6 49.6 0 0 1 23.3-2c9.3 1.6 16.4 5.3 15.9 8.4v.2l3.5-8.2c.6-3.3-7.3-7.5-17.6-9.2a53.5 53.5 0 0 0-9.2-.7c-6.7 0-12.4.8-15.9 2.1v9.4'/%3E%3Cpath fill='%23ad1519' d='M285.7 267.3c4.4-.3 7.3-1.4 7.7-3.2c.2-1.5-1.2-3-3.8-4.5c-1.2.1-2.5.3-3.9.3z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M285.7 267.3c4.4-.3 7.3-1.4 7.7-3.2c.2-1.5-1.2-3-3.8-4.5c-1.2.1-2.5.3-3.9.3v7.4'/%3E%3Cpath fill='%23ad1519' d='M270 261.5a13 13 0 0 0-5.7 1.9v.2c-.5 1 1.8 3 5.8 5.4v-7.5'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M270 261.5a13 13 0 0 0-5.7 1.9v.2c-.5 1 1.8 3 5.8 5.4v-7.5'/%3E%3Cpath fill='%23ad1519' d='M295.4 282c.4-1.2-3.8-3.6-9.7-5.8c-2.8-1-5-2-7.8-3.2c-8.3-3.7-14.4-7.9-13.6-9.4v-.2c-.4.4-1 8-1 8c-.8 1.3 4.8 5.5 12.4 9.1c2.4 1.2 7.6 3 10 4c4.3 1.4 8.7 4.3 8.3 5.3l1.4-7.7'/%3E%3Cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='0.4' d='M295.4 282c.4-1.2-3.8-3.6-9.7-5.8c-2.8-1-5-2-7.8-3.2c-8.3-3.7-14.4-7.9-13.6-9.4v-.2c-.4.4-1 8-1 8c-.8 1.3 4.8 5.5 12.4 9.1c2.4 1.2 7.6 3 10 4c4.3 1.4 8.7 4.3 8.3 5.3l1.4-7.7z'/%3E%3Cpath fill='%23c8b100' d='M263.9 254.4c.6-2.3 1.4-4.4 2.1-6.6h-.5a5.2 5.2 0 0 1-.5.1a52.8 52.8 0 0 1-1.4 4.8c-1-1.4-2-2.7-2.7-4.1l-1 .2h-1a131.3 131.3 0 0 1 4 5.7h.5zm6-6.6h-1a8 8 0 0 1-.8 0v6.2h4.2v-.7h-2.6zm6.8 1l2 .3v-.7l-5.8-.5v.8a19.3 19.3 0 0 1 2 0l-.4 5.6h1.6l.5-5.4m2.4 6c.3 0 .5 0 .8.2l.8.2l.7-2.9l.6 1.2l.8 2.1l1 .2c.4 0 .7.2 1 .3l-.3-.7c-.4-1-1-1.9-1.3-2.9c1 0 1.9-.3 2.1-1.2c.1-.6 0-1-.7-1.5c-.4-.3-1.2-.4-1.7-.5l-2.4-.5zm3-5.2c.7.2 1.5.3 1.5 1v.5c-.3.9-1 1.2-2 .9zm8 7l-.2 2l.8.5l.9.5l.5-7a3.4 3.4 0 0 1-.7-.3l-6.1 3.8l.5.3l.4.2l1.7-1.2l2.3 1.3zm-1.7-1.5l2-1.4l-.2 2.3z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.1' d='M182.2 192.4c0-1 1-2 2-2s2.2 1 2.2 2c0 1.1-1 2-2.1 2a2 2 0 0 1-2.1-2z'/%3E%3Cpath fill='%23ad1519' stroke='%23000' stroke-width='0.3' d='M205.7 175.4c6.3 0 12 1 15.7 2.4a31.7 31.7 0 0 0 14.6 2.3c2.7 0 6.5.8 10.3 2.4a27.3 27.3 0 0 1 7.4 4.7l-1.5 1.4l-.4 3.8l-4.1 4.7l-2 1.8l-5 3.9l-2.5.2l-.7 2.1l-31.6-3.7l-31.7 3.7l-.8-2.1l-2.5-.2l-4.9-4l-2-1.7l-4.1-4.7l-.5-3.8l-1.5-1.4a27.6 27.6 0 0 1 7.5-4.7a26 26 0 0 1 10.2-2.4c2 .2 4.2.1 6.6-.2a30 30 0 0 0 8-2c3.7-1.5 9-2.5 15.5-2.5z'/%3E%3Cpath fill='%23c8b100' stroke='%23000' stroke-width='0.4' d='M206.2 217.1c-11.8 0-22.4-1.4-29.9-3.6a1.1 1.1 0 0 1-.8-1.2c0-.5.3-1 .8-1.2a109 109 0 0 1 29.9-3.6c11.7 0 22.3 1.4 29.8 3.6a1.3 1.3 0 0 1 0 2.4c-7.5 2.2-18 3.6-29.8 3.6'/%3E%3Cpath fill='%23ad1519' d='M206.1 215.6c-10.6 0-20.2-1.2-27.5-3.1c7.3-2 16.9-3 27.5-3.1a115 115 0 0 1 27.6 3c-7.3 2-17 3.2-27.6 3.2'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.1' d='M206.9 215.7v-6.3m-1.7 6.3v-6.3'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.2' d='M203.6 215.7v-6.3m-1.6 6.3v-6.3'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M200.6 215.7v-6.3m-2.8 5.9v-5.7m1.3 5.8v-6m-3.8 5.6v-5.2m1.3 5.4v-5.6'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M192 214.8V210m1 4.7V210m1.2 5v-5m-3.4 4.7v-4.5'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.5' d='M189.7 214.5v-4.2m-1.2 4.1v-4'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.6' d='M186 214v-3m1.3 3.2v-3.5m-2.5 3.1V211'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.7' d='M183.7 213.6v-2.3m-1.3 2v-1.8m-1.2 1.6v-1.3'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.9' d='M179.8 212.8v-.7'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.1' d='M213.7 215.3v-5.8m-2.9 6v-6.1m-2.1 6.2v-6.3'/%3E%3Cpath fill='%23c8b100' stroke='%23000' stroke-width='0.4' d='M206 207.4a108 108 0 0 0-30 3.9c.6-.3.5-1-.3-3c-1-2.5-2.4-2.4-2.4-2.4c8.3-2.5 20-4 32.8-4a123 123 0 0 1 33 4s-1.5-.1-2.5 2.3c-.8 2-.8 2.8-.2 3c-7.5-2.2-18.4-3.7-30.3-3.7'/%3E%3Cpath fill='%23c8b100' stroke='%23000' stroke-width='0.4' d='M206.1 201.9c-12.9 0-24.5 1.5-32.8 4a1 1 0 0 1-1.3-.6a1 1 0 0 1 .7-1.3a121 121 0 0 1 33.4-4.2c13.2 0 25.2 1.7 33.5 4.2c.6.2.9.8.7 1.3c-.2.5-.8.8-1.3.6c-8.4-2.5-20-4-32.9-4'/%3E%3Cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='0.4' d='M206.1 215.6c-10.6 0-20.2-1.2-27.5-3.1c7.3-2 16.9-3 27.5-3.1a115 115 0 0 1 27.6 3c-7.3 2-17 3.2-27.6 3.2z'/%3E%3Cpath fill='%23fff' stroke='%23000' stroke-width='0.4' d='M197 204.8c0-.5.4-1 1-1c.5 0 1 .5 1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='%23ad1519' stroke='%23000' stroke-width='0.4' d='M206.1 205.6H203a1 1 0 0 1 0-2h6.4c.5 0 1 .5 1 1s-.5 1-1 1h-3.2'/%3E%3Cpath fill='%23058e6e' stroke='%23000' stroke-width='0.4' d='m190.3 206.5l-2.3.2c-.6.1-1-.3-1.2-.8a1 1 0 0 1 1-1.1l2.2-.3l2.4-.3c.5 0 1 .3 1.1.9c.1.5-.3 1-.9 1l-2.3.4'/%3E%3Cpath fill='%23fff' stroke='%23000' stroke-width='0.4' d='M181 206.7c0-.6.5-1 1.1-1c.6 0 1 .4 1 1c0 .5-.4 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='%23ad1519' stroke='%23000' stroke-width='0.4' d='m174 208.5l1.2-1.6l3.3.4l-2.6 2l-1.8-.8'/%3E%3Cpath fill='%23058e6e' stroke='%23000' stroke-width='0.4' d='m222 206.5l2.3.2c.5.1 1-.3 1.1-.8a1 1 0 0 0-.9-1.1l-2.2-.3l-2.4-.3a1 1 0 0 0-1.1.9c-.1.5.3 1 .9 1l2.3.4'/%3E%3Cpath fill='%23fff' stroke='%23000' stroke-width='0.4' d='M213.3 204.8c0-.5.4-1 1-1s1 .5 1 1s-.4 1-1 1a1 1 0 0 1-1-1m15.8 1.9c0-.6.5-1 1-1c.6 0 1.1.4 1.1 1c0 .5-.4 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='%23ad1519' stroke='%23000' stroke-width='0.4' d='m238.2 208.5l-1.1-1.6l-3.3.4l2.6 2l1.8-.8'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M177.3 212.8c7.4-2.1 17.6-3.4 28.8-3.4c11.3 0 21.4 1.3 28.9 3.4'/%3E%3Cpath fill='%23c8b100' d='m182.3 183.8l1.4 1l2-3.2a7.4 7.4 0 0 1-3.6-7.2c.2-4.1 5.2-7.6 11.7-7.6c3.3 0 6.3 1 8.5 2.4c0-.6 0-1.2.2-1.8a17.4 17.4 0 0 0-8.7-2.1c-7.4 0-13.2 4.1-13.5 9.1a8.9 8.9 0 0 0 3 7.6z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='m182.3 183.8l1.4 1l2-3.2a7.4 7.4 0 0 1-3.6-7.2c.2-4.1 5.2-7.6 11.7-7.6c3.3 0 6.3 1 8.5 2.4c0-.6 0-1.2.2-1.8a17.4 17.4 0 0 0-8.7-2.1c-7.4 0-13.2 4.1-13.5 9.1a8.9 8.9 0 0 0 3 7.6l-1 1.8'/%3E%3Cpath fill='%23c8b100' d='M182.4 183.8a9.3 9.3 0 0 1-4-7.3c0-3.2 2-6.1 5.3-8a8.5 8.5 0 0 0-3.4 6.8a8.9 8.9 0 0 0 3 6.7z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M182.4 183.8a9.3 9.3 0 0 1-4-7.3c0-3.2 2-6.1 5.3-8a8.5 8.5 0 0 0-3.4 6.8a8.9 8.9 0 0 0 3 6.7l-.9 1.8'/%3E%3Cpath fill='%23c8b100' d='M160.1 187.1a8.8 8.8 0 0 1-2.3-5.9c0-1.3.3-2.6 1-3.8c2-4.2 8.4-7.2 16-7.2c2 0 4 .2 5.9.6l-1 1.4a25.5 25.5 0 0 0-4.9-.4c-7 0-12.8 2.7-14.5 6.3a7 7 0 0 0-.7 3.1a7.3 7.3 0 0 0 2.7 5.6l-2.6 4.1l-1.3-1z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M160.1 187.1a8.8 8.8 0 0 1-2.3-5.9c0-1.3.3-2.6 1-3.8c2-4.2 8.4-7.2 16-7.2c2 0 4 .2 5.9.6l-1 1.4a25.5 25.5 0 0 0-4.9-.4c-7 0-12.8 2.7-14.5 6.3a7 7 0 0 0-.7 3.1a7.3 7.3 0 0 0 2.7 5.6l-2.6 4.1l-1.3-1z'/%3E%3Cpath fill='%23c8b100' d='M162.7 173.3a10.5 10.5 0 0 0-4 4.1a8.6 8.6 0 0 0-.9 3.8c0 2.3.9 4.3 2.3 5.9l-1.5 2.5a10.4 10.4 0 0 1-2.3-6.5c0-4 2.5-7.5 6.4-9.8'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M162.7 173.3a10.5 10.5 0 0 0-4 4.1a8.6 8.6 0 0 0-.9 3.8c0 2.3.9 4.3 2.3 5.9l-1.5 2.5a10.4 10.4 0 0 1-2.3-6.5c0-4 2.5-7.5 6.4-9.8z'/%3E%3Cpath fill='%23c8b100' d='M206 164.4c1.7 0 3.2 1.1 3.5 2.6c.3 1.4.4 2.9.4 4.5v1.1c.1 3.3.6 6.3 1.3 8.1l-5.2 5l-5.2-5c.7-1.8 1.2-4.8 1.3-8.1v-1.1c0-1.6.2-3.1.4-4.5c.3-1.5 1.8-2.6 3.5-2.6'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M206 164.4c1.7 0 3.2 1.1 3.5 2.6c.3 1.4.4 2.9.4 4.5v1.1c.1 3.3.6 6.3 1.3 8.1l-5.2 5l-5.2-5c.7-1.8 1.2-4.8 1.3-8.1v-1.1c0-1.6.2-3.1.4-4.5c.3-1.5 1.8-2.6 3.5-2.6z'/%3E%3Cpath fill='%23c8b100' d='M206 166c1 0 1.7.6 1.8 1.4c.2 1.2.4 2.6.4 4.2v1c.1 3.2.6 6 1.2 7.7l-3.4 3.2l-3.4-3.2c.7-1.7 1.1-4.5 1.2-7.7v-1a28.1 28.1 0 0 1 .4-4.2a2 2 0 0 1 1.8-1.4'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M206 166c1 0 1.7.6 1.8 1.4c.2 1.2.4 2.6.4 4.2v1c.1 3.2.6 6 1.2 7.7l-3.4 3.2l-3.4-3.2c.7-1.7 1.1-4.5 1.2-7.7v-1a28.1 28.1 0 0 1 .4-4.2a2 2 0 0 1 1.8-1.4z'/%3E%3Cpath fill='%23c8b100' d='m229.7 183.8l-1.3 1l-2-3.2a7.4 7.4 0 0 0 3.6-6.3a7 7 0 0 0 0-.9c-.2-4.1-5.3-7.6-11.7-7.6a15 15 0 0 0-8.5 2.4a23 23 0 0 0-.2-1.8a17.4 17.4 0 0 1 8.7-2.1c7.4 0 13.2 4.1 13.4 9.1a8.9 8.9 0 0 1-3 7.6z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='m229.7 183.8l-1.3 1l-2-3.2a7.4 7.4 0 0 0 3.6-6.3a7 7 0 0 0 0-.9c-.2-4.1-5.3-7.6-11.7-7.6a15 15 0 0 0-8.5 2.4a23 23 0 0 0-.2-1.8a17.4 17.4 0 0 1 8.7-2.1c7.4 0 13.2 4.1 13.4 9.1a8.9 8.9 0 0 1-3 7.6l1 1.8'/%3E%3Cpath fill='%23c8b100' d='M229.6 183.8a9.1 9.1 0 0 0 4.1-7.3c0-3.2-2.1-6.1-5.3-8a8.5 8.5 0 0 1 3.4 6.8a8.9 8.9 0 0 1-3.2 6.7z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M229.6 183.8a9.1 9.1 0 0 0 4.1-7.3c0-3.2-2.1-6.1-5.3-8a8.5 8.5 0 0 1 3.4 6.8a8.9 8.9 0 0 1-3.2 6.7l1 1.8'/%3E%3Cpath fill='%23c8b100' d='M252 187.1a8.8 8.8 0 0 0 2.2-5.9a8.7 8.7 0 0 0-.9-3.8c-2-4.2-8.4-7.2-16-7.2a29 29 0 0 0-6 .6l1 1.4a25.4 25.4 0 0 1 5-.4c7 0 12.8 2.7 14.4 6.3c.5 1 .7 2 .7 3.1a7.3 7.3 0 0 1-2.6 5.6l2.5 4.1l1.3-1z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M252 187.1a8.8 8.8 0 0 0 2.2-5.9a8.7 8.7 0 0 0-.9-3.8c-2-4.2-8.4-7.2-16-7.2a29 29 0 0 0-6 .6l1 1.4a25.4 25.4 0 0 1 5-.4c7 0 12.8 2.7 14.4 6.3c.5 1 .7 2 .7 3.1a7.3 7.3 0 0 1-2.6 5.6l2.5 4.1l1.3-1z'/%3E%3Cpath fill='%23c8b100' d='M249.3 173.3a10.6 10.6 0 0 1 4 4.1a8.7 8.7 0 0 1 .9 3.8a8.8 8.8 0 0 1-2.3 5.9l1.6 2.5a10.4 10.4 0 0 0 2.3-6.5c0-4-2.6-7.5-6.5-9.8'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M249.3 173.3a10.6 10.6 0 0 1 4 4.1a8.7 8.7 0 0 1 .9 3.8a8.8 8.8 0 0 1-2.3 5.9l1.6 2.5a10.4 10.4 0 0 0 2.3-6.5c0-4-2.6-7.5-6.5-9.8z'/%3E%3Cpath fill='%23fff' d='M204.2 181.4c0-1 .8-1.8 1.8-1.8s1.9.8 1.9 1.8s-.9 1.7-1.9 1.7a1.8 1.8 0 0 1-1.8-1.7'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M204.2 181.4c0-1 .8-1.8 1.8-1.8s1.9.8 1.9 1.8s-.9 1.7-1.9 1.7a1.8 1.8 0 0 1-1.8-1.7z'/%3E%3Cpath fill='%23fff' stroke='%23000' stroke-width='0.4' d='M204.2 178c0-1 .8-1.8 1.8-1.8s1.9.8 1.9 1.8s-.9 1.7-1.9 1.7a1.8 1.8 0 0 1-1.8-1.7m.4-3.7c0-.7.6-1.3 1.4-1.3c.8 0 1.5.6 1.5 1.3c0 .8-.7 1.4-1.5 1.4s-1.4-.6-1.4-1.4m.4-3.3c0-.5.4-1 1-1s1 .5 1 1s-.4 1-1 1a1 1 0 0 1-1-1m.2-2.8c0-.5.4-.8.8-.8c.5 0 .9.3.9.8c0 .4-.4.8-.9.8a.8.8 0 0 1-.8-.8'/%3E%3Cpath fill='%23c8b100' stroke='%23000' stroke-width='0.4' d='m206.2 191.8l1.2.2a4.6 4.6 0 0 0 4.5 6a4.7 4.7 0 0 0 4.4-3c.1 0 .5-1.7.7-1.7c.2 0 .1 1.8.2 1.7c.3 2.3 2.4 3.8 4.7 3.8a4.6 4.6 0 0 0 4.7-5l1.5-1.5l.7 2a4 4 0 0 0-.4 1.9a4.4 4.4 0 0 0 4.5 4.2c1.6 0 3-.7 3.8-1.9l.9-1.2v1.5c0 1.5.6 2.8 2 3c0 0 1.7.1 4-1.6c2.1-1.7 3.3-3.1 3.3-3.1l.2 1.7s-1.8 2.8-3.8 4c-1 .6-2.7 1.3-4 1c-1.4-.2-2.4-1.3-3-2.6a6.7 6.7 0 0 1-3.3 1a6.5 6.5 0 0 1-6.1-3.7a7 7 0 0 1-10.4-.3a7 7 0 0 1-4.6 1.8a6.9 6.9 0 0 1-5.7-3a6.9 6.9 0 0 1-5.7 3a7 7 0 0 1-4.7-1.8a7 7 0 0 1-10.4.3a6.5 6.5 0 0 1-6 3.7a6.7 6.7 0 0 1-3.4-1c-.6 1.3-1.5 2.4-3 2.7c-1.2.2-2.9-.5-4-1.1c-2-1.2-3.8-4-3.8-4l.2-1.7s1.2 1.4 3.4 3.1c2.2 1.8 3.9 1.6 3.9 1.6c1.4-.2 2-1.5 2-3v-1.5l1 1.2a4.6 4.6 0 0 0 3.7 2c2.5 0 4.5-2 4.5-4.3a4 4 0 0 0-.4-2l.8-1.9l1.5 1.5a4.4 4.4 0 0 0 0 .6c0 2.4 2 4.4 4.6 4.4c2.4 0 4.4-1.5 4.7-3.8c0 0 0-1.6.2-1.7c.2 0 .6 1.7.7 1.6a4.7 4.7 0 0 0 4.5 3.1a4.6 4.6 0 0 0 4.5-6l1.2-.2'/%3E%3Cpath fill='%23fff' stroke='%23000' stroke-width='0.4' d='M238.6 197.7c.3-.8 0-1.6-.6-1.8c-.5-.2-1.2.3-1.5 1.1c-.3.8 0 1.6.6 1.8c.5.2 1.2-.3 1.5-1.1m-20.5-4c0-.8-.3-1.6-1-1.6c-.5-.1-1 .5-1.2 1.4c-.1.8.3 1.5.9 1.6c.6 0 1.2-.6 1.3-1.4m-23.9 0c0-.8.4-1.6 1-1.6c.6-.1 1.1.5 1.2 1.4c.1.8-.3 1.5-.9 1.6c-.6 0-1.1-.6-1.2-1.4m-20.6 4c-.2-.8 0-1.6.6-1.8c.6-.2 1.2.3 1.5 1.1c.3.8 0 1.6-.5 1.8c-.6.2-1.3-.3-1.6-1.1'/%3E%3Cpath fill='%23c8b100' stroke='%23000' stroke-width='0.4' d='M182.7 184a5.1 5.1 0 0 1 2.2 2.9s0-.3.6-.6s1-.3 1-.3l-.1 1.3l-.3 2.2a7.4 7.4 0 0 1-.7 1.6a1.9 1.9 0 0 0-1.5-.4a1.8 1.8 0 0 0-1.2.9s-.7-.6-1.2-1.3l-1.1-2l-.7-1.1s.5-.2 1.1 0c.6 0 .8.2.8.2a4.9 4.9 0 0 1 1-3.4m.4 9.8a1.8 1.8 0 0 1-.6-1c0-.5 0-.9.3-1.2c0 0-.9-.5-1.8-.7c-.7-.2-2-.2-2.3-.2h-1l.2.5c.2.5.5.7.5.7a5 5 0 0 0-3 2a5.3 5.3 0 0 0 3.5 1l-.2.8v.6l1-.4c.3-.1 1.5-.5 2-1c.8-.4 1.5-1.1 1.5-1.1m2.7-.5a1.6 1.6 0 0 0 .2-1.1a1.7 1.7 0 0 0-.6-1l1.4-1.3a10 10 0 0 1 2-.9l1.1-.4v.6a5.7 5.7 0 0 1-.2.8a5 5 0 0 1 3.4 1a5 5 0 0 1-2.9 2a6.4 6.4 0 0 0 .7 1.2h-1c-.4 0-1.6 0-2.3-.2a11 11 0 0 1-1.8-.7'/%3E%3Cpath fill='%23ad1519' stroke='%23000' stroke-width='0.4' d='M182.2 192.4c0-1 1-2 2-2s2.2 1 2.2 2c0 1.1-1 2-2.1 2a2 2 0 0 1-2.1-2'/%3E%3Cpath fill='%23c8b100' stroke='%23000' stroke-width='0.4' d='M206.1 180.8a5.7 5.7 0 0 1 1.9 3.7s.2-.3.9-.5c.7-.3 1.2-.2 1.2-.2l-.5 1.4l-.8 2.4a8.2 8.2 0 0 1-1 1.7a2.1 2.1 0 0 0-1.7-.7c-.6 0-1.2.3-1.6.7c0 0-.6-.7-1-1.7l-.8-2.4l-.5-1.4l1.2.2c.7.2.9.5.9.5c0-1.4.8-2.8 1.8-3.7'/%3E%3Cpath fill='%23c8b100' stroke='%23000' stroke-width='0.4' d='M204.6 191.8a2 2 0 0 1-.5-1.2c0-.5.1-1 .4-1.3c0 0-.8-.7-1.8-1c-.7-.4-2-.7-2.5-.7l-1.2-.2l.2.6l.4.9a5.9 5.9 0 0 0-3.7 1.7c1 .9 2.3 1.6 3.7 1.6l-.4 1l-.2.6l1.2-.2c.4-.1 1.8-.4 2.5-.7c1-.4 1.9-1 1.9-1m3 0a1.9 1.9 0 0 0 .1-2.6s.9-.7 1.8-1a8 8 0 0 1 2.5-.7l1.2-.3l-.1.7l-.4.9c1.4 0 2.7.8 3.6 1.7a5.9 5.9 0 0 1-3.6 1.6a6.9 6.9 0 0 0 .5 1.6l-1.2-.2l-2.5-.7c-1-.4-1.8-1-1.8-1m22-8a5.2 5.2 0 0 0-2.2 3l-.7-.6c-.6-.3-1-.3-1-.3l.2 1.3c0 .3 0 1.3.3 2.2c.2 1 .6 1.6.6 1.6a2 2 0 0 1 1.5-.4c.6.1 1 .5 1.3.9l1.1-1.3c.6-.8 1-1.7 1.1-2l.7-1.1s-.4-.2-1 0c-.7 0-1 .2-1 .2a4.9 4.9 0 0 0-1-3.4m-.3 9.8c.3-.3.5-.6.6-1a1.6 1.6 0 0 0-.2-1.2s.8-.5 1.7-.7c.7-.2 2-.2 2.3-.2h1.1l-.3.5a6.2 6.2 0 0 1-.4.7a5 5 0 0 1 2.9 2a5.3 5.3 0 0 1-3.5 1l.2.8v.6l-1-.4c-.3-.1-1.4-.5-2-1c-.8-.4-1.4-1.1-1.4-1.1m-2.8-.5a1.7 1.7 0 0 1-.2-1.1c0-.5.3-.8.6-1c0 0-.6-.8-1.4-1.3c-.6-.4-1.7-.8-2-.9a171.4 171.4 0 0 1-1-.4v.6c0 .5.2.8.2.8a5.2 5.2 0 0 0-3.5 1c.7.9 1.7 1.7 3 2c0 0-.3.2-.5.7l-.3.5h1c.4 0 1.7 0 2.3-.2a11.1 11.1 0 0 0 1.8-.7'/%3E%3Cpath fill='%23ad1519' stroke='%23000' stroke-width='0.4' d='M226 192.4c0-1 1-2 2-2s2.1 1 2.1 2a2 2 0 0 1-2 2a2 2 0 0 1-2.1-2m23.2 4.4c-.4-.5-1.4-.4-2.2.2c-.8.7-1 1.6-.5 2.2c.5.5 1.5.4 2.3-.3c.7-.6 1-1.6.5-2'/%3E%3Cpath fill='%23c8b100' stroke='%23000' stroke-width='0.4' d='m246.3 198l.7-1c.7-.6 1.8-.7 2.3-.2l.1.2s1-2 2.3-2.6c1.3-.7 3.4-.5 3.4-.5a2.8 2.8 0 0 0-2.9-2.8a3 3 0 0 0-2.4 1l-.2-1s-1.3.3-1.9 1.8c-.6 1.5 0 3.6 0 3.6s-.3-.9-.7-1.5a8 8 0 0 0-2.4-1.6l-1.3-.7l-.1.5a5 5 0 0 0 0 .8a7.9 7.9 0 0 0-3.7.5a4.7 4.7 0 0 0 2.5 2.2l-.8.7a4 4 0 0 0-.4.5l1.3.2l2.5.2a14.5 14.5 0 0 0 1.7-.2m-80.3 0c0-.4-.3-.7-.7-1c-.7-.7-1.7-.8-2.2-.3l-.2.3s-1-2-2.3-2.7c-1.2-.7-3.3-.5-3.3-.5a2.8 2.8 0 0 1 2.8-2.8c1 0 1.9.4 2.4 1l.2-1s1.3.3 2 1.8c.5 1.5-.1 3.6-.1 3.6s.3-.9.8-1.5a8 8 0 0 1 2.4-1.6l1.3-.7v1.3a7.9 7.9 0 0 1 3.7.5a4.7 4.7 0 0 1-2.5 2.2l.8.7l.4.5l-1.2.2l-2.6.2a14.7 14.7 0 0 1-1.7-.2'/%3E%3Cpath fill='%23ad1519' stroke='%23000' stroke-width='0.4' d='M163 196.8c.6-.5 1.6-.4 2.4.3c.7.6 1 1.5.4 2c-.5.6-1.5.5-2.2-.2c-.8-.6-1-1.6-.5-2m41-6.3c0-1.1.9-2 2-2s2.1.9 2.1 2c0 1-1 2-2 2a2 2 0 0 1-2.1-2'/%3E%3Cpath fill='%23005bbf' stroke='%23000' stroke-width='0.3' d='M201.8 160.6c0-2.2 1.9-4 4.3-4s4.2 1.8 4.2 4s-1.9 4-4.3 4a4.1 4.1 0 0 1-4.2-4'/%3E%3Cpath fill='%23c8b100' stroke='%23000' stroke-width='0.3' d='M205 149.3v2.2h-2.4v2.2h2.3v6.3H202l-.2.6c0 .6.1 1.1.3 1.6h7.9c.2-.5.3-1 .3-1.6l-.2-.6h-2.8v-6.3h2.3v-2.2h-2.3v-2.2z'/%3E%3Cpath fill='%23ccc' d='M206.5 330.6a82 82 0 0 1-35.5-8.2a22.7 22.7 0 0 1-12.8-20.4v-32h96.4v32a22.7 22.7 0 0 1-12.8 20.4a81 81 0 0 1-35.3 8.2'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.5' d='M206.5 330.6a82 82 0 0 1-35.5-8.2a22.7 22.7 0 0 1-12.8-20.4v-32h96.4v32a22.7 22.7 0 0 1-12.8 20.4a81 81 0 0 1-35.3 8.2z'/%3E%3Cpath fill='%23ccc' d='M206.3 270h48.3v-53.5h-48.3z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.5' d='M206.3 270h48.3v-53.5h-48.3z'/%3E%3Cpath fill='%23ad1519' d='M206.3 302c0 12.6-10.7 22.9-24 22.9s-24.2-10.3-24.2-23v-32h48.2v32'/%3E%3Cpath fill='%23c8b100' stroke='%23000' stroke-width='0.5' d='M168.6 320.9c1.5.8 3.6 2 5.8 2.6l-.1-54.7h-5.7z'/%3E%3Cpath fill='%23c8b100' stroke='%23000' stroke-linejoin='round' stroke-width='0.5' d='M158 301.6a24.4 24.4 0 0 0 5.5 15v-47.5h-5.4z'/%3E%3Cpath fill='%23c7b500' stroke='%23000' stroke-width='0.5' d='M179.4 324.7a26.6 26.6 0 0 0 5.6 0v-55.9h-5.6v56z'/%3E%3Cpath fill='%23c8b100' stroke='%23000' stroke-width='0.5' d='M190 323.5a19 19 0 0 0 5.8-2.5v-52.2H190z'/%3E%3Cpath fill='%23ad1519' d='M158.1 270h48.2v-53.5H158z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.5' d='M158.1 270h48.2v-53.5H158z'/%3E%3Cpath fill='%23c8b100' stroke='%23000' stroke-width='0.5' d='M201 316c2.4-2 4.6-6.8 5.4-12.2l.1-35H201l.1 47.3z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.5' d='M206.3 302c0 12.6-10.7 22.9-24 22.9s-24.2-10.3-24.2-23v-32h48.2v32'/%3E%3Cpath fill='%23ad1519' d='M254.6 270v32c0 12.6-10.8 22.9-24.1 22.9s-24.2-10.3-24.2-23v-32h48.3'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.5' d='M254.6 270v32c0 12.6-10.8 22.9-24.1 22.9s-24.2-10.3-24.2-23v-32h48.3'/%3E%3Cpath fill='%23c8b100' d='m215.1 294.1l.1.5c0 .6-.5 1-1.1 1a1 1 0 0 1-1.1-1v-.5h-1.5a2.5 2.5 0 0 0 1.8 2.9v3.9h1.6V297a2.6 2.6 0 0 0 1.7-1.6h4.4v-1.2zm21.8 0v1.2h-4a2.5 2.5 0 0 1-.3.6l4.6 5.2l-1.2 1l-4.6-5.3l-.2.1v8.7h-1.6V297h-.2l-4.8 5.2l-1.2-1l4.7-5.3a2.1 2.1 0 0 1-.2-.4h-4V294h13zm2.6 0v1.2h4.4c.3.8.9 1.4 1.7 1.6v3.9h1.6V297a2.5 2.5 0 0 0 1.8-2.4a2 2 0 0 0 0-.5h-1.6l.1.5c0 .6-.5 1-1 1c-.7 0-1.2-.4-1.2-1a1 1 0 0 1 .1-.5zm-6.7 22.1a15.6 15.6 0 0 0 3.7-1l.8 1.4a17.6 17.6 0 0 1-4.3 1.2a2.6 2.6 0 0 1-2.6 2a2.6 2.6 0 0 1-2.5-2a17.5 17.5 0 0 1-4.6-1.2l.8-1.4c1.3.5 2.6.9 4 1a2.5 2.5 0 0 1 1.5-1.3v-6.7h1.6v6.7c.7.2 1.3.7 1.6 1.4zm-11-2.2l-.8 1.4a16.6 16.6 0 0 1-3.6-3.1c-.9.2-1.8 0-2.5-.5a2.4 2.4 0 0 1-.3-3.5l.1-.1a15.3 15.3 0 0 1-1.3-4.8h1.7a13.1 13.1 0 0 0 1 4c.5 0 1 0 1.4.2l4.1-4.5l1.3 1l-4.1 4.5c.5.9.5 2-.1 2.8a15.2 15.2 0 0 0 3.1 2.6m-6-4.8c.3-.4 1-.5 1.5 0s.5 1 .1 1.4a1.2 1.2 0 0 1-1.6.1a1 1 0 0 1 0-1.5m-2.2-4.5l-1.6-.3l-.3-4.3l1.7-.6v2.5c0 1 0 1.8.2 2.7m1.4-5.3l1.7.4v2.2c0-.8.3 2.1.3 2.1l-1.7.6a14 14 0 0 1-.3-2.7zm5.6 13.7a15.7 15.7 0 0 0 4.8 2.6l.4-1.6a13.7 13.7 0 0 1-4-2zm-.8 1.4a17.4 17.4 0 0 0 4.8 2.6l-1.2 1.1a18.7 18.7 0 0 1-4-2zm2.2-9.4l1.6.7l3-3.3l-1-1.4zm-1.3-1l-1-1.4l3-3.3l1.6.7zm18.1 9.9l.8 1.4a16.7 16.7 0 0 0 3.6-3.1c.9.2 1.8 0 2.5-.5a2.4 2.4 0 0 0 .3-3.5l-.1-.1a15 15 0 0 0 1.3-4.8h-1.7a13.3 13.3 0 0 1-1 4a3 3 0 0 0-1.4.2l-4.1-4.5l-1.3 1l4.1 4.5a2.4 2.4 0 0 0 .1 2.8a15 15 0 0 1-3.1 2.6m6-4.8a1.2 1.2 0 0 0-1.5 0a1 1 0 0 0-.1 1.4a1.2 1.2 0 0 0 1.6.1a1 1 0 0 0 0-1.5m2.2-4.5l1.6-.3l.3-4.3l-1.7-.6v2.5c0 1 0 1.9-.2 2.8zm-1.4-5.3l-1.7.4v2.2c0-.8-.3 2.1-.3 2.1l1.7.6l.3-2.7zm-5.6 13.7a15.7 15.7 0 0 1-4.8 2.6l-.4-1.6a13.7 13.7 0 0 0 4-2zm.8 1.4a17.4 17.4 0 0 1-4.8 2.6l1.2 1.1a18.6 18.6 0 0 0 4-2zm-2.2-9.4l-1.6.7l-2.9-3.3l1-1.4zm1.3-1l1-1.4l-3-3.3l-1.6.7zm-20.1-8.7l.5 1.6h4.5l.5-1.6zm21.1 0l-.5 1.6h-4.5l-.5-1.6zm-11.6 21.9c0-.6.5-1 1.1-1a1 1 0 0 1 1.1 1c0 .6-.5 1-1 1a1.1 1.1 0 0 1-1.2-1m1.9-7.8l1.7-.4v-4.3l-1.7-.5zm-1.6 0l-1.7-.4v-4.3l1.7-.5z'/%3E%3Cpath fill='%23c8b100' d='M211.5 294.2c.2-1 1-1.6 1.8-2V287h1.6v5.3c.8.3 1.5.9 1.7 1.6h4.4v.3h-6a1.2 1.2 0 0 0-1-.6c-.4 0-.7.3-1 .6zm12.2 0v-.3h4.1a2.4 2.4 0 0 1 .2-.3l-5-5.7l1.2-1l5 5.6l.2-.1V285h1.6v7.3h.3l4.9-5.5l1.2 1l-4.9 5.5l.3.6h4v.3zm21.6 0a1.1 1.1 0 0 1 1-.6c.5 0 .8.3 1 .6h1.6c-.2-1-.9-1.6-1.8-2V287h-1.6v5.3c-.8.3-1.4.8-1.7 1.6h-4.4v.3zm-30.2-15l6 6.8l1.3-1l-6.1-6.7l.3-.6h4.4V276h-4.4a2.6 2.6 0 0 0-2.5-1.7a2.6 2.6 0 0 0-2.7 2.5a2.5 2.5 0 0 0 1.8 2.4v5.2h1.6v-5.2zm32 0v5.3h-1.7v-5.2a2.5 2.5 0 0 1-.4-.2l-6 6.8l-1.3-1l6.2-6.9l-.1-.3h-4.5V276h4.5a2.6 2.6 0 0 1 2.4-1.7a2.6 2.6 0 0 1 2.7 2.5a2.5 2.5 0 0 1-1.9 2.4zm-16.1 0v3.3h-1.7v-3.2a2.6 2.6 0 0 1-1.7-1.6h-4V276h4a2.6 2.6 0 0 1 2.5-1.7c1.2 0 2.2.7 2.5 1.7h4v1.6h-4a2.5 2.5 0 0 1-1.6 1.6m-17.8 4l-1.7.4v4.3l1.7.5zm1.6 0l1.7.4v4.3l-1.7.5zm30.6 0l-1.7.4v4.3l1.7.5zm1.6 0l1.7.4v4.3l-1.7.5zm-25.5.8l1.6-.7l2.9 3.3l-1 1.4zm-1.3 1l-1 1.4l3 3.3l1.6-.7zm18.5-1.1l-1.6-.7l-3 3.3l1 1.4zm1.2 1l1 1.4l-3 3.3l-1.5-.7zm-20.3 9l.5-1.6h4.5l.5 1.6zm-6.7-17c0-.6.5-1 1.2-1a1 1 0 0 1 1 1c0 .6-.4 1-1 1a1.1 1.1 0 0 1-1.2-1m12.1.8l-.5 1.6H220l-.5-1.6zm0-1.6l-.5-1.6H220l-.5 1.6zm15.7 17.8l-.5-1.6h-4.5l-.5 1.6zm4.4-17c0-.6.5-1 1.1-1a1 1 0 0 1 1.1 1c0 .6-.5 1-1 1a1.1 1.1 0 0 1-1.2-1m-16.1 0c0-.6.5-1 1.1-1a1 1 0 0 1 1.1 1c0 .6-.5 1-1.1 1a1.1 1.1 0 0 1-1.1-1m6.2.8l.5 1.6h4.6l.5-1.6zm0-1.6l.5-1.6h4.6l.5 1.6zm-5.9 5l-1.7.5v4.3l1.7.5V281m1.7 0l1.6.5v4.3l-1.6.5z'/%3E%3Cpath fill='none' stroke='%23c8b100' stroke-width='0.3' d='M232.7 316.3a15.6 15.6 0 0 0 3.7-1.1l.8 1.4a17.6 17.6 0 0 1-4.3 1.2a2.6 2.6 0 0 1-2.6 2a2.6 2.6 0 0 1-2.5-2a17.5 17.5 0 0 1-4.6-1.2l.8-1.4c1.3.5 2.6.9 4 1a2.5 2.5 0 0 1 1.5-1.3v-6.7h1.6v6.7c.7.2 1.3.7 1.6 1.4zm-4.7-20.4a2.3 2.3 0 0 1-.2-.5h-4V294h4a2.6 2.6 0 0 1 .2-.4l-5-5.6l1.2-1l5 5.5a2.2 2.2 0 0 1 .2 0V285h1.7v7.3h.2l4.9-5.5l1.2 1l-4.9 5.5l.3.6h4v1.5h-4c0 .2-.2.4-.3.5l4.7 5.3l-1.3 1l-4.6-5.3l-.2.1v8.7h-1.6V297l-.2-.1l-4.8 5.3l-1.2-1l4.7-5.3m-12.8-16.7l6 6.8l1.3-1l-6.1-6.7l.3-.6h4.4V276h-4.4a2.6 2.6 0 0 0-2.5-1.7a2.6 2.6 0 0 0-2.6 2.5a2.5 2.5 0 0 0 1.7 2.4v5.2h1.6v-5.2zm6.5 34.8l-.8 1.4a16.6 16.6 0 0 1-3.6-3.1c-.9.2-1.8 0-2.5-.5a2.4 2.4 0 0 1-.3-3.5l.1-.1a15.3 15.3 0 0 1-1.2-4.8h1.6a13.1 13.1 0 0 0 1 4c.5 0 1 0 1.4.2l4.1-4.5l1.3 1l-4.1 4.5c.6.9.5 2-.1 2.8a15.2 15.2 0 0 0 3.1 2.6zm-8.4-13.1V297a2.5 2.5 0 0 1-1.8-2.4c0-1 .8-2 1.8-2.4V287h1.6v5.3c.8.2 1.5.8 1.7 1.6h4.4v1.5h-4.4a2.6 2.6 0 0 1-1.6 1.6v3.9h-1.7m2.3 8.3c.4-.4 1.1-.5 1.6 0s.5 1 .1 1.4a1.2 1.2 0 0 1-1.6.1a1 1 0 0 1 0-1.5zm-2-4.5l-1.7-.3l-.3-4.3l1.7-.6v2.5c0 1 0 1.8.3 2.7zm1.4-5.3l1.6.4v2.2c0-.8.3 2.1.3 2.1l-1.7.6l-.3-2.7v-2.6zm5.5 13.7a15.7 15.7 0 0 0 4.8 2.6l.4-1.6a13.7 13.7 0 0 1-4-2l-1.2 1m-.8 1.4a17.4 17.4 0 0 0 4.8 2.6l-1.2 1.1a18.7 18.7 0 0 1-4-2l.4-1.7'/%3E%3Cpath fill='none' stroke='%23c8b100' stroke-width='0.3' d='m221.9 305.1l1.6.7l3-3.3l-1-1.4l-3.6 4m-1.3-1l-1-1.4l3-3.3l1.6.7l-3.6 4m-7.6-9.5c0-.6.5-1 1-1c.7 0 1.2.5 1.2 1c0 .6-.5 1.1-1.1 1.1a1 1 0 0 1-1.1-1zm25.7 19.4l.8 1.4a16.7 16.7 0 0 0 3.6-3.1c.9.2 1.8 0 2.6-.5a2.4 2.4 0 0 0 .2-3.5l-.1-.1a15 15 0 0 0 1.3-4.8h-1.7a13.3 13.3 0 0 1-1 4a3 3 0 0 0-1.4.2l-4.1-4.5l-1.3 1l4.1 4.5a2.4 2.4 0 0 0 .1 2.8a15 15 0 0 1-3 2.6zm8.4-13.1V297a2.5 2.5 0 0 0 1.8-2.4c0-1-.7-2-1.8-2.4V287h-1.6v5.3c-.8.2-1.4.8-1.7 1.6h-4.4v1.5h4.4c.3.8.9 1.3 1.7 1.6v3.9zm-2.3 8.3a1.2 1.2 0 0 0-1.6 0a1 1 0 0 0-.1 1.4a1.2 1.2 0 0 0 1.6.1a1 1 0 0 0 0-1.5zm2-4.5l1.7-.3l.3-4.3l-1.7-.6v2.5c0 1 0 1.8-.2 2.7zm-1.3-5.3l-1.7.4v2.2c0-.8-.3 2.1-.3 2.1l1.7.6l.3-2.7v-2.6m1.6-20.1v5.2h-1.6v-5.2a2.3 2.3 0 0 1-.4-.2l-6 6.8l-1.2-1l6-7v-.2h-4.5V276h4.4a2.6 2.6 0 0 1 2.5-1.7a2.6 2.6 0 0 1 2.6 2.5a2.5 2.5 0 0 1-1.8 2.4zm-16 0v3.2h-1.7v-3.2a2.6 2.6 0 0 1-1.7-1.6h-4V276h4c.4-1 1.3-1.7 2.5-1.7s2.2.7 2.5 1.7h4v1.6h-4a2.5 2.5 0 0 1-1.6 1.6zm8.8 33.8a15.7 15.7 0 0 1-4.8 2.6l-.4-1.6a13.7 13.7 0 0 0 4-2l1.2 1m.8 1.4a17.4 17.4 0 0 1-4.8 2.6l1.2 1.1a18.7 18.7 0 0 0 4-2l-.4-1.7m-27.4-31.4l-1.7.5v4.3l1.7.5v-5.2m1.7 0l1.6.4v4.3l-1.6.5V283m30.5 0l-1.7.5v4.3l1.7.5V283'/%3E%3Cpath fill='none' stroke='%23c8b100' stroke-width='0.3' d='m247.1 283.1l1.7.5v4.3l-1.7.5V283m-8.6 22l-1.6.7l-2.9-3.3l1-1.4l3.5 4m1.3-1l1-1.4l-3-3.3l-1.6.7l3.6 4m-18.2-20l1.6-.7l3 3.3l-1 1.4l-3.6-4m-1.3 1l-1 1.4l3 3.3l1.6-.7l-3.6-4m18.5-1.1l-1.6-.7l-3 3.3l1 1.4l3.6-4m1.2 1l1 1.4l-3 3.2l-1.5-.6l3.5-4m-20.3 9l.5-1.6h4.5l.5 1.6h-5.5m0 1.5l.5 1.6h4.5l.5-1.6h-5.5M213 277c0-.6.5-1 1.2-1c.6 0 1 .4 1 1s-.4 1-1 1a1 1 0 0 1-1.2-1zm12.1.8l-.5 1.6h-4.5l-.5-1.6h5.5m0-1.6l-.5-1.6h-4.5l-.5 1.6h5.5m20.1 18.5c0-.5.5-1 1.1-1c.6 0 1.1.5 1.1 1c0 .6-.5 1.1-1 1.1a1 1 0 0 1-1.2-1zm-4.4-.7l-.5-1.6h-4.5l-.5 1.6h5.5m0 1.5l-.5 1.6h-4.5l-.5-1.6h5.5m-11.6 21.9c0-.6.5-1 1.1-1c.6 0 1.1.4 1.1 1s-.5 1-1 1a1.1 1.1 0 0 1-1.2-1zm1.9-7.8l1.7-.4v-4.3l-1.7-.5v5.2m-1.6 0l-1.7-.4v-4.3l1.7-.5v5.2m15.7-32.6c0-.6.5-1 1.1-1a1 1 0 0 1 1.1 1c0 .6-.5 1-1 1a1.1 1.1 0 0 1-1.2-1zm-16.1 0c0-.6.5-1 1.1-1a1 1 0 0 1 1.1 1c0 .6-.5 1-1 1a1.1 1.1 0 0 1-1.2-1zm6.2.8l.5 1.6h4.6l.5-1.6h-5.5m0-1.6l.4-1.6h4.6l.5 1.6h-5.5m-6 5l-1.6.5v4.3l1.6.5V281m1.7 0l1.6.5v4.3l-1.6.5V281'/%3E%3Cpath fill='%23058e6e' d='M227.7 294.7a2.6 2.6 0 0 1 2.6-2.5a2.6 2.6 0 0 1 2.6 2.5a2.6 2.6 0 0 1-2.6 2.4c-1.4 0-2.6-1-2.6-2.4'/%3E%3Cpath fill='%23db4446' d='M230.9 229.7v-.6l.1-.3l-2.3-.1a5.9 5.9 0 0 1-2.3-1.2c-.8-.7-1.1-1-1.6-1.2c-1.3-.2-2.3.4-2.3.4s1 .4 1.7 1.3s1.5 1.3 1.8 1.4c.6.2 2.6 0 3.1.1z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M230.9 229.7v-.6l.1-.3l-2.3-.1a5.9 5.9 0 0 1-2.3-1.2c-.8-.7-1.1-1-1.6-1.2c-1.3-.2-2.3.4-2.3.4s1 .4 1.7 1.3s1.5 1.3 1.8 1.4c.6.2 2.6 0 3.1.1z'/%3E%3Cpath fill='%23ed72aa' stroke='%23000' stroke-width='0.4' d='M238.1 227.5v1.4c.2.6-.1 1.2 0 1.5c0 .4.1.6.3.9l.2.9l-.7-.5l-.6-.4v1c.1.2.3.8.6 1.1l1 1.3c.2.5.1 1.4.1 1.4s-.4-.7-.8-.8l-1.2-.7s.7.8.7 1.5c0 .8-.3 1.6-.3 1.6s-.3-.7-.8-1.1l-1-.9s.4 1.2.4 2v2.3l-.9-1l-1-.7c0-.2.5.6.6 1.1c0 .5.3 2.3 1.8 4.5c1 1.3 2.3 3.6 5.3 2.9c3-.8 1.9-4.8 1.3-6.7a16.8 16.8 0 0 1-1-4.6c0-.8.6-2.9.5-3.3a8 8 0 0 1 .2-3.1c.4-1.3.7-1.8.9-2.3c.2-.6.4-.9.4-1.3l.1-1.3l.7 1.3l.1 1.5s.1-1 1-1.6c.8-.6 1.8-1.1 2-1.4c.3-.3.3-.5.3-.5s0 1.8-.6 2.6l-1.7 2s.7-.3 1.2-.3h.9s-.6.4-1.4 1.6c-.8 1-.5 1.2-1 2.1c-.6 1-1 1-1.7 1.5c-1 .8-.5 4.2-.4 4.7c.2.5 2 4.5 2 5.5s.2 3.2-1.5 4.6c-1.1 1-3 1-3.4 1.2c-.4.3-1.2 1.1-1.2 2.8c0 1.7.6 2 1 2.4c.6.5 1.2.2 1.3.6c.2.3.2.5.5.7c.2.2.3.4.2.8c0 .3-.8 1.1-1.1 1.7l-.8 2.4c0 .2-.1 1 .1 1.3c0 0 .9 1 .3 1.2c-.4.2-.8-.2-1-.2l-.9.5c-.3-.1-.3-.3-.4-.8l-.1-.7c-.2 0-.3.2-.4.5c0 .2 0 .8-.3.8c-.2 0-.5-.4-.8-.5c-.2 0-.8-.2-.8-.4c0-.3.4-.9.7-1c.4 0 .8-.3.5-.5s-.5-.2-.7 0s-.8 0-.7-.2v-.8c0-.2-.4-.5.1-.8c.6-.3.8.2 1.4.1c.6 0 .8-.3 1-.6c.2-.3.2-1-.2-1.4c-.4-.5-.7-.5-.9-.8l-.3-.9v2.2l-.7-.8c-.3-.3-.6-1.3-.6-1.3v1.3c0 .4.3.7.2.8c-.1.1-.8-.7-1-.8a3.7 3.7 0 0 1-1-1l-.4-1.4a4.2 4.2 0 0 1 0-1.5l.4-1h-1.4c-.7 0-1.2-.3-1.5.2c-.3.5-.2 1.5.2 2.8c.3 1.2.5 1.9.4 2.1a3 3 0 0 1-.7.8h-.9a2.5 2.5 0 0 0-1.2-.3h-1.3l-1.1-.3c-.3.1-.8.3-.6.7c.2.6-.2.7-.5.7l-.9-.2c-.4-.1-.9 0-.8-.4c0-.4.2-.4.4-.7c.2-.3.2-.5 0-.5h-.6c-.2.2-.5.5-.8.4c-.2-.1-.4-.4-.4-1s-.7-1.2 0-1.1c.5 0 1.3.4 1.4 0c.2-.3 0-.4-.2-.7s-.8-.4-.3-.7l.7-.5c.1-.2.4-.8.7-.6c.6.2 0 .7.6 1.3c.6.7 1 1 2 .8c1 0 1.3-.2 1.3-.5l-.1-1v-1s-.4.3-.5.6l-.4.8v-2a8 8 0 0 0-.2-.8l-.3.9l-.1 1s-.7-.5-.5-1.5c.1-.7-.1-1.6.1-2c.2-.3.7-1.5 2-1.6h2.6l2-.3s-2.8-1.4-3.5-1.9a9.5 9.5 0 0 1-2-2l-.6-1.6s-.5 0-1 .3a5 5 0 0 0-1.2 1l-.7 1l.1-1.2v-.8s-.4 1.2-1 1.7l-1.4 1v-.8l.2-1s-.4.8-1.1 1c-.7 0-1.8 0-1.9.4c0 .5.2 1 0 1.4c0 .3-.4.5-.4.5l-.8-.4c-.4 0-.7.2-.7.2s-.3-.4-.2-.7c.1-.2.7-.6.5-.8l-.8.2c-.3.1-.8.3-.8-.2c0-.4.2-.7 0-1c0-.3 0-.5.2-.6l1.2-.1c0-.2-.2-.5-.8-.6c-.6-.1-.8-.5-.5-.8c.3-.2.3-.3.5-.6c.1-.2.2-.7.7-.5c.5.3.4.8 1 1a4 4 0 0 0 2-.2l1.5-1l1.5-1l-1-.8c-.3-.3-.7-.9-1-1a8.3 8.3 0 0 0-1.8-.6a9 9 0 0 1-1.7-.5l.8-.3c.2-.2.6-.6.8-.6h.3h-1.4c-.3-.1-1-.6-1.3-.6l-.8.1s.8-.4 1.4-.5l1-.1s-.9-.3-1.1-.6l-.6-1c-.2-.1-.3-.5-.6-.5l-1 .3c-.4 0-.6-.2-.6-.6l-.1-.5c-.2-.3-.6-.8-.2-1h1.4c0-.2-.5-.6-.8-.8c-.4-.2-1-.5-.7-.8l.8-.5c.2-.3.3-1 .7-.7c.4.2.8 1.2 1.1 1.1c.3 0 .3-.8.3-1c0-.4 0-1 .2-.9c.3 0 .5.4 1 .5c.4 0 1-.1 1 .2c0 .3-.3.7-.6 1c-.3.3-.4 1-.3 1.4c.2.5.7 1.2 1.2 1.4c.4.3 1.2.5 1.7.9c.5.3 1.7 1.2 2.1 1.3l.8.4s.5-.2 1.1-.2c.7 0 2.1 0 2.6-.2c.6-.2 1.3-.6 1-1c-.1-.6-1.3-1-1.2-1.4c0-.4.5-.4 1.2-.4c.8 0 1.8.1 2-1c.2-1 .2-1.5-.8-1.8c-1-.2-1.8-.2-2-1c-.2-.7-.4-.9-.2-1.1c.3-.2.6-.3 1.4-.4c.8 0 1.6 0 1.9-.2c.2-.2.3-.7.6-.9c.3-.2 1.4-.4 1.4-.4s1.4.7 2.7 1.7a15 15 0 0 1 2.2 2.1'/%3E%3Cpath d='m228.1 226.8l-.2-.6v-.3s.8 0 .7.3c0 .2-.2.2-.3.3z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m228.1 226.8l-.2-.6v-.3s.8 0 .7.3c0 .2-.2.2-.3.3z'/%3E%3Cpath d='M232 225.4v-.4s.7 0 1 .3c.5.4.9 1 .9 1l-.8-.4h-.5l-.3-.1v-.3z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.1' d='M232 225.4v-.4s.7 0 1 .3c.5.4.9 1 .9 1l-.8-.4h-.5l-.3-.1v-.3z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m237.3 231.3l-.4-.7a8 8 0 0 1-.3-.4'/%3E%3Cpath fill='%23db4446' d='M217.4 226.6s.5.4.8.4h.8s.2-.5.1-.8c-.2-1.2-1.2-1.4-1.2-1.4s.3.7.1 1a2 2 0 0 1-.6.8'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M217.4 226.6s.5.4.8.4h.8s.2-.5.1-.8c-.2-1.2-1.2-1.4-1.2-1.4s.3.7.1 1a2 2 0 0 1-.6.8z'/%3E%3Cpath fill='%23db4446' d='M215.2 227.6s-.4-.7-1.3-.6c-.8 0-1.4.8-1.4.8h1.2c.3.3.4 1 .4 1l.7-.6a7.2 7.2 0 0 0 .4-.6'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M215.2 227.6s-.4-.7-1.3-.6c-.8 0-1.4.8-1.4.8h1.2c.3.3.4 1 .4 1l.7-.6a7.2 7.2 0 0 0 .4-.6z'/%3E%3Cpath fill='%23db4446' d='M214.2 230.6s-.8.1-1.2.6c-.4.5-.3 1.3-.3 1.3s.4-.5.9-.5l1 .2l-.1-.8z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M214.2 230.6s-.8.1-1.2.6c-.4.5-.3 1.3-.3 1.3s.4-.5.9-.5l1 .2l-.1-.8z'/%3E%3Cpath d='m228.2 230.5l.3-.5l.3.5z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m228.2 230.5l.3-.5l.3.5h-.7'/%3E%3Cpath d='m229 230.5l.3-.5l.4.5z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m229 230.5l.3-.5l.4.5h-.8'/%3E%3Cpath d='m228.6 227.3l.8.3l-.7.4l-.1-.6'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m228.6 227.3l.8.3l-.7.4l-.1-.6'/%3E%3Cpath d='m229.5 227.6l.7.2l-.5.4z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m229.5 227.6l.7.2l-.5.4l-.2-.6'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M224.2 233.7s-.7.2-1 .6c-.4.5-.3 1-.3 1s.6-.5 1.5-.3l1.2.3l1.3-.3s-.7.8-.7 1.3l.2 1.1c0 .7-.6 1.6-.6 1.6l1-.3a4.6 4.6 0 0 0 1.7-.8l.9-1s-.2 1 0 1.4l.2 1.6l.8-.6c.2-.1.7-.4.9-.7l.3-1s0 .8.4 1.3l.6 1.6s.3-.8.6-1.1c.3-.4.7-.8.7-1a4.3 4.3 0 0 0-.1-.9l.4.8m-11 .6s.5-.8 1-1l1.1-.8l.9-.4m1 5l1.3-.8a4 4 0 0 0 1-1'/%3E%3Cpath fill='%23db4446' d='M216.6 240.4s-.4-.5-1.1-.3c-.7 0-1.2.9-1.2.9s.6-.2 1-.1s.6.4.6.4l.4-.4z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M216.6 240.4s-.4-.5-1.1-.3c-.7 0-1.2.9-1.2.9s.6-.2 1-.1s.6.4.6.4l.4-.4z'/%3E%3Cpath fill='%23db4446' d='M215.8 243.2s-.6 0-1.1.3c-.5.4-.5 1.2-.5 1.2s.4-.4.8-.3l.9.2v-.6c.2-.4-.1-.8-.1-.8'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M215.8 243.2s-.6 0-1.1.3c-.5.4-.5 1.2-.5 1.2s.4-.4.8-.3l.9.2v-.6c.2-.4-.1-.8-.1-.8z'/%3E%3Cpath fill='%23db4446' d='M217.2 245.8s0 .8.3 1.3c.4.5 1.1.5 1.1.5l-.3-.7c0-.4.3-.8.3-.8s-.3-.3-.7-.3z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M217.2 245.8s0 .8.3 1.3c.4.5 1.1.5 1.1.5l-.3-.7c0-.4.3-.8.3-.8s-.3-.3-.7-.3zm16 1.3s2 1.2 1.9 2.2c0 1-1 2.3-1 2.3'/%3E%3Cpath fill='%23db4446' d='M224.2 252.6s-.4-.6-1.1-.6c-.7 0-1.4.7-1.4.7s.8-.1 1 .2l.5.6l.5-.3z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M224.2 252.6s-.4-.6-1.1-.6c-.7 0-1.4.7-1.4.7s.8-.1 1 .2l.5.6l.5-.3z'/%3E%3Cpath fill='%23db4446' d='M222.2 255.3s-1-.1-1.4.3c-.4.5-.4 1.3-.4 1.3s.6-.6 1-.5c.5 0 1 .3 1 .3v-.7l-.3-.7'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M222.2 255.3s-1-.1-1.4.3c-.4.5-.4 1.3-.4 1.3s.6-.6 1-.5c.5 0 1 .3 1 .3v-.7l-.3-.7z'/%3E%3Cpath fill='%23db4446' d='M224 258.1s-.3.7 0 1.1c.3.5 1 .8 1 .8s-.3-.4-.2-.8c.1-.3.7-.8.7-.8l-1.4-.2'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M224 258.1s-.3.7 0 1.1c.3.5 1 .8 1 .8s-.3-.4-.2-.8c.1-.3.7-.8.7-.8l-1.4-.2z'/%3E%3Cpath fill='%23db4446' d='M236 259.3s-.8-.2-1.2 0c-.5.3-.8 1.4-.8 1.4s.7-.6 1.2-.5c.5 0 1 .3 1 .3v-.8z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M236 259.3s-.8-.2-1.2 0c-.5.3-.8 1.4-.8 1.4s.7-.6 1.2-.5c.5 0 1 .3 1 .3v-.8z'/%3E%3Cpath fill='%23db4446' d='M236.4 262.2s-.6.6-.4 1.1l.6 1s0-.7.2-1l1-.3l-.7-.5a15.8 15.8 0 0 1-.7-.3'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M236.4 262.2s-.6.6-.4 1.1l.6 1s0-.7.2-1l1-.3l-.7-.5a15.8 15.8 0 0 1-.7-.3z'/%3E%3Cpath fill='%23db4446' d='M239.4 263s-.3.8.2 1.3c.6.5 1 .5 1 .5s-.3-.7-.2-1.1c.1-.5.5-.7.5-.7l-.8-.2l-.7.3'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M239.4 263s-.3.8.2 1.3c.6.5 1 .5 1 .5s-.3-.7-.2-1.1c.1-.5.5-.7.5-.7l-.8-.2l-.7.3z'/%3E%3Cpath fill='%23ffd691' stroke='%23000' stroke-width='0.5' d='M208.8 316.4c2 .6 3 2 3 3.8c0 2.3-2.2 4-5 4c-3 0-5.3-1.7-5.3-4c0-1.7 1-3.6 3-3.8l-.2-.4l-.7-.7h1.2l.8.5l.5-.7c.3-.4.6-.5.6-.5l.6.6l.3.5l.7-.4l.8-.3s0 .4-.2.7l-.1.7'/%3E%3Cpath fill='%23058e6e' stroke='%23000' stroke-width='0.5' d='M206.3 326.7s-3.8-2.6-5.5-3c-2-.4-4.5 0-5.5 0c0 0 1.2.8 1.8 1.4c.5.5 2.3 1.5 3.3 1.8c3 .8 6-.2 6-.2m1 .2s2.4-2.5 5-2.9c3-.4 5 .3 6.2.6l-1.5.8c-.5.3-2 1.5-4 1.6c-2 0-4.4-.3-4.8-.2l-.9.1'/%3E%3Cpath fill='%23ad1519' stroke='%23000' stroke-width='0.5' d='M206.7 323.8a4.8 4.8 0 0 1 0-7.1a4.8 4.8 0 0 1 1.5 3.5a4.9 4.9 0 0 1-1.5 3.6'/%3E%3Cpath fill='%23058e6e' stroke='%23000' stroke-width='0.5' d='M205.7 329s.6-1.5.6-2.7l-.1-2.1h.8s.3 1.1.3 2l-.1 2.4l-.7.1l-.8.3'/%3E%3Cpath fill='%23fff' d='M254 190.7c0-.5.5-1 1-1c.6 0 1.1.5 1.1 1c0 .6-.5 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M254 190.7c0-.5.5-1 1-1c.6 0 1.1.5 1.1 1c0 .6-.5 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M255.4 188.2c0-.6.5-1 1.1-1c.6 0 1 .4 1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M255.4 188.2c0-.6.5-1 1.1-1c.6 0 1 .4 1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M256.4 185.2c0-.5.5-1 1-1c.6 0 1.1.5 1.1 1s-.5 1-1 1a1 1 0 0 1-1.1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M256.4 185.2c0-.5.5-1 1-1c.6 0 1.1.5 1.1 1s-.5 1-1 1a1 1 0 0 1-1.1-1z'/%3E%3Cpath fill='%23fff' d='M256.5 182c0-.5.5-1 1-1c.6 0 1.1.5 1.1 1c0 .6-.5 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M256.5 182c0-.5.5-1 1-1c.6 0 1.1.5 1.1 1c0 .6-.5 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M255.7 179c0-.6.5-1 1-1c.7 0 1.2.4 1.2 1s-.5 1-1.1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M255.7 179c0-.6.5-1 1-1c.7 0 1.2.4 1.2 1s-.5 1-1.1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M254.1 176.1c0-.5.5-1 1-1c.7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M254.1 176.1c0-.5.5-1 1-1c.7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M252 173.8c0-.6.4-1 1-1s1 .4 1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M252 173.8c0-.6.4-1 1-1s1 .4 1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M249.4 171.8c0-.5.5-1 1.1-1a1 1 0 0 1 0 2c-.6 0-1-.4-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M249.4 171.8c0-.5.5-1 1.1-1a1 1 0 0 1 0 2c-.6 0-1-.4-1-1z'/%3E%3Cpath fill='%23fff' d='M246.5 170.3c0-.6.4-1 1-1s1 .4 1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M246.5 170.3c0-.6.4-1 1-1s1 .4 1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M243.3 169.1c0-.5.5-1 1.1-1a1 1 0 0 1 0 2a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M243.3 169.1c0-.5.5-1 1.1-1a1 1 0 0 1 0 2a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M239.9 168.5c0-.5.4-1 1-1s1 .5 1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M239.9 168.5c0-.5.4-1 1-1s1 .5 1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M236.6 168.3c0-.5.4-1 1-1s1 .5 1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M236.6 168.3c0-.5.4-1 1-1s1 .5 1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M233.3 168.5c0-.6.5-1 1-1c.7 0 1.1.4 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M233.3 168.5c0-.6.5-1 1-1c.7 0 1.1.4 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M230.1 168.5c0-.6.5-1 1-1c.6 0 1.1.4 1.1 1s-.5 1-1 1a1 1 0 0 1-1.1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M230.1 168.5c0-.6.5-1 1-1c.6 0 1.1.4 1.1 1s-.5 1-1 1a1 1 0 0 1-1.1-1z'/%3E%3Cpath fill='%23fff' stroke='%23000' stroke-width='0.4' d='M231.7 171.2c0-.5.5-1 1-1c.7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1m.6 3.1c0-.6.4-1 1-1s1 .4 1 1c0 .5-.4 1-1 1a1 1 0 0 1-1-1m0 3c0-.5.6-1 1.1-1a1 1 0 0 1 0 2a1 1 0 0 1-1-1m-1 2.8c0-.5.5-1 1-1c.7 0 1.1.5 1.1 1c0 .6-.4 1-1 1a1 1 0 0 1-1-1m-1.9 2.6c0-.5.5-1 1-1c.7 0 1.2.5 1.2 1s-.5 1-1.1 1c-.6 0-1-.4-1-1'/%3E%3Cpath fill='%23fff' d='M227.6 166.5c0-.5.5-1 1.1-1a1 1 0 0 1 0 2a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M227.6 166.5c0-.5.5-1 1.1-1a1 1 0 0 1 0 2a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M224.8 165c0-.6.4-1 1-1s1 .4 1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M224.8 165c0-.6.4-1 1-1s1 .4 1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M221.6 164c0-.6.5-1 1-1c.6 0 1.1.4 1.1 1c0 .5-.5 1-1 1c-.6 0-1.1-.5-1.1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M221.6 164c0-.6.5-1 1-1c.6 0 1.1.4 1.1 1c0 .5-.5 1-1 1c-.6 0-1.1-.5-1.1-1z'/%3E%3Cpath fill='%23fff' d='M218.3 163.4c0-.5.5-1 1-1c.6 0 1.1.5 1.1 1s-.5 1-1 1a1 1 0 0 1-1.1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M218.3 163.4c0-.5.5-1 1-1c.6 0 1.1.5 1.1 1s-.5 1-1 1a1 1 0 0 1-1.1-1z'/%3E%3Cpath fill='%23fff' d='M215 163.5c0-.6.5-1 1.1-1c.6 0 1 .4 1 1c0 .5-.4 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M215 163.5c0-.6.5-1 1.1-1c.6 0 1 .4 1 1c0 .5-.4 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M211.7 164c0-.5.5-1 1-1c.7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M211.7 164c0-.5.5-1 1-1c.7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M208.6 165.1c0-.5.5-1 1-1c.6 0 1.1.5 1.1 1s-.5 1-1 1a1 1 0 0 1-1.1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M208.6 165.1c0-.5.5-1 1-1c.6 0 1.1.5 1.1 1s-.5 1-1 1a1 1 0 0 1-1.1-1z'/%3E%3Cpath fill='%23fff' d='M156 190.7c0-.5.4-1 1-1s1 .5 1 1c0 .6-.4 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M156 190.7c0-.5.4-1 1-1s1 .5 1 1c0 .6-.4 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M154.5 188.2c0-.6.5-1 1-1c.6 0 1 .4 1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M154.5 188.2c0-.6.5-1 1-1c.6 0 1 .4 1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M153.5 185.2c0-.5.5-1 1-1c.7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M153.5 185.2c0-.5.5-1 1-1c.7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M153.4 182c0-.5.5-1 1-1c.6 0 1.1.5 1.1 1c0 .6-.5 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M153.4 182c0-.5.5-1 1-1c.6 0 1.1.5 1.1 1c0 .6-.5 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M154.2 179c0-.6.5-1 1-1c.6 0 1 .4 1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M154.2 179c0-.6.5-1 1-1c.6 0 1 .4 1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M155.8 176.1c0-.5.5-1 1-1c.6 0 1.1.5 1.1 1s-.5 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M155.8 176.1c0-.5.5-1 1-1c.6 0 1.1.5 1.1 1s-.5 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M158 173.8c0-.6.4-1 1-1s1 .4 1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M158 173.8c0-.6.4-1 1-1s1 .4 1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M160.5 171.8c0-.5.4-1 1-1s1 .5 1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M160.5 171.8c0-.5.4-1 1-1s1 .5 1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M163.5 170.3c0-.6.4-1 1-1s1 .4 1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M163.5 170.3c0-.6.4-1 1-1s1 .4 1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M166.6 169.1c0-.5.5-1 1-1a1 1 0 0 1 0 2a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M166.6 169.1c0-.5.5-1 1-1a1 1 0 0 1 0 2a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M170 168.5c0-.5.5-1 1.1-1a1 1 0 0 1 0 2c-.6 0-1-.4-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M170 168.5c0-.5.5-1 1.1-1a1 1 0 0 1 0 2c-.6 0-1-.4-1-1z'/%3E%3Cpath fill='%23fff' d='M173.4 168.3c0-.5.4-1 1-1s1 .5 1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M173.4 168.3c0-.5.4-1 1-1s1 .5 1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M176.6 168.5c0-.6.5-1 1-1c.6 0 1.1.4 1.1 1s-.5 1-1 1a1 1 0 0 1-1.1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M176.6 168.5c0-.6.5-1 1-1c.6 0 1.1.4 1.1 1s-.5 1-1 1a1 1 0 0 1-1.1-1z'/%3E%3Cpath fill='%23fff' d='M179.8 168.5c0-.6.5-1 1-1c.7 0 1.2.4 1.2 1s-.5 1-1.1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M179.8 168.5c0-.6.5-1 1-1c.7 0 1.2.4 1.2 1s-.5 1-1.1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' stroke='%23000' stroke-width='0.4' d='M178.2 171.2c0-.5.5-1 1-1c.7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1m-.7 3.1c0-.6.4-1 1-1s1 .4 1 1c0 .5-.4 1-1 1a1 1 0 0 1-1-1m-.2 3c0-.5.5-1 1-1c.7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1m.9 2.8c0-.5.5-1 1-1c.6 0 1.1.5 1.1 1c0 .6-.5 1-1 1a1 1 0 0 1-1.1-1m1.8 2.6c0-.5.5-1 1-1a1 1 0 0 1 0 2a1 1 0 0 1-1-1'/%3E%3Cpath fill='%23fff' d='M182.3 166.5c0-.5.5-1 1-1a1 1 0 0 1 0 2a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M182.3 166.5c0-.5.5-1 1-1a1 1 0 0 1 0 2a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M185.2 165c0-.6.4-1 1-1s1 .4 1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M185.2 165c0-.6.4-1 1-1s1 .4 1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M188.3 164c0-.6.5-1 1-1c.7 0 1.1.4 1.1 1c0 .5-.4 1-1 1s-1-.5-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M188.3 164c0-.6.5-1 1-1c.7 0 1.1.4 1.1 1c0 .5-.4 1-1 1s-1-.5-1-1z'/%3E%3Cpath fill='%23fff' d='M191.6 163.4c0-.5.5-1 1-1c.7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M191.6 163.4c0-.5.5-1 1-1c.7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M194.9 163.5c0-.6.4-1 1-1s1 .4 1 1c0 .5-.4 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M194.9 163.5c0-.6.4-1 1-1s1 .4 1 1c0 .5-.4 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M198.2 164c0-.5.5-1 1-1c.7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M198.2 164c0-.5.5-1 1-1c.7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23fff' d='M201.3 165.1c0-.5.5-1 1-1c.7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.4' d='M201.3 165.1c0-.5.5-1 1-1c.7 0 1.1.5 1.1 1s-.4 1-1 1a1 1 0 0 1-1-1z'/%3E%3Cpath fill='%23c8b100' stroke='%23000' stroke-width='0.4' d='M174.7 228.9h-1v-1h-1.5v3.6h1.6v2.5h-3.4v7h1.8v14.3h-3.5v7.3h27.2v-7.3h-3.5V241h1.8v-7h-3.4v-2.5h1.6V228h-1.6v.9h-.8v-1h-1.6v1h-1.1v-1h-1.6v3.6h1.6v2.5H184v-7.8h1.7v-3.5H184v.9h-1v-1h-1.5v1h-.9v-1H179v3.6h1.7v7.8h-3.3v-2.5h1.6V228h-1.6v.9h-.9v-1h-1.8zm-6 33.7H196m-27.3-1.8H196m-27.3-1.8H196m-27.3-1.7H196m-27.3-2H196m-23.8-1.6h20.2m-20.2-1.8h20.2m-20.2-2h20.2m-20.2-1.7h20.2m-20.2-1.8h20.2m-20.2-1.8h20.2m-20.2-1.7h20.2m-22-1.8h23.8m-23.8-1.8h23.8m-23.8-1.8h23.8m-23.8-1.8h23.8m-20.4-1.7h17m-10.2-1.8h3.4m-3.4-1.8h3.4m-3.4-1.8h3.4m-3.4-1.7h3.4m-5.1-2.2h6.8m-12 7.5h3.6m-5-2.2h6.6m-6.7 32.6v-1.8m0-1.8v-1.7m-1.8 1.7v1.8m3.4 0V259m1.7 3.6v-1.8m0-1.8v-1.7m0-2v-1.6m0-1.8v-2m-1.7 7.4v-2m-3.4 2v-2m7 0v2m1.5-2v-1.6m-5.1-1.8v1.8m3.5-1.8v1.8m3.3-1.8v1.8M179 252v-2m1.7-1.7v1.7m0-5.3v1.8m-1.7-3.6v1.8m1.7-3.5v1.7m-3.3-1.7v1.7m-3.5-1.7v1.7m-1.6-3.5v1.8m3.3-1.8v1.8m3.4-1.8v1.8m1.7-3.6v1.8m-3.3-1.8v1.8m-3.5-1.8v1.8m-1.6-3.6v1.8m6.7-1.8v1.8m-3.4-5.3v1.8m15.3-1.8h-3.5m5-2.2h-6.6m6.7 32.6v-1.8m0-1.8v-1.7m1.8 1.7v1.8m-3.4 0V259m-1.7 3.6v-1.8m0-1.8v-1.7m0-2v-1.6m0-1.8v-2m1.7 7.4v-2m3.4 2v-2m-7 0v2m-1.5-2v-1.6m5.1-1.8v1.8m-3.5-1.8v1.8m-3.3-1.8v1.8m1.7-1.8v-2m-1.7-1.7v1.7m0-5.3v1.8m1.7-3.6v1.8m-1.7-3.5v1.7m3.3-1.7v1.7m3.5-1.7v1.7m1.6-3.5v1.8m-3.3-1.8v1.8m-3.4-1.8v1.8m-1.7-3.6v1.8m3.3-1.8v1.8m3.5-1.8v1.8m1.6-3.6v1.8m-6.7-1.8v1.8m3.4-5.3v1.8m-7 18v-2m0-5.4v-1.8m0 5.4v-1.8m0-5.3v-1.8m0-1.8v-1.7m0-3.6v-1.8m0-1.7v-1.8m-8.3 4.6h3.5m3.3-5.3h3.4m3.3 5.3h3.5'/%3E%3Cpath fill='%23c8b100' stroke='%23000' stroke-width='0.4' d='M186.8 262.6v-4.7c0-.8-.4-3.5-4.6-3.5c-4 0-4.4 2.7-4.4 3.5v4.7z'/%3E%3Cpath fill='%23c8b100' stroke='%23000' stroke-width='0.4' d='m179.3 258.2l-2.2-.3c0-.9.2-2.2.9-2.6l2 1.5c-.3.2-.7 1-.7 1.4zm6 0l2.2-.3c0-.9-.2-2.2-.9-2.6l-2 1.5c.3.2.7 1 .7 1.4zm-2.2-2.3l1-2a5.3 5.3 0 0 0-2-.4l-1.7.4l1.1 2zm-4.2-5.5v-4.9c0-1.3-1-2.4-2.5-2.4s-2.4 1-2.4 2.4v4.9zm6.8 0v-4.9c0-1.3 1-2.4 2.5-2.4s2.4 1 2.4 2.4v4.9zm-1.7-12l.4-4.4h-4.2l.2 4.4zm3.3 0l-.4-4.4h4.4l-.5 4.4zm-10 0l.2-4.4h-4.2l.5 4.4z'/%3E%3Cpath fill='%230039f0' d='M185.3 262.6v-4c0-.7-.5-2.7-3.1-2.7c-2.4 0-2.9 2-2.9 2.7v4zm-6.9-12.7v-4.2c0-1-.6-2.2-2-2.2s-2 1.1-2 2.2v4.3h4zm7.8 0v-4.2c0-1 .7-2.2 2-2.2s2 1.1 2 2.2v4.3h-4z'/%3E%3Cpath fill='%23ad1519' d='M190.8 269.8c0-9.7 7-17.6 15.6-17.6s15.6 7.9 15.6 17.6s-7 17.5-15.6 17.5s-15.6-7.8-15.6-17.5'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.6' d='M190.8 269.8c0-9.7 7-17.6 15.6-17.6s15.6 7.9 15.6 17.6s-7 17.5-15.6 17.5s-15.6-7.8-15.6-17.5z'/%3E%3Cpath fill='%23005bbf' d='M195.4 269.7c0-7 5-12.8 11-12.8s11 5.7 11 12.8c0 7.2-5 13-11 13s-11-5.8-11-13'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.6' d='M195.4 269.7c0-7 5-12.8 11-12.8s11 5.7 11 12.8c0 7.2-5 13-11 13s-11-5.8-11-13z'/%3E%3Cpath fill='%23c8b100' d='M201.2 260.9s-1.3 1.4-1.3 2.7a6 6 0 0 0 .6 2.4c-.2-.5-.8-.8-1.4-.8c-.8 0-1.4.6-1.4 1.3l.2.8l.5.9c.1-.3.5-.5 1-.5s1 .4 1 1a.9.9 0 0 1 0 .2h-1.2v1h1l-.8 1.5l1-.4l.8.9l.8-.9l1 .4l-.7-1.5h1v-1h-1.1a.9.9 0 0 1 0-.3a1 1 0 0 1 1-1c.4 0 .7.3 1 .6l.4-1l.2-.7a1.4 1.4 0 0 0-1.4-1.3c-.7 0-1.2.3-1.4.9c0 0 .6-1.2.6-2.5s-1.4-2.7-1.4-2.7'/%3E%3Cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='0.3' d='M201.2 260.9s-1.3 1.4-1.3 2.7a6 6 0 0 0 .6 2.4c-.2-.5-.8-.8-1.4-.8c-.8 0-1.4.6-1.4 1.3l.2.8l.5.9c.1-.3.5-.5 1-.5s1 .4 1 1a.9.9 0 0 1 0 .2h-1.2v1h1l-.8 1.5l1-.4l.8.9l.8-.9l1 .4l-.7-1.5h1v-1h-1.1a.9.9 0 0 1 0-.3a1 1 0 0 1 1-1c.4 0 .7.3 1 .6l.4-1l.2-.7a1.4 1.4 0 0 0-1.4-1.3c-.7 0-1.2.3-1.4.9c0 0 .6-1.2.6-2.5s-1.4-2.7-1.4-2.7z'/%3E%3Cpath fill='%23c8b100' d='M199.2 269.9h4.1v-1h-4.1z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M199.2 269.9h4.1v-1h-4.1z'/%3E%3Cpath fill='%23c8b100' d='M211.4 260.9s-1.3 1.4-1.3 2.7c0 1.3.6 2.4.6 2.4c-.2-.5-.7-.8-1.4-.8c-.8 0-1.4.6-1.4 1.3l.2.8l.5.9c.2-.3.5-.5 1-.5a1 1 0 0 1 1 1a.9.9 0 0 1 0 .2h-1.2v1h1l-.8 1.5l1-.4l.8.9l.8-.9l1 .4l-.7-1.5h1v-1h-1.1a.8.8 0 0 1 0-.3a1 1 0 0 1 1-1c.4 0 .8.3 1 .6l.4-1l.2-.7a1.4 1.4 0 0 0-1.4-1.3c-.6 0-1.2.3-1.4.9c0 0 .6-1.2.6-2.5s-1.4-2.7-1.4-2.7'/%3E%3Cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='0.3' d='M211.4 260.9s-1.3 1.4-1.3 2.7c0 1.3.6 2.4.6 2.4c-.2-.5-.7-.8-1.4-.8c-.8 0-1.4.6-1.4 1.3l.2.8l.5.9c.2-.3.5-.5 1-.5a1 1 0 0 1 1 1a.9.9 0 0 1 0 .2h-1.2v1h1l-.8 1.5l1-.4l.8.9l.8-.9l1 .4l-.7-1.5h1v-1h-1.1a.8.8 0 0 1 0-.3a1 1 0 0 1 1-1c.4 0 .8.3 1 .6l.4-1l.2-.7a1.4 1.4 0 0 0-1.4-1.3c-.6 0-1.2.3-1.4.9c0 0 .6-1.2.6-2.5s-1.4-2.7-1.4-2.7z'/%3E%3Cpath fill='%23c8b100' d='M209.4 269.9h4.1v-1h-4.1z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M209.4 269.9h4.1v-1h-4.1z'/%3E%3Cpath fill='%23c8b100' d='M206.3 269.6s-1.3 1.5-1.3 2.8s.6 2.4.6 2.4c-.2-.5-.7-.9-1.4-.9c-.8 0-1.4.6-1.4 1.4l.2.7l.5 1c.1-.4.5-.6 1-.6a1 1 0 0 1 1 1a.9.9 0 0 1 0 .3h-1.2v1h1l-.8 1.5l1-.4l.8.9l.8-1l1 .5l-.7-1.5h1v-1h-1.1a.9.9 0 0 1 0-.3a1 1 0 0 1 1-1c.4 0 .7.2.9.6l.5-1l.2-.7a1.4 1.4 0 0 0-1.4-1.4c-.7 0-1.2.4-1.4 1c0 0 .6-1.2.6-2.5s-1.4-2.7-1.4-2.7'/%3E%3Cpath fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='0.3' d='M206.3 269.6s-1.3 1.5-1.3 2.8s.6 2.4.6 2.4c-.2-.5-.7-.9-1.4-.9c-.8 0-1.4.6-1.4 1.4l.2.7l.5 1c.1-.4.5-.6 1-.6a1 1 0 0 1 1 1a.9.9 0 0 1 0 .3h-1.2v1h1l-.8 1.5l1-.4l.8.9l.8-1l1 .5l-.7-1.5h1v-1h-1.1a.9.9 0 0 1 0-.3a1 1 0 0 1 1-1c.4 0 .7.2.9.6l.5-1l.2-.7a1.4 1.4 0 0 0-1.4-1.4c-.7 0-1.2.4-1.4 1c0 0 .6-1.2.6-2.5s-1.4-2.7-1.4-2.7z'/%3E%3Cpath fill='%23c8b100' d='M204.3 278.6h4.1v-1h-4.1z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M204.3 278.6h4.1v-1h-4.1z'/%3E%3Cpath fill='%23c8b100' d='M237.6 223.4h-.3a1.5 1.5 0 0 1-.3.4c-.2.2-.6.2-.8 0a.5.5 0 0 1-.1-.4a.5.5 0 0 1-.5 0c-.3-.1-.3-.5-.1-.7v-.5h-.3l-.1.2c-.2.3-.5.3-.7.2a.6.6 0 0 1 0-.2h-.3c-.5.2-.7-1-.7-1.2l-.2.2s.2.7.1 1.2c0 .6-.3 1.2-.3 1.2a9 9 0 0 1 2.9 1.6a9 9 0 0 1 2.2 2.3l1.2-.5c.6-.2 1.3-.2 1.3-.2l.2-.2c-.3 0-1.5.1-1.5-.4v-.2a.7.7 0 0 1-.2 0c-.2-.2-.2-.4 0-.7l.2-.1v-.3h-.3l-.2.1c-.2.3-.6.3-.8 0a.4.4 0 0 1-.1-.4a.6.6 0 0 1-.5 0c-.2-.2-.3-.5 0-.8l.2-.3z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M237.6 223.4h-.3a1.5 1.5 0 0 1-.3.4c-.2.2-.6.2-.8 0a.5.5 0 0 1-.1-.4a.5.5 0 0 1-.5 0c-.3-.1-.3-.5-.1-.7v-.5h-.3l-.1.2c-.2.3-.5.3-.7.2a.6.6 0 0 1 0-.2h-.3c-.5.2-.7-1-.7-1.2l-.2.2s.2.7.1 1.2c0 .6-.3 1.2-.3 1.2a9 9 0 0 1 2.9 1.6a9 9 0 0 1 2.2 2.3l1.2-.5c.6-.2 1.3-.2 1.3-.2l.2-.2c-.3 0-1.5.1-1.5-.4v-.2a.7.7 0 0 1-.2 0c-.2-.2-.2-.4 0-.7l.2-.1v-.3h-.3l-.2.1c-.2.3-.6.3-.8 0a.4.4 0 0 1-.1-.4a.6.6 0 0 1-.5 0c-.2-.2-.3-.5 0-.8l.2-.3z'/%3E%3Cpath d='M235.4 224h.2v.3h-.1c-.1 0-.1-.2 0-.2'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.1' d='M235.4 224h.2v.3h-.1c-.1 0-.1-.2 0-.2z'/%3E%3Cpath d='m236.3 224.8l-.3-.2v-.2h.1l.4.3l.3.2v.2h-.2z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.1' d='m236.3 224.8l-.3-.2v-.2h.1l.4.3l.3.2v.2h-.2l-.3-.3'/%3E%3Cpath d='m234.6 223.7l-.2-.2s-.1 0 0-.1l.3.1l.3.1v.2h-.1z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.1' d='m234.6 223.7l-.2-.2s-.1 0 0-.1l.3.1l.3.1v.2h-.1l-.3-.1'/%3E%3Cpath d='M233.7 223h.2v.2h-.2s-.1-.1 0-.2'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.1' d='M233.7 223h.2v.2h-.2s-.1-.1 0-.2z'/%3E%3Cpath d='M237.3 225.5v-.2h-.3l.1.2z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.1' d='M237.3 225.5v-.2h-.3l.1.2z'/%3E%3Cpath d='m237.9 226.2l.2.2h.1c.1 0 0-.1 0-.2l-.2-.2l-.2-.2h-.1v.2z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.1' d='m237.9 226.2l.2.2h.1c.1 0 0-.1 0-.2l-.2-.2l-.2-.2h-.1v.2l.2.2'/%3E%3Cpath d='M238.8 227v-.3h-.3v.2h.3'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.1' d='M238.8 227v-.3h-.3v.2h.3z'/%3E%3Cpath fill='%23c8b100' d='M236.2 221.1h-.6l-.1.9v.1h.2l.7-.5l-.3-.5'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M236.2 221.1h-.6l-.1.9v.1h.2l.7-.5l-.3-.5'/%3E%3Cpath fill='%23c8b100' d='M234.6 221.6v.5l.9.1h.1v-.2l-.5-.7z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M234.6 221.6v.5l.9.1h.1v-.2l-.5-.7l-.5.3'/%3E%3Cpath fill='%23c8b100' d='m236.4 222.6l-.4.3l-.6-.7v-.1h1.1z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m236.4 222.6l-.4.3l-.6-.7v-.1h1.1v.5'/%3E%3Cpath fill='%23c8b100' d='M235.3 222a.3.3 0 0 1 .4 0a.3.3 0 0 1 0 .3a.3.3 0 0 1-.3 0a.3.3 0 0 1-.1-.3'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M235.3 222a.3.3 0 0 1 .4 0a.3.3 0 0 1 0 .3a.3.3 0 0 1-.3 0a.3.3 0 0 1-.1-.3z'/%3E%3Cpath fill='%23c8b100' d='m233.2 221.1l-.2-.7l-.4-.4s.4-.2.8.1c.4.3 0 .9 0 .9z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m233.2 221.1l-.2-.7l-.4-.4s.4-.2.8.1c.4.3 0 .9 0 .9z'/%3E%3Cpath fill='%23c8b100' d='m234.2 221.4l-.4.4l-.6-.6v-.2h1z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m234.2 221.4l-.4.4l-.6-.6v-.2h1v.4'/%3E%3Cpath fill='%23c8b100' d='m233.1 221l.3-.1v.3c0 .2-.1.2-.2.2z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m233.1 221l.3-.1v.3c0 .2-.1.2-.2.2z'/%3E%3Cpath fill='%23c8b100' d='M238.3 222.5h-.5l-.3.7v.2h.2l.8-.4z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M238.3 222.5h-.5l-.3.7v.2h.2l.8-.4l-.2-.5'/%3E%3Cpath fill='%23c8b100' d='M236.7 222.8v.5l.8.2h.1v-.2l-.4-.7z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M236.7 222.8v.5l.8.2h.1v-.2l-.4-.7l-.5.2'/%3E%3Cpath fill='%23c8b100' d='m238.4 224l-.5.2l-.4-.7v-.2h.1l.9.2z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m238.4 224l-.5.2l-.4-.7v-.2h.1l.9.2l-.1.5'/%3E%3Cpath fill='%23c8b100' d='M237.3 223.2h.4a.3.3 0 0 1 0 .4a.3.3 0 0 1-.3 0a.3.3 0 0 1 0-.4'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M237.3 223.2h.4a.3.3 0 0 1 0 .4a.3.3 0 0 1-.3 0a.3.3 0 0 1 0-.4z'/%3E%3Cpath fill='%23c8b100' d='m240.2 224.3l.1.5l-.8.3h-.2v-.2l.4-.8z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m240.2 224.3l.1.5l-.8.3h-.2v-.2l.4-.8l.5.2'/%3E%3Cpath fill='%23c8b100' d='m240 225.8l-.5.1l-.3-.8v-.1h.2l.8.3z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m240 225.8l-.5.1l-.3-.8v-.1h.2l.8.3l-.1.5'/%3E%3Cpath fill='%23c8b100' d='m238.6 224.3l-.2.5l.9.3h.1v-.1l-.3-.8z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m238.6 224.3l-.2.5l.9.3h.1v-.1l-.3-.8l-.5.1'/%3E%3Cpath fill='%23c8b100' d='M239.5 225.2a.3.3 0 0 0 0-.3a.3.3 0 0 0-.4 0a.3.3 0 0 0 0 .3a.3.3 0 0 0 .4 0'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M239.5 225.2a.3.3 0 0 0 0-.3a.3.3 0 0 0-.4 0a.3.3 0 0 0 0 .3a.3.3 0 0 0 .4 0z'/%3E%3Cpath fill='%23c8b100' d='M240.8 227h.8l.5.3s.1-.4-.3-.7c-.3-.3-.8.2-.8.2z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M240.8 227h.8l.5.3s.1-.4-.3-.7c-.3-.3-.8.2-.8.2z'/%3E%3Cpath fill='%23c8b100' d='m240.3 226.1l-.3.5l.8.5v-.1h.2l-.1-1z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='m240.3 226.1l-.3.5l.8.5v-.1h.2l-.1-1l-.6.1'/%3E%3Cpath fill='%23c8b100' d='M241 227s.1-.1 0-.2h-.3c-.2 0-.2.1-.1.2z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.3' d='M241 227s.1-.1 0-.2h-.3c-.2 0-.2.1-.1.2zm38-21.9v.6h-2.4v-.6h1v-1.3h-.7v-.5h.6v-.6h.6v.6h.6v.6h-.6v1.2h1'/%3E%3Cpath fill='none' d='M134.4 217.1v-1.2m-.4 1.2v-1.2m-.2 1.2v-1.2m-.3 1.2v-1.2'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.1' d='M133.2 217.1v-1.2m-.5 1.1v-1m.2 1v-1m-.7 1v-1m.2 1v-1m-.9 1v-1m.2 1v-1m.3 1v-1m-.7 1v-1m-.3.9v-.8m-.1.8v-.8m-.5.7v-.6m.2.6v-.6m-.4.5v-.5m-.2.5v-.4m-.3.3v-.3m-.3.3v-.2'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.2' d='M129.2 216.6v-.2'/%3E%3Cpath fill='none' d='M135.7 217v-1m-.5 1v-1m-.4 1.2V216m143 1.1V216m-.4 1.1V216m-.3 1.1V216m-.3 1.2V216'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.1' d='M276.6 217.1V216m-.6 1v-1m.3 1v-1m-.8 1v-1m.3 1v-1m-.9 1v-1m.2 1v-1m.2 1v-1m-.6 1v-1m-.3.9v-.8m-.2.8v-.8m-.4.7v-.6m.2.6v-.6m-.5.6v-.6m-.2.5v-.4m-.3.4v-.4m-.2.3v-.2'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.2' d='M272.6 216.6v-.2'/%3E%3Cpath fill='none' d='M279.1 217v-1m-.6 1v-1m-.4 1.1V216'/%3E%3C/svg%3E");
}

.flag-icon.fr {
  display: inline-block;
  border: 1px solid #E0E5E5;
  width: 1.34em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3E%3Cpath fill='%23fff' d='M0 0h640v480H0z'/%3E%3Cpath fill='%23000091' d='M0 0h213.3v480H0z'/%3E%3Cpath fill='%23e1000f' d='M426.7 0H640v480H426.7z'/%3E%3C/svg%3E");
}

.flag-icon.de {
  display: inline-block;
  border: 1px solid #E0E5E5;
  width: 1.34em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3E%3Cpath fill='%23fc0' d='M0 320h640v160H0z'/%3E%3Cpath fill='%23000001' d='M0 0h640v160H0z'/%3E%3Cpath fill='%23f00' d='M0 160h640v160H0z'/%3E%3C/svg%3E");
}

.flag-icon.it {
  display: inline-block;
  border: 1px solid #E0E5E5;
  width: 1.34em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3E%3Cg fill-rule='evenodd' stroke-width='1'%3E%3Cpath fill='%23fff' d='M0 0h640v480H0z'/%3E%3Cpath fill='%23009246' d='M0 0h213.3v480H0z'/%3E%3Cpath fill='%23ce2b37' d='M426.7 0H640v480H426.7z'/%3E%3C/g%3E%3C/svg%3E");
}

.flag-icon.cn {
  display: inline-block;
  border: 1px solid #E0E5E5;
  width: 1.34em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3E%3Cdefs%3E%3Cpath id='flagCn4x30' fill='%23ff0' d='M-.6.8L0-1L.6.8L-1-.3h2z'/%3E%3C/defs%3E%3Cpath fill='%23ee1c25' d='M0 0h640v480H0z'/%3E%3Cuse width='30' height='20' href='%23flagCn4x30' transform='matrix(71.9991 0 0 72 120 120)'/%3E%3Cuse width='30' height='20' href='%23flagCn4x30' transform='matrix(-12.33562 -20.5871 20.58684 -12.33577 240.3 48)'/%3E%3Cuse width='30' height='20' href='%23flagCn4x30' transform='matrix(-3.38573 -23.75998 23.75968 -3.38578 288 95.8)'/%3E%3Cuse width='30' height='20' href='%23flagCn4x30' transform='matrix(6.5991 -23.0749 23.0746 6.59919 288 168)'/%3E%3Cuse width='30' height='20' href='%23flagCn4x30' transform='matrix(14.9991 -18.73557 18.73533 14.99929 240 216)'/%3E%3C/svg%3E");
}

.flag-icon.jp {
  display: inline-block;
  border: 1px solid #E0E5E5;
  width: 1.34em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3E%3Cdefs%3E%3CclipPath id='flagJp4x30'%3E%3Cpath fill-opacity='0.7' d='M-88 32h640v480H-88z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg fill-rule='evenodd' stroke-width='1' clip-path='url(%23flagJp4x30)' transform='translate(88 -32)'%3E%3Cpath fill='%23fff' d='M-128 32h720v480h-720z'/%3E%3Ccircle cx='523.1' cy='344.1' r='194.9' fill='%23bc002d' transform='translate(-168.4 8.6)scale(.76554)'/%3E%3C/g%3E%3C/svg%3E");
}

.flag-icon.ca {
  display: inline-block;
  border: 1px solid #E0E5E5;
  width: 1.34em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3E%3Cpath fill='%23fff' d='M150.1 0h339.7v480H150z'/%3E%3Cpath fill='%23d52b1e' d='M-19.7 0h169.8v480H-19.7zm509.5 0h169.8v480H489.9zM201 232l-13.3 4.4l61.4 54c4.7 13.7-1.6 17.8-5.6 25l66.6-8.4l-1.6 67l13.9-.3l-3.1-66.6l66.7 8c-4.1-8.7-7.8-13.3-4-27.2l61.3-51l-10.7-4c-8.8-6.8 3.8-32.6 5.6-48.9c0 0-35.7 12.3-38 5.8l-9.2-17.5l-32.6 35.8c-3.5.9-5-.5-5.9-3.5l15-74.8l-23.8 13.4c-2 .9-4 .1-5.2-2.2l-23-46l-23.6 47.8c-1.8 1.7-3.6 1.9-5 .7L264 130.8l13.7 74.1c-1.1 3-3.7 3.8-6.7 2.2l-31.2-35.3c-4 6.5-6.8 17.1-12.2 19.5c-5.4 2.3-23.5-4.5-35.6-7c4.2 14.8 17 39.6 9 47.7'/%3E%3C/svg%3E");
}

.flag-icon.ae {
  display: inline-block;
  border: 1px solid #E0E5E5;
  width: 1.34em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3E%3Cpath fill='%2300732f' d='M0 0h640v160H0z'/%3E%3Cpath fill='%23fff' d='M0 160h640v160H0z'/%3E%3Cpath fill='%23000001' d='M0 320h640v160H0z'/%3E%3Cpath fill='%23f00' d='M0 0h220v480H0z'/%3E%3C/svg%3E");
}

.flag-icon.sg {
  display: inline-block;
  border: 1px solid #E0E5E5;
  width: 1.34em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3E%3Cdefs%3E%3CclipPath id='flagSg4x30'%3E%3Cpath fill-opacity='0.7' d='M0 0h640v480H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg fill-rule='evenodd' clip-path='url(%23flagSg4x30)'%3E%3Cpath fill='%23fff' d='M-20 0h720v480H-20z'/%3E%3Cpath fill='%23df0000' d='M-20 0h720v240H-20z'/%3E%3Cpath fill='%23fff' d='M146 40.2a84.4 84.4 0 0 0 .8 165.2a86 86 0 0 1-106.6-59a86 86 0 0 1 59-106c16-4.6 30.8-4.7 46.9-.2z'/%3E%3Cpath fill='%23fff' d='m133 110l4.9 15l-13-9.2l-12.8 9.4l4.7-15.2l-12.8-9.3l15.9-.2l5-15l5 15h15.8zm17.5 52l5 15.1l-13-9.2l-12.9 9.3l4.8-15.1l-12.8-9.4l15.9-.1l4.9-15.1l5 15h16zm58.5-.4l4.9 15.2l-13-9.3l-12.8 9.3l4.7-15.1l-12.8-9.3l15.9-.2l5-15l5 15h15.8zm17.4-51.6l4.9 15.1l-13-9.2l-12.8 9.3l4.8-15.1l-12.9-9.4l16-.1l4.8-15.1l5 15h16zm-46.3-34.3l5 15.2l-13-9.3l-12.9 9.4l4.8-15.2l-12.8-9.4l15.8-.1l5-15.1l5 15h16z'/%3E%3C/g%3E%3C/svg%3E");
}

.flag-icon.hk {
  display: inline-block;
  border: 1px solid #E0E5E5;
  width: 1.34em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3E%3Cpath fill='%23ec1b2e' d='M0 0h640v480H0'/%3E%3Cpath id='flagHk4x30' fill='%23fff' d='M346.3 103.1C267 98 230.6 201.9 305.6 240.3c-26-22.4-20.6-55.3-10.1-72.4l1.9 1.1c-13.8 23.5-11.2 52.7 11.1 71c-12.7-12.3-9.5-39 12.1-48.9s23.6-39.3 16.4-49.1q-14.7-25.6 9.3-38.9M307.9 164l-4.7 7.4l-1.8-8.6l-8.6-2.3l7.8-4.3l-.6-8.9l6.5 6.1l8.3-3.3l-3.7 8.1l5.6 6.8z'/%3E%3Cuse href='%23flagHk4x30' transform='rotate(72 312.5 243.5)'/%3E%3Cuse href='%23flagHk4x30' transform='rotate(144 312.5 243.5)'/%3E%3Cuse href='%23flagHk4x30' transform='rotate(216 312.5 243.5)'/%3E%3Cuse href='%23flagHk4x30' transform='rotate(288 312.5 243.5)'/%3E%3C/svg%3E");
}

.flag-icon.au {
  display: inline-block;
  border: 1px solid #E0E5E5;
  width: 1.34em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3E%3Cpath fill='%2300008b' d='M0 0h640v480H0z'/%3E%3Cpath fill='%23fff' d='m37.5 0l122 90.5L281 0h39v31l-120 89.5l120 89V240h-40l-120-89.5L40.5 240H0v-30l119.5-89L0 32V0z'/%3E%3Cpath fill='%23f00' d='M212 140.5L320 220v20l-135.5-99.5zm-92 10l3 17.5l-96 72H0zM320 0v1.5l-124.5 94l1-22L295 0zM0 0l119.5 88h-30L0 21z'/%3E%3Cpath fill='%23fff' d='M120.5 0v240h80V0zM0 80v80h320V80z'/%3E%3Cpath fill='%23f00' d='M0 96.5v48h320v-48zM136.5 0v240h48V0z'/%3E%3Cpath fill='%23fff' d='m527 396.7l-20.5 2.6l2.2 20.5l-14.8-14.4l-14.7 14.5l2-20.5l-20.5-2.4l17.3-11.2l-10.9-17.5l19.6 6.5l6.9-19.5l7.1 19.4l19.5-6.7l-10.7 17.6zm-3.7-117.2l2.7-13l-9.8-9l13.2-1.5l5.5-12.1l5.5 12.1l13.2 1.5l-9.8 9l2.7 13l-11.6-6.6zm-104.1-60l-20.3 2.2l1.8 20.3l-14.4-14.5l-14.8 14.1l2.4-20.3l-20.2-2.7l17.3-10.8l-10.5-17.5l19.3 6.8L387 178l6.7 19.3l19.4-6.3l-10.9 17.3l17.1 11.2ZM623 186.7l-20.9 2.7l2.3 20.9l-15.1-14.7l-15 14.8l2.1-21l-20.9-2.4l17.7-11.5l-11.1-17.9l20 6.7l7-19.8l7.2 19.8l19.9-6.9l-11 18zm-96.1-83.5l-20.7 2.3l1.9 20.8l-14.7-14.8l-15.1 14.4l2.4-20.7l-20.7-2.8l17.7-11L467 73.5l19.7 6.9l7.3-19.5l6.8 19.7l19.8-6.5l-11.1 17.6zM234 385.7l-45.8 5.4l4.6 45.9l-32.8-32.4l-33 32.2l4.9-45.9l-45.8-5.8l38.9-24.8l-24-39.4l43.6 15l15.8-43.4l15.5 43.5l43.7-14.7l-24.3 39.2l38.8 25.1Z'/%3E%3C/svg%3E");
}

.flag-icon.nl {
  display: inline-block;
  border: 1px solid #E0E5E5;
  width: 1.34em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3E%3Cpath fill='%2321468b' d='M0 0h640v480H0z'/%3E%3Cpath fill='%23fff' d='M0 0h640v320H0z'/%3E%3Cpath fill='%23ae1c28' d='M0 0h640v160H0z'/%3E%3C/svg%3E");
}

.flag-icon.id {
  display: inline-block;
  border: 1px solid #E0E5E5;
  width: 1.34em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3E%3Cpath fill='%23e70011' d='M0 0h640v240H0Z'/%3E%3Cpath fill='%23fff' d='M0 240h640v240H0Z'/%3E%3C/svg%3E");
}

.flag-icon.vn {
  display: inline-block;
  border: 1px solid #E0E5E5;
  width: 1.34em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3E%3Cdefs%3E%3CclipPath id='flagVn4x30'%3E%3Cpath fill-opacity='0.7' d='M-85.3 0h682.6v512H-85.3z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg fill-rule='evenodd' clip-path='url(%23flagVn4x30)' transform='translate(80)scale(.9375)'%3E%3Cpath fill='%23da251d' d='M-128 0h768v512h-768z'/%3E%3Cpath fill='%23ff0' d='M349.6 381L260 314.3l-89 67.3L204 272l-89-67.7l110.1-1l34.2-109.4L294 203l110.1.1l-88.5 68.4l33.9 109.6z'/%3E%3C/g%3E%3C/svg%3E");
}

.flag-icon.sa {
  display: inline-block;
  width: 1.34em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'%3E%3Cdefs%3E%3CclipPath id='flagSa4x30'%3E%3Cpath fill-opacity='0.7' d='M-85.3 0h682.6v512H-85.3z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg fill-rule='evenodd' clip-path='url(%23flagSa4x30)' transform='translate(80)scale(.9375)'%3E%3Cpath fill='%23165d31' d='M-128 0h768v512h-768z'/%3E%3Cpath fill='%23fff' d='M65.5 145.1c-.8 12-2 33 8.3 35.2c12.3 1.2 5.5-20.8 10-24.8c.8-2 2.3-2 2.4.5v18.7c0 6 4 7.8 7 9c3.2-.2 5.4 0 6.6 3l1.6 32.3s7.4 2.2 7.8-18.1c.3-12-2.4-21.9-.8-24.2c0-2.3 3-2.4 5-1.3c3.2 2.2 4.6 5 9.6 4c7.6-2.2 12.2-5.9 12.3-11.7a47 47 0 0 0-3.5-16.6c.4-1-1.4-3.7-1-4.7c1.3 2.2 3.4 2 3.8 0c-1.3-4.2-3.3-8.3-6.5-10c-2.7-2.4-6.7-2-8 3c-.8 5.7 2 12.4 6.1 18c.9 2.1 2.1 5.7 1.6 8.9c-2.2 1.3-4.4.7-6.3-1.2c0 0-6-4.5-6-5.6c1.6-10.2.3-11.4-.6-14.3c-.6-3.9-2.5-5.2-4-7.8c-1.5-1.6-3.5-1.6-4.5 0c-2.7 4.6-1.4 14.5.5 19c1.4 4.1 3.5 6.7 2.5 6.7c-.8 2.3-2.5 1.7-3.8-1a66.6 66.6 0 0 1-2.1-17.4c-.5-4.6-1.1-14.4-4.2-17c-1.8-2.4-4.5-1.2-5.5 1a82.4 82.4 0 0 0 .3 13.4c2 7.4 2.7 14 3.7 21.5c.3 10.1-5.8 4.4-5.5-.7a45 45 0 0 0-.3-19.4c-1-2.6-2.1-3.2-4.6-2.8c-1.9 0-6.8 5.3-8.2 14.3c0 0-1.2 4.6-1.7 8.7c-.7 4.6-3.7 8-5.9-.6c-1.8-6.3-3-21.6-6-18z'/%3E%3Cpath fill='%23fff' d='m99 194.2l-32 15.4c.3-7.3 15.1-20.4 25.3-20.5c6.5.1 4.9 2.5 6.6 5.1z'/%3E%3Cpath fill='%23fff' d='M93.3 204.2c-16.8 43.5 39.5 49.6 45.8 1.8c.6-2 3-3.9 3.4-.7c-1.3 43.3-43.6 46.2-50.8 32.6a41.9 41.9 0 0 1-2.5-14.6c-1-8.5-5.5-5.2-6.2 3.2c-.7 4.7-.5 6-.5 10.5c2.2 34.2 56.7 19.5 65.6-8.7c4.7-15.6-.8-27.1 1.7-27.1c5.4 5.8 13 .8 14.7-1.2c.7-1 2.5-1.7 3.7-.4c4.2 3 11.6 1.6 13.2-3.7c.9-5.3 1.6-10.7 1.8-16.2c-3.5 1-6 1.7-6.3 3.2l-.7 4.6c-.3 1.5-3.2 1.5-3.4-.4c-1.3-6-6.7-6.7-10 2.5c-2.1 1.8-6.1 2.2-6.5-.5c.5-6.2-2-7-7-4.1l-4.8-36.2c2 0 4 1.5 5.9-.9c-2-6.5-6.5-19.7-9-20.7c-1.1-1.4-2.1-.5-3.7-.1c-2.6.8-5 3-4.2 7.4c3 18.8 5 33.1 8.1 52c.5 2.1-1.3 5-3.7 4.7c-4-2.7-5-8.2-12-8c-5 0-10.6 5.5-11.3 10.7c-.9 4.2-1.2 8.7 0 12.3c3.5 4.2 7.7 3.8 11.4 2.9c3-1.3 5.5-4.3 6.6-3.6c.7.9.1 10.9-14.3 18.5c-8.7 4-15.7 4.8-19.4-2.3c-2.3-4.5.2-21.4-5.6-17.5'/%3E%3Cpath fill='%23fff' d='M165 160c3.3-1.2 19.3-19.6 19.3-19.6l-2.4-2c-.9-.7-.8-1.5 0-2.2c4-2.4 2.7-7.4.7-9.8a9.7 9.7 0 0 0-8.7.1c-2.8 2.7-3.4 7-1.2 9.6c2.1 1 4.2 3.2 2.8 4.4c-6.6 7-24.5 19.1-22.4 19.5c.4.6 11.5.6 11.8 0zm-97 65c-6 9.6-6.5 23.9-3.2 28.2c1.8 2 4.7 2.9 6.8 2.2c3.8-1.6 5.5-9.3 4.6-12c-1.3-2-2.3-2.3-3.6-.7c-2.6 5.4-3.7 1.7-4-1.3a70 70 0 0 1 .8-15.2c.7-4.2 0-3-1.4-1.2m257.1-15.3c-5.8-12.6-13.9-25-16.4-29.7a557.6 557.6 0 0 0-24.8-36c-6.2-7.4 10.2 3.1-2-11.7l-8.9-7.5c-2-1.4-6.8-4-7.6.2c-.4 3.8-.2 5.8.4 8.9c.5 2 3.5 5.5 5 7.5a565 565 0 0 1 53.8 86.5c2.6-1.3 2-16.1.5-18.2'/%3E%3Cpath fill='%23fff' d='M299.6 251.5c-1.2 1.3 2.8 6.8 8 6.8c8.6-1 16.2-5.8 23.2-18.6a33 33 0 0 0 5.3-14.2a317 317 0 0 0-5.8-72.4c-.3-2 0-4.4.2-5c.6-.7 2.5 0 3.5-1.7c1.5-1.5-4-14-7-18.7c-1-2.2-1.5-3.6-3.3.2a27 27 0 0 0-3 13.6c4.1 28.5 5.4 53.4 8 81.9c.3 2.8-.1 6.8-2 8.4a80.2 80.2 0 0 1-27.1 19.7m116.5-.1c-6.2 3.6-6.2 7.7-1.2 7.8c8.6-1 18.8-1.7 25.8-12.3a41 41 0 0 0 4.2-16a303 303 0 0 0-4.7-71.4c-.2-2-1.1-6.7-.8-7.3c.6-1.4 3.4.1 4.4-1.5c1.4-1.5-7.3-12.7-10.4-17.5c-1-2.2-1.4-3.6-3.3.2a22.3 22.3 0 0 0-1.8 13.6c4.6 31 8 54.2 8.7 81.6c-.4 2.6-.5 4-1.7 7.3c-2.7 3.4-5.7 7.8-8.5 9.9c-2.8 2-8.8 4-10.7 5.6'/%3E%3Cpath fill='%23fff' d='M420.7 223.7c0-7.3.1-13.5-.1-19a34 34 0 0 0-3-13.5c-1.8-4.1-.7-7.4-1.6-11.8c-.8-4.4-.6-11-1.8-16.1c-.4-2-1.4-8.5-1.1-9.2c.5-1.4 2.4 0 3.4-1.6c1.4-1.5-5-18-8.2-22.7c-1.1-2.1-3.3-1.4-5.8 2c-2.5 2.3-1.6 7.4-.6 12.3c6.1 32.3 10.8 61.6 9.8 92.3c-.4 2.6 9-7.8 9-12.7m-45.7-40c-3.9-.2-12-7.7-14.4-12a8 8 0 0 1 .4-6.5c1.5-1 3.7-2 5.4-1c0 0 1.7 2.4 1.4 2.7c2 1 3 .5 3.2-.4c.1-1.5-.6-2.4-.6-4c.9-4.6 6-5.3 8-2.4c1.4 1.8 2 5.5 2.1 8c0 1.3-2-.2-3.3 0c-1.1.4-1.4 1.8-1.5 3c-.2 3.3-.6 8.6-.7 12.5zm-71.8 48c1-9.8-.4-27.3-.5-33.1A477 477 0 0 0 299 154c-1.2-8.4 3.4.9 2.8-4c-1.5-8.3-6.1-14-11.6-21.5c-1.7-2.5-1.7-3-4.4.6c-3 6.7-.4 11.4.4 16.7c3.9 17.2 6.2 33 7.3 48.7a393.4 393.4 0 0 1 .4 49c3 .1 7.6-4.7 9.3-11.8'/%3E%3Cpath fill='%23fff' d='M434 216c-6.9-11.6-17.2-24-20-28.7a658 658 0 0 0-29.2-37.8c-8.5-9 4-1.5-1.6-8.5c-4.7-5.1-6-6.8-10.1-9.9c-2-1.3-3.2-3.8-4 .5a83 83 0 0 0-.2 11.2c0 1.7 1.8 5 3.4 7c20.7 25.5 43.4 51.5 61.6 84.2c2.6-1.3 1.7-16 0-18z'/%3E%3Cpath fill='%23165d31' d='M122.6 194.7c-.5.9-1.6 2-1.2 3.1c.7 1 1.4 1.3 2.6 1.3c1.1 0 2.7.3 3-.3c.6-.7 1-2 .6-3.3c-1.2-3-4.4-1.8-5-.8'/%3E%3Cpath fill='%23fff' d='M354.2 362.5c9.2.4 15.2.5 23.3 1.4l9.6-1c10.6-1 11 15.1 11 15.1c0 9.5-3.7 10-8.4 11c-2.7.4-4-1.6-5.5-3.6a14 14 0 0 1-7 .4c-3.9-.2-7.7-.2-11.5-.5c-4-.3-6.2.5-10.3.1c-.8 1.3-2 3.1-4.4 2.6c-2-.3-4.5-6-3.8-10.5c1.5-3.2 1-2.1 1-3.5c-37.6-1-75.5-2.7-112.3-2.2c-28.8.1-57.2 1.3-85.7 2.5c-15.2-.2-26.8-2.6-34.8-14.3c.8 0 38.8 2.1 49.9 1.4c20.5-.2 39.3-1.9 60.2-2.5c41.2.7 82.1.7 123.3 3.6c-4-2.7-4-9 2-10.6c.5-.4.8 3.1 1.7 3c4.9-.3 2.7 6.3 1.7 7.6M188.6 135.3c-6.2 17.8 3.6 37.4 10.4 35.5c5 2 8-7.4 10-17.6c1.5-2.9 2.5-3.2 3.2-1.7c-.2 13.6 1 16.7 4.5 20.8c7.8 6 14.3.8 14.8.3l6-6.1c1.4-1.5 3.2-1.5 5.1-.3c1.9 1.7 1.6 4.6 5.6 6.6c3.4 1.4 10.5.4 12.2-2.5c2.2-3.9 2.8-5.2 3.8-6.6c1.6-2.1 4.3-1.2 4.3-.5c-.3 1.2-1.9 2.3-.8 4.5c2 1.4 2.4.5 3.5.2c4-2 7-10.6 7-10.6c.1-3.2-1.7-3-2.9-2.2l-3.1 2.1c-2 .3-5.7 1.6-7.6-1.3c-1.9-3.4-1.9-8.3-3.3-11.8c0-.2-2.6-5.5-.2-5.8c1.2.2 3.7.9 4.1-1.2c1.2-2.1-2.6-8-5.3-11c-2.3-2.5-5.5-2.8-8.6-.2c-2.2 2-1.9 4.2-2.3 6.3a9.8 9.8 0 0 0 2 8.7c2.2 4.2 6.1 9.7 4.8 17.5c0 0-2.3 3.6-6.3 3.1c-1.7-.3-4.4-1-5.8-11.8c-1.1-8 .2-19.4-3.2-24.7c-1.3-3.3-2.2-6.4-5.2-.9c-.8 2.2-4.3 5.5-1.8 12.2a36 36 0 0 1 2 19c-1.5 2.2-1.8 2.9-3.7 5c-2.6 3-5.5 2.2-7.7 1.1c-2-1.3-3.6-2-4.6-6.5c.2-7 .6-18.5-.7-20.9c-1.9-3.8-5-2.4-6.3-1.2a47.7 47.7 0 0 0-11.5 23.5c-1.8 5.8-3.7 4.1-5 1.8c-3.2-3-3.5-26.7-7.4-22.8'/%3E%3Cpath fill='%23fff' d='M207.4 174.1c2.9-2 1.6-3.4 5.8.8a72 72 0 0 1 9.2 31.3c-.2 2.6 1.6 4.2 2.5 3.6c.4-6 15.1-14.4 28.6-15.6c2-.5 1-4.4 1.3-6.4c-.8-7.5 4.2-14.3 11.2-14.8c9.6 1.4 12.8 6.5 13 14.2c-1.1 15-16.7 17.5-25.4 18.7c-1.3.5-1.9 1.1 0 1.8l36.6.2l1.9 1c.2 1-.6.2-2 2.6a29.5 29.5 0 0 0-3.7 11.5c-10.9 3.6-22.2 5-33.6 6.5c-4 2-6 4.7-5.2 7.7c1.4 3.3 10.2 6.7 10.2 6.8c1.7 1 3.6 3.5-.5 8.6c-17.8-.8-31.7-8.4-36.5-19.1c-1.4-1.1-3 0-4 1.4c-7 9-13.8 17-25.7 21.4c-7 1.8-14.3-1.1-17.7-5.7c-2.3-2.7-2.2-5.6-3-6.2c-3.9 1.7-36.9 15.7-32.7 9.1c8-8.5 22-14.9 34.2-23.3c.9-2.9 2.5-12.5 7.3-15.6c.3 0-.7 5.6-.6 8c0 2-.2 2.7.2 2.2c.9-.5 15.7-12.2 17-15.8c1.4-2 .3-7.2.3-7.4c-2.8-7.2-6.7-7.8-8.1-11.4c-1.3-4.7-.7-10.1 2-11.7c2.4-2.1 5.2-1.9 7.9.5c3 2.7 5.6 8 6.4 11.9c-.5 1.5-4-1-5-.3a16 16 0 0 1 3.7 7.8c2 8.2 1.4 11.4-.6 16.7c-6.6 13.9-15 18-22.4 23.2c-.2 0-.3 3.5 2.4 5.4c1 1 4.9 1.5 9.4 0a54.5 54.5 0 0 0 22.3-23.3a51 51 0 0 0-2.4-22.2c-2.9-6.7-6.3-16.2-6.3-16.4c-.1-4.2.2-5.6 2-7.7m-95.8-38.6c4.2 2 12.2 1.1 11.8-5.7l-.2-3.1c-.8-2-3.2-1.5-3.7.5c-.2.7.3 1.8-.3 2.1c-.4.4-1.7.2-1.7-1.7c0-.6-.4-1.2-.7-1.6c-.2-.2-.4-.2-.9-.2c-.6 0-.6.1-.9.6c-.1.5-.3 1-.3 1.6c0 .7-.4.9-.8 1c-.6 0-.5 0-1-.2c-.2-.3-.5-.4-.5-1l-.3-1.6c-.2-.3-.6-.5-1-.6c-2.3 0-2.5 2.7-2.3 3.7c-.2.2-.3 4.9 2.8 6.2'/%3E%3Cpath fill='%23fff' d='M235.1 187.7c4.2 2 14.3.9 11.8-5.6l-.2-3.2c-.9-2-3.2-1.5-3.7.6c-.2.6.3 1.7-.4 2c-.3.4-1.7.2-1.6-1.6c0-.6-.4-1.3-.7-1.7c-.3-.1-.4-.2-1-.2c-.5 0-.5.2-.8.7c-.2.5-.3 1-.3 1.6c-.1.6-.4.8-.9 1c-.5 0-.4 0-.8-.3c-.3-.3-.6-.4-.6-.9l-.3-1.6c-.2-.3-.6-.5-1-.6c-2.3 0-2.5 2.6-2.4 3.6c-.1.2-.2 5 3 6.2zm72-21.6c4.2 2 12.1 1.1 11.8-5.6l-.2-3.2c-.9-2-3.2-1.5-3.7.5c-.2.7.3 1.8-.4 2.2c-.3.3-1.7.1-1.6-1.8c0-.6-.4-1.2-.7-1.6c-.3-.2-.4-.2-1-.2c-.5 0-.5.2-.8.7l-.3 1.5c-.1.7-.4 1-.9 1s-.4 0-.8-.2c-.3-.3-.6-.4-.6-.9s-.1-1.3-.3-1.7c-.2-.3-.6-.4-1-.5c-2.3 0-2.5 2.6-2.4 3.6c-.1.2-.2 4.9 3 6.2zm37.3 54.3c-7.3 8.3-4.1 22-2.4 25c2.4 4.8 4.3 7.9 9 10.3c4.3 3.1 7.7 1.2 9.5-1c4.3-4.5 4.4-16 6.4-18.2c1.4-4.2 5-3.5 6.7-1.6a16.5 16.5 0 0 0 6.2 5.3c4 3.5 8.8 4.2 13.6 1c3.2-1.9 5.3-4.2 7.2-8.9c2-5.6 1-31.6.5-47l-4.2-21.5c0-.2-.5-10.2-1-12.5c0-1-.3-1.3.7-1.2c1.1 1 1.2 1 2 1.3c1 .2 2-1.7 1.3-3.3l-10-18.6c-.8-.8-1.9-1.6-3.2.2a7.3 7.3 0 0 0-2.4 5.5c.3 4.4 1 8.9 1.3 13.3l4 22.6c1.3 16 1.6 29.2 2.9 45.3c-.2 6.8-2.3 12.7-4.3 13.6c0 0-3 1.7-5-.2c-1.5-.6-7.4-9.9-7.4-9.9c-3-2.7-5-2-7.1 0c-6 5.8-8.6 16.4-12.7 23.8c-1 1.7-4 3-7.2-.1c-8.2-11.3-3.4-27.3-4.4-23.2M309 126.7c3.8 1.5 6.4 9.2 5.6 13c-.8 4.5-2.8 9.5-4.2 8.9c-1.6-.6 1-4.6-.5-8.8c-.8-2.8-6-7.8-5.4-9.2c-1-3.1 2.2-4.5 4.5-4z'/%3E%3Cpath fill='%23fff' d='M356.6 225c.7-9.2-.6-14.8-.8-20.2s-6.1-46.6-7.3-50.6c-1.5-7.8 5.7-1 4.9-5.6c-2.5-5.6-8.6-13.9-10.5-18.8c-1.2-2-.7-4-3.3-.5a42.3 42.3 0 0 0-2.3 19.2c6.2 32.3 12.5 59.1 11.5 89.8c3 0 6.3-6.7 7.8-13.3m64.4-85.3c3.5 1.7 5.5 11.3 5.1 14c-.7 5-2.5 10.4-3.8 9.7c-1.5-.6.3-7.4-.4-9.5c-.8-3-5.5-8.4-5-10c-1-3.4 2-4.8 4.1-4.2m-255.7 67.9c3.3 1.3 5.3 8.3 5 10.3c-.8 3.7-2.5 7.7-3.8 7.1c-1.3-.4.3-5.4-.3-7c-.3-3.7-4.9-5.7-4.8-7.3c-.8-3 2-3.5 4-3.1z'/%3E%3Cpath fill='%23165d31' d='M244.9 218.2c4.2.2 6.3 3.6 2.4 5c-4 1.3-7.7 2.4-7.8 8c1.5 8-2 5.2-4 4.2c-2.4-1.8-9.2-6-10.2-15c-.1-2.1 1.6-4 4.3-4c4 1.1 10 1.2 15.3 1.8'/%3E%3Cpath fill='%23fff' d='M77.4 124.4c4.8 1.4 5.1 8.6 4.8 10.7c-.7 3.8-2.4 7.9-3.6 7.4c-1.4-.5 0-5.7-.7-7.3c-.7-2.2-4.8-6.4-4.4-7.6c-.9-2.5 2-3.7 3.9-3.2m95.9 33.6c-3.8 2-5.2 8-2.9 11.6c2.2 3 5.6 1.9 6 1.9c3.7.4 5.9-6.9 5.9-6.9s.1-2-4.2 1.9c-1.9.3-2-.4-2.5-1.4a9 9 0 0 1 .5-5.7c.7-1.8-.7-2.6-2.8-1.4m28-36.4c-2 1.3-5.7 5.2-5.8 9.6c-.1 2.5-.6 2.5 1 4c1.3 1.8 2.4 1.7 4.8.4a5.1 5.1 0 0 0 2.3-3.4c.6-2.8-3 1.4-3.4-1.8c-.8-3 1.5-4.2 3.7-7c0-2 0-3.3-2.7-1.8zm22.4 4a59.5 59.5 0 0 0-1.6 11.1c-.6 2.8 3 4 4.5.4c2.4-6.5 2.4-9.3 2.6-12c-.7-4.3-3.6-4.2-5.5.5m142 72.3c.4-.5 20-14.4 20-14.4c2-.7 1.5 7.2.6 7.1a77.8 77.8 0 0 1-20.7 14.3c-1 .7-1.9-5.3 0-7zm17.7-.2c3.5 1.7 4.9 11.8 4.5 14.5c0 5.4-3.3 9.6-4.7 9c-1.4-.7.2-6.7-.5-8.8c-.8-3-3.7-8.5-3.2-10.1c-1-3.4 1.8-5.2 4-4.6zm-116 43.4a26 26 0 0 1 5.6-4.9c2-1 3.8.8 3.7.7c.3 2-1.2 3.7-.7 6.3c.4 1 .7 2.2 2.6 1.8c3.1-2.5 6-2.7 9-2.8c2.5.1 2.6 4.2 1 4.2c-5.7 1.2-8.2 2.8-12.3 4.3c-2 1.2-3.6-.3-3.6-.4s-1.1-1.1-.4-3.7c.2-2-.6-3.2-2.4-3c-1.2.8-2.4 1.2-3-.3c-.3-1-.4-1.6.5-2.2m136.6 5.4c.8 1 1.4 2-.1 3.8l-3.7 3.2c-.6 1-1 2.8 1 3.3c3.6 1 12-4.5 12-4.6c1.4-1 1-3 .8-3c-.8-.9-2.6-.3-3.8-.5c-.6 0-2.5-.2-1.6-2a11.4 11.4 0 0 0 1.6-2.9c.5-1.2 0-2-2-2.7c-2.1-.4-3-.2-5.3 0c-1.2.2-1.6.8-1.9 2.3c.1 2.3 1.5 2.2 3 3z'/%3E%3Cpath fill='%23165d31' d='M268.1 189.7c-.5 1-2.3 1-4 0s-2.7-2.6-2.1-3.5s2.3-.9 4 0s2.6 2.6 2.1 3.5m-89-53.6c-1 .3-2.4-.6-3-2s-.3-2.6.7-2.9s2.3.7 3 2s.3 2.7-.8 3zM355.2 375c9.4.4 18.2 0 27.5.5c1.7 1.5.5 5-.6 4.8l-7.8-.3c-.1-3-7.7-2.5-7.5.1c-4.1.5-7.8-.1-12-.3c-1.2-1.5-1-4.2.4-4.8'/%3E%3C/g%3E%3C/svg%3E");
}

/* ---------------------------------------
# Components
---------------------------------------- */
.button,
.wp-block-buttons .wp-block-button__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 100%;
  background-color: transparent;
  padding: 0.7em 1.3em;
  font-size: 1rem;
  color: var(--primary-color);
  border: 0.222rem solid var(--primary-color);
  border-radius: 0;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease, filter 0.25s ease, opacity 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}
@media (min-width: 810px) {
  .button,
.wp-block-buttons .wp-block-button__link {
    padding: 1em 1.75em 0.9em;
    font-size: 1.111rem;
  }
}
.button svg,
.wp-block-buttons .wp-block-button__link svg {
  width: 2.333rem;
  height: 1.444rem;
  margin-left: 0.444rem;
}
.button:focus, .button:hover,
.wp-block-buttons .wp-block-button__link:focus,
.wp-block-buttons .wp-block-button__link:hover {
  color: #FFFFFF;
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}
.button--white, .m37 .gform_button, .m23 .gform_button, .m09--white .button, .m09--red-full .button, .g03 .gform_button,
.g03 input[type=submit],
.wp-block-buttons .wp-block-button__link--white {
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.button--white:focus, .m37 .gform_button:focus, .m23 .gform_button:focus, .m09--white .button:focus, .m09--red-full .button:focus, .g03 .gform_button:focus,
.g03 input[type=submit]:focus, .button--white:hover, .m37 .gform_button:hover, .m23 .gform_button:hover, .m09--white .button:hover, .m09--red-full .button:hover, .g03 .gform_button:hover,
.g03 input[type=submit]:hover,
.wp-block-buttons .wp-block-button__link--white:focus,
.wp-block-buttons .wp-block-button__link--white:hover {
  color: var(--primary-color);
  border-color: #FFFFFF;
  background-color: #FFFFFF;
}
.button--red,
.wp-block-buttons .wp-block-button__link--red {
  color: #FFFFFF;
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}
.button--red:focus, .button--red:hover,
.wp-block-buttons .wp-block-button__link--red:focus,
.wp-block-buttons .wp-block-button__link--red:hover {
  color: var(--primary-color);
  border-color: #FFFFFF;
  background-color: #FFFFFF;
}
.button--no-icon svg,
.wp-block-buttons .wp-block-button__link--no-icon svg {
  display: none;
}
.button:not(input[type=submit]):empty,
.wp-block-buttons .wp-block-button__link:not(input[type=submit]):empty {
  display: none;
}

.breadcrumbs {
  width: 100%;
  display: block;
}
.breadcrumbs a:not([class]) {
  text-decoration: none;
  position: relative;
}

.scroll-down {
  position: absolute;
  color: #FFFFFF;
  left: 50%;
  bottom: 1.111rem;
  transform: translateX(-50%);
  font-style: normal;
  font-size: 0.444rem;
  letter-spacing: 1px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 3;
  z-index: 1;
}
@media (min-width: 768px) {
  .scroll-down {
    bottom: 3.111rem;
    font-size: 0.667rem;
    letter-spacing: 0.125rem;
    line-height: inherit;
  }
}
.scroll-down svg {
  margin: 0 auto;
  width: 0.833rem;
  height: 1.167rem;
}
@media (min-width: 768px) {
  .scroll-down svg {
    width: 1.111rem;
    height: 1.556rem;
  }
}

.luna-video-player {
  position: relative;
}
.luna-video-player::after {
  content: "";
  position: absolute;
  bottom: 1.111rem;
  left: 0.833rem;
  width: 1.111rem;
  height: 1.111rem;
  border: 0.167rem solid #FF0037;
  border-right-color: transparent;
  border-radius: 50%;
  animation: rotate 0.75s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.luna-video-player.is-waiting::after {
  opacity: 1;
}

.video-play-button {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  border: 0;
  appearance: none;
  background-color: rgba(0, 0, 0, 0.1);
  transition: background-color 0.6s ease;
}
.is-playing .video-play-button {
  background-color: transparent;
}
.video-play-button__icon {
  pointer-events: none;
  border: 0.222rem solid #FFFFFF;
  width: 5.556rem;
  height: 3.556rem;
  padding: 0;
  display: flex;
  color: #FFFFFF;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.6s ease;
}
@media (min-width: 768px) {
  .video-play-button__icon {
    width: 10.111rem;
    height: 6.111rem;
  }
}
.video-play-button__icon svg {
  width: 0.889rem;
  height: 1.056rem;
}
@media (min-width: 768px) {
  .video-play-button__icon svg {
    width: 1.389rem;
    height: 1.778rem;
  }
}
.is-playing .video-play-button__icon {
  opacity: 0;
  pointer-events: none;
}

.video-buffer,
.video-progress {
  appearance: none;
  position: absolute;
  left: 0;
  bottom: 0;
  border: 0;
  height: 0.278rem;
  order: 1;
  width: calc(100% - 5.667rem);
}
@media (min-width: 768px) {
  .video-buffer,
.video-progress {
    width: calc(100% - 9.333rem);
  }
}
.video-buffer__value,
.video-progress__value {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  transform-origin: left;
  transform: scaleX(0);
  background-color: var(--primary-color);
}

.video-buffer__value {
  background-color: rgba(var(--primary-color), 0.5);
}

.video-controls {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  z-index: 1;
}

.video-control__button {
  width: 1.889rem;
  height: 1.889rem;
  color: #FFFFFF;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #FFFFFF;
  background-color: var(--primary-color);
  padding: 0;
}
@media (min-width: 768px) {
  .video-control__button {
    width: 3.111rem;
    height: 3.111rem;
  }
}
.video-control__button:last-child {
  border-right: 0;
}
.video-control__button:focus {
  position: relative;
  z-index: 1;
}
.plyr--playing .video-control__icon--play, .is-playing .video-control__icon--play {
  display: none;
}
.video-control__icon--play svg {
  width: 0.833rem;
  height: 1.056rem;
}
.video-control__icon--pause {
  display: none;
}
.plyr--playing .video-control__icon--pause, .is-playing .video-control__icon--pause {
  display: block;
}
.video-control__icon--pause svg {
  width: 0.889rem;
  height: 1.056rem;
}
.is-muted .video-control__icon--volume {
  display: none;
}
.video-control__icon--volume svg {
  width: 1.333rem;
  height: 1rem;
}
.video-control__icon--muted {
  display: none;
}
.is-muted .video-control__icon--muted {
  display: block;
}
.video-control__icon--muted svg {
  position: relative;
  width: 1.444rem;
  height: 1rem;
  left: 1px;
}
.video-control__icon--fullscreen svg {
  width: 1rem;
  height: 1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-color);
  color: #FFFFFF;
  font-size: 0.889rem;
  font-weight: 500;
  padding: 0.3em 0.75em;
}
.tag--featured {
  color: var(--primary-color);
  background-color: #FFFFFF;
  border: 2px solid var(--primary-color);
}
.tag__icon {
  width: 0.778rem;
  height: 0.778rem;
  margin-right: 0.5em;
}

.pagination {
  display: flex;
  margin: 3.889rem auto 0;
  align-items: center;
  justify-content: center;
}
.pagination .page-numbers {
  display: flex;
  font-size: 1.556rem;
  height: 3.444rem;
  padding: 0.556rem;
  align-items: center;
  color: var(--primary-color);
  border-top: 0.222rem solid var(--primary-color);
  border-bottom: 0.222rem solid var(--primary-color);
  border-left: 0.111rem solid var(--primary-color);
  border-right: 0.111rem solid var(--primary-color);
  text-decoration: none;
}
@media (min-width: 810px) {
  .pagination .page-numbers {
    padding: 0.833rem;
  }
}
.pagination .page-numbers:first-child {
  border-left: 0.222rem solid var(--primary-color);
}
.pagination .page-numbers:last-child {
  border-right: 0.222rem solid var(--primary-color);
}
.pagination .page-numbers:hover, .pagination .page-numbers:focus, .pagination .page-numbers.current {
  background-color: var(--primary-color);
  color: #FFFFFF;
}
.pagination .page-numbers:hover svg, .pagination .page-numbers:focus svg, .pagination .page-numbers.current svg {
  color: #FFFFFF;
}
.pagination .page-numbers.prev svg {
  transform: rotate(180deg);
}
.pagination .page-numbers.dots {
  pointer-events: none;
}
.pagination svg {
  color: var(--primary-color);
  width: 2.222rem;
  height: 1.389rem;
}

.language-switcher {
  position: relative;
  display: inline-block;
}
.language-switcher__list {
  padding: 0.389rem 1.056rem 0.278rem 0.389rem;
  position: relative;
  color: var(--primary-color);
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-transform: uppercase;
  font-size: 0.889rem;
  font-weight: 700;
  box-shadow: none;
}
@media (min-width: 1240px) {
  .language-switcher__list {
    margin-left: 1.667rem;
  }
}
.language-switcher::after {
  content: "";
  position: absolute;
  top: 0.75rem;
  right: 0.389rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.444rem 0.278rem 0;
  border-color: var(--primary-color) transparent transparent transparent;
}

/* ---------------------------------------
# Global Elements
---------------------------------------- */
.g01 {
  position: relative;
  position: sticky;
  padding: 0 1.389rem;
  top: 0;
  width: 100%;
  z-index: 99;
  border-bottom: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  transition: max-height 0.1s linear;
  height: 4rem;
}
@media (min-width: 1240px) {
  .g01 {
    height: 6.111rem;
    max-height: 6.111rem;
  }
}
.g01.is-scrolled {
  max-height: 4rem;
}
.g01::after {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  content: "";
  background-color: var(--primary-color);
}
body.is-search .g01::after {
  border-bottom: 1px solid #FFFFFF;
}
.g01__logo:hover, .g01__logo:focus {
  outline: none;
}
.g01__logo-image {
  max-width: 3.833rem;
  backface-visibility: hidden;
  transform-origin: left center;
  transition: transform 0.1s linear, opacity 1s ease !important;
}
@media (min-width: 1240px) {
  .g01__logo-image {
    transform: scale(1.53616);
  }
}
.is-scrolled .g01__logo-image {
  transform: none;
}
.g01__menu-wrapper {
  padding: 0 1.389rem;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  z-index: -1;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  max-width: 22.222rem;
}
body.is-menu-active .g01__menu-wrapper {
  transform: none;
  transition: transform 0.5s ease;
}
@media (min-width: 1240px) {
  .g01__menu-wrapper {
    padding: 0;
    z-index: 0;
    background-color: transparent;
    position: relative;
    flex-grow: 1;
    width: auto;
    height: 100%;
    align-items: center;
    flex-direction: row;
    justify-content: unset;
    transform: none;
    max-width: none;
  }
}
@media (min-width: 1240px) {
  .g01__primary, .g01__secondary, .g01__primary-menu {
    display: flex;
    align-items: center;
    height: 100%;
  }
}
.g01__primary {
  margin-bottom: 1em;
}
@media (min-width: 1240px) {
  .g01__primary {
    margin: 0 0 0 4.6em;
  }
}
.g01__primary-menu, .g01__secondary-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.g01__primary-menu .menu-item {
  height: 100%;
  position: relative;
  pointer-events: none;
}
@media (min-width: 1240px) {
  .g01__primary-menu .menu-item {
    display: inline-flex;
    align-items: center;
    margin-right: 1.5em;
  }
}
.g01__primary-menu .menu-item::after {
  position: absolute;
  bottom: 0;
  left: -0.111rem;
  width: calc(100% + 0.222rem);
  height: 0.611rem;
  background-color: currentColor;
  border-radius: 0.111rem 0.111rem 0 0;
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.25s ease;
}
@media (min-width: 1240px) {
  .g01__primary-menu .menu-item::after {
    content: "";
  }
}
.g01__primary-menu .menu-item:hover::after, .g01__primary-menu .menu-item:focus-within::after, .g01__primary-menu .menu-item.current-menu-item::after {
  transform: none;
}
.g01__primary-menu .menu-item a {
  font-size: 1.25rem;
  margin: 0.5em 0;
  display: block;
  color: inherit;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  pointer-events: all;
}
@media (min-width: 1240px) {
  .g01__primary-menu .menu-item a {
    font-size: 0.889rem;
    display: inline;
    margin: 0;
  }
}
@media (min-width: 1240px) {
  .g01__secondary {
    flex-grow: 1;
    margin-left: auto;
    justify-content: flex-end;
  }
}
@media (min-width: 1240px) {
  .g01__secondary-menu {
    display: flex;
    height: 100%;
    justify-content: flex-end;
  }
}
.g01__secondary-menu .menu-item {
  position: relative;
}
@media (min-width: 1240px) {
  .g01__secondary-menu .menu-item {
    display: inline-flex;
    align-items: center;
    margin-left: 1.5em;
    height: 100%;
  }
}
.g01__secondary-menu .menu-item::after {
  position: absolute;
  bottom: 0;
  left: -0.111rem;
  width: calc(100% + 0.222rem);
  height: 0.611rem;
  background-color: currentColor;
  border-radius: 0.111rem 0.111rem 0 0;
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.25s ease;
}
@media (min-width: 1240px) {
  .g01__secondary-menu .menu-item::after {
    content: "";
  }
}
.g01__secondary-menu .menu-item:hover::after, .g01__secondary-menu .menu-item:focus-within::after, .g01__secondary-menu .menu-item.current-menu-item::after {
  transform: none;
}
.g01__secondary-menu .menu-item a {
  font-size: 1.25rem;
  margin: 0.5em 0;
  display: block;
  color: inherit;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
}
@media (min-width: 1240px) {
  .g01__secondary-menu .menu-item a {
    font-size: 0.889rem;
    display: inline;
    margin: 0;
  }
}
.g01__search-wrap {
  position: relative;
  pointer-events: none;
  margin-top: 1.8rem;
}
@media (min-width: 1240px) {
  .g01__search-wrap {
    height: 100%;
    display: inline-flex;
    align-items: center;
    margin-top: unset;
  }
}
.g01__search-wrap::after {
  position: absolute;
  bottom: 0;
  left: -0.111rem;
  width: calc(100% + 0.222rem);
  height: 0.611rem;
  background-color: currentColor;
  border-radius: 0.111rem 0.111rem 0 0;
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.25s ease;
}
@media (min-width: 1240px) {
  .g01__search-wrap::after {
    content: "";
  }
}
.g01__search-wrap:hover::after, .g01__search-wrap:focus-within::after, .g01__search-wrap.is-active::after {
  transform: none;
}
.g01__search {
  width: 1rem;
  height: 1rem;
  color: inherit;
  border: 0;
  padding: 0;
  pointer-events: all;
  background-color: transparent;
}
.g01__search svg {
  width: 100%;
  height: 100%;
}
.g01__hamburger {
  width: 1.778rem;
  height: 1.778rem;
  border: 0;
  padding: 0;
  margin-left: auto;
  position: relative;
  background-color: transparent;
}
@media (min-width: 1240px) {
  .g01__hamburger {
    display: none;
  }
}
.g01__hamburger::before, .g01__hamburger::after {
  content: "";
  width: 1.556rem;
  height: 0.167rem;
  background-color: #FFFFFF;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -0.111rem 0 0 -0.778rem;
}
.g01__hamburger::before {
  transform: translateY(-0.333rem);
}
body.is-menu-active .g01__hamburger::before {
  transform: rotate(45deg);
}
.g01__hamburger::after {
  transform: translateY(0.333rem);
}
body.is-menu-active .g01__hamburger::after {
  transform: rotate(-45deg);
}
.g01__scroll-detection {
  position: absolute;
  width: 1px;
  height: 2.778rem;
  top: 11.111rem;
  left: 0;
  pointer-events: none;
  user-select: none;
}

.g02 {
  background-color: var(--primary-color);
  color: #FFFFFF;
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  display: none;
  z-index: 1;
  transition: transform 0.25s ease;
  padding: 3em 0 1.5em;
}
@media (min-width: 560px) {
  .g02 {
    padding: 3.1em 0 4.4em;
  }
}
@media (min-width: 1240px) {
  .g02 {
    display: flex;
    justify-content: center;
    top: 100%;
    height: auto;
    z-index: -2;
    transform: translateY(-100%);
  }
}
body.is-search .g02 {
  display: block;
}
@media (min-width: 1240px) {
  body.is-search .g02 {
    transform: none;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}
.g02__content {
  margin: 0 auto;
  max-width: 43.333rem;
  width: 90%;
}
.g02__label {
  font-weight: 700;
  font-size: 0.889rem;
  display: block;
}
.g02__input-wrap {
  position: relative;
}
.g02__search {
  border: 0;
  border-radius: 0;
  width: 100%;
  height: 2.667rem;
  padding: 0 4rem 0 0.5em;
}
@media (max-width: 809px) {
  .g02__search {
    font-size: 1rem;
  }
}
.g02__submit {
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 4rem;
  height: 100%;
  background: var(--primary-color);
  color: #FFFFFF;
  border: 0.222rem solid #FFFFFF;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.g02__submit svg {
  width: 2.222rem;
  height: 1.389rem;
}
.g02__close {
  background-color: transparent;
  position: absolute;
  font-weight: 700;
  font-size: 1rem;
  padding: 0;
  border: 0;
  right: 1.389rem;
  top: 1.556rem;
  color: inherit;
  display: inline-flex;
  align-items: center;
}
.g02__close svg {
  width: 0.722rem;
  height: 0.722rem;
  margin-right: 0.389rem;
}

.g03 {
  position: relative;
  border-top: 0.111rem solid;
  background-color: var(--primary-color);
  color: #FFFFFF;
  padding: 2em 0;
}
@media (min-width: 810px) {
  .g03 {
    padding: 3.8em 0 1.7em;
  }
}
.g03__container {
  margin-bottom: 2em;
}
@media (min-width: 810px) {
  .g03__container {
    margin-bottom: 3em;
  }
}
@media (min-width: 1040px) {
  .g03__container {
    display: flex;
    justify-content: space-between;
  }
}
.g03__bottom {
  font-size: 0.778rem;
  font-weight: 700;
}
@media (min-width: 1040px) {
  .g03__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
  }
}
@media (min-width: 1040px) {
  .g03__logo {
    margin-right: 6.3em;
  }
}
@media (min-width: 1040px) {
  .g03__copyright {
    margin-right: 2.25em;
  }
}
@media (min-width: 1040px) {
  .g03__company-info {
    margin-right: auto;
  }
}
@media (min-width: 1040px) {
  .g03__social {
    display: flex;
    align-items: center;
  }
}
.g03__social-links {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.g03__social-label {
  margin-right: 1.8em;
}
.g03__social-item:not(:last-child) {
  margin-right: 1.7em;
}
.g03__social-item a {
  color: inherit;
  text-decoration: none;
}
.g03__social-item .svg-icon--icon-linkedin {
  width: 0.778rem;
  height: 0.889rem;
}
.g03__social-item .svg-icon--icon-twitter {
  width: 0.833rem;
  height: 0.833rem;
}
.g03__social-item .svg-icon--icon-youtube {
  width: 0.944rem;
  height: 0.833rem;
}
.g03__social-item .svg-icon--icon-instagram {
  width: 0.833rem;
  height: 0.833rem;
}
.g03__social-item .svg-icon--icon-facebook {
  width: 0.444rem;
  height: 0.722rem;
}
.g03__social-item .svg-icon--icon-wechat {
  width: 0.944rem;
  height: 0.944rem;
}
.g03__social-item .svg-icon--icon-tiktok {
  width: 0.611rem;
  height: 0.778rem;
}
.g03__back-to-top {
  border: 0;
  padding: 0;
  color: var(--primary-color);
  background-color: #FFFFFF;
  width: 2.667rem;
  height: 2.667rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 0.444rem;
  line-height: 0.556rem;
  letter-spacing: 1.5px;
  font-weight: 900;
}
.g03__back-label::before {
  content: "";
  width: 0;
  height: 0;
  display: block;
  margin: 0 auto 0.4em;
  border-style: solid;
  border-width: 0 0.222rem 0.389rem;
  border-color: transparent transparent var(--primary-color) transparent;
}
.g03__navigation {
  font-size: 0.778rem;
  font-weight: 700;
}
@media (min-width: 1040px) {
  .g03__navigation {
    display: flex;
    justify-content: space-between;
  }
}
.g03__navigation a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  margin: 0.5em 0;
  line-height: 1.6;
}
.g03__navigation a[target=_blank] {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.g03__navigation a[target=_blank]::before {
  content: "";
  width: 0.833rem;
  height: 0.833rem;
  background-image: url(assets/svg/icon_external.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  margin-right: 0.3em;
}
.g03 .gform_wrapper a:not([class]) {
  color: inherit;
}
@media (min-width: 1040px) {
  .g03 .gform_wrapper {
    width: calc(50% - .95em);
  }
}
@media (min-width: 1040px) {
  .g03__column {
    width: calc(50% - .5em);
  }
}
.g03__footer-menu {
  padding: 0;
  list-style: none;
  margin: 0 0 1.5em;
}
@media (min-width: 810px) {
  .g03__footer-menu {
    margin: 0 0 3.8em;
  }
}
.g03__contact-heading {
  text-transform: uppercase;
  margin-bottom: 0.8em;
}
.g03 select,
.g03 textarea,
.g03 input[type=url],
.g03 input[type=tel],
.g03 input[type=text],
.g03 input[type=email],
.g03 input[type=search],
.g03 input[type=number],
.g03 input[type=password] {
  border-color: #FFFFFF;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
}
.g03 select:focus,
.g03 textarea:focus,
.g03 input[type=url]:focus,
.g03 input[type=tel]:focus,
.g03 input[type=text]:focus,
.g03 input[type=email]:focus,
.g03 input[type=search]:focus,
.g03 input[type=number]:focus,
.g03 input[type=password]:focus {
  border-color: #E0E5E5;
}
.gfield_error .g03 select,
.gfield_error .g03 textarea,
.gfield_error .g03 input[type=url],
.gfield_error .g03 input[type=tel],
.gfield_error .g03 input[type=text],
.gfield_error .g03 input[type=email],
.gfield_error .g03 input[type=search],
.gfield_error .g03 input[type=number],
.gfield_error .g03 input[type=password] {
  border-color: rgba(var(--primary-color), 0.5);
}
.g03 input[type=radio]:focus + label::before,
.g03 input[type=checkbox]:focus + label::before {
  border-color: #E0E5E5;
}
.g03 input[type=radio]:checked + label::after,
.g03 input[type=checkbox]:checked + label::after {
  border-color: #E0E5E5;
}
.g03 input[type=radio] + label::after, .g03 input[type=radio] + label::before,
.g03 input[type=checkbox] + label::after,
.g03 input[type=checkbox] + label::before {
  border: 0.167rem solid #FFFFFF;
}
.g03 .gform_button,
.g03 input[type=submit] {
  font-size: 0.889rem;
}
.g03 .gform_heading {
  margin-bottom: 0.75em;
}
.g03 .gform_footer {
  margin-top: 1em;
}
.g03 .gform_title {
  text-transform: uppercase;
  margin-bottom: 0.8em;
}
.g03 .gform_description {
  font-size: 0.778rem;
  line-height: 1.222rem;
}
.g03 .gfield, .g03 .archive-container__filter-wrap, .g03 .m18__filter-wrap {
  margin-bottom: 0.2em;
}
@media (min-width: 810px) {
  .g03 .gfield, .g03 .archive-container__filter-wrap, .g03 .m18__filter-wrap {
    width: calc(50% - .6em);
  }
}
.g03 .gfield_radio, .g03 .gfield_checkbox, .g03 .gfield_consent, .g03 .gfield_textarea {
  width: 100%;
  margin-top: 0.6em;
}
.g03 .gfield label, .g03 .archive-container__filter-wrap label, .g03 .m18__filter-wrap label {
  font-size: 0.778rem;
}
.g03 .gfield input[type=radio] + label, .g03 .archive-container__filter-wrap input[type=radio] + label, .g03 .m18__filter-wrap input[type=radio] + label,
.g03 .gfield input[type=checkbox] + label,
.g03 .archive-container__filter-wrap input[type=checkbox] + label,
.g03 .m18__filter-wrap input[type=checkbox] + label {
  font-size: 0.667rem;
  padding: 0 0 0 1.667rem;
}
.g03__address {
  line-height: 1.722rem;
  font-style: normal;
  margin-bottom: 3.8em;
}
@media (max-width: 809px) {
  .g03__address {
    margin-bottom: 1.5em;
    line-height: 1.5;
  }
}
.g03__address p {
  margin: 0;
}

/* ---------------------------------------
# Blocks
---------------------------------------- */
.m01--autoplay .can-play .m16__fallback-image {
  opacity: 0;
}

.m02 {
  position: relative;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 810px) {
  .m02 {
    margin-top: 5rem;
    margin-bottom: 10rem;
  }
}
.m02 + .m05 {
  margin-top: -2rem;
}
@media (min-width: 810px) {
  .m02 + .m05 {
    margin-top: -5rem;
  }
}
.m02__label {
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
  position: relative;
  margin-bottom: 1.25em;
}
.m02__label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(100% + 1rem);
  width: 4rem;
  height: 0.111rem;
  background-color: currentColor;
}
.m02__heading {
  position: relative;
  z-index: 2;
  margin-bottom: 0.5em;
}
@media (min-width: 810px) {
  .m02__heading {
    margin-bottom: 0.4em;
  }
}
.m02__heading-text {
  display: block;
}
.m02__button-wrap {
  margin-top: 1.95em;
}
@media (min-width: 810px) {
  .m02__content {
    width: 38rem;
    max-width: calc(50% + 5rem);
  }
}
.m02--no-media .m02__content {
  width: auto !important;
  max-width: none !important;
}
.m02__media {
  margin-top: 3rem;
}
@media (min-width: 810px) {
  .m02__media {
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: calc(50% - 10rem);
  }
}
@media (min-width: 1200px) {
  .m02__media {
    width: calc(50% - 20rem);
  }
}
.m02__media__image {
  width: 100%;
}
@media (min-width: 810px) {
  .m02__media__image {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    object-fit: cover;
  }
}

.m03 {
  margin-top: 3rem;
  margin-bottom: 6rem;
}
.m03__label {
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
  position: relative;
  margin-bottom: 1.4rem;
}
.m03__label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(100% + 1rem);
  width: 4rem;
  height: 0.111rem;
  background-color: currentColor;
}
.m03__wrapper {
  overflow: hidden;
  margin-top: 2rem;
}
.m03__container {
  display: flex;
}
.is-static .m03__container {
  justify-content: center;
  transform: none !important;
}
.m03__slide {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 1.111rem;
}
@media (min-width: 810px) {
  .m03__slide {
    margin: 0 3.111rem;
  }
}
.m03__media {
  margin: auto;
}
.m03__media__image {
  margin: auto;
  max-width: 200px;
  max-height: 85px;
  object-fit: scale-down;
}

.m04 {
  color: #FFFFFF;
  background-color: var(--primary-color);
  padding: 3rem 0;
}
@media (min-width: 810px) {
  .m04 {
    padding: 5.15rem 0 6.2rem;
  }
}
.m04__introduction {
  margin-bottom: 2rem;
}
@media (min-width: 810px) {
  .m04__introduction {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
.m04__heading {
  margin-right: 0.65em;
}
.m04__button {
  margin-top: 1em;
}
@media (min-width: 810px) {
  .m04__button {
    margin: 0.5em 0;
  }
}
@media (max-width: 809px) {
  .m04__button:not(.m04__button--mobile) {
    display: none;
  }
}
.m04__list {
  display: none;
  width: 100%;
}
@media (min-width: 810px) {
  .m04__list {
    display: flex;
    margin-bottom: 2.75rem;
  }
}
.m04__list .magic-line-inner {
  display: flex;
}
.m04__navigation {
  position: relative;
}
.m04__navigation::before {
  display: block;
  position: relative;
  margin-left: -50vw;
  max-width: 100vw;
  width: 100vw;
  left: 50%;
  height: 2px;
  background-color: #A10023;
  margin-top: 4.7rem;
}
@media (min-width: 1040px) {
  .m04__navigation::before {
    content: "";
  }
}
.m04__select-wrapper {
  position: relative;
  display: block;
  margin: 0 auto 3rem;
}
.m04__select-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 2.667rem;
  height: 100%;
  pointer-events: none;
  background-image: url(./assets/svg/ico_select.svg);
  background-repeat: repeat-y;
  background-position: center;
  border: 0.167rem solid #FFFFFF;
}
@media (min-width: 810px) {
  .m04__select-wrapper {
    display: none;
  }
}
.m04__select {
  display: block;
  width: 100%;
  font-size: 1rem;
  border: 0.167rem solid #FFFFFF;
  border-radius: 0;
  background-color: #FFFFFF;
  padding: 0.65em 1em;
}
.m04__nav-button {
  padding: 1.4em 1.5em 0;
  margin: 0 1em 0 0;
  border: 0;
  font-weight: 700;
  background-color: transparent;
  color: #A10023;
  border-bottom: 0.222rem solid transparent;
}
@media (min-width: 1040px) {
  .m04__nav-button {
    border: 0;
  }
}
.m04__nav-button:focus {
  outline: none;
}
.m04__nav-button:hover, .m04__nav-button:focus, .m04__nav-button.active {
  color: #FFFFFF;
  border-color: currentColor;
}
.m04__wrapper {
  overflow: hidden;
}
.m04__container {
  display: flex;
  margin-left: -5vw;
}
@media (min-width: 1040px) {
  .m04__container {
    margin-left: unset;
  }
}
.m04__slide {
  position: relative;
  flex: 0 0 80%;
  max-width: 66rem;
  padding-right: 5vw;
}
@media (min-width: 1040px) {
  .m04__slide {
    display: flex;
    align-items: center;
    padding: 0;
  }
}
.m04__title {
  margin-bottom: 0.53em;
}
.m04__media {
  position: relative;
}
.m04__media::before {
  padding-bottom: 100%;
  position: relative;
  width: 100%;
  height: 0;
  display: block;
  content: "";
}
@media (min-width: 1040px) {
  .m04__media {
    max-width: 37.5rem;
    width: calc(100% - 28rem);
    margin-right: 2.5rem;
  }
}
.m04__media__image {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  object-fit: cover;
}
.m04__content {
  margin-top: 2em;
}
@media (min-width: 1040px) {
  .m04__content {
    margin: 0;
    width: 26rem;
    max-width: 50%;
    padding-right: 3rem;
  }
}

.init-magic-line,
.magic-line-inner {
  position: relative;
}

.magic-line {
  z-index: 1;
  position: absolute;
  top: -2px !important;
  background-color: currentColor;
}
@media (max-width: 1039px) {
  .magic-line {
    display: none !important;
  }
}

.magic-line-css-transition {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body.gaming-theme .m04__select-wrapper::after {
  background-image: url(./assets/svg/ico_select_purple.svg);
}

.m05 {
  margin-top: 3rem;
  margin-bottom: calc(3rem + 4.444rem);
}
@media (min-width: 810px) {
  .m05 {
    margin-top: 6rem;
    margin-bottom: 4rem;
    padding-bottom: 4.444rem;
    overflow: hidden;
  }
}
.m05__container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 810px) {
  .m05__container {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}
.m05__media {
  width: 100%;
  position: relative;
  z-index: 1;
  order: 2;
  margin-top: 3em;
}
@media (min-width: 810px) {
  .m05__media {
    order: -1;
    width: calc(100% - 26.111rem);
    max-width: 35.167rem;
    min-width: 50%;
    margin: 0 0 0 -2.222rem;
  }
}
.m05__media::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  left: -4.444rem;
  bottom: -4.444rem;
  z-index: -1;
  background-color: var(--primary-color);
  animation: float 5s ease infinite forwards;
}
@media (min-width: 810px) {
  .m05--left .m05__media {
    order: 2;
    margin: 0 -2.222rem 0 0;
  }
}
@media (min-width: 810px) {
  .m05--left .m05__media::before {
    left: auto;
    right: -4.444rem;
  }
}
.m05__media__image {
  width: 100%;
}
@media (min-width: 810px) {
  .m05__content {
    width: 26.111rem;
    max-width: 50%;
  }
}
.m05__button-wrap {
  margin-top: 1.95em;
}

.m05 + .m05 .m05__media::before {
  animation-delay: 1.5s;
}

.m06 {
  margin-top: 3rem;
}
@media (min-width: 810px) {
  .m06 {
    margin-top: 5rem;
  }
}
.m06__introduction {
  margin-bottom: 2.4em;
}
@media (min-width: 810px) {
  .m06__introduction {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 2rem;
  }
}
.m06__heading {
  margin-right: 0.65em;
}
.m06__button {
  margin-top: 2em;
}
@media (min-width: 810px) {
  .m06__button {
    margin: 0.5em 0;
  }
}
@media (max-width: 809px) {
  .m06__button:not(.m06__button--mobile) {
    display: none;
  }
}
.m06__carousel {
  display: flex;
  flex-direction: column;
}
@media (min-width: 810px) {
  .m06__carousel {
    flex-direction: row;
  }
}
.m06__content {
  position: relative;
  background-color: var(--primary-color);
  color: #FFFFFF;
  padding: 0 0 3em;
}
@media (min-width: 810px) {
  .m06__content {
    padding: 2.7em 0 5.8em;
    width: 50%;
    max-width: 34rem;
  }
}
.m06__mobile-media {
  margin-bottom: 2.3em;
  position: relative;
}
@media (min-width: 810px) {
  .m06__mobile-media {
    display: none;
  }
}
.m06__mobile-media::before {
  padding-bottom: 56.25%;
  position: relative;
  width: 100%;
  height: 0;
  display: block;
  content: "";
}
.m06__mobile-media .m06__slide-image {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  object-fit: cover;
}
.m06__slide-media {
  position: relative;
}
@media (max-width: 809px) {
  .m06__slide-media {
    height: 100%;
  }
}
@media (max-width: 809px) {
  .m06__slide-media img {
    height: 100%;
    object-fit: cover;
  }
}
.m06__media-link {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
.m06__media {
  display: none;
}
@media (min-width: 810px) {
  .m06__media {
    width: calc(100% - 34rem);
    order: -2;
    display: block;
    position: relative;
  }
}
.m06__slide-heading__link {
  text-decoration: none;
  color: inherit;
}
.m06__slide-link {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
}
.m06__slide-excerpt {
  margin-bottom: 0;
}
.m06__wrapper {
  overflow: hidden;
  width: 100%;
}
.m06__container {
  display: flex;
  user-select: none;
}
.m06__slide {
  position: relative;
  flex: 0 0 100%;
}
.m06__controls, .m06__slide-content {
  margin: 0 auto;
  width: 90%;
}
@media (min-width: 810px) {
  .m06__controls, .m06__slide-content {
    width: 80%;
    max-width: 26.222rem;
  }
}
.m06__controls {
  display: flex;
  margin-top: 2em;
}
.m06__nav svg {
  display: none;
  width: 0;
  margin: 0;
  opacity: 0;
  transition: width 0.3s ease, opacity 0.3s ease;
}
@media (min-width: 810px) {
  .m06__nav svg {
    display: block;
  }
}
.m06__nav:hover svg, .m06__nav:focus svg {
  width: 2.333rem;
  opacity: 1;
}
.m06__nav--prev svg {
  transform: rotate(180deg);
}
.m06__nav--prev:focus svg, .m06__nav--prev:hover svg {
  margin-right: 0.444rem;
}
.m06__nav--next:focus svg, .m06__nav--next:hover svg {
  margin-left: 0.444rem;
}
.m06__nav[disabled] {
  opacity: 0.15;
  filter: grayscale(1);
  pointer-events: none;
  z-index: -1;
  background-color: var(--primary-color);
  color: #FFFFFF;
}
.m06__nav:not(:last-child) {
  margin-right: 0.889rem;
}
.m06__dots {
  max-width: 100%;
  display: flex;
  position: absolute;
  bottom: 1.333rem;
  right: 1.333rem;
}
.m06__dot {
  position: relative;
  display: block;
  padding: 0;
  width: 17px;
  height: 17px;
  margin-right: 8px;
  border: 3px solid var(--primary-color);
  background-color: transparent;
  transition: background-color 0.3s ease;
}
.m06__dot:last-child {
  margin-right: 0;
}
.m06__dot::before {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  content: "";
  opacity: 0;
  transform: scale(0);
  background-color: var(--primary-color);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.m06__dot:hover::before, .m06__dot:focus::before {
  opacity: 1;
  transform: scale(0.5);
}
.m06__dot.is-selected::before {
  opacity: 1;
  transform: scale(1);
}
.m06__taxonomies {
  list-style: none;
  padding: 0;
  margin: 0.7em 0 2.25em;
  display: flex;
  font-size: 0.889rem;
}
.m06__taxonomy:not(:last-child) {
  margin-right: 0.5em;
  padding-right: 0.5em;
  position: relative;
}
.m06__taxonomy:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -0.2em;
  top: 0;
}

.m06__wrapper--content .m06__slide {
  opacity: 0;
  transition: opacity 0s ease 0.6s;
}
.m06__wrapper--content .m06__slide.is-selected {
  transition: opacity 0.6s ease;
  opacity: 1;
}

@media (min-width: 810px) {
  .m06__wrapper--media,
.m06__wrapper--media .m06__slide,
.m06__wrapper--media .m06__container {
    height: 100%;
    min-height: 100%;
  }
}

@media (min-width: 810px) {
  .m06__wrapper--media .m06__slide-media,
.m06__wrapper--media .m06__slide-image {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    object-fit: cover;
  }
}

.m07, .archive-container {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 810px) {
  .m07, .archive-container {
    margin-top: 4.65rem;
    margin-bottom: 5.3rem;
  }
}
.m07__introduction {
  margin-bottom: 2.4em;
}
@media (min-width: 810px) {
  .m07__introduction {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 3.21em;
  }
}
.m07__heading {
  margin-right: 0.65em;
}
.m07__button {
  margin-top: 1em;
}
@media (min-width: 810px) {
  .m07__button {
    margin: 0.5em 0;
  }
}
@media (min-width: 810px) {
  .m07__insights, .archive-container__items-grid {
    margin: 0 -20px;
  }
}
.m07 .single-insight-item, .archive-container .single-insight-item,
.m07 .single-case-study-item,
.archive-container .single-case-study-item {
  width: 100%;
  padding-bottom: 0.65em;
}
@media (max-width: 809px) {
  .m07 .single-insight-item, .archive-container .single-insight-item,
.m07 .single-case-study-item,
.archive-container .single-case-study-item {
    position: relative !important;
    transform: none !important;
  }
}
@media (min-width: 810px) {
  .m07 .single-insight-item, .archive-container .single-insight-item,
.m07 .single-case-study-item,
.archive-container .single-case-study-item {
    width: calc(50% - 40px);
  }
}

.m08 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 810px) {
  .m08 {
    margin-top: 7.3rem;
    margin-bottom: 7.35rem;
  }
}
.m08__wrapper {
  overflow: hidden;
}
.m08__container {
  display: flex;
}
.m08__slide {
  position: relative;
  min-width: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}
.m08__slide.is-selected {
  opacity: 1;
}
.m08__quote {
  max-width: 43.167rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.m08__content {
  margin: 0.75em 0 0.4em;
}
@media (min-width: 810px) {
  .m08__content {
    font-size: 1.778rem;
    line-height: 2.5rem;
  }
}
.m08__content p:first-of-type {
  margin-top: 0;
}
.m08__content p:first-of-type::before {
  content: "“";
}
.m08__content p:last-of-type {
  margin-bottom: 0;
}
.m08__content p:last-of-type::after {
  content: "”";
}
.m08__image {
  width: 2.778rem;
  height: 2.778rem;
  border-radius: 100%;
  object-fit: cover;
  margin: 0 auto 0.4em;
  order: -2;
}
.m08__cite {
  order: -1;
  font-size: 0.889rem;
  line-height: 1.222rem;
  font-style: normal;
}
.m08__name, .m08__company {
  display: block;
}
.m08__name {
  font-weight: 700;
}
.m08__button-wrap {
  display: flex;
  justify-content: center;
}
.m08__button {
  padding-left: 0.9em;
  padding-right: 0.9em;
}
.m08__button svg {
  width: 2.222rem;
  height: 1.333rem;
  margin: 0;
}
.m08__button--prev {
  margin-right: -0.222rem;
}
.m08__button--prev svg {
  transform: rotate(180deg);
}
.m08__button[disabled] {
  opacity: 0;
  pointer-events: none;
}

.m09 {
  background-color: var(--primary-color);
  color: #FFFFFF;
  padding: 3rem 0;
  overflow: hidden;
}
@media (min-width: 810px) {
  .m09 {
    padding: 4.85rem 0 4rem;
  }
}
.m09__label {
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
  position: relative;
  margin-bottom: 1.25em;
}
.m09__label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(100% + 1rem);
  width: 4rem;
  height: 0.111rem;
  background-color: currentColor;
}
.m09__heading {
  position: relative;
  z-index: 2;
  margin-bottom: 0.69em;
}
.m09__heading-text {
  display: block;
}
.m09 .gform_wrapper {
  background-color: #FFFFFF;
  color: #151416;
  padding: 8vw 7vw 9vw;
}
@media (min-width: 810px) {
  .m09 .gform_wrapper {
    padding: 4.167rem 9% 4.444rem;
  }
}
.m09--red-full .gform_wrapper {
  color: #FFFFFF;
  background-color: transparent;
  padding: 0;
}
@media (min-width: 810px) {
  .m09--red-full .gform_wrapper {
    padding: 4.167rem 9% 4.444rem;
  }
}
.m09--red-full .gform_wrapper select,
.m09--red-full .gform_wrapper textarea,
.m09--red-full .gform_wrapper input[type=url],
.m09--red-full .gform_wrapper input[type=tel],
.m09--red-full .gform_wrapper input[type=text],
.m09--red-full .gform_wrapper input[type=email],
.m09--red-full .gform_wrapper input[type=search],
.m09--red-full .gform_wrapper input[type=number],
.m09--red-full .gform_wrapper input[type=password] {
  width: 100%;
  font-size: 1rem;
  border: 0.167rem solid #FFFFFF;
  border-radius: 0;
  background-color: #FFFFFF;
  padding: 0.65em 1em;
}
.gfield_error .m09--red-full .gform_wrapper select,
.gfield_error .m09--red-full .gform_wrapper textarea,
.gfield_error .m09--red-full .gform_wrapper input[type=url],
.gfield_error .m09--red-full .gform_wrapper input[type=tel],
.gfield_error .m09--red-full .gform_wrapper input[type=text],
.gfield_error .m09--red-full .gform_wrapper input[type=email],
.gfield_error .m09--red-full .gform_wrapper input[type=search],
.gfield_error .m09--red-full .gform_wrapper input[type=number],
.gfield_error .m09--red-full .gform_wrapper input[type=password] {
  border-color: #E0E5E5;
}
.m09--red-full .gform_wrapper select[disabled],
.m09--red-full .gform_wrapper textarea[disabled],
.m09--red-full .gform_wrapper input[type=url][disabled],
.m09--red-full .gform_wrapper input[type=tel][disabled],
.m09--red-full .gform_wrapper input[type=text][disabled],
.m09--red-full .gform_wrapper input[type=email][disabled],
.m09--red-full .gform_wrapper input[type=search][disabled],
.m09--red-full .gform_wrapper input[type=number][disabled],
.m09--red-full .gform_wrapper input[type=password][disabled] {
  pointer-events: none;
}
.m09--red-full .gform_wrapper select:focus,
.m09--red-full .gform_wrapper textarea:focus,
.m09--red-full .gform_wrapper input[type=url]:focus,
.m09--red-full .gform_wrapper input[type=tel]:focus,
.m09--red-full .gform_wrapper input[type=text]:focus,
.m09--red-full .gform_wrapper input[type=email]:focus,
.m09--red-full .gform_wrapper input[type=search]:focus,
.m09--red-full .gform_wrapper input[type=number]:focus,
.m09--red-full .gform_wrapper input[type=password]:focus {
  border-color: #E0E5E5;
}
.m09--red-full .gform_wrapper .ginput_container_select::after {
  transform: scale(0.9);
}
.m09--red-full .button {
  margin-top: 1em;
}
.m09--red-full a:not([class]) {
  color: inherit;
}
.m09--white {
  padding: 0;
  margin: 3rem 0;
  background-color: #FFFFFF;
  color: #151416;
}
@media (min-width: 810px) {
  .m09--white {
    margin: 5rem 0 4rem;
  }
}
.m09--white .gform_wrapper {
  color: #FFFFFF;
  background-color: var(--primary-color);
}
.m09--white .gform_wrapper select,
.m09--white .gform_wrapper textarea,
.m09--white .gform_wrapper input[type=url],
.m09--white .gform_wrapper input[type=tel],
.m09--white .gform_wrapper input[type=text],
.m09--white .gform_wrapper input[type=email],
.m09--white .gform_wrapper input[type=search],
.m09--white .gform_wrapper input[type=number],
.m09--white .gform_wrapper input[type=password] {
  width: 100%;
  font-size: 1rem;
  border: 0.167rem solid #FFFFFF;
  border-radius: 0;
  background-color: #FFFFFF;
  padding: 0.65em 1em;
}
.gfield_error .m09--white .gform_wrapper select,
.gfield_error .m09--white .gform_wrapper textarea,
.gfield_error .m09--white .gform_wrapper input[type=url],
.gfield_error .m09--white .gform_wrapper input[type=tel],
.gfield_error .m09--white .gform_wrapper input[type=text],
.gfield_error .m09--white .gform_wrapper input[type=email],
.gfield_error .m09--white .gform_wrapper input[type=search],
.gfield_error .m09--white .gform_wrapper input[type=number],
.gfield_error .m09--white .gform_wrapper input[type=password] {
  border-color: #E0E5E5;
}
.m09--white .gform_wrapper select[disabled],
.m09--white .gform_wrapper textarea[disabled],
.m09--white .gform_wrapper input[type=url][disabled],
.m09--white .gform_wrapper input[type=tel][disabled],
.m09--white .gform_wrapper input[type=text][disabled],
.m09--white .gform_wrapper input[type=email][disabled],
.m09--white .gform_wrapper input[type=search][disabled],
.m09--white .gform_wrapper input[type=number][disabled],
.m09--white .gform_wrapper input[type=password][disabled] {
  pointer-events: none;
  background-color: #E0E5E5;
}
.m09--white .gform_wrapper select:focus,
.m09--white .gform_wrapper textarea:focus,
.m09--white .gform_wrapper input[type=url]:focus,
.m09--white .gform_wrapper input[type=tel]:focus,
.m09--white .gform_wrapper input[type=text]:focus,
.m09--white .gform_wrapper input[type=email]:focus,
.m09--white .gform_wrapper input[type=search]:focus,
.m09--white .gform_wrapper input[type=number]:focus,
.m09--white .gform_wrapper input[type=password]:focus {
  border-color: #E0E5E5;
}
.m09--white .gform_wrapper .ginput_container_select::after {
  transform: scale(0.9);
}
.m09--white a:not([class]) {
  color: inherit;
}

.m10 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 810px) {
  .m10 {
    margin-top: 3.5rem;
    margin-bottom: 5rem;
  }
}
@media (min-width: 1040px) {
  .m10.add-offset .m10__container {
    position: relative;
    left: 7%;
  }
}
.m10__wrapper {
  overflow: hidden;
}
.m10__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 2.222rem auto 0;
}
@media (min-width: 810px) {
  .m10__header {
    margin: 2.222rem auto 0;
  }
}
.m10__heading {
  margin-right: 2.778rem;
}
.m10__button-wrap {
  display: flex;
  justify-content: center;
}
@media (min-width: 810px) {
  .m10__button-wrap {
    margin: 1.111rem 0;
  }
}
.m10__button {
  padding-left: 1em;
  padding-right: 1em;
}
.m10__button--prev {
  margin-right: -0.222rem;
}
.m10__button--prev svg {
  transform: rotate(180deg);
}
.m10__button[disabled] {
  opacity: 0.15;
  filter: grayscale(1);
  pointer-events: none;
  z-index: -1;
  background-color: var(--primary-color);
  color: #FFFFFF;
}
.m10__filters {
  color: var(--primary-color);
  position: relative;
}
@media (min-width: 810px) {
  .m10__filters {
    margin-bottom: 2rem;
  }
}
.m10__filters::before, .m10__filters::after {
  content: "";
  pointer-events: none;
  width: 5vw;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
}
@media (min-width: 810px) {
  .m10__filters::before, .m10__filters::after {
    display: none;
  }
}
.m10__filters::before {
  left: -5vw;
  background: linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0) 100%);
}
@media (min-width: 1040px) {
  .m10__filters::before {
    display: block;
    position: relative;
    margin-left: -50vw;
    max-width: 100vw;
    width: 100vw;
    left: 50%;
    height: 2px;
    background: #C9C9C9;
    margin-top: 2rem;
  }
}
.m10__filters::after {
  right: -5vw;
  background: linear-gradient(270deg, white 0%, rgba(255, 255, 255, 0) 100%);
}
.m10__filters .magic-line-inner {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 809px) {
  .m10__filters .magic-line-inner {
    margin: 0 -5vw 1.111rem;
    padding: 0 5vw;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.m10__filters .magic-line-inner::-webkit-scrollbar {
  display: none;
}
.m10__select-wrapper {
  position: relative;
  display: block;
  margin: 0 auto 3rem;
  width: 100%;
}
@media (min-width: 810px) {
  .m10__select-wrapper {
    display: none;
  }
}
.m10__select {
  width: 100%;
  font-size: 1rem;
  border: 0.167rem solid #E0E5E5;
  border-radius: 0;
  background-color: #FFFFFF;
  padding: 0.65em 1em;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-color: var(--primary-color);
  padding-left: 0.75em;
  appearance: none;
  padding-right: calc(2.5rem + 1em);
  background-image: url(assets/svg/ico_select_simple.svg);
  background-repeat: no-repeat;
  background-position: right 0.75em center;
}
.m10__filter {
  display: none;
}
.m10__filter__label {
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  padding: 1.4em 1.5em 0;
  margin: 0 1em 0 0;
  border: 0;
  font-weight: 700;
  background-color: transparent;
  color: #C9C9C9;
  border-bottom: 0.222rem solid transparent;
  display: none;
}
@media (min-width: 810px) {
  .m10__filter__label {
    display: block;
  }
}
@media (min-width: 1040px) {
  .m10__filter__label {
    border: 0;
  }
}
.m10__filter__label:focus {
  outline: none;
}
.m10__filter__label:hover, .m10__filter__label:focus, .m10__filter__label.active {
  color: var(--primary-color);
  border-color: currentColor;
}
.m10__container {
  display: flex;
}
.m10__items {
  margin-top: 0;
}
@media (min-width: 810px) {
  .m10__items {
    margin-top: 2rem;
  }
}
.m10__slide {
  position: relative;
  opacity: 0;
  transition: opacity 1s ease;
  width: calc(100% - 10vw);
  min-width: calc(100% - 10vw);
  margin: 2.222rem 2.5vw;
  padding: 0;
}
@media (min-width: 810px) {
  .m10__slide {
    margin: 0 1.333rem 0 0;
    padding: 2.222rem 0;
    min-width: 25rem;
    width: 25rem;
  }
}
.m10__slide.is-selected {
  opacity: 1;
}
.m10__slide:first-child {
  padding-left: 5vw;
}
@media (min-width: 810px) {
  .m10__slide:first-child {
    width: calc(25rem + 5vw);
    min-width: calc(25rem + 5vw);
  }
}
.m10__slide:last-child {
  padding-right: 5vw;
}
@media (min-width: 810px) {
  .m10__slide:last-child {
    width: calc(25rem + 5vw);
    min-width: calc(25rem + 5vw);
  }
}
.m10 .single-service-item {
  position: relative;
}
.m10 .single-service-item__link {
  display: block;
  background-color: var(--primary-color);
  color: #FFFFFF;
  text-decoration: none;
  padding: 0 6vw 2.222rem;
  min-height: 100%;
}
@media (min-width: 810px) {
  .m10 .single-service-item__link {
    padding: 0 2.222rem 1.333rem;
  }
}
.m10 .single-service-item__heading {
  margin-top: 0.75em;
}
.m10 .single-service-item__media {
  width: 11.111rem;
  height: 11.111rem;
  border: 2px solid white;
  top: -2.222rem;
  position: relative;
}
.m10 .single-service-item__media + .single-service-item__content {
  margin-top: -2em;
}
.m10 .single-service-item__image {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  object-fit: cover;
}
.m10 .single-service-item__image[src$=".svg"] {
  object-fit: contain;
  padding: 30%;
  background-color: var(--primary-color);
}
.m10 .single-service-item__content {
  padding-bottom: 1rem;
}
.m10 .single-service-item__tag {
  background-color: transparent;
  padding: 0;
}
.m10 .single-service-item__excerpt {
  margin: 1rem 0 0;
}
.m10 .single-service-item__excerpt span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.m10 .single-service-item__excerpt .read-more {
  text-decoration: underline;
}

.m11 {
  position: relative;
  margin-bottom: 3.5rem;
}
@media (min-width: 810px) {
  .m11 {
    margin-bottom: 8.3rem;
  }
}
@media (min-width: 940px) {
  .m11__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.m11__media {
  position: relative;
}
@media (min-width: 940px) {
  .m11__media {
    right: -5vw;
    width: 38rem;
    max-width: 50%;
    object-fit: cover;
  }
}
@media (min-width: 1173px) {
  .m11__media {
    right: auto;
    left: calc((100vw - 66rem) / 2);
  }
}
.m11__media--one__image, .m11__media--two__image {
  width: 100%;
}
@media (min-width: 940px) {
  .m11__media--one__image, .m11__media--two__image {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    max-width: none;
    object-fit: cover;
  }
}
.m11__media__image {
  width: 100%;
}
@media (min-width: 940px) {
  .m11__media__image {
    max-width: none;
    object-fit: cover;
  }
}
.m11__content {
  margin: 4.8em 0 3.8em;
  position: relative;
}
@media (min-width: 940px) {
  .m11__content {
    width: 38.889rem;
    max-width: calc(100% - 27.778rem);
  }
}
.m11__label {
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
  position: relative;
  margin-bottom: 1.25em;
}
.m11__label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(100% + 1rem);
  width: 4rem;
  height: 0.111rem;
  background-color: currentColor;
}
.m11__heading {
  position: relative;
  z-index: 2;
  margin-bottom: 0.6em;
}
.m11__heading-text {
  display: block;
  hyphens: manual;
  overflow-wrap: normal;
}
.m11__button-wrap {
  margin-top: 2em;
}

.m12 {
  overflow: hidden;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 810px) {
  .m12 {
    margin-top: 7.3rem;
    margin-bottom: 7.5rem;
  }
}
.m12__gallery {
  display: grid;
  grid-template-columns: 40% 20% 40%;
  margin: -0.333rem;
}
@media (min-width: 810px) {
  .m12__gallery {
    margin: -0.667rem;
  }
}
@media (min-width: 1100px) {
  .m12__gallery {
    grid-template-columns: 23.6% 33.9% 42.5%;
  }
}
.m12__media {
  position: relative;
  margin: 0.333rem;
}
@media (min-width: 810px) {
  .m12__media {
    margin: 0.667rem;
  }
}
.m12__media::before {
  content: "";
}
.m12__media:nth-child(4n+1)::before {
  padding-bottom: 95.4861111111%;
  position: relative;
  width: 100%;
  height: 0;
  display: block;
}
@media (min-width: 1100px) {
  .m12__media:nth-child(4n+1)::before {
    padding-bottom: 122.0588235294%;
    position: relative;
    width: 100%;
    height: 0;
    display: block;
  }
}
.m12__media:nth-child(4n+2)::before {
  padding-bottom: 63.6574074074%;
  position: relative;
  width: 100%;
  height: 0;
  display: block;
}
@media (min-width: 1100px) {
  .m12__media:nth-child(4n+2)::before {
    padding-bottom: 37.7272727273%;
    position: relative;
    width: 100%;
    height: 0;
    display: block;
  }
}
.m12__media:nth-child(4n+3)::before {
  padding-bottom: 63.6574074074%;
  position: relative;
  width: 100%;
  height: 0;
  display: block;
}
@media (min-width: 1100px) {
  .m12__media:nth-child(4n+3)::before {
    padding-bottom: 50.1207729469%;
    position: relative;
    width: 100%;
    height: 0;
    display: block;
  }
}
.m12__media:nth-child(4n+4)::before {
  padding-bottom: 95.4861111111%;
  position: relative;
  width: 100%;
  height: 0;
  display: block;
}
@media (min-width: 1100px) {
  .m12__media:nth-child(4n+4)::before {
    padding-bottom: 67.8104575163%;
    position: relative;
    width: 100%;
    height: 0;
    display: block;
  }
}
.m12__media:nth-child(4n+2), .m12__media:nth-child(4n+3) {
  grid-column: span 2;
}
.m12__media__image {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  object-fit: cover;
}
.m12--three-column .m12__gallery, .m12--four-column .m12__gallery {
  display: flex;
  flex-wrap: wrap;
  padding: 0 calc(5vw - 0.167rem);
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}
@media (min-width: 1310px) {
  .m12--three-column .m12__gallery, .m12--four-column .m12__gallery {
    padding: 0;
    max-width: calc(65.556rem + 1.778rem);
    margin-left: auto;
    margin-right: auto;
  }
}
.m12--three-column .m12__media::before, .m12--four-column .m12__media::before {
  display: none !important;
}
.m12--three-column .m12__media__image, .m12--four-column .m12__media__image {
  position: relative;
  width: 100%;
  height: auto;
  top: unset;
  left: unset;
}
.m12--three-column .m12__media {
  width: 100%;
}
@media (min-width: 700px) {
  .m12--three-column .m12__media {
    width: calc(33.333% - 1.333rem);
  }
}
.m12--four-column .m12__media {
  width: 100%;
}
@media (min-width: 700px) {
  .m12--four-column .m12__media {
    width: calc(25% - 1.333rem);
  }
}

.m13 {
  margin-top: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 810px) {
  .m13 {
    margin-top: 7.6rem;
    margin-bottom: 8rem;
  }
}
.m13__wrapper {
  overflow: hidden;
}
.m13__container {
  display: flex;
}
.m13__introduction {
  display: flex;
  align-items: center;
  margin-bottom: 2em;
}
@media (min-width: 810px) {
  .m13__introduction {
    margin-bottom: 3.9em;
  }
}
.m13__heading {
  margin-right: 0.55em;
}
.m13__slide {
  position: relative;
  margin-right: 1.333rem;
  opacity: 0;
  transition: opacity 1s ease;
  min-width: 100%;
  width: 100%;
  padding: 2.222rem 5vw;
}
@media (min-width: 810px) {
  .m13__slide {
    padding: 2.222rem 0;
    width: 25rem;
    min-width: 25rem;
  }
}
@media (min-width: 810px) {
  .m13__slide:first-child {
    width: calc(25rem + 5vw);
    min-width: calc(25rem + 5vw);
    padding-left: 5vw;
  }
}
@media (min-width: 810px) {
  .m13__slide:last-child {
    width: calc(25rem + 5vw);
    min-width: calc(25rem + 5vw);
    padding-right: 5vw;
  }
}
.m13__slide.is-selected {
  opacity: 1;
}
.m13__slide-wrapper {
  padding: 0 2.222rem 3rem;
  background-color: var(--primary-color);
  color: #FFFFFF;
  min-height: 100%;
  position: relative;
}
.m13__hidden-link {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
.m13__media {
  width: 10.667rem;
  position: relative;
  background-color: #FFFFFF;
  border: 0.167rem solid #FFFFFF;
  top: -2.222rem;
}
.m13__media::before {
  padding-bottom: 100%;
  position: relative;
  width: 100%;
  height: 0;
  display: block;
  content: "";
}
.m13__media__image {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  object-fit: cover;
}
.m13__media__image[src$=".svg"] {
  object-fit: contain;
  padding: 30%;
  background-color: var(--primary-color);
}
.m13__title {
  margin-bottom: 0.71em;
}
.m13__button-wrap {
  display: flex;
  justify-content: center;
}
.m13__button {
  padding-left: 0.9em;
  padding-right: 0.9em;
}
.m13__button svg {
  width: 2.222rem;
  height: 1.333rem;
  margin: 0;
}
.m13__button--prev {
  margin-right: -0.222rem;
}
.m13__button--prev svg {
  transform: rotate(180deg);
}
.m13__button[disabled] {
  opacity: 0.15;
  filter: grayscale(1);
  pointer-events: none;
  z-index: -1;
  background-color: var(--primary-color);
  color: #FFFFFF;
}
.m13__service-type {
  font-size: 0.889rem;
  margin-top: -1.65em;
}
.m13__button-wrapper {
  margin-top: 3.5em;
  display: flex;
  justify-content: center;
}
.m13__link-wrap {
  margin-top: -1em;
}
.m13__link {
  border-bottom: 1px solid;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}
.m13 p:empty {
  display: none;
}

.m14 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.m14 + .m27 {
  margin-top: -0.9rem;
}
.m14__label {
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
  position: relative;
}
.m14__label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(100% + 1rem);
  width: 4rem;
  height: 0.111rem;
  background-color: currentColor;
}

.m15 {
  background-color: var(--primary-color);
  color: #FFFFFF;
  padding: 3rem 0;
}
@media (min-width: 810px) {
  .m15 {
    padding: 5rem 0;
  }
}
@media (min-width: 1100px) {
  .m15__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.m15__awards {
  display: flex;
  flex-wrap: wrap;
  margin: -0.333rem;
}
@media (min-width: 810px) {
  .m15__awards {
    margin: -0.889rem;
  }
}
@media (min-width: 1100px) {
  .m15__awards {
    order: -1;
    width: 55%;
    max-width: 30.556rem;
  }
}
.m15__content {
  margin-bottom: 2em;
}
@media (min-width: 1100px) {
  .m15__content {
    margin: 0;
    width: 40%;
    max-width: 26.111rem;
  }
}
.m15__media {
  position: relative;
  background-color: #FFFFFF;
  display: block;
  width: calc(50% - 0.667rem);
  margin: 0.333rem;
}
@media (min-width: 810px) {
  .m15__media {
    width: calc(50% - 1.778rem);
    margin: 0.889rem;
  }
}
.m15__media::before {
  padding-bottom: 60.3846153846%;
  position: relative;
  width: 100%;
  height: 0;
  display: block;
  content: "";
}
.m15__media__image {
  position: absolute;
  object-fit: scale-down;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 60%;
}
@media (min-width: 810px) {
  .m15__media__image {
    top: 1.778rem;
    left: 2.667rem;
    width: calc(100% - 5.333rem);
    height: calc(100% - 3.556rem);
  }
}

.m16 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 810px) {
  .m16 {
    margin-top: 7.9rem;
    margin-bottom: 7.3rem;
  }
}
.m16__wrapper {
  position: relative;
  max-height: calc(100vh - 6.1rem);
  background-color: #151416;
}
.m16__wrapper::before {
  padding-bottom: 56.25%;
  position: relative;
  width: 100%;
  height: 0;
  display: block;
  content: "";
}
.m16__wrapper .plyr,
.m16__wrapper iframe,
.m16__wrapper .plyr__video-wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.m16__video {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  object-fit: cover;
}
.can-play .m16__video + .m16__caption {
  opacity: 1;
  pointer-events: all;
}
.m16__caption {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}
.plyr + .m16__caption {
  opacity: 1;
  pointer-events: all;
}
.m16__fallback-image {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  object-fit: cover;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.is-paused .m16__fallback-image, .is-playing .m16__fallback-image {
  opacity: 0;
}

.m17 {
  margin-top: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 810px) {
  .m17 {
    margin-top: 4rem;
    margin-bottom: 8rem;
  }
}
.m17__wrapper {
  overflow: hidden;
}
.m17__container {
  display: flex;
}
.m17__introduction {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2em;
}
@media (min-width: 810px) {
  .m17__introduction {
    margin-bottom: 3.9em;
  }
}
.m17__heading {
  margin-right: 0.55em;
}
.m17__slide {
  position: relative;
  margin-right: 1.333rem;
  opacity: 0;
  transition: opacity 1s ease;
  min-width: 100%;
  width: 100%;
  padding: 2.222rem 5vw;
}
@media (min-width: 810px) {
  .m17__slide {
    padding: 2.222rem 0;
    min-width: 25rem;
    width: 25rem;
  }
}
.m17__slide.is-selected {
  opacity: 1;
}
@media (min-width: 810px) {
  .m17__slide:first-child {
    width: calc(25rem + 5vw);
    min-width: calc(25rem + 5vw);
    padding-left: 5vw;
  }
}
@media (min-width: 810px) {
  .m17__slide:last-child {
    width: calc(25rem + 5vw);
    min-width: calc(25rem + 5vw);
    padding-right: 5vw;
  }
}
.m17__slide .read-more {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
}
.m17__slide-wrapper {
  padding: 0 6vw 2.222rem;
  background-color: var(--primary-color);
  color: #FFFFFF;
  min-height: 100%;
}
@media (min-width: 810px) {
  .m17__slide-wrapper {
    padding: 0 2.222rem 3rem;
  }
}
.m17__media {
  width: 10.667rem;
  position: relative;
  background-color: #FFFFFF;
  border: 0.167rem solid #FFFFFF;
  top: -2.222rem;
}
.m17__media::before {
  padding-bottom: 100%;
  position: relative;
  width: 100%;
  height: 0;
  display: block;
  content: "";
}
.m17__media__image {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  object-fit: cover;
}
.m17__media__image[src$=".svg"] {
  object-fit: contain;
  padding: 30%;
  background-color: var(--primary-color);
}
.m17__title {
  margin-bottom: 0.71em;
}
.m17__button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1em;
}
@media (min-width: 810px) {
  .m17__button-wrap {
    margin-top: 0;
  }
}
.m17__button {
  padding-left: 0.9em;
  padding-right: 0.9em;
}
.m17__button svg {
  width: 2.222rem;
  height: 1.333rem;
  margin: 0;
}
.m17__button--prev {
  margin-right: -0.222rem;
}
.m17__button--prev svg {
  transform: rotate(180deg);
}
.m17__button[disabled] {
  opacity: 0.15;
  filter: grayscale(1);
  pointer-events: none;
  z-index: -1;
  background-color: var(--primary-color);
  color: #FFFFFF;
}
.m17__button.hide-button {
  opacity: 0;
}

.m18 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 810px) {
  .m18 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
.m18__introduction {
  font-weight: 700;
}
.m18__filters {
  align-items: center;
}
@media (min-width: 768px) {
  .m18__filters {
    display: flex;
    margin: 1.667rem -1.389rem 3.333rem;
  }
}
.m18__filter-wrap {
  position: relative;
  max-width: 21.111rem;
}
@media (min-width: 768px) {
  .m18__filter-wrap {
    margin-bottom: 0;
    padding: 0 1.389rem;
  }
}
.m18__reset {
  background: none;
  border: 0;
  margin: 0 1.111rem;
  font-weight: 700;
  font-size: 1.111rem;
  color: var(--primary-color);
}
.m18__post-count {
  color: rgba(21, 20, 22, 0.5);
  font-size: 1rem;
  margin: 0.833rem 0;
  display: block;
}
.m18__vacancies {
  margin: 0.833rem -0.833rem;
  display: flex;
  flex-wrap: wrap;
}
.m18 .single-vacancy-item {
  padding: 0.833rem;
  width: 100%;
}
@media (min-width: 768px) {
  .m18 .single-vacancy-item {
    width: 50%;
  }
}
.m18 .single-vacancy-item__link {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  background-color: var(--primary-color);
  color: #FFFFFF;
  text-decoration: none;
  padding: 2.222rem 6vw;
}
@media (min-width: 810px) {
  .m18 .single-vacancy-item__link {
    padding: 2.222rem 2.778rem;
  }
}
.m18 .single-vacancy-item__description {
  margin: 1.667rem 0;
}
.m18 .single-vacancy-item__description .read-more {
  font-weight: 700;
  text-decoration: underline;
}
.m18 .single-vacancy-item__tags {
  font-size: 1rem;
}
.m18 .single-vacancy-item__tags span::after {
  content: " | ";
}
.m18 .single-vacancy-item__tags span:last-child::after {
  content: none;
}
.m18 .pagination {
  justify-content: flex-start;
}

.m19 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.m19__link {
  margin-top: 1.667rem;
}

.m20 {
  margin-top: 2.6rem;
  margin-bottom: 2.6rem;
}
.m20--center {
  text-align: center;
}
.m20--right {
  text-align: right;
}
.m20__heading {
  margin-bottom: 0.63em;
}
.m20__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.m20--center .m20__list {
  justify-content: center;
}
.m20--right .m20__list {
  justify-content: flex-end;
}
.m20__item:not(:last-child) {
  margin-right: 0.667rem;
}
.m20__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0.222rem solid var(--primary-color);
  color: var(--primary-color);
  width: 4rem;
  height: 4rem;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}
.m20__link:hover, .m20__link:focus {
  color: #FFFFFF;
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}
.m20__link .svg-icon--icon-facebook {
  width: 0.944rem;
  height: 1.5rem;
}
.m20__link .svg-icon--icon-linkedin {
  width: 1.556rem;
  height: 1.722rem;
}
.m20__link .svg-icon--icon-twitter {
  width: 1.556rem;
  height: 1.556rem;
}

.m23 {
  background-color: var(--primary-color);
  color: #FFFFFF;
  padding: 3rem 0;
}
@media (min-width: 810px) {
  .m23 {
    padding: 4.6rem 0 4.4rem;
  }
}
@media (min-width: 810px) {
  .m23__container {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 810px) {
  .m23__content {
    width: 50%;
    max-width: 31.778rem;
  }
}
.m23 .gform_wrapper a:not([class]) {
  color: inherit;
}
@media (min-width: 810px) {
  .m23 .gform_wrapper {
    max-width: 27.778rem;
    width: 45%;
  }
}
@media (min-width: 810px) {
  .m23 .gfield, .m23 .archive-container__filter-wrap, .m23 .m18__filter-wrap {
    width: calc(100% - .95em);
  }
}
.m23 .gfield_radio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (min-width: 810px) {
  .m23 .gfield_radio {
    justify-content: space-between;
  }
}
.m23 .gfield_radio input[type=radio] + label {
  padding-top: 0;
}
.m23 select,
.m23 textarea,
.m23 input[type=url],
.m23 input[type=tel],
.m23 input[type=text],
.m23 input[type=email],
.m23 input[type=search],
.m23 input[type=number],
.m23 input[type=password] {
  border-color: #FFFFFF;
}
.m23 select:focus,
.m23 textarea:focus,
.m23 input[type=url]:focus,
.m23 input[type=tel]:focus,
.m23 input[type=text]:focus,
.m23 input[type=email]:focus,
.m23 input[type=search]:focus,
.m23 input[type=number]:focus,
.m23 input[type=password]:focus {
  border-color: #E0E5E5;
}
.m23 input[type=radio]:focus + label::before,
.m23 input[type=checkbox]:focus + label::before {
  border-color: #E0E5E5;
}
.m23 input[type=radio]:checked + label::after,
.m23 input[type=checkbox]:checked + label::after {
  border-color: #E0E5E5;
}
.m23 input[type=radio] + label::after, .m23 input[type=radio] + label::before,
.m23 input[type=checkbox] + label::after,
.m23 input[type=checkbox] + label::before {
  border: 0.167rem solid #FFFFFF;
  top: 0.167rem;
}
.m23 .gform_confirmation_message {
  color: inherit;
}

.m24 {
  margin: 2em auto;
  display: flex;
}
.m24--center {
  justify-content: center;
}
.m24--right {
  justify-content: flex-end;
}

.m27 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 810px) {
  .m27 {
    margin-top: 4rem;
    margin-bottom: 3.85rem;
  }
}
.m27 + .m16 {
  margin-top: 0;
}
.m27__container {
  display: flex;
  flex-direction: column;
}
.m27__sub-heading {
  margin: 0.15em 0 0;
}
.m27__terms {
  order: -1;
  color: rgba(21, 20, 22, 0.5);
  margin-bottom: 0.44em;
}
.m27__term:not(:last-child)::after {
  content: "|";
  margin: 0 0 0 0.35em;
}

.m28 {
  background-color: var(--primary-color);
  color: #FFFFFF;
  padding: 3rem 0;
}
@media (min-width: 810px) {
  .m28 {
    padding: 3.45rem 0 5.25rem;
  }
}
.m28__label {
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
  position: relative;
  margin-bottom: 1.85em;
}
.m28__label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(100% + 1rem);
  width: 4rem;
  height: 0.111rem;
  background-color: currentColor;
}
@media (min-width: 810px) {
  .m28__publications {
    margin: 0 -1.3rem;
  }
}
.m28 .single-publication-item {
  width: 100%;
}
@media (min-width: 810px) {
  .m28 .single-publication-item {
    width: calc(50% - 2.85rem);
  }
}

.m29 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 810px) {
  .m29 {
    margin-top: 5.2rem;
    margin-bottom: 3.85rem;
  }
}
.m29__container {
  display: flex;
  flex-direction: column;
}
.m29__terms {
  order: -1;
  color: rgba(21, 20, 22, 0.5);
  margin-bottom: 0.44em;
}
.m29__term:not(:last-child)::after {
  content: "|";
  margin: 0 0 0 0.35em;
}

.m30 {
  margin-top: 5.15rem;
}
.m30__container {
  display: flex;
  flex-direction: column;
}
.m30__sub-heading {
  margin: 0.15em 0 0;
}
.m30__meta {
  order: -1;
  display: flex;
  align-items: center;
  margin-bottom: 1.25em;
}
.m30__tag {
  margin-right: 0.8em;
}
.m30__time {
  color: rgba(21, 20, 22, 0.5);
  font-size: 0.889rem;
}
.m30__media-wrap {
  min-height: 3.889rem;
  position: relative;
  margin: 1.7em 0 1.2em;
  display: flex;
  flex-direction: column;
}
.m30__downloads {
  order: 2;
  margin-top: 1em;
}
@media (min-width: 590px) {
  .m30__downloads {
    display: flex;
  }
}
@media (min-width: 810px) {
  .m30__downloads {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 100%;
    background-color: #FFFFFF;
    justify-content: flex-end;
  }
}
.m30__button {
  width: 100%;
  text-align: center;
}
@media (max-width: 589px) {
  .m30__button:focus, .m30__button:hover {
    border-color: var(--primary-color);
  }
}
@media (min-width: 590px) {
  .m30__button {
    flex-basis: 0;
    flex-grow: 1;
    width: auto;
  }
}
@media (min-width: 810px) {
  .m30__button {
    flex-grow: 0;
    flex-basis: auto;
  }
}
.m30__button:not(:first-child) {
  margin-top: 0.833rem;
}
@media (min-width: 590px) {
  .m30__button:not(:first-child) {
    margin: 0 0 0 1px;
  }
}
.m30__image {
  width: 100%;
  margin: 0 !important;
}

.m31__downloads {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1.9rem 0 2rem;
}
.m31--left .m31__downloads {
  justify-content: flex-start;
}
.m31--right .m31__downloads {
  justify-content: flex-end;
}
.m31__button {
  width: 100%;
  margin-bottom: 0.833rem;
}
@media (min-width: 590px) {
  .m31__button {
    margin: 0 0.833rem 0.833rem 0;
    width: auto;
  }
}
.m31__button:hover, .m31__button:focus {
  border-color: var(--primary-color);
}

.m32 {
  margin-top: 3rem;
  margin-bottom: 6rem;
}
@media (min-width: 810px) {
  .m32 {
    margin-top: 5rem;
    margin-bottom: 8rem;
  }
}
.m32__container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1040px) {
  .m32__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.m32__heading, .m32__content {
  max-width: 54.444rem;
}
.m32__intro, .m32__introduction {
  margin-bottom: 3.9em;
}
.m32__map {
  position: relative;
  margin-top: 3em;
}
@media (min-width: 1040px) {
  .m32__map {
    order: -1;
    max-width: 35.222rem;
    width: 60%;
    margin: 0;
  }
}
.m32__map::before {
  padding-bottom: 100.9463722397%;
  position: relative;
  width: 100%;
  height: 0;
  display: block;
  content: "";
}
.m32__map::after {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  content: "";
  transform: translate(-4.778rem, 3.611rem);
  background-color: var(--primary-color);
}
.m32__map .gmap {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
@media (min-width: 1040px) {
  .m32__contact-info {
    width: 35%;
    max-width: 20.667rem;
  }
}
.m32__contact-info a:not(.m32__button) {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid;
}
.m32__office-heading {
  margin-bottom: 0.48em;
}
.m32__address {
  font-style: normal;
  font-weight: 400;
}
.m32__phone {
  margin: 1.43em 0;
}
.m32__emails {
  list-style: none;
  padding: 0;
  margin: 0;
}
.m32__email-label {
  display: block;
}
.m32__button {
  margin-top: 2.15em;
}
.m32__select-wrapper {
  position: relative;
  margin-bottom: 1.9em;
}
.m32__select-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 2.667rem;
  height: 100%;
  pointer-events: none;
  background-image: url(./assets/svg/ico_select.svg);
  background-repeat: repeat-y;
  background-position: center right;
}
.m32__select {
  width: 100%;
  font-size: 1rem;
  border: 0.167rem solid #E0E5E5;
  border-radius: 0;
  background-color: #FFFFFF;
  padding: 0.65em calc(2.5rem + 1em) 0.64em 1em;
  appearance: none;
}
.m32__spinner {
  display: block;
  position: absolute;
  top: 50%;
  right: 3.222rem;
  margin-top: -0.556rem;
  opacity: 0;
  pointer-events: none;
  transform: opacity 0.25s ease;
}
body.is-loading .m32__spinner {
  opacity: 1;
}
body.is-loading .m32 .gmap {
  pointer-events: none;
  filter: grayscale(1);
  transition: 0.25s ease;
}
body.is-loading .m32__button, body.is-loading .m32__address {
  opacity: 0.5;
  pointer-events: none;
  filter: grayscale(1);
  transition: 0.25s ease;
}

body.gaming-theme .m32__select-wrapper::after {
  background-image: url(./assets/svg/ico_select_purple.svg);
}

.m33 {
  margin-top: 4rem;
  margin-bottom: 3rem;
}
@media (min-width: 810px) {
  .m33 {
    margin-top: 11rem;
    margin-bottom: 5.4rem;
  }
}
.m33__heading {
  margin-bottom: 1.23em;
}
@media (min-width: 560px) {
  .m33__offices {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.556rem;
  }
}
@media (min-width: 810px) {
  .m33__offices {
    margin: 0 -1.111rem;
  }
}
@media (min-width: 560px) {
  .m33__offices .single-office-item {
    margin: 0 0.556rem;
    width: calc(50% - 1.112rem);
  }
}
@media (min-width: 810px) {
  .m33__offices .single-office-item {
    margin: 0 1.111rem;
    width: calc(33.333% - 2.223rem);
  }
}
@media (min-width: 1080px) {
  .m33__offices .single-office-item {
    width: calc(25% - 2.223rem);
  }
}

.m35__header {
  background-color: var(--primary-color);
  padding: 4rem 0 5rem;
}
.m35__filters {
  position: relative;
  max-width: 43.333rem;
  width: 90%;
  margin: auto;
}
.m35__filters label {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  margin-left: 0.556rem;
}
.m35__search {
  position: relative;
  width: 100%;
}
.m35__search__input {
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 0.722rem 1.111rem;
}
.m35__search__icon {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 4.333rem;
  border-radius: 0;
  border: 0.222rem solid #FFFFFF;
  background-color: var(--primary-color);
  color: #FFFFFF;
}
.m35__search__icon:focus, .m35__search__icon:hover {
  background-color: #FFFFFF;
  color: var(--primary-color);
}
.m35__search__icon svg {
  height: 1.444rem;
  width: 2.944rem;
  margin: auto;
}
.m35__reset {
  background: none;
  border: 0;
  margin-top: 0.556rem;
  font-weight: 700;
  font-size: 1.111rem;
  color: #FFFFFF;
}
@media (min-width: 970px) {
  .m35__reset {
    position: absolute;
    bottom: 0.722rem;
    right: -4.444rem;
  }
}
.m35__container .container, .m35__container .m08__quote, .m35__container .m16--default .m16__wrapper, .m16--default .m35__container .m16__wrapper {
  max-width: 54.444rem;
  margin-top: 2em;
  margin-bottom: 2em;
}
@media (min-width: 768px) {
  .m35__container .container, .m35__container .m08__quote, .m35__container .m16--default .m16__wrapper, .m16--default .m35__container .m16__wrapper {
    margin-top: 5em;
    margin-bottom: 5em;
  }
}
.m35__sorting {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 1rem;
  margin: 1.111rem 0;
}
.m35__sorting--input {
  padding-right: 1.056rem;
  position: relative;
}
.m35__sorting--input::after {
  content: "";
  position: absolute;
  top: 0.45rem;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.444rem 0.278rem 0;
  border-color: var(--primary-color) transparent transparent transparent;
}
.m35__sorting--sort {
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.m35__single {
  display: block;
  justify-content: space-between;
  margin-bottom: 2.222rem;
}
@media (min-width: 810px) {
  .m35__single {
    display: flex;
  }
}
.m35__single--date {
  font-size: 1rem;
  color: rgba(21, 20, 22, 0.5);
}
.m35__single--title {
  margin: 0.833rem 0 0;
}
.m35__single--title a {
  color: #000000;
  text-decoration: none;
}
.m35__single--excerpt p:first-child {
  margin-top: 0.2em;
}
.m35__single--link {
  color: var(--primary-color);
  text-decoration: none;
  margin: 0;
  font-size: 0.889rem;
}
@media (max-width: 809px) {
  .m35__single--link {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.m35__media {
  position: relative;
  width: 15rem;
  height: 14rem;
}
@media (max-width: 767px) {
  .m35__media {
    display: none;
  }
}
.m35__image {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  object-fit: cover;
}
@media (min-width: 768px) {
  .m35__content {
    width: calc(100% - 17.778rem);
  }
}
.m35 .pagination {
  justify-content: flex-start;
}

.m36 {
  position: relative;
  padding: 3rem 0 5rem;
  color: #FFFFFF;
}
@media (min-width: 810px) {
  .m36 {
    min-height: 44.167rem;
  }
}
.m36::before {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
}
.m36 .container, .m36 .m08__quote, .m36 .m16--default .m16__wrapper, .m16--default .m36 .m16__wrapper {
  position: relative;
  z-index: 1;
}
.m36__label {
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
  font-style: normal;
  position: relative;
  margin-bottom: 0;
}
.m36__label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(100% + 1rem);
  width: 4rem;
  height: 0.111rem;
  background-color: currentColor;
}
.m36__heading {
  position: relative;
  z-index: 2;
}
.m36__heading-text {
  display: block;
}
.m36__button {
  margin-top: 1em;
}
.m36__media {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.m36__image {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  object-fit: cover;
}

.m37 {
  background-color: var(--primary-color);
  color: #FFFFFF;
  padding: 3rem 0;
}
@media (min-width: 810px) {
  .m37 {
    padding: 3.85rem 0 4.15rem;
  }
}
@media (min-width: 810px) {
  .m37__container {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 810px) {
  .m37__content {
    width: 50%;
    max-width: 31.778rem;
    margin-top: 0.9em;
  }
}
@media (min-width: 810px) {
  .m37 .gform_wrapper {
    max-width: 27.778rem;
    width: 45%;
  }
}
.m37 .gform_wrapper a:not([class]) {
  color: inherit;
}
@media (min-width: 810px) {
  .m37 .gfield_radio {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (min-width: 810px) {
  .m37 .gfield_radio li {
    width: calc(50% - 0.278rem);
    margin-right: 0.556rem;
  }
}
@media (min-width: 810px) {
  .m37 .gfield_radio li:nth-child(2n) {
    margin-right: 0;
  }
}
@media (min-width: 810px) {
  .m37 .gfield, .m37 .archive-container__filter-wrap, .m37 .m18__filter-wrap {
    width: calc(100% - .95em);
  }
}
.m37 select,
.m37 textarea,
.m37 input[type=url],
.m37 input[type=tel],
.m37 input[type=text],
.m37 input[type=email],
.m37 input[type=search],
.m37 input[type=number],
.m37 input[type=password] {
  border-color: #FFFFFF;
}
.m37 select:focus,
.m37 textarea:focus,
.m37 input[type=url]:focus,
.m37 input[type=tel]:focus,
.m37 input[type=text]:focus,
.m37 input[type=email]:focus,
.m37 input[type=search]:focus,
.m37 input[type=number]:focus,
.m37 input[type=password]:focus {
  border-color: #E0E5E5;
}
.m37 input[type=radio]:focus + label::before,
.m37 input[type=checkbox]:focus + label::before {
  border-color: #FFFFFF;
}
.m37 input[type=radio]:checked + label::after,
.m37 input[type=checkbox]:checked + label::after {
  border-color: #FFFFFF;
}
.m37 input[type=radio] + label::after, .m37 input[type=radio] + label::before,
.m37 input[type=checkbox] + label::after,
.m37 input[type=checkbox] + label::before {
  top: 0.65em;
  border: 0.167rem solid #FFFFFF;
}

.m38 {
  margin: 1.667rem 0;
}
.m38__content-wrapper {
  padding-bottom: 56.25%;
  position: relative;
  width: 100%;
  height: 0;
  display: block;
}
.m38__content-wrapper iframe {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}

.m39 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.m39__heading {
  margin-bottom: 0.76em;
}
.m39__content-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8vw 0;
  background-color: var(--primary-color);
}
@media (min-width: 810px) {
  .m39__content-wrap {
    padding: 6.6rem 0;
  }
}
.m39__background {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  object-fit: cover;
}
.m39__container {
  position: relative;
}
.m39__container-inner {
  padding-bottom: 56.25%;
  position: relative;
  width: 100%;
  height: 0;
  display: block;
}
.m39__container-inner > * {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}

.m40 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 810px) {
  .m40 {
    margin-top: 8.5rem;
    margin-bottom: 8.7rem;
  }
}
.m40__container {
  background-color: var(--primary-color);
  color: #FFFFFF;
  position: relative;
}
@media (min-width: 810px) {
  .m40__container {
    display: flex;
  }
}
.m40__heading {
  margin-bottom: 0.1em;
}
.m40__tag {
  font-size: 0.889rem;
}
.m40__button-wrap {
  margin-top: 1.7em;
}
.m40__content-wrap {
  padding: 8vw 5vw;
}
@media (min-width: 810px) {
  .m40__content-wrap {
    padding: 4.35rem 3.9rem 5.4rem;
    width: calc(50% + 2rem);
    flex-grow: 1;
  }
}
@media (min-width: 810px) {
  .m40__media {
    width: calc(50% - 2rem);
    position: relative;
  }
}
.m40__media__image {
  width: 100%;
  margin: 0 !important;
}
@media (min-width: 810px) {
  .m40__media__image {
    min-height: 100%;
    object-fit: cover;
  }
}

.m42 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.m42__heading {
  margin-bottom: 0.58em;
  text-align: center;
}
.m42__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: #8A8A8B;
  column-gap: 10px;
}
@media (min-width: 810px) {
  .m42__links {
    column-gap: 15px;
  }
}
.m42__button {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  color: var(--primary-color);
  margin: 0.5em;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (min-width: 810px) {
  .m42__button {
    margin: 1.2rem 0;
    gap: 10px;
  }
}
.m42__ident {
  display: none;
}
@media (min-width: 810px) {
  .m42__ident {
    display: block;
    font-size: 0.8rem;
    margin: 0 0.5em;
  }
}
.m42__break {
  display: none;
}
@media (min-width: 810px) {
  .m42__break {
    width: 100%;
    display: block;
  }
}

.m44 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 810px) {
  .m44 {
    margin-top: 7rem;
    margin-bottom: 7rem;
  }
}
.m44__heading {
  margin-bottom: 0.74em;
}
@media (min-width: 700px) {
  .m44__takeouts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -0.5rem;
  }
}
.m44__takeouts .single-takeout-item {
  margin-bottom: 1rem;
  width: 100%;
}
@media (min-width: 700px) {
  .m44__takeouts .single-takeout-item {
    margin: 0 0.5rem 1rem;
    width: calc(50% - 1rem);
  }
}
@media (min-width: 940px) {
  .m44__takeouts .single-takeout-item {
    width: calc(33.333% - 1rem);
  }
}

.m45 {
  position: relative;
}
.m45__background {
  width: 100%;
  height: auto;
  max-height: 100%;
}
@media (min-width: 810px) {
  .m45__downloads {
    position: absolute;
    width: 100%;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
  }
}
.m45__button {
  width: 100%;
  position: relative;
}
@media (min-width: 810px) {
  .m45__button {
    width: auto;
  }
}
.m45__button:last-child::before {
  content: "";
  background-color: #FFFFFF;
  display: block;
  position: absolute;
  top: -0.222rem;
  left: -0.222rem;
  width: calc(100% + (0.222rem * 2));
  height: 1px;
}
@media (min-width: 810px) {
  .m45__button:last-child::before {
    width: 1px;
    height: calc(100% + (0.222rem * 2));
  }
}

.m46 {
  margin: 3rem 0;
}
.m46__wrapper {
  overflow: hidden;
  margin-top: 2rem;
}
.m46__container {
  display: flex;
}
.is-static .m46__container {
  justify-content: center;
  transform: none !important;
}
.m46__slide {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.m46__slide a {
  display: flex;
}
.m46__media {
  margin: 0;
}
.m46__media__image, .m46__media__video {
  margin: 0;
  height: 600px;
  width: auto;
}
@media (max-width: 1800px) {
  .m46__media__image, .m46__media__video {
    height: 400px;
  }
}
@media (max-width: 1024px) {
  .m46__media__image, .m46__media__video {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .m46__media__image, .m46__media__video {
    height: 250px;
  }
}
@media (max-width: 576px) {
  .m46__media__image, .m46__media__video {
    height: 200px;
  }
}

.m47 {
  margin-top: 3rem;
  margin-bottom: calc(3rem + 4.444rem);
}
@media (min-width: 810px) {
  .m47 {
    margin-top: 6rem;
    margin-bottom: 4rem;
    padding-bottom: 4.444rem;
  }
}
.m47__container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 810px) {
  .m47__container {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}
.m47__media {
  width: 100%;
  position: relative;
  z-index: 1;
  order: 2;
  margin-top: 3em;
}
@media (min-width: 810px) {
  .m47__media {
    order: -1;
    width: calc(100% - 26.111rem);
    max-width: 35.167rem;
    min-width: 50%;
    margin: 0 0 0 -2.222rem;
  }
}
.m47__media::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  left: -4.444rem;
  bottom: -4.444rem;
  z-index: -1;
  background-color: var(--primary-color);
  animation: float 5s ease infinite forwards;
}
@media (min-width: 810px) {
  .m47--left .m47__media {
    order: 2;
    margin: 0 -2.222rem 0 0;
  }
}
@media (min-width: 810px) {
  .m47--left .m47__media::before {
    left: auto;
    right: -4.444rem;
  }
}
.m47__media__image {
  width: 100%;
}
@media (min-width: 810px) {
  .m47__content {
    width: 26.111rem;
    max-width: 50%;
  }
}
.m47__button-wrap {
  margin-top: 1.95em;
}

.m47 + .m47 .m47__media::before {
  animation-delay: 1.5s;
}

.m47__details {
  display: flex;
  flex-direction: column;
}
.m47__details .m05 {
  max-width: 66rem !important;
  align-self: center;
  margin-left: unset !important;
  left: unset !important;
  width: 90% !important;
  overflow: visible;
}
.m47__details .m05:first-of-type {
  margin-top: 1rem;
}
.m47__details > p {
  text-transform: uppercase;
  width: 90%;
  max-width: 60rem;
  align-self: center;
  display: block;
  position: relative;
  letter-spacing: 0;
}
@media (min-width: 810px) {
  .m47__details > p {
    align-self: flex-end;
  }
}
.m47__details > p span {
  position: relative;
}
.m47__details > p span:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(100% + 1rem);
  width: 4rem;
  height: 0.111rem;
  background-color: currentColor;
}
.m47__details .wp-block-gallery {
  max-width: 60rem;
  align-self: flex-end;
  position: relative;
  margin-top: 0rem;
  z-index: 2;
  padding: 0 5%;
}
@media (min-width: 810px) {
  .m47__details .wp-block-gallery {
    padding: 0;
  }
}

.m47.is-hidden, .m47__intro.is-hidden, .m47__details.is-hidden {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.m47b {
  margin-top: 3rem;
  margin-bottom: calc(3rem + 4.444rem);
  padding: 4rem 0;
}
@media (min-width: 810px) {
  .m47b {
    margin-top: 6rem;
    margin-bottom: 4rem;
    padding-bottom: 4.444rem;
    overflow: hidden;
  }
}
.m47b__container {
  display: flex;
  flex-direction: column;
}
.m47b__container .m47__intro {
  max-width: 66rem;
  width: 90%;
}
.m47b__button-wrap {
  margin-top: 1.95em;
}
.m47b--dark {
  color: #FFFFFF;
  background-color: var(--primary-color);
}
.m47b--dark .m47__media:before, .m47b--dark .m05__media:before {
  background-color: #FFFFFF;
}
.m47b .m47b__alternative__intro {
  display: none;
  position: relative;
}
.m47b .m47b__alternative__intro .m47b__button {
  padding-left: 1em;
  padding-right: 1em;
  position: absolute;
  bottom: calc(100% + 1rem);
  left: 0;
  width: 6rem;
  height: 3rem;
}
@media (min-width: 810px) {
  .m47b .m47b__alternative__intro .m47b__button {
    left: unset;
    right: calc(100% + 1rem);
    bottom: unset;
    width: 5rem;
    height: 5rem;
  }
}
.m47b .m47b__alternative__intro .m47b__button--prev {
  margin-right: -0.222rem;
}
.m47b .m47b__alternative__intro .m47b__button--prev svg {
  transform: rotate(180deg);
}

.archive-container__heading {
  margin-bottom: 2.222rem;
}
.archive-container__filters {
  align-items: center;
  position: relative;
}
@media (min-width: 768px) {
  .archive-container__filters {
    display: flex;
    margin: 2.333rem -0.75rem 3.333rem;
  }
}
.archive-container__filter-wrap {
  position: relative;
}
@media (min-width: 768px) {
  .archive-container__filter-wrap {
    margin-bottom: 0;
    padding: 0 0.75rem;
    max-width: 15.3rem;
  }
}
.archive-container__reset {
  background: none;
  border: 0;
  margin: 0 0 1em;
  font-weight: 700;
  font-size: 1.111rem;
  color: var(--primary-color);
}
@media (min-width: 768px) {
  .archive-container__reset {
    margin: 0 1.111rem;
  }
}
.archive-container__spinner {
  position: absolute;
  bottom: 1.167rem;
  right: 0;
  opacity: 0;
  transition: opacity 0.15s ease;
}
@media (min-width: 768px) {
  .archive-container__spinner {
    bottom: 0.778rem;
    right: -0.556rem;
  }
}
.terra--ajax .archive-container__spinner {
  opacity: 1;
}
.archive-container__items > .single-case-study-item,
.archive-container__items > .single-insight-item {
  width: 100%;
}
.archive-container__items-grid {
  margin-top: 2.222rem;
  margin-bottom: 2.222rem;
}
@media (max-width: 809px) {
  .archive-container__items-grid {
    height: auto !important;
    margin-left: auto;
    margin-right: auto;
  }
}
.archive-container .single-case-study-item__excerpt,
.archive-container .single-insight-item__excerpt {
  display: none;
}

.terra .no-results,
.terra .single-case-study-item,
.terra .single-insight-item {
  transition: 0.6s ease;
}
.terra--ajax .no-results,
.terra--ajax .single-case-study-item,
.terra--ajax .single-insight-item {
  opacity: 0.5;
  pointer-events: none;
  filter: grayscale(1);
}
.terra--done .no-results,
.terra--done .single-case-study-item,
.terra--done .single-insight-item {
  opacity: 0;
  animation: fade 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.wp-block-columns {
  position: relative;
}
@media (min-width: 810px) {
  .wp-block-columns {
    margin-left: -8vw;
    margin-right: -8vw;
  }
}
.wp-block-columns .twitter-tweet {
  border-radius: 0.667rem;
  box-shadow: 0 0.111rem 1.333rem 0 #E0E5E5;
}

figure.wp-block-image {
  margin: 6rem 0;
}
@media (min-width: 1040px) {
  figure.wp-block-image {
    margin: 6rem -7.5vw;
  }
}
figure.wp-block-image figcaption {
  font-size: 0.889rem;
  color: rgba(21, 20, 22, 0.5);
}
figure.wp-block-video {
  margin: 6rem 0;
}
figure.wp-block-video figcaption {
  font-size: 0.889rem;
  color: rgba(21, 20, 22, 0.5);
}
.block-editor-block-list__layout .wp-block {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ---------------------------------------
# Template Parts
---------------------------------------- */
.author-card {
  margin: 0.85em 0;
  display: flex;
  align-items: center;
  padding-left: 1.667rem;
}
@media (max-width: 809px) {
  .author-card {
    padding-left: 0;
    font-size: 0.889rem;
    line-height: 1.2;
    margin: 0.5em 0;
  }
}
.author-card__media {
  overflow: hidden;
  position: relative;
  margin-right: 0.5em;
  border-radius: 100%;
  width: 4.167rem;
  height: 4.167rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media (min-width: 810px) {
  .author-card__media {
    width: 5.778rem;
    height: 5.778rem;
  }
}
.author-card__media .avatar {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  object-fit: cover;
  margin: 0 !important;
}
.author-card__linkedin {
  background-color: #151416;
  border: 0.167rem solid #FFFFFF;
  color: #FFFFFF;
  border-radius: 100%;
  position: absolute;
  top: 0.444rem;
  width: 2rem;
  height: 2rem;
  left: -1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 810px) {
  .author-card__linkedin {
    width: 3.111rem;
    height: 3.111rem;
    left: -1.667rem;
  }
}
.author-card__linkedin svg {
  width: 1.111rem;
  height: 1.278rem;
}
.author-card__name {
  display: block;
  font-weight: 700;
}

.single-office-item {
  border-top: 0.222rem solid var(--primary-color);
  font-style: normal;
  font-weight: 400;
  padding: 1.2em 0 2.5em;
}
.single-office-item__heading {
  margin-bottom: 0.2em;
}
.single-office-item a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid;
}
.single-office-item p {
  margin: 0;
}

.single-insight-item__link {
  text-decoration: none;
  color: #151416;
  display: block;
}
.single-insight-item__header {
  position: relative;
  margin-bottom: 0.85em;
}
.single-insight-item__tag-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
}
.single-insight-item__image {
  width: 100%;
}
.single-insight-item__heading {
  margin-bottom: 0.15em;
}
.single-insight-item__excerpt {
  margin: 1.111rem 0;
}
.single-insight-item__meta {
  font-size: 0.889rem;
  color: rgba(21, 20, 22, 0.5);
}

.single-case-study-item__link {
  text-decoration: none;
  color: #151416;
  display: block;
}
.single-case-study-item__header {
  position: relative;
  margin-bottom: 0.85em;
}
.single-case-study-item__tag {
  position: absolute;
  bottom: 0;
  left: 0;
}
.single-case-study-item__image {
  width: 100%;
}
.single-case-study-item__heading {
  margin-bottom: 0.15em;
}
.single-case-study-item__excerpt {
  margin: 1.111rem 0;
}
.single-case-study-item__excerpt .read-more {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 700;
}
.single-case-study-item__meta {
  font-size: 0.889rem;
  color: rgba(21, 20, 22, 0.5);
}
.single-case-study-item__term::after {
  content: " | ";
}
.single-case-study-item__term:last-child::after {
  content: none;
}

.single-publication-item {
  font-size: 0.889rem;
  line-height: 1.222rem;
}
.single-publication-item__media__image {
  width: 100%;
}
.single-publication-item__media + .single-publication-item__heading {
  margin-top: 1.1em;
}
.single-publication-item__heading {
  font-weight: 700;
}
.single-publication-item__heading, .single-publication-item__caption {
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}
.single-publication-item__link {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid;
}
.single-publication-item__link svg {
  display: none;
}

.single-takeout-item {
  background-color: var(--primary-color);
  color: #FFFFFF;
  padding: 2.65rem 2rem 1.5rem;
  text-align: center;
}
.single-takeout-item__number {
  width: 5.389rem;
  height: 5.389rem;
  background-color: #FFFFFF;
  border: 4px solid #FFFFFF;
  margin: 0 auto 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.444rem;
  line-height: 1.2;
  font-style: italic;
  font-weight: bold;
  color: var(--primary-color);
}
.single-takeout-item__link {
  color: inherit;
  font-weight: 700;
  display: inline-block;
  margin: 0 auto 10px;
}

.single-post .entry-content.post img:not(.tag__icon, .m03__media__image),
.single-post .entry-content.post .wp-block-image {
  margin: 1.111rem auto;
  width: 100%;
}
.single-post .entry-content.post > h1:not(:first-child),
.single-post .entry-content.post > h2:not(:first-child),
.single-post .entry-content.post > h3:not(:first-child),
.single-post .entry-content.post > h4:not(:first-child),
.single-post .entry-content.post > h5:not(:first-child),
.single-post .entry-content.post > h6:not(:first-child) {
  margin: 1em 0 0;
}
.single-post .entry-content.post .digital-report-slideshare-wrapper {
  padding-bottom: 56.25%;
  position: relative;
  width: 100%;
  height: 0;
  display: block;
}
.single-post .entry-content.post .digital-report-slideshare-wrapper > * {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
.single-post .entry-content.post .gdr-wrapper-01 {
  padding-bottom: 56.25%;
  position: relative;
  width: 100%;
  height: 0;
  display: block;
  padding-bottom: calc(56.25% + 92px);
}
.single-post .entry-content.post .gdr-wrapper-01 > * {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
.single-post .entry-content.post .m39-gdr-wrapper .m39__container-inner {
  padding-bottom: calc(56.25% + 92px);
}
.single-post .entry-content.post > iframe {
  width: 100%;
  min-height: 350px;
}

.single .gated-content {
  position: relative;
  margin-bottom: 2em;
}
.single .gated-content:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 200px;
  background: white;
  background: linear-gradient(0deg, white 30%, rgba(255, 255, 255, 0) 100%);
  bottom: 0;
  left: 0;
}

/* ---------------------------------------
# Themes
---------------------------------------- */
/* ---------------------------------------
# Base.
---------------------------------------- */
body.gaming-theme-2024 main {
  overflow: hidden;
}

/* ---------------------------------------
# Typography.
---------------------------------------- */
body.gaming-theme-2024 p {
  font-family: "Roboto Mono", monospace;
}

/* ---------------------------------------
# Theme Specific Colours.
---------------------------------------- */
body.gaming-theme-2024 {
  --primary-color: #001BF1;
  color: var(--primary-color);
}

/* ---------------------------------------
# Blocks grid.
---------------------------------------- */
body.gaming-theme-2024 .block-grids {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
body.gaming-theme-2024 .block-grids .grids {
  position: absolute;
}
body.gaming-theme-2024 .block-grids .grids.grids-horizontal {
  top: 3rem;
  left: 0;
  width: 100%;
  height: calc(100% - 6rem);
  border-top: 1px solid color-mix(in srgb, var(--primary-color) 30%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--primary-color) 30%, transparent);
}
@media (min-width: 810px) {
  body.gaming-theme-2024 .block-grids .grids.grids-horizontal {
    top: 4rem;
    height: calc(100% - 8rem);
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
  }
}
body.gaming-theme-2024 .block-grids .grids.grids-vertical {
  top: 0;
  left: 3rem;
  width: calc(100% - 6rem);
  height: 100%;
  border-left: 1px solid color-mix(in srgb, var(--primary-color) 30%, transparent);
  border-right: 1px solid color-mix(in srgb, var(--primary-color) 30%, transparent);
}
@media (min-width: 810px) {
  body.gaming-theme-2024 .block-grids .grids.grids-vertical {
    left: 4rem;
    width: calc(100% - 8rem);
    border-left: 1px solid var(--primary-color);
    border-right: 1px solid var(--primary-color);
  }
}

/* ---------------------------------------
# Blocks.
---------------------------------------- */
body.gaming-theme-2024 .m01 .block-grids .grids.grids-horizontal {
  border-top: none;
  border-bottom: none;
}
body.gaming-theme-2024 .m03 {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 3rem;
  padding-bottom: 6rem;
}
body.gaming-theme-2024 .m03 .block-grids .grids.grids-horizontal {
  border-top: none;
  border-bottom: none;
}
body.gaming-theme-2024 .m05 .m05__media {
  scale: 1.3;
}
body.gaming-theme-2024 .m05 .m05__media:before {
  background-color: transparent;
  background-image: url(./assets/gaming/arrows-blue-right.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 150%;
  height: 150%;
  left: -10rem;
  bottom: -8rem;
  pointer-events: none;
}
@media (min-width: 810px) {
  body.gaming-theme-2024 .m05 .m05__media:before {
    left: -22rem;
    bottom: -10rem;
  }
}
@media (min-width: 1440px) {
  body.gaming-theme-2024 .m05 .m05__media {
    scale: 1.4;
    left: -3rem;
  }
}
body.gaming-theme-2024 .m05--left .m05__media:before {
  background-image: url(./assets/gaming/arrows-blue-left.png);
  left: auto;
  right: -10rem;
}
@media (min-width: 810px) {
  body.gaming-theme-2024 .m05--left .m05__media:before {
    right: -22rem;
  }
}
@media (min-width: 1440px) {
  body.gaming-theme-2024 .m05--left .m05__media {
    left: auto;
    right: -3rem;
  }
}
body.gaming-theme-2024 .m06 {
  padding-top: 3rem;
  margin-top: 0;
  border-bottom: 1px solid #FFFFFF;
}
@media (min-width: 810px) {
  body.gaming-theme-2024 .m06 {
    padding-top: 5rem;
  }
}
body.gaming-theme-2024 .m06 .block-grids .grids.grids-horizontal {
  border-top: none;
  border-bottom: none;
}
body.gaming-theme-2024 .m09 .block-grids {
  display: none;
}
body.gaming-theme-2024 .m09 .gfield .ginput_container_select:after, body.gaming-theme-2024 .m09 .m18__filter-wrap .ginput_container_select:after, body.gaming-theme-2024 .m09 .archive-container__filter-wrap .ginput_container_select:after {
  background-image: url(./assets/svg/ico_select_blue.svg);
}
body.gaming-theme-2024 .m11 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  margin-bottom: 0rem;
}
@media (min-width: 810px) {
  body.gaming-theme-2024 .m11 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
body.gaming-theme-2024 .m11 .block-grids .grids.grids-horizontal {
  border-bottom: none;
}
body.gaming-theme-2024 .m11 .block-grids .grids.grids-vertical:before {
  content: "";
  position: absolute;
  width: 400px;
  height: 1rem;
  background: url(assets/gaming/grid-element-blue.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  bottom: 2.5rem;
  left: -1.6rem;
  transform-origin: left;
  transform: rotate(-90deg);
}
@media (min-width: 810px) {
  body.gaming-theme-2024 .m11 .block-grids .grids.grids-vertical:before {
    height: 1.5rem;
    bottom: 4.5rem;
    left: -2rem;
  }
}
body.gaming-theme-2024 .m11 .m11__media:before {
  content: "";
  position: absolute;
  z-index: -1;
  animation: float 5s ease infinite forwards;
  background-image: url(./assets/gaming/arrows-blue-left.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 150%;
  height: 150%;
  right: -10rem;
  bottom: -8rem;
  pointer-events: none;
}
@media (min-width: 810px) {
  body.gaming-theme-2024 .m11 .m11__media:before {
    right: -20rem;
    bottom: unset;
  }
}
@media (min-width: 1440px) {
  body.gaming-theme-2024 .m11 .m11__media {
    left: calc(50vw - 42rem);
  }
}
body.gaming-theme-2024 .m11 .m11__content:before {
  content: "";
  position: absolute;
  z-index: -1;
  animation: float 5s ease infinite forwards;
  background-image: url(./assets/gaming/donut-blue.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40%;
  height: 40%;
  right: -4rem;
  top: 0;
  pointer-events: none;
  rotate: 30deg;
}
body.gaming-theme-2024 .m11 ~ .m11 .m11__content:before {
  display: none;
}
body.gaming-theme-2024 .m27 {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (min-width: 810px) {
  body.gaming-theme-2024 .m27 {
    padding-top: 7rem;
    padding-bottom: 6.85rem;
  }
}
body.gaming-theme-2024 .m27 .block-grids .grids.grids-horizontal {
  border-bottom: none;
}
body.gaming-theme-2024 .m27 .heading--1 {
  font-size: 5.36rem;
  font-size: 20vw;
}
@media (min-width: 810px) {
  body.gaming-theme-2024 .m27 .heading--1 {
    font-size: 8rem;
  }
}
body.gaming-theme-2024 .m47 .m47__media {
  scale: 1.3;
}
body.gaming-theme-2024 .m47 .m47__media:before {
  background-color: transparent;
  background-image: url(./assets/gaming/arrows-blue-right.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 150%;
  height: 150%;
  left: -10rem;
  bottom: -8rem;
  pointer-events: none;
}
@media (min-width: 810px) {
  body.gaming-theme-2024 .m47 .m47__media:before {
    left: -22rem;
    bottom: -10rem;
  }
}
@media (min-width: 1440px) {
  body.gaming-theme-2024 .m47 .m47__media {
    scale: 1.4;
    left: -3rem;
  }
}
body.gaming-theme-2024 .m47--left .m47__media:before {
  background-image: url(./assets/gaming/arrows-blue-left.png);
  left: auto;
  right: -10rem;
}
@media (min-width: 810px) {
  body.gaming-theme-2024 .m47--left .m47__media:before {
    right: -22rem;
  }
}
@media (min-width: 1440px) {
  body.gaming-theme-2024 .m47--left .m47__media {
    left: auto;
    right: -3rem;
  }
}
body.gaming-theme-2024 .m47 .m47__details .wp-block-gallery {
  background: var(--primary-color);
  padding: 1rem 0;
}
@media (min-width: 810px) {
  body.gaming-theme-2024 .m47 .m47__details .wp-block-gallery {
    padding-left: 1rem;
  }
  body.gaming-theme-2024 .m47 .m47__details .wp-block-gallery:before {
    content: "";
    position: absolute;
    width: 12rem;
    height: 100%;
    right: calc(100% - 7rem);
    top: 0;
    background: var(--primary-color);
    transform: skew(-40deg);
  }
}
body.gaming-theme-2024 .m47 .m47__details .wp-block-gallery .wp-block-image img {
  max-width: 228px !important;
}
body.gaming-theme-2024 .m47 .m47__details .wp-block-gallery:after {
  content: "";
  position: absolute;
  z-index: -1;
  animation: float 5s ease infinite forwards;
  background-image: url(./assets/gaming/donut-blue.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20rem;
  height: 20rem;
  right: -7rem;
  top: -7rem;
  pointer-events: none;
  rotate: 30deg;
}
@media (min-width: 810px) {
  body.gaming-theme-2024 .m47 .m47__details .wp-block-gallery:after {
    width: 25rem;
    height: 25rem;
    right: unset;
    left: -47vw;
    top: -4rem;
  }
}
body.gaming-theme-2024 .m47 .m47__details .wp-block-gallery ~ .wp-block-gallery:after {
  display: none;
}
body.gaming-theme-2024 .m47b {
  padding-top: 7rem;
  padding-bottom: 7rem;
  margin-top: 0;
  margin-bottom: 0;
  transition: background-color 0.5s ease;
}
@media (min-width: 810px) {
  body.gaming-theme-2024 .m47b {
    padding-top: 6rem;
    padding-bottom: 8rem;
    overflow: hidden;
  }
}
body.gaming-theme-2024 .m47b .block-grids .grids.grids-horizontal:before {
  content: "";
  position: absolute;
  width: 300px;
  height: 1rem;
  background: url(./assets/gaming/grid-element-blue.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  top: -2rem;
  right: 6rem;
}
@media (min-width: 810px) {
  body.gaming-theme-2024 .m47b .block-grids .grids.grids-horizontal:before {
    top: -2.5rem;
  }
}
body.gaming-theme-2024 .m47b .block-grids .grids.grids-horizontal:after {
  content: "";
  position: absolute;
  width: 300px;
  height: 0.7rem;
  background: url(./assets/gaming/grid-rectangles-blue.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  bottom: -2rem;
  left: 8rem;
}
@media (min-width: 810px) {
  body.gaming-theme-2024 .m47b .block-grids .grids.grids-horizontal:after {
    bottom: -2.5rem;
  }
}
body.gaming-theme-2024 .m47b--dark .block-grids .grids.grids-horizontal {
  border-top-color: color-mix(in srgb, #FFFFFF 30%, transparent);
  border-bottom-color: color-mix(in srgb, #FFFFFF 30%, transparent);
}
body.gaming-theme-2024 .m47b--dark .block-grids .grids.grids-horizontal:before {
  background-image: url(./assets/gaming/grid-element-white.png);
}
body.gaming-theme-2024 .m47b--dark .block-grids .grids.grids-horizontal:after {
  background-image: url(./assets/gaming/grid-rectangles-white.png);
}
@media (min-width: 810px) {
  body.gaming-theme-2024 .m47b--dark .block-grids .grids.grids-horizontal {
    border-top-color: #FFFFFF;
    border-bottom-color: #FFFFFF;
  }
}
body.gaming-theme-2024 .m47b--dark .block-grids .grids.grids-vertical {
  border-left-color: color-mix(in srgb, #FFFFFF 30%, transparent);
  border-right-color: color-mix(in srgb, #FFFFFF 30%, transparent);
}
@media (min-width: 810px) {
  body.gaming-theme-2024 .m47b--dark .block-grids .grids.grids-vertical {
    border-left-color: #FFFFFF;
    border-right-color: #FFFFFF;
  }
}
body.gaming-theme-2024 .m47b--dark .m47 .m47__media:before {
  background-image: url(./assets/gaming/arrows-white-right.png);
}
body.gaming-theme-2024 .m47b--dark .m47--left .m47__media:before {
  background-image: url(./assets/gaming/arrows-white-left.png);
}
body.gaming-theme-2024 .m47b--dark .m05 .m05__media:before {
  background-image: url(./assets/gaming/arrows-white-right.png);
}
body.gaming-theme-2024 .m47b--dark .m05--left .m05__media:before {
  background-image: url(./assets/gaming/arrows-white-left.png);
}

/*# sourceMappingURL=style.css.map */
