/*!********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!../../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./assets/src/main/scss/index.scss ***!
  \********************************************************************************************************************************************************************************************************************************************************************/
/* ==========================================================================
   Base Styles
   ========================================================================== */
*,
::after,
::before {
  box-sizing: border-box;
}

html {
  font-size: calc(var(--size-text) * 0.9);
}
@media only screen and (min-width: 1024px) {
  html {
    font-size: var(--size-text);
  }
}

body {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  line-height: 1;
  font-optical-sizing: auto;
  color: var(--color-text);
  background: var(--bg-primary);
}

figure {
  padding: 0;
  margin: 0;
}

img {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  border: none;
  margin: 0;
  padding: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

table {
  border-collapse: collapse;
  border: none;
  width: 100%;
}
table th,
table td {
  border: 1px solid var(--color-border);
  padding: 1rem 0.8rem;
}

hr {
  width: 100%;
  height: 1px;
  border: none;
  background-color: var(--color-border);
  margin-top: 2em;
  margin-bottom: 2em;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family);
  color: var(--color-title);
  font-style: normal;
  line-height: 1.2;
  width: 100%;
  margin: 0;
  padding: 0;
}

h1 {
  font-weight: 600;
  font-size: 2.4em;
}

h2 {
  font-weight: 600;
  font-size: 2em;
}

h3 {
  font-weight: 500;
  font-size: 1.6em;
}

h4 {
  font-weight: 500;
  font-size: 1.2em;
}

h5 {
  font-weight: 500;
  font-size: 1em;
}

h6 {
  font-weight: 500;
  font-size: 0.8em;
}

ul,
ol,
li,
dl,
dt,
dd,
p {
  color: var(--color-text);
  font-size: 1em;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  padding: 0;
  margin: 0;
}

ul,
ol,
li {
  list-style: none;
}

a {
  outline: none;
  text-decoration: none;
  color: var(--color-text);
}
a:hover {
  color: var(--color-link-hover);
}

main a {
  color: var(--color-primary);
}

/* ==========================================================================
   Scrollbar
   ========================================================================== */
/* WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: calc(var(--size-radius) * 2);
}

::-webkit-scrollbar-thumb:hover {
  cursor: pointer;
}

/* ==========================================================================
   Forms
   ========================================================================== */
fieldset,
form,
label {
  width: 100%;
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
}

form {
  max-width: 1024px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

select,
button,
input,
textarea,
option {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: normal;
  line-height: 1;
  margin: 0;
  outline: none;
}

select,
input,
textarea,
option {
  width: 100%;
  padding: 0.6rem;
  border-radius: calc(var(--size-radius) * 1.5);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  background-color: var(--bg-event-element);
}

input[type=submit],
input[type=button],
button {
  border-radius: calc(var(--size-radius) * 1.5);
  border: 1px solid var(--color-primary);
  color: var(--color-text);
  background-color: transparent;
}

label,
select,
input[type=submit],
input[type=button],
button {
  cursor: pointer;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=number],
textarea {
  cursor: text;
}
input[type=text]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=number]::-moz-placeholder, textarea::-moz-placeholder {
  font-family: var(--font-family);
  font-size: var(--size-text);
  font-weight: normal;
  line-height: 1;
  color: var(--color-text);
  opacity: 0.4;
}
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
textarea::placeholder {
  font-family: var(--font-family);
  font-size: var(--size-text);
  font-weight: normal;
  line-height: 1;
  color: var(--color-text);
  opacity: 0.4;
}

textarea {
  resize: vertical;
  line-height: 1.6;
  min-height: 100px;
}

.buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 0.6em;
  font-size: 1rem;
}
@media only screen and (min-width: 1024px) {
  .buttons {
    font-size: 1.15rem;
  }
}

.button-primary.button-primary {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  gap: 10px;
  text-transform: uppercase;
  transition: 0.2s ease-in-out;
  min-height: 46px;
  position: relative;
}
.button-primary.button-primary::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M14.3698 11.7042C15.2294 10.9971 15.2619 9.69194 14.4384 8.94298L8.55475 3.59177C7.38182 2.52498 5.5 3.35719 5.5 4.94269V15.1335C5.5 16.6762 7.29464 17.5238 8.48612 16.5438L14.3698 11.7042Z" fill="%23181818"/%3E%3C/svg%3E');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.button-primary {
  color: var(--color-button-title);
  background: var(--bg-button);
  border: 1px solid var(--color-primary);
}
.button-primary:hover {
  color: var(--color-button-title);
  background: var(--color-link-hover);
  border-color: var(--color-link-hover);
}
.button-primary svg {
  height: 2em;
  width: auto;
}
.button-primary svg path {
  fill: var(--color-button-title);
  stroke: var(--color-button-title);
}
.button-primary {
  height: auto;
  width: auto;
  padding: 0.8rem 1rem;
  border-radius: calc(var(--size-radius) * 2);
}
@media only screen and (min-width: 1024px) {
  .button-primary {
    padding: 8px 20px;
  }
}

