@charset "utf-8";
/* global fonts*/
@font-face {
  font-family: "Grota";
  src: url("../fonts/Grota-Thin.otf");
  font-weight: 200;
}
@font-face {
  font-family: "Grota";
  src: url("../fonts/Grota-Light.otf");
  font-weight: 300;
}
@font-face {
  font-family: "Grota";
  src: url("../fonts/Grota-Reg.otf");
  font-weight: 400;
}
@font-face {
  font-family: "Grota";
  src: url("../fonts/Grota-Bold.otf");
  font-weight: 600;
}
@font-face {
  font-family: "Grota";
  src: url("../fonts/Grota-ExtraBold.otf");
  font-weight: 700;
}
@font-face {
  font-family: "Grota";
  src: url("../fonts/Grota-Black.otf");
  font-weight: 800;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-ExtraLight.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-ExtraLightItalic.ttf");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-LightItalic.ttf");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Italic.ttf");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-MediumItalic.ttf");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-SemiBoldItalic.ttf");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-BoldItalic.ttf");
  font-weight: 700;
  font-style: italic;
}
/* axial variables*/
/* FRAMEWORK VARIABLES */
:root {
  /* colors */
  --white: #fff;
  --greyLight: #f2f3f4;
  --greyDark: #232323;
  --black: #111;
  --themeColor: #0463b1;
  /* body */
  --body___mainFont: "Grota", sans-serif;
  --body___backgroundColor: var(--greyLight);
  --body___textColor: var(--greyDark);
  /* header */
  --header___height: 80px;
  --header___paddingH: 10px;
  --header___paddingV: 10px;
  --header___backgroundColor: var(--greyDark);
  --header___color: var(--greyLight);
  --headerTitle___fontSize: 36px;
  --headerTitle___fontWeight: 700;
  /* header logo */
  --headerLogo___height: 100%;
  /* header nav item */
  --headerNavItem___fontSize: 21px;
  --headerNavItem___fontWeight: 600;
  --headerNavItem___marginH: 10px;
  /* footer */
  --footer___paddingH: 20px;
  --footer___paddingV: 20px;
  --footer___sectionDirection: column;
  --footer___backgroundColor: var(--black);
  --footer___color: var(--white);
  /* section */
  --section___paddingH: 20px;
  --section___paddingV: 20px;
  /* input */
  --input___fontSize: 17px;
  --input___fontWeight: 500;
  --input___placeholderFontSize: 16px;
  --input___placeholderFontWeight: 400;
  /* components */
  --component___borderRadius: 6px;
  --container___borderRadius: 10px;
  /* AxialButton */
  --AxialButton___textColor: var(--white);
  --AxialButton___backgroundColor: var(--themeColor);
  --AxialButton___fontWeight: 500;
  --AxialButton___boxShadow: 0px 1px 1px var(--greyDark);
  /* AxialToggleButton */
  --AxialToggleButton___textColor: var(--white);
  --AxialToggleButton___backgroundColor: var(--themeColor);
  --AxialToggleButton___fontWeight: 500;
  --AxialToggleButton___boxShadow: 0px 1px 1px var(--greyDark);
  /* AxialBurgerButton */
  --AxialBurgerButton___lineColor: var(--themeColor);
  --AxialBurgerButton___backgroundColor: var(--white);
  /* AxialToggleCheck */
  --AxialToggleCheck___textColor: var(--white);
  /* AxialToggleRadio */
  --AxialToggleRadio___color: var(--greyDark);
}
/* global variables */
/* axial core & application  */
.axial_component_base {
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: all;
}
* {
  box-sizing: border-box;
}
html {
  -webkit-tap-highlight-color: transparent;
  text-shadow: none;
}
body {
  width: 100%;
  min-height: 100svh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: var(--body___mainFont);
  font-weight: 600;
  background-color: var(--body___backgroundColor);
  color: var(--body___textColor);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
a {
  text-decoration: none;
  color: var(--body___textColor);
}
a:visited {
  text-decoration: none;
  color: var(--body___textColor);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--white);
}
input {
  -webkit-user-select: text;
  user-select: text;
  appearance: none;
  outline: none;
  display: block;
  width: 100%;
  min-height: 42px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 3px;
  padding-bottom: 4px;
  font-family: var(--body___mainFont);
  font-size: var(--input___fontSize);
  font-weight: var(--input___fontWeight);
  border-radius: var(--component___borderRadius);
  border: 2px solid var(--greyDark);
  background-color: var(--white);
}
input::placeholder {
  font-size: var(--input___placeholderFontSize);
  font-weight: var(--input___placeholderFontWeight);
}
input[type="file"] {
  min-height: 60px;
}
input[type="file" i] {
  font-family: var(--body___mainFont);
  color: var(--body___textColor);
}
input[type="file"]::file-selector-button {
  min-height: 42px;
  cursor: pointer;
  appearance: none;
  border: none;
  outline: none;
  padding-top: 10px;
  padding-bottom: 8px;
  padding-left: 14px;
  padding-right: 14px;
  font-family: var(--body___mainFont);
  border-radius: var(--component___borderRadius);
  font-weight: var(--AxialButton___fontWeight);
  color: var(--AxialButton___textColor);
  background-color: var(--AxialButton___backgroundColor);
  box-shadow: var(--AxialButton___boxShadow);
}
textarea {
  display: block;
  resize: none;
  outline: none;
  width: 100%;
  height: 100%;
  min-height: 200px;
  padding: 10px;
  font-family: var(--body___mainFont);
  font-size: var(--input___fontSize);
  font-weight: var(--input___fontWeight);
  border-radius: var(--component___borderRadius);
  border: 2px solid var(--black);
  background-color: var(--white);
}
/* layers */
.axial_layer_base {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.axial_background_layer {
  background-color: transparent;
}
.axial_3d_layer {
  background-color: transparent;
}
.axial_main_layer {
  position: relative;
  min-width: 100%;
  min-height: 100svh;
  overflow: hidden;
}
.axial_intro_layer {
  z-index: 999999;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.axial_popup_layer {
  z-index: 3;
}
.axial_notification_layer {
  z-index: 4;
}
.axial_overlay_layer {
  z-index: 5;
}
.axial_tooltip_layer {
  z-index: 6;
}
.axial_transition_layer {
  z-index: 999999999;
  pointer-events: all;
  transform: translateY(0%);
  transition-property: transform;
  transition-duration: 600ms;
  transition-timing-function: ease;
  background-color: var(--black);
}
/* header */
.axial_header {
  position: fixed;
  width: 100%;
  z-index: 1;
  height: var(--header___height);
  color: var(--header___color);
}
.axial_header_background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--header___backgroundColor);
}
.axial_header_content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: var(--header___paddingH);
  padding-right: var(--header___paddingH);
  padding-top: var(--header___paddingV);
  padding-bottom: var(--header___paddingV);
}
.axial_header_title {
  font-size: var(--headerTitle___fontSize);
  font-weight: var(--headerTitle___fontWeight);
}
.axial_header_logo {
  display: flex;
  height: var(--headerLogo___height);
  width: auto;
}
.axial_header_logo_svg {
  display: block;
  height: var(--headerLogo___height);
  width: auto;
}
.axial_header_logo_img {
  display: block;
  height: var(--headerLogo___height);
  width: auto;
}
.axial_header_nav {
  height: 100%;
  width: auto;
  display: none;
  flex-direction: row;
  align-items: center;
}
.axial_header_nav_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: auto;
  height: 100%;
  margin-left: var(--headerNavItem___marginH);
  margin-right: var(--headerNavItem___marginH);
  font-size: var(--headerNavItem___fontSize);
  font-weight: var(--headerNavItem___fontWeight);
  cursor: pointer;
}
.axial_header_nav_item-label {
  margin-bottom: 4px;
}
.axial_header_nav_item-line {
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background-color: var(--white);
  transform-origin: center;
  transform: scaleX(0);
  transition-property: transform;
  transition-duration: 420ms;
  transition-timing-function: ease;
}
.axial_header_nav_item:hover .axial_header_nav_item-line {
  transform: scaleX(1);
}
.axial_header_nav_item_separator {
  margin-left: 10px;
  margin-right: 10px;
}
/* breadcrumbs */
.axial_breadcrumbs {
  padding-left: var(--section___paddingH);
  padding-right: var(--section___paddingH);
  padding-top: 6px;
  padding-bottom: 6px;
  width: 100%;
  min-height: 40px;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  background-color: var(--themeColor);
}
.axial_breadcrumbs_item {
  color: var(--white);
}
.axial_breadcrumbs_link {
  color: var(--white);
  text-decoration: underline;
}
.axial_breadcrumbs_link:visited {
  color: var(--white);
  text-decoration: underline;
}
.axial_breadcrumbs_link:visited:hover {
  color: var(--white);
  text-decoration: underline;
}
.axial_breadcrumbs_separator {
  color: var(--white);
  margin-left: 10px;
  margin-right: 10px;
}
/* main */
.axial_main {
  position: relative;
  display: block;
  width: 100%;
  min-height: 100svh;
}
/* section */
.axial_section {
  position: relative;
  width: 100%;
  min-height: 100svh;
}
.axial_section_background {
  position: absolute;
  width: 100%;
  height: 100%;
}
.axial_section_content {
  position: relative;
  width: 100%;
  min-height: 100vh;
}
/* section utils */
.axial_section_padding {
  padding-top: var(--header___height);
  padding-left: var(--section___paddingH);
  padding-right: var(--section___paddingH);
  padding-bottom: var(--section___paddingV);
}
.axial_section_subtitle {
  font-size: 18px;
  font-weight: 500;
  text-decoration: underline;
  text-transform: uppercase;
  text-align: center;
}
.axial_section_title {
  font-size: 48px;
  text-align: center;
  margin-top: 14px;
  margin-bottom: 14px;
}
.axial_section_map {
  width: 100%;
  height: 600px;
}
.axial_section_mapframe {
  width: 100%;
  height: 100%;
}
/* footer */
.axial_footer {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  color: var(--white);
}
.axial_footer_background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--footer___backgroundColor);
  color: var(--footer___color);
}
.axial_footer_content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-left: var(--footer___paddingH);
  padding-right: var(--footer___paddingH);
}
.axial_footer_section {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: var(--footer___sectionDirection);
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
/* utils */
.axial_spacer {
  flex-grow: 1;
}
.axial_parallax {
  will-change: transform;
  /*transform: translate3d(0, 0, 0);*/
  translate: 0px 0px;
  scale: 1;
}
/* Notifier */
.axial_notifier {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.axial_notifier_holder {
  position: absolute;
  width: 100%;
  height: auto;
  padding: 20px;
  bottom: 0px;
  transform: translateY(100%);
  transition-property: transform;
  transition-duration: 300ms;
  transition-timing-function: ease;
}
.axial_notifier_content {
  width: 100%;
  height: auto;
  padding: 10px;
  min-height: 40px;
  color: var(--greyDark);
  background-color: var(--greyLight);
  border-radius: var(--component___borderRadius);
  box-shadow: 0px 1px 3px var(--black);
}
/* axial aniimation */
/* POPUPS ANIMATIONS */
/* Obfuscator fader */
@keyframes axial_obfuscator_fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes axial_obfuscator_fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Popup fader */
@keyframes axial_popup_fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes axial_popup_fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Popup translate_up */
@keyframes axial_popup_translate_up-in {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0%);
  }
}
@keyframes axial_popup_translate_up-out {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(100%);
  }
}
/* Popup translate_down */
@keyframes axial_popup_translate_down-in {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0%);
  }
}
@keyframes axial_popup_translate_down-out {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-100%);
  }
}
/* Popup translate_left */
@keyframes axial_popup_translate_left-in {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes axial_popup_translate_left-out {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(100%);
  }
}
/* Popup translate_right */
@keyframes axial_popup_translate_right-in {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes axial_popup_translate_right-out {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
/* Popup fade_translate_up */
@keyframes axial_popup_fade_translate_up-in {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes axial_popup_fade_translate_up-out {
  from {
    transform: translateY(0%);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}
/* Popup fade_translate_down */
@keyframes axial_popup_fade_translate_down-in {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes axial_popup_fade_translate_down-out {
  from {
    transform: translateY(0%);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}
/* Popup fade_translate_left */
@keyframes axial_popup_fade_translate_left-in {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes axial_popup_fade_translate_left-out {
  from {
    transform: translateX(0%);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
/* Popup fade_translate_right */
@keyframes axial_popup_fade_translate_right-in {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes axial_popup_fade_translate_right-out {
  from {
    transform: translateX(0%);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}
/**/
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/**/
@keyframes translate_up-in {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0%);
  }
}
@keyframes translate_up-out {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-100%);
  }
}
/**/
@keyframes translate_down-in {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0%);
  }
}
@keyframes translate_down-out {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(100%);
  }
}
/* axial components */
/* form utils */
.axial_form_utils_grid {
  display: flex;
  flex-direction: column;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1;
  gap: 0px 20px;
}
.axial_form_utils_column-1 {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
}
.axial_form_utils_column-2 {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
}
/* AxialLoginForm */
.axial_login_form {
  display: block;
  min-width: 280px;
  width: auto;
  height: auto;
  padding: 0px;
}
.axial_login_form-form {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.axial_login_form-input {
  margin-top: 6px;
  margin-bottom: 14px;
}
.axial_login_form-button {
  opacity: 0.5;
  pointer-events: none;
  transition-property: opacity;
  transition-duration: 250ms;
  transition-timing-function: ease;
}
/* AxialRegistrationForm */
.axial_registration_form {
  display: block;
  min-width: 280px;
  width: auto;
  height: auto;
  padding: 0px;
}
.axial_registration_form-form {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.axial_registration_form-input {
  margin-top: 6px;
  margin-bottom: 14px;
}
.axial_registration_form-button {
  opacity: 0.5;
  pointer-events: none;
  transition-property: opacity;
  transition-duration: 250ms;
  transition-timing-function: ease;
}
/* AxialMessageForm */
.axial_message_form {
  display: block;
  min-width: 280px;
  width: auto;
  height: auto;
  padding: 0px;
}
.axial_message_form-form {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.axial_message_form-input {
  margin-top: 6px;
  margin-bottom: 14px;
}
.axial_message_form-toggle {
  margin-bottom: 14px;
}
.axial_message_form-button {
  opacity: 0.5;
  pointer-events: none;
  transition-property: opacity;
  transition-duration: 250ms;
  transition-timing-function: ease;
}
/* AxialContactForm */
.axial_contact_form {
  display: block;
  min-width: 280px;
  width: auto;
  height: auto;
}
.axial_contact_form-form {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.axial_contact_form-input {
  margin-top: 6px;
  margin-bottom: 14px;
}
.axial_contact_form-toggle {
  margin-bottom: 14px;
}
.axial_contact_form-button {
  opacity: 0.5;
  pointer-events: none;
  transition-property: opacity;
  transition-duration: 250ms;
  transition-timing-function: ease;
}
/* AxialButtonBase */
.axial_button_base {
  cursor: pointer;
}
/* AxialButton */
.axial_button {
  overflow: hidden;
  position: relative;
  width: auto;
  height: auto;
  border-radius: var(--component___borderRadius);
  box-shadow: var(--AxialButton___boxShadow);
  fill: #fff;
}
.axial_button-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--AxialButton___backgroundColor);
}
.axial_button-foreground {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  transition-property: background-color;
  transition-duration: 240ms;
  transition-timing-function: linear;
}
.axial_button-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 14px;
  padding-right: 14px;
}
.axial_button-label {
  width: auto;
  color: var(--AxialButton___textColor);
  font-weight: var(--AxialButton___fontWeight);
}
.axial_button-icon {
  position: relative;
}
.axial_button_helper-icon_holder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
}
/* AxialToggleButton */
.axial_toggle_button {
  overflow: hidden;
  position: relative;
  width: auto;
  height: auto;
  border-radius: var(--component___borderRadius);
  box-shadow: var(--AxialToggleButton___boxShadow);
  fill: #fff;
}
.axial_toggle_button-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--AxialToggleButton___backgroundColor);
}
.axial_toggle_button-foreground {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  transition-property: background-color;
  transition-duration: 240ms;
  transition-timing-function: linear;
}
.axial_toggle_button-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 14px;
  padding-right: 14px;
}
.axial_toggle_button-label {
  width: auto;
  color: var(--AxialToggleButton___textColor);
  font-weight: var(--AxialToggleButton___fontWeight);
}
.axial_toggle_button-icon {
  position: relative;
}
.axial_toggle_button_helper-icon_holder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
}
/* AxialToggleCheck */
.axial_toggle_check {
  width: -moz-fit-content;
  width: fit-content;
  /*min-width: 42px;*/
  height: 42px;
  min-height: 42px;
  /*padding: 4px;*/
  display: flex;
  flex-direction: row;
  align-items: center;
}
.axial_toggle_check-border {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background-color: #111;
  margin-right: 12px;
  border: solid 2px #fff;
  flex-shrink: 0;
}
.axial_toggle_check-sign {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background-color: #fff;
  transform: scale(0);
  transition-property: transform;
  transition-duration: 200ms;
}
.axial_toggle_check-label {
  color: var(--AxialToggleCheck___textColor);
}
/* AxialToggleRadio */
.axial_toggle_radio {
  width: -moz-fit-content;
  width: fit-content;
  height: 42px;
  min-height: 42px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.axial_toggle_radio-border {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--black);
  border: solid 2px var(--white);
}
.axial_toggle_radio-circle {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--white);
  transform: scale(0);
  transition-property: transform;
  transition-duration: 200ms;
}
.axial_toggle_radio-label {
  color: var(--AxialToggleRadio___color);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-bottom: 6px;
}
/* AxialToggleSwitch */
.axial_toggle_switch {
  width: 46px;
  min-height: 30px;
  height: 30px;
  border-radius: 15px;
  border: 2px solid var(--white);
  padding: 4px;
  background-color: var(--black);
}
.axial_toggle_switch-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--white);
  position: relative;
  left: 0px;
  transition-property: left;
  transition-duration: 200ms;
}
/* AxialBurgerButton */
.axial_burger_button {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: var(--component___borderRadius);
  z-index: 1000;
}
.axial_burger_button-background {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--AxialBurgerButton___backgroundColor);
}
.axial_burger_button-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.axial_burger_button-line {
  position: absolute;
  width: 26px;
  height: 2px;
  overflow: hidden;
  left: 11px;
  transform-origin: center;
  transition-property: top, transform;
  transition-duration: 400ms;
  transition-timing-function: ease;
  background-color: var(--AxialBurgerButton___lineColor);
}
.axial_burger_button-top {
  top: 13px;
}
.axial_burger_button-middle {
  top: 23px;
}
.axial_burger_button-bottom {
  top: 33px;
}
/* AxialViewerBase */
.axial_viewer_base {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /*touch-action: none;*/
}
/* AxialViewBase */
.axial_view_base {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  overflow: hidden;
}
.axial_loader_layer {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  visibility: hidden;
}
.axial_loader_background {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}
.axial_loader_content {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.axial_loader_holder {
  width: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
}
.axial_loader_icon {
  width: 40px;
  height: 40px;
  margin: 20px;
  border-radius: 50%;
  border-top: 5px solid #000;
  border-left: 5px solid #000;
  border-bottom: 5px solid #000;
  border-right: 5px solid transparent;
}
.axial_loader_number {
  width: 100%;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
.axial_loader_text {
  width: 100%;
  font-weight: 600;
  text-align: center;
}
@keyframes axial_loader_icon_animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* NEW SHADOW */
/*
.axial_popup_layer
{
    position: absolute;
    
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
    pointer-events: none;
}
*/
.axial_popup_obfuscator {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.73);
  visibility: hidden;
  opacity: 0;
  pointer-events: all;
}
.axial_popup_base {
  position: absolute;
  visibility: hidden;
  pointer-events: all;
}
.axial_popup_arrow {
  position: absolute;
  display: none;
}
/* arrow up */
.axial_popup_base_arrow-bottom {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}
/* arrow down */
.axial_popup_base_arrow-top {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
}
/* arrow left */
.axial_popup_base_arrow-right {
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  border-right: 10px solid #fff;
}
/* arrow right */
.axial_popup_base_arrow-left {
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  border-left: 10px solid #fff;
}
/* AxialPopupBurger */
.axial_popup_burger {
  width: 300px;
  height: 100%;
  background-color: var(--white);
  padding-top: var(--header___height);
}
.ax-progress-element {
  box-sizing: border-box;
  padding: 0;
  /*overflow: hidden;*/
}
.ax-progress-bar {
  position: relative;
  height: 100%;
  box-sizing: border-box;
  transition-property: width;
  transition-duration: 800ms;
}
.ax-progress-indicator {
  position: relative;
  width: 32px;
  height: 32px;
  margin-left: -16px;
  transition-property: left;
  transition-duration: 800ms;
}
/* TOOLTIP NEW 2024 */
.axial_tooltip_base {
  position: absolute;
  visibility: hidden;
  opacity: 1;
  transform: translate(0%, 0%);
  transition-property: none;
  transition-duration: 500ms;
  transition-timing-function: ease;
  padding-left: 14px;
  padding-right: 14px;
  padding-bottom: 14px;
  padding-top: 14px;
  border: 1px solid #000;
  background-color: rgba(0, 0, 0, 0.73);
  backdrop-filter: blur(8px);
  color: var(--white);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
}
/* OVERLAY NEW 2024 */
.axial_overlay_base {
  position: absolute;
  visibility: hidden;
  opacity: 1;
  transform: translate(0%, 0%);
  transition-property: none;
  transition-duration: 500ms;
  transition-timing-function: ease;
}
/* experimental */
/* AxialCrossContainer */
.axial_cross_container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.axial_cross_container_element {
  position: absolute;
  width: 100%;
  height: 100%;
}
.axial_cross_container-center {
  transform: translate(0%, 0%);
}
.axial_cross_container-top {
  transform: translate(0%, -100%);
}
.axial_cross_container-right {
  transform: translate(100%, 0%);
}
.axial_cross_container-bottom {
  transform: translate(0%, 100%);
}
.axial_cross_container-left {
  transform: translate(-100%, 0%);
}
/* AxialRateStars */
.axial_rate_stars {
  width: 200px;
  height: 34px;
}
.axial_rate_stars-holder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.axial_rate_stars-symbol {
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.axial_rate_stars-fill {
  fill: #fff;
}
/* AxialNavigationHelper*/
.axial_navigation_helper {
  height: 100%;
  width: auto;
}
/* Axial3DViewer : to move in a specific css */
.axial_3d_viewer {
  position: relative;
  display: block;
  width: 300px;
  height: 150px;
  min-width: 300px;
  min-height: 150px;
}
.axial_3d_viewer-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.axial_3d_canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* AxialAccordionElement */
.axial_accordion_element {
  position: relative;
  width: 100%;
  height: 0;
  min-width: 100px;
  transition-property: height;
  transition-duration: 400ms;
  transition-timing-function: ease;
  overflow: hidden;
}
.axial_accordion_element-content {
  width: 100%;
  height: auto;
  bottom: 0;
}
.axial_accordion_element-slot {
  width: 100%;
  height: auto;
  padding: 10px;
}
/* AxialFlipbookBase */
.axial_flipbook_base {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 300px;
  min-height: 120px;
  overflow: visible;
}
/* AxialFlipbookPageBase */
.axial_flipbook_page_base {
  position: absolute;
  left: 50%;
  width: 50%;
  height: 100%;
  display: none;
  background-color: var(--greyLight);
}
/* AxialToggleCalendarDate */
.axial_toggle_calendar_date {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.axial_toggle_calendar_date-holder {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  overflow: hidden;
}
.axial_toggle_calendar_date-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  opacity: 0;
}
.axial_toggle_calendar_date-middleground {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--themeColor);
  opacity: 0;
}
.axial_toggle_calendar_date-foreground {
  position: absolute;
  width: 100%;
  height: 100%;
}
.axial_toggle_calendar_date-num {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  color: #232323;
}
/* AxialCalendarGrid */
.axial_calendar_grid_base {
  width: 280px;
  height: 240px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 4px;
  background-color: #fff;
}
/* AxialCalendar */
.axial_overlay_calendar {
  position: absolute;
  width: 300px;
  height: 340px;
  border-radius: var(--container___borderRadius);
  overflow: hidden;
}
/* AxialCalendar */
.axial_calendar {
  position: relative;
  width: 300px;
  height: 340px;
  border-radius: var(--container___borderRadius);
  overflow: hidden;
}
.axial_calendar-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.axial_calendar-content {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
.axial_calendar-header {
  width: 100%;
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.axial_calendar-label {
  flex-grow: 1;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  padding-left: 4px;
}
.axial_calendar-previous {
  width: 40px;
  height: 40px;
  background-color: #eee;
}
.axial_calendar-next {
  width: 40px;
  height: 40px;
  background-color: #eee;
}
.axial_calendar-days {
  width: 100%;
  height: 40px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: 1fr;
  column-gap: 4px;
}
.axial_calendar-day {
  color: #000;
  font-size: 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.axial_calendar-dates {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 4px;
}
.axial_calendar-date {
  color: #000;
  font-size: 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
/* framework responsiveness*/
@media screen and (min-width: 768px) {
  .axial_form_utils_grid {
    display: grid;
  }
}
@media screen and (min-width: 992px) {
  .axial_header_nav {
    display: flex;
  }
  /* AxialBurgerButton */
  .axial_burger_button {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  :root {
    /* header */
    --header___paddingH: 4%;
    --header___paddingV: 10px;
    /* header nav item */
    --headerNavItem___fontSize: 20px;
    /* footer */
    --footer___paddingH: 4%;
    --footer___paddingV: 0px;
    --footer___sectionDirection: row;
    /* sections */
    --section___paddingH: 4%;
    --section___paddingV: 40px;
  }
}
@media screen and (min-width: 1400px) {
  :root {
    /* header */
    --header___paddingH: 4%;
    --header___paddingV: 10px;
    /* header nav item */
    --headerNavItem___fontSize: 21px;
    /* footer */
    --footer___paddingH: 4%;
    --footer___paddingV: 0px;
    --footer___sectionDirection: row;
    /* sections */
    --section___paddingH: 4%;
    --section___paddingV: 40px;
  }
}
@media screen and (min-width: 1600px) {
  :root {
    /* header */
    --header___paddingH: 10%;
    --header___paddingV: 10px;
    /* header nav item */
    --headerNavItem___fontSize: 23px;
    /* footer */
    --footer___paddingH: 10%;
    --footer___paddingV: 0px;
    --footer___sectionDirection: row;
    /* sections */
    --section___paddingH: 10%;
    --section___paddingV: 40px;
  }
}
/*
@media screen and (orientation: landscape)
{
    .axial_intro_layer
    {
        display: none;
    }    
}
@media screen and (orientation: portrait)
{
    .axial_intro_layer
    {
        display: none;
    }    
}
*/
/* global project styles */
.arrow_back_holder {
  pointer-events: all;
  position: absolute;
  /*
	top: 40px;
	left: 30px;
	*/
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #172c49;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.arrow_back_link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  transform: scale(0.5);
}
/* SuperVisionArrow */
.supervision_arrow {
  display: block;
  position: relative;
  width: 54px;
  height: 54px;
  cursor: pointer;
}
.supervision_arrow_holder {
  position: absolute;
  width: 100%;
  height: 100%;
}
.supervision_arrow_item {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.supervision_arrow_icon {
  width: 68%;
  height: 68%;
  border-left: solid 8px #fff;
  border-bottom: solid 8px #fff;
  transform: rotate(-45deg);
}
.supervision_arrow_first_d {
  animation-name: supervisionArrowMovementD;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.supervision_arrow_second_d {
  animation-name: supervisionArrowMovementD;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes supervisionArrowMovementD {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.supervision_arrow_first {
  animation-name: supervisionArrowMovement;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.supervision_arrow_second {
  animation-name: supervisionArrowMovement;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes supervisionArrowMovement {
  0% {
    opacity: 0;
    transform: translateY(-6px);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.supervision_arrow_first_top {
  animation-name: supervisionArrowMovement;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.supervision_arrow_second_top {
  animation-name: supervisionArrowMovementTop;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes supervisionArrowMovementTop {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media screen and (min-width: 1200px) {
  .arrow_back_holder {
    pointer-events: all;
    position: absolute;
    top: 40px;
    left: 30px;
    bottom: unset;
    right: unset;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .arrow_back_link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    transform: scale(1);
  }
}
/* local page styles */
:root {
  --hfs___gallerieYearsHeight: 27px;
  --hfs___gallerieYearsWidth: 78px;
  --hfs___gallerieYearsCenterMarginLeft: 4px;
  --hfs___sliderImageTop: 112px;
  --hfs___sliderImageBottom: 112px;
  --hfs___sliderImageLeft: 0;
  --hfs___sliderImageRight: 0;
}
body {
  color: #fff;
  background: radial-gradient(circle, rgba(243, 187, 44, 0.1) 25%, transparent 26%), radial-gradient(circle at bottom left, rgba(243, 187, 44, 0.1) 12%, transparent 13%), radial-gradient(circle at bottom right, rgba(243, 187, 44, 0.1) 12%, transparent 13%), radial-gradient(circle at top left, rgba(243, 187, 44, 0.1) 12%, transparent 13%), radial-gradient(circle at top right, rgba(243, 187, 44, 0.1) 12%, transparent 13%);
  background-size: 3em 3em;
  background-color: #fcff96;
  color: #f3bb2c;
}
.supervision_arrow_icon {
  width: 68%;
  height: 68%;
  border-left: solid 8px #5f97ff;
  border-bottom: solid 8px #5f97ff;
  transform: rotate(-45deg);
}
/*
.arrow_back_holder
{
	pointer-events: all;
	position: absolute;
	top: 40px;
	left: 30px;
	width: 60px;
	height: 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.arrow_back_link
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
}
*/
.shape-overlays {
  width: 100%;
  height: 100%;
  pointer-events: none;
  /*transform: rotate(90deg);*/
}
.path-color-5 {
  fill: #fcff96;
}
.path-color-1 {
  fill: #ffda76;
}
.path-color-2 {
  fill: #71abff;
}
.path-color-4 {
  fill: #77e4ad;
}
.path-color-3 {
  fill: #c099da;
}
.axial_transition_layer {
  background-color: #172c49;
  display: block;
}
.morphing_sharpes_rotation {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
}
/* utils */
.hfs_black {
  color: #111;
}
.hfs_float {
  float: left;
}
.hfs_svg_margin {
  margin-right: 10px;
}
/* main classes */
.hfs_main_holder {
  width: 100%;
  height: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 600ms;
  transition-timing-function: ease;
}
.hfs_main {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 80px;
}
.hfs_svg {
  height: 54px;
  width: auto;
  flex-shrink: 0;
}
.hfs_header {
  display: block;
  width: 100%;
  height: auto;
}
.hfs_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}
.hfs_grid_item {
  width: auto;
  height: auto;
  background-color: #172c49;
}
.hfs_grid_image {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
}
/* update 2025 */
.hfs_gallerie_years {
  width: 100%;
  height: var(--hfs___gallerieYearsHeight);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: var(--hfs___gallerieYearsHeight);
  gap: 20px;
}
.hfs_gallerie_bar_holder {
  width: 100%;
  height: var(--hfs___gallerieYearsHeight);
  display: none;
  flex-direction: row;
  align-items: center;
}
.hfs_gallerie_bar {
  width: 100%;
  height: 3px;
  background-color: #fa76b0;
  margin-top: 0px;
}
.hfs_gallerie_years_holder {
  width: 100%;
  height: var(--hfs___gallerieYearsHeight);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.hfs_gallerie_year {
  width: var(--hfs___gallerieYearsWidth);
  height: var(--hfs___gallerieYearsHeight);
  display: flex;
  flex-direction: column;
}
.center_margin {
  margin-left: var(--hfs___gallerieYearsCenterMarginLeft);
}
.year_bold {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: var(--hfs___gallerieYearsHeight);
}
.year_light {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: var(--hfs___gallerieYearsHeight);
}
.year_svg {
  display: flex;
}
.year_2022 {
  align-items: flex-start;
  flex-shrink: 0;
}
.year_2023 {
  align-items: center;
  flex-grow: 1;
  margin-left: auto;
  margin-right: auto;
}
.year_2024 {
  align-items: flex-end;
  flex-shrink: 0;
}
.year_2025 {
  align-items: flex-start;
  flex-shrink: 0;
}
.pointer {
  cursor: pointer;
}
.init_display_none {
  display: none;
}
.init_weight_none {
  font-weight: 400;
  cursor: pointer;
}
.axial_slider {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.93);
  bottom: 0;
  visibility: hidden;
}
.axial_slider_image {
  display: block;
  position: absolute;
  top: var(--hfs___sliderImageTop);
  bottom: var(--hfs___sliderImageBottom);
  left: var(--hfs___sliderImageLeft);
  right: var(--hfs___sliderImageRight);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.axial_slider_arrow_holder {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
  height: 112px;
  bottom: 0;
  left: 112px;
  right: 112px;
}
.axial_slider_left_holder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  cursor: pointer;
}
.axial_slider_left_arrow {
  width: 36px;
  height: 36px;
  border-top: solid 8px #5f97ff;
  border-left: solid 8px #5f97ff;
  transform: rotate(-45deg);
}
.axial_slider_right_holder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  cursor: pointer;
}
.axial_slider_right_arrow {
  width: 36px;
  height: 36px;
  border-top: solid 8px #5f97ff;
  border-right: solid 8px #5f97ff;
  transform: rotate(45deg);
}
.axial_slider_close_holder {
  position: absolute;
  width: 54px;
  height: 54px;
  top: 36px;
  right: 36px;
  cursor: pointer;
  transform: rotate(0deg);
  transition-property: transform;
  transition-duration: 500ms;
  transition-timing-function: ease;
}
.axial_slider_close_holder:hover {
  position: absolute;
  width: 54px;
  height: 54px;
  top: 36px;
  right: 36px;
  cursor: pointer;
  transform: rotate(720deg);
}
.axial_slider_close_holder-b1 {
  position: absolute;
  width: 54px;
  height: 8px;
  background-color: #5f97ff;
  top: 23px;
  transform: rotate(45deg);
}
.axial_slider_close_holder-b2 {
  position: absolute;
  width: 54px;
  height: 8px;
  background-color: #5f97ff;
  top: 23px;
  transform: rotate(-45deg);
}
@media screen and (min-width: 370px) {
  :root {
    --hfs___gallerieYearsHeight: 32px;
    --hfs___gallerieYearsWidth: 94px;
  }
}
@media screen and (min-width: 420px) {
  :root {
    --hfs___gallerieYearsHeight: 32px;
    --hfs___gallerieYearsWidth: 94px;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --hfs___gallerieYearsHeight: 47px;
    --hfs___gallerieYearsWidth: 100px;
  }
  .hfs_main_holder {
    padding: 40px;
  }
  .hfs_grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  /*
    .hfs_gallerie_years
    {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
        */
}
@media screen and (min-width: 992px) {
  :root {
    --hfs___gallerieYearsHeight: 32px;
    --hfs___gallerieYearsWidth: 94px;
  }
}
@media screen and (min-width: 1200px) {
  :root {
    --hfs___gallerieYearsHeight: 32px;
    --hfs___gallerieYearsWidth: 94px;
    --hfs___sliderImageTop: 36px;
    --hfs___sliderImageBottom: 112px;
    --hfs___sliderImageLeft: 112px;
    --hfs___sliderImageRight: 112px;
  }
  .hfs_main_holder {
    gap: 40px;
  }
  .hfs_grid {
    gap: 40px;
  }
  .hfs_gallerie_years {
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
  }
  .hfs_gallerie_bar_holder {
    display: flex;
  }
}
@media screen and (min-width: 1400px) {
  :root {
    --hfs___gallerieYearsHeight: 38px;
    --hfs___gallerieYearsWidth: 112px;
  }
}
@media screen and (min-width: 1600px) {
  :root {
    --hfs___gallerieYearsHeight: 47px;
    --hfs___gallerieYearsWidth: 140px;
    --hfs___gallerieYearsCenterMarginLeft: 8px;
  }
  .hfs_main {
    width: 1400px;
    gap: 40px;
  }
}