.button-primary-small.button-primary {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  gap: 10px;
  text-transform: uppercase;
  transition: 0.2s ease-in-out;
  min-height: 46px;
  position: relative;
}
.button-primary-small.button-primary::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M14.3698 11.7042C15.2294 10.9971 15.2619 9.69194 14.4384 8.94298L8.55475 3.59177C7.38182 2.52498 5.5 3.35719 5.5 4.94269V15.1335C5.5 16.6762 7.29464 17.5238 8.48612 16.5438L14.3698 11.7042Z" fill="%23181818"/%3E%3C/svg%3E');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.button-primary-small {
  color: var(--color-button-title);
  background: var(--bg-button);
  border: 1px solid var(--color-primary);
}
.button-primary-small:hover {
  color: var(--color-button-title);
  background: var(--color-link-hover);
  border-color: var(--color-link-hover);
}
.button-primary-small svg {
  height: 2em;
  width: auto;
}
.button-primary-small svg path {
  fill: var(--color-button-title);
  stroke: var(--color-button-title);
}
.button-primary-small {
  height: auto;
  width: auto;
  padding: 0.8rem 1rem;
  border-radius: calc(var(--size-radius) * 2);
}
@media only screen and (min-width: 1024px) {
  .button-primary-small {
    padding: 8px 20px;
  }
}
.button-primary-small {
  font-size: 1rem;
  padding: 0.58rem 0.85rem;
}

.button-primary-round.button-primary {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  gap: 10px;
  text-transform: uppercase;
  transition: 0.2s ease-in-out;
  min-height: 46px;
  position: relative;
}
.button-primary-round.button-primary::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M14.3698 11.7042C15.2294 10.9971 15.2619 9.69194 14.4384 8.94298L8.55475 3.59177C7.38182 2.52498 5.5 3.35719 5.5 4.94269V15.1335C5.5 16.6762 7.29464 17.5238 8.48612 16.5438L14.3698 11.7042Z" fill="%23181818"/%3E%3C/svg%3E');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.button-primary-round {
  color: var(--color-button-title);
  background: var(--bg-button);
  border: 1px solid var(--color-primary);
}
.button-primary-round:hover {
  color: var(--color-button-title);
  background: var(--color-link-hover);
  border-color: var(--color-link-hover);
}
.button-primary-round svg {
  height: 2em;
  width: auto;
}
.button-primary-round svg path {
  fill: var(--color-button-title);
  stroke: var(--color-button-title);
}
.button-primary-round {
  height: 3rem;
  width: 3rem;
  padding: 0;
  border-radius: 50%;
}
@media only screen and (min-width: 1024px) {
  .button-primary-round {
    padding: 0;
  }
}

.button-secondary.button-primary {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  gap: 10px;
  text-transform: uppercase;
  transition: 0.2s ease-in-out;
  min-height: 46px;
  position: relative;
}
.button-secondary.button-primary::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M14.3698 11.7042C15.2294 10.9971 15.2619 9.69194 14.4384 8.94298L8.55475 3.59177C7.38182 2.52498 5.5 3.35719 5.5 4.94269V15.1335C5.5 16.6762 7.29464 17.5238 8.48612 16.5438L14.3698 11.7042Z" fill="%23181818"/%3E%3C/svg%3E');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.button-secondary {
  color: var(--color-title);
  background: transparent;
  border: 1px solid var(--color-primary);
}
.button-secondary:hover {
  color: var(--color-title);
  background: var(--bg-button-hover);
  border-color: var(--color-primary);
}
.button-secondary svg {
  height: 2em;
  width: auto;
}
.button-secondary svg path {
  fill: var(--color-title);
  stroke: var(--color-title);
}
.button-secondary {
  height: auto;
  width: auto;
  padding: 0.8rem 1rem;
  border-radius: calc(var(--size-radius) * 2);
}
@media only screen and (min-width: 1024px) {
  .button-secondary {
    padding: 8px 20px;
  }
}

.button-secondary-small.button-primary {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  gap: 10px;
  text-transform: uppercase;
  transition: 0.2s ease-in-out;
  min-height: 46px;
  position: relative;
}
.button-secondary-small.button-primary::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M14.3698 11.7042C15.2294 10.9971 15.2619 9.69194 14.4384 8.94298L8.55475 3.59177C7.38182 2.52498 5.5 3.35719 5.5 4.94269V15.1335C5.5 16.6762 7.29464 17.5238 8.48612 16.5438L14.3698 11.7042Z" fill="%23181818"/%3E%3C/svg%3E');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.button-secondary-small {
  color: var(--color-title);
  background: transparent;
  border: 1px solid var(--color-primary);
}
.button-secondary-small:hover {
  color: var(--color-title);
  background: var(--bg-button-hover);
  border-color: var(--color-primary);
}
.button-secondary-small svg {
  height: 2em;
  width: auto;
}
.button-secondary-small svg path {
  fill: var(--color-title);
  stroke: var(--color-title);
}
.button-secondary-small {
  height: auto;
  width: auto;
  padding: 0.8rem 1rem;
  border-radius: calc(var(--size-radius) * 2);
}
@media only screen and (min-width: 1024px) {
  .button-secondary-small {
    padding: 8px 20px;
  }
}
.button-secondary-small {
  font-size: 1rem;
  padding: 0.58rem 0.85rem;
}

.button-custom.button-primary {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  gap: 10px;
  text-transform: uppercase;
  transition: 0.2s ease-in-out;
  min-height: 46px;
  position: relative;
}
.button-custom.button-primary::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M14.3698 11.7042C15.2294 10.9971 15.2619 9.69194 14.4384 8.94298L8.55475 3.59177C7.38182 2.52498 5.5 3.35719 5.5 4.94269V15.1335C5.5 16.6762 7.29464 17.5238 8.48612 16.5438L14.3698 11.7042Z" fill="%23181818"/%3E%3C/svg%3E');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.button-custom {
  color: var(--color-button-title);
  background: var(--bg-button);
  border: 1px solid var(--color-primary);
}
.button-custom:hover {
  color: var(--color-button-title);
  background: var(--color-link-hover);
  border-color: var(--color-link-hover);
}
.button-custom svg {
  height: 2em;
  width: auto;
}
.button-custom svg path {
  fill: var(--color-button-title);
  stroke: var(--color-button-title);
}
.button-custom {
  height: auto;
  width: auto;
  padding: 0.8rem 1rem;
  border-radius: calc(var(--size-radius) * 2);
}
@media only screen and (min-width: 1024px) {
  .button-custom {
    padding: 8px 20px;
  }
}

.display-none {
  display: none !important;
}

.display-flex {
  display: flex;
}

.width-5 {
  width: 5%;
}

.opacity-5 {
  opacity: 0.05;
}

.width-10 {
  width: 10%;
}

.opacity-10 {
  opacity: 0.1;
}

.width-15 {
  width: 15%;
}

.opacity-15 {
  opacity: 0.15;
}

.width-20 {
  width: 20%;
}

.opacity-20 {
  opacity: 0.2;
}

.width-25 {
  width: 25%;
}

.opacity-25 {
  opacity: 0.25;
}

.width-30 {
  width: 30%;
}

.opacity-30 {
  opacity: 0.3;
}

.width-35 {
  width: 35%;
}

.opacity-35 {
  opacity: 0.35;
}

.width-40 {
  width: 40%;
}

.opacity-40 {
  opacity: 0.4;
}

.width-45 {
  width: 45%;
}

.opacity-45 {
  opacity: 0.45;
}

.width-50 {
  width: 50%;
}

.opacity-50 {
  opacity: 0.5;
}

.width-55 {
  width: 55%;
}

.opacity-55 {
  opacity: 0.55;
}

.width-60 {
  width: 60%;
}

.opacity-60 {
  opacity: 0.6;
}

.width-65 {
  width: 65%;
}

.opacity-65 {
  opacity: 0.65;
}

.width-70 {
  width: 70%;
}

.opacity-70 {
  opacity: 0.7;
}

.width-75 {
  width: 75%;
}

.opacity-75 {
  opacity: 0.75;
}

.width-80 {
  width: 80%;
}

.opacity-80 {
  opacity: 0.8;
}

.width-85 {
  width: 85%;
}

.opacity-85 {
  opacity: 0.85;
}

.width-90 {
  width: 90%;
}

.opacity-90 {
  opacity: 0.9;
}

.width-95 {
  width: 95%;
}

.opacity-95 {
  opacity: 0.95;
}

.width-100 {
  width: 100%;
}

.opacity-100 {
  opacity: 1;
}

.margin-top-1 {
  margin-top: 0.2em;
}

.margin-bottom-1 {
  margin-bottom: 0.2em;
}

.margin-left-1 {
  margin-left: 0.2em;
}

.margin-right-1 {
  margin-right: 0.2em;
}

.padding-top-1 {
  padding-top: 0.2em;
}

.padding-bottom-1 {
  padding-bottom: 0.2em;
}

.padding-left-1 {
  padding-left: 0.2em;
}

.padding-right-1 {
  padding-right: 0.2em;
}

.margin-top-2 {
  margin-top: 0.4em;
}

.margin-bottom-2 {
  margin-bottom: 0.4em;
}

.margin-left-2 {
  margin-left: 0.4em;
}

.margin-right-2 {
  margin-right: 0.4em;
}

.padding-top-2 {
  padding-top: 0.4em;
}

.padding-bottom-2 {
  padding-bottom: 0.4em;
}

.padding-left-2 {
  padding-left: 0.4em;
}

.padding-right-2 {
  padding-right: 0.4em;
}

.margin-top-3 {
  margin-top: 0.6em;
}

.margin-bottom-3 {
  margin-bottom: 0.6em;
}

.margin-left-3 {
  margin-left: 0.6em;
}

.margin-right-3 {
  margin-right: 0.6em;
}

.padding-top-3 {
  padding-top: 0.6em;
}

.padding-bottom-3 {
  padding-bottom: 0.6em;
}

.padding-left-3 {
  padding-left: 0.6em;
}

.padding-right-3 {
  padding-right: 0.6em;
}

.margin-top-4 {
  margin-top: 0.8em;
}

.margin-bottom-4 {
  margin-bottom: 0.8em;
}

.margin-left-4 {
  margin-left: 0.8em;
}

.margin-right-4 {
  margin-right: 0.8em;
}

.padding-top-4 {
  padding-top: 0.8em;
}

.padding-bottom-4 {
  padding-bottom: 0.8em;
}

.padding-left-4 {
  padding-left: 0.8em;
}

.padding-right-4 {
  padding-right: 0.8em;
}

.margin-top-5 {
  margin-top: 1em;
}

.margin-bottom-5 {
  margin-bottom: 1em;
}

.margin-left-5 {
  margin-left: 1em;
}

.margin-right-5 {
  margin-right: 1em;
}

.padding-top-5 {
  padding-top: 1em;
}

.padding-bottom-5 {
  padding-bottom: 1em;
}

.padding-left-5 {
  padding-left: 1em;
}

.padding-right-5 {
  padding-right: 1em;
}

.margin-top-10 {
  margin-top: 2em;
}

.margin-bottom-10 {
  margin-bottom: 2em;
}

.margin-left-10 {
  margin-left: 2em;
}

.margin-right-10 {
  margin-right: 2em;
}

.padding-top-10 {
  padding-top: 2em;
}

.padding-bottom-10 {
  padding-bottom: 2em;
}

.padding-left-10 {
  padding-left: 2em;
}

.padding-right-10 {
  padding-right: 2em;
}

.margin-top-15 {
  margin-top: 3em;
}

.margin-bottom-15 {
  margin-bottom: 3em;
}

.margin-left-15 {
  margin-left: 3em;
}

.margin-right-15 {
  margin-right: 3em;
}

.padding-top-15 {
  padding-top: 3em;
}

.padding-bottom-15 {
  padding-bottom: 3em;
}

.padding-left-15 {
  padding-left: 3em;
}

.padding-right-15 {
  padding-right: 3em;
}

.margin-top-20 {
  margin-top: 4em;
}

.margin-bottom-20 {
  margin-bottom: 4em;
}

.margin-left-20 {
  margin-left: 4em;
}

.margin-right-20 {
  margin-right: 4em;
}

.padding-top-20 {
  padding-top: 4em;
}

.padding-bottom-20 {
  padding-bottom: 4em;
}

.padding-left-20 {
  padding-left: 4em;
}

.padding-right-20 {
  padding-right: 4em;
}

.margin-top-25 {
  margin-top: 5em;
}

.margin-bottom-25 {
  margin-bottom: 5em;
}

.margin-left-25 {
  margin-left: 5em;
}

.margin-right-25 {
  margin-right: 5em;
}

.padding-top-25 {
  padding-top: 5em;
}

.padding-bottom-25 {
  padding-bottom: 5em;
}

.padding-left-25 {
  padding-left: 5em;
}

.padding-right-25 {
  padding-right: 5em;
}

.logo-general {
  display: flex;
  align-items: center;
  justify-content: left;
  width: 100%;
  max-width: 186px;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .logo-general {
    max-width: 136px;
  }
}
@media only screen and (min-width: 1280px) {
  .logo-general.desktop {
    display: none;
  }
}

.menus-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  gap: 2em;
}
@media only screen and (min-width: 1024px) {
  .menus-column {
    flex-direction: column;
    gap: 1em 2em;
  }
}
.menus-column > * {
  min-width: auto;
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: start;
  flex: 1 1 auto;
  gap: 1em;
}

.menus-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  gap: 2em;
}
@media only screen and (min-width: 1024px) {
  .menus-row {
    flex-direction: row;
    gap: 1em 2em;
  }
}
.menus-row > * {
  min-width: auto;
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: start;
  flex: 1 1 auto;
  gap: 1em;
}
.menus-row > * .menu-column .menu-item > *:not(ul) {
  opacity: 0.5;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
}
.menus-row > * .menu-column .menu-item > *:not(ul):hover {
  opacity: 1;
}

.menu:not(.menu-column, .menu-row),
.menu-column {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  width: 100%;
}
@media only screen and (min-width: 1280px) {
  .menu:not(.menu-column, .menu-row),
  .menu-column {
    flex-direction: column;
    align-items: start;
    justify-content: flex-end;
  }
}
.menu:not(.menu-column, .menu-row).menu-label .menu-item > *:not(ul),
.menu-column.menu-label .menu-item > *:not(ul) {
  text-decoration: none;
  font-size: 18px;
  line-height: 120%;
  font-weight: 500;
  transition: color 0.3s ease;
  text-transform: uppercase;
  padding: 0;
}
.menu:not(.menu-column, .menu-row).menu-label .menu-item.current-menu-item > *:not(ul),
.menu-column.menu-label .menu-item.current-menu-item > *:not(ul) {
  background-color: var(--bg-event-element-active);
}
.menu:not(.menu-column, .menu-row).menu-label .menu-item > *:not(ul),
.menu-column.menu-label .menu-item > *:not(ul) {
  background-color: var(--bg-event-element);
}
.menu:not(.menu-column, .menu-row) .menu-item,
.menu-column .menu-item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.menu:not(.menu-column, .menu-row) .menu-item.current-menu-item,
.menu-column .menu-item.current-menu-item {
  color: var(--color-primary);
}
.menu:not(.menu-column, .menu-row) .menu-item.current-menu-item svg path,
.menu-column .menu-item.current-menu-item svg path {
  fill: var(--color-primary);
}
.menu:not(.menu-column, .menu-row) .menu-item.menu-item-has-children > *:is(ul),
.menu-column .menu-item.menu-item-has-children > *:is(ul) {
  display: none;
  flex-direction: column;
  margin-top: 1px;
  min-width: -moz-max-content;
  min-width: max-content;
  width: 100%;
  border-radius: var(--size-radius);
  position: initial;
  z-index: 100;
  left: 0;
  top: 2.5em;
  background-color: var(--bg-event-element);
}
.menu:not(.menu-column, .menu-row) .menu-item.menu-item-has-children > *:is(ul) li > *:not(ul),
.menu-column .menu-item.menu-item-has-children > *:is(ul) li > *:not(ul) {
  padding-left: 0.65em;
  padding-right: 0.65em;
}
.menu:not(.menu-column, .menu-row) .menu-item > *:not(ul),
.menu-column .menu-item > *:not(ul) {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6em;
  padding-top: 0.65em;
  padding-bottom: 0.65em;
  height: 100%;
  border-radius: var(--size-radius);
}
.menu:not(.menu-column, .menu-row) .menu-item > *:not(ul):hover .menu-icon svg path,
.menu-column .menu-item > *:not(ul):hover .menu-icon svg path {
  fill: var(--color-primary);
}
.menu:not(.menu-column, .menu-row) .menu-item > *:not(ul):hover .menu-title,
.menu-column .menu-item > *:not(ul):hover .menu-title {
  color: var(--color-primary);
}
.menu:not(.menu-column, .menu-row) .menu-icon,
.menu-column .menu-icon {
  height: 24px;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
}
.menu:not(.menu-column, .menu-row) .menu-icon svg path,
.menu-column .menu-icon svg path {
  fill: var(--color-title);
}
.menu:not(.menu-column, .menu-row) .menu-icon img,
.menu-column .menu-icon img {
  height: -moz-min-content;
  height: min-content;
}
.menu:not(.menu-column, .menu-row) .menu-locale,
.menu-column .menu-locale {
  display: none;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
}
.menu:not(.menu-column, .menu-row) .menu-title,
.menu-column .menu-title {
  display: flex;
  white-space: wrap;
  color: var(--color-link);
  transition: color 0.3s ease;
}
@media only screen and (min-width: 1440px) {
  .menu:not(.menu-column, .menu-row) .menu-title,
  .menu-column .menu-title {
    white-space: nowrap;
  }
}

.menu-row {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  width: 100%;
}
@media only screen and (min-width: 1280px) {
  .menu-row {
    flex-direction: row;
    align-items: start;
    justify-content: flex-end;
  }
}
.menu-row.menu-label .menu-item > *:not(ul) {
  text-decoration: none;
  font-size: 18px;
  line-height: 120%;
  font-weight: 500;
  transition: color 0.3s ease;
  text-transform: uppercase;
  padding: 0;
}
.menu-row.menu-label .menu-item.current-menu-item > *:not(ul) {
  background-color: var(--bg-event-element-active);
}
.menu-row .menu-item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: auto;
}
.menu-row .menu-item.current-menu-item {
  color: var(--color-primary);
}
.menu-row .menu-item.current-menu-item svg path {
  fill: var(--color-primary);
}
.menu-row .menu-item.menu-item-has-children > *:is(ul) {
  display: none;
  flex-direction: row;
  margin-top: 1px;
  min-width: -moz-max-content;
  min-width: max-content;
  width: 100%;
  border-radius: var(--size-radius);
  position: initial;
  z-index: 100;
  left: 0;
  top: 2.5em;
  background-color: var(--bg-event-element);
}
.menu-row .menu-item.menu-item-has-children > *:is(ul) li > *:not(ul) {
  padding-left: 0.65em;
  padding-right: 0.65em;
}
.menu-row .menu-item > *:not(ul) {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6em;
  padding-top: 0.65em;
  padding-bottom: 0.65em;
  height: 100%;
  border-radius: var(--size-radius);
}
.menu-row .menu-item > *:not(ul):hover .menu-icon svg path {
  fill: var(--color-primary);
}
.menu-row .menu-item > *:not(ul):hover .menu-title {
  color: var(--color-primary);
}
.menu-row .menu-icon {
  height: 24px;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
}
.menu-row .menu-icon svg path {
  fill: var(--color-title);
}
.menu-row .menu-icon img {
  height: -moz-min-content;
  height: min-content;
}
.menu-row .menu-locale {
  display: none;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
}
.menu-row .menu-title {
  display: flex;
  white-space: wrap;
  color: var(--color-link);
  transition: color 0.3s ease;
}
@media only screen and (min-width: 1440px) {
  .menu-row .menu-title {
    white-space: nowrap;
  }
}

header .menu-row .menu-item.menu-item-has-children .menu-icon + .menu-title,
header .menu-column .menu-item.menu-item-has-children .menu-icon + .menu-title,
header .menu:not(.menu-column, .menu-row) .menu-item.menu-item-has-children .menu-icon + .menu-title {
  display: none;
}
@media only screen and (min-width: 576px) {
  header .menu-row .menu-item.menu-item-has-children .menu-icon + .menu-title,
  header .menu-column .menu-item.menu-item-has-children .menu-icon + .menu-title,
  header .menu:not(.menu-column, .menu-row) .menu-item.menu-item-has-children .menu-icon + .menu-title {
    display: flex;
  }
}
header .menu-row .menu-item.menu-item-has-children > ul,
header .menu-column .menu-item.menu-item-has-children > ul,
header .menu:not(.menu-column, .menu-row) .menu-item.menu-item-has-children > ul {
  position: absolute;
}

.toggled .menu .menu-item {
  text-align: center;
  justify-content: center;
}
.toggled .menu .menu-item > *:not(ul) {
  padding-left: 0;
  padding-right: 0;
  gap: 0;
  justify-content: center;
}
.toggled .menu .menu-item > *:not(ul)::after {
  display: none;
}
.toggled .menu .menu-locale {
  font-size: 1em;
  display: flex;
}
.toggled .menu .menu-title {
  font-size: 0;
}

.nav-general {
  display: flex;
  align-items: center;
  flex: auto;
  justify-content: flex-end;
}
@media only screen and (min-width: 1280px) {
  .nav-general {
    order: initial;
  }
}
.nav-general__mobile-addition {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
}
@media only screen and (min-width: 1280px) {
  .nav-general__mobile-addition {
    display: none;
  }
}
.nav-general button + nav {
  display: flex;
  align-items: center;
  gap: 10px !important;
}
@media (max-width: 1280px) {
  .nav-general button + nav {
    display: none;
    position: absolute;
    z-index: 1000;
    top: calc(var(--size-header) - 1px);
    left: 0;
    height: 100vh;
    width: 100%;
    padding: 110px 15px 10px 10px;
    background: transparent;
    overflow-y: auto;
    flex-direction: column-reverse;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 40px !important;
  }
}
.nav-general button + nav .menu-row {
  width: auto;
}
.nav-general button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
  z-index: 1001;
}
@media only screen and (min-width: 1280px) {
  .nav-general button {
    display: none;
  }
}
.nav-general button .trait {
  display: block;
  width: 31px;
  height: 3px;
  position: relative;
  border-radius: 2px;
  top: 0;
  right: 0;
  margin: 3px 0;
  background: rgb(from var(--bg-primary) calc(r + 46) calc(g + 162) calc(b + 10));
  transition: 0.25s ease-in-out;
}
.nav-general button .open {
  display: block;
}
.nav-general button .close {
  display: none;
  rotate: 180deg;
}
.nav-general button.toggled .trait:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
  margin: 0;
}
.nav-general button.toggled .trait:nth-child(2) {
  margin: 0;
  transform: rotate(45deg) translate(3px, 2px);
}
.nav-general button.toggled .trait:nth-child(3) {
  opacity: 0;
}
.nav-general button.toggled .open {
  display: none;
}
.nav-general button.toggled .close {
  display: block;
}
.nav-general button.toggled + * {
  top: 0;
  left: 0;
  display: flex;
  width: 100vw;
  height: 100vh;
  position: fixed !important;
  background: rgb(from var(--bg-primary) calc(r + 21) calc(g - 4) calc(b + 24));
}

/* ==========================================================================
   Container, Content
   ========================================================================== */
.container-general {
  width: 100%;
  max-width: var(--width-container);
  display: flex;
  justify-content: space-between;
}

.content-general {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

/* ==========================================================================
   Header, Sidebar
   ========================================================================== */
.header-general {
  display: flex;
  justify-content: center;
  width: 100%;
  height: var(--size-header);
  position: sticky;
  z-index: 10;
  top: 0;
  left: 0;
  background: var(--bg-header);
  border-top: 1px solid var(--bg-header);
  border-bottom: 1px solid var(--color-border-frame);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1280px) {
  .header-general {
    height: 59px;
  }
}
@media only screen and (min-width: 601px) {
  .header-general {
    position: fixed;
    top: var(--admin-bar-mob, 0);
  }
}
@media only screen and (min-width: 783px) {
  .header-general {
    top: var(--wp-admin--admin-bar--height, 0);
  }
}
.header-general__sub {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  padding-left: calc(var(--size-padding) * 0.5);
  padding-right: calc(var(--size-padding) * 0.5);
  gap: var(--size-padding);
}
@media only screen and (min-width: 1024px) {
  .header-general__sub {
    padding-left: var(--size-padding);
    padding-right: var(--size-padding);
  }
}
.header-general__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--width-content);
  gap: 22px;
}
.header-general__content .header-additional-blocks {
  display: flex;
  align-items: center;
  gap: 22px;
}
@media (max-width: 1280px) {
  .header-general__content .header-additional-blocks {
    display: none;
  }
}

.sidebar-general {
  display: none;
  position: relative;
  z-index: 1000;
  width: 100%;
  max-width: var(--width-sidebar);
  transition: 0.2s ease-in-out;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width: 1280px) {
  .sidebar-general {
    display: block;
  }
}
.sidebar-general.right {
  order: 2;
}
@media only screen and (min-width: 1280px) {
  .sidebar-general.left + * .header-general__sub {
    padding-left: calc(var(--width-sidebar) + var(--size-padding));
  }
}
@media only screen and (min-width: 1280px) {
  .sidebar-general.right + * .header-general__sub {
    padding-right: calc(var(--width-sidebar) + var(--size-padding));
  }
}
.sidebar-general.toggled {
  max-width: var(--width-sidebar-shrunk);
}
.sidebar-general.toggled .sidebar-general__sub {
  padding: 0 0.25em;
}
.sidebar-general.toggled + * .main,
.sidebar-general.toggled + * .footer {
  max-width: none;
}
@media only screen and (min-width: 1280px) {
  .sidebar-general.toggled.left + * .header-general__sub {
    padding-left: calc(var(--width-sidebar-shrunk) + var(--size-padding));
  }
}
@media only screen and (min-width: 1280px) {
  .sidebar-general.toggled.right + * .header-general__sub {
    padding-right: calc(var(--width-sidebar-shrunk) + var(--size-padding));
  }
}
.sidebar-general__sub {
  font-size: 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: inherit;
  background: var(--bg-sidebar);
  padding: 0 0.6em;
  position: sticky;
  z-index: 1;
  top: var(--admin-bar-mob, 0);
  height: 100vh;
}
@media only screen and (min-width: 783px) {
  .sidebar-general__sub {
    top: var(--admin-bar, 0);
  }
}
.sidebar-general__sub.left {
  left: 0;
  border-right-width: 1px;
}
.sidebar-general__sub.right {
  right: 0;
  border-left-width: 1px;
}
.sidebar-general__head {
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1em;
  min-height: var(--size-header);
}
.sidebar-general__content {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.sidebar-general__toggler {
  transition: 0.2s ease-in-out;
}
.sidebar-general__toggler button.button-primary {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  gap: 10px;
  text-transform: uppercase;
  transition: 0.2s ease-in-out;
  min-height: 46px;
  position: relative;
}
.sidebar-general__toggler button.button-primary::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M14.3698 11.7042C15.2294 10.9971 15.2619 9.69194 14.4384 8.94298L8.55475 3.59177C7.38182 2.52498 5.5 3.35719 5.5 4.94269V15.1335C5.5 16.6762 7.29464 17.5238 8.48612 16.5438L14.3698 11.7042Z" fill="%23181818"/%3E%3C/svg%3E');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.sidebar-general__toggler button {
  color: var(--color-title);
  background: var(--bg-event-element);
  border: 1px solid var(--bg-event-element);
}
.sidebar-general__toggler button:hover {
  color: var(--color-button-title);
  background: var(--color-link-hover);
  border-color: var(--color-link-hover);
}
.sidebar-general__toggler button svg {
  height: 2em;
  width: auto;
}
.sidebar-general__toggler button svg path {
  fill: var(--color-title);
  stroke: var(--color-title);
}
.sidebar-general__toggler button {
  height: 40px;
  width: 40px;
  padding: 0;
  border-radius: var(--size-radius);
}
@media only screen and (min-width: 1024px) {
  .sidebar-general__toggler button {
    padding: 0;
  }
}
.sidebar-general__toggler button svg {
  height: 24px;
  width: auto;
}
.sidebar-general__toggler.left {
  left: calc(var(--width-sidebar) - 40px);
}
.sidebar-general__toggler.left.toggled {
  left: calc(var(--width-sidebar-shrunk) - 40px);
}
.sidebar-general__toggler.left.toggled button {
  rotate: 180deg;
}
.sidebar-general__toggler.right {
  right: calc(var(--width-sidebar) - 40px);
}
.sidebar-general__toggler.right.toggled {
  right: calc(var(--width-sidebar-shrunk) - 40px);
}
.sidebar-general__toggler.right.toggled button {
  rotate: 180deg;
}

/* ==========================================================================
   Main, Footer
   ========================================================================== */
.main-general,
.footer-general {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-left: calc(var(--size-padding) * 0.5);
  padding-right: calc(var(--size-padding) * 0.5);
}
@media only screen and (min-width: 1024px) {
  .main-general,
  .footer-general {
    padding-left: var(--size-padding);
    padding-right: var(--size-padding);
  }
}

.main-general {
  margin-top: var(--size-padding);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (min-width: 601px) {
  .main-general {
    padding-top: var(--size-header);
  }
}
.main-general > * {
  width: 100%;
  max-width: var(--width-content);
}
.main-general > *:not(:first-child) {
  margin-top: var(--size-padding);
}

.footer-general {
  margin-top: calc(var(--size-padding) * 4);
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: var(--bg-footer);
}
.footer-general__sub {
  display: flex;
  justify-content: center;
  width: 100%;
}
.footer-general__content {
  width: 100%;
  max-width: var(--width-content);
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.footer-general__content .wp-block-column:first-child {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.footer-general__content .wp-block-column:first-child > p {
  font-size: 18px;
  text-align: center;
  color: var(--color-link);
}
.footer-general__content .wp-block-column:first-child .custom-logo-link {
  display: block;
  max-width: 229px;
}
@media (max-width: 768px) {
  .footer-general__content .wp-block-column:first-child .custom-logo-link {
    max-width: 130px;
  }
}
.footer-general__content .wp-block-column:first-child .custom-logo-link img {
  display: block;
  width: 100%;
  height: auto;
}
.footer-general__content .wp-block-column:first-child .menus-block .menu {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-general__content .wp-block-column:first-child .menus-block .menu-item > * {
  font-size: 18px;
  color: var(--color-link);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
  padding: 0px;
}
.footer-general__content .wp-block-column:first-child .menus-block .menu-item > *:hover {
  color: var(--color-primary);
}
.footer-general__content > * {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .footer-general__content > *:nth-child(4) {
    grid-column: 1/-1;
  }
}

.has-small-font-size {
  font-size: 0.8em;
}

.has-medium-font-size {
  font-size: 1em;
}

.has-large-font-size {
  font-size: 1.2em;
}

.has-medium-font-size {
  font-size: 1.4em;
}

.size-full {
  width: 100%;
}

.aligncenter {
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  display: flex;
}

.wp-block-table {
  overflow: auto;
}

ul.wp-block-list,
ol.wp-block-list {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
ul.wp-block-list li,
ol.wp-block-list li {
  display: flex;
  gap: 0.5em;
}

ul.wp-block-list li {
  align-items: center;
}
ul.wp-block-list li::before {
  content: "";
  display: flex;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

ol.wp-block-list {
  counter-reset: custom-counter;
}
ol.wp-block-list li {
  align-items: start;
  counter-increment: custom-counter;
}
ol.wp-block-list li::before {
  content: counter(custom-counter) ". ";
  color: var(--color-primary);
}

.wp-block-columns {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
@media only screen and (min-width: 1024px) {
  .wp-block-columns {
    flex-direction: row;
    gap: 5em;
  }
}

.is-layout-flex {
  display: flex;
}

.is-vertically-aligned-center {
  align-self: center;
}

/*# sourceMappingURL=main-development-b26580ee.css.map*/