@charset "utf-8";
/* global fonts*/
/* ALGERA */
@font-face {
  font-family: "Algera";
  src: url("../fonts/Algera-Thin.ttf");
  font-weight: 100;
}
@font-face {
  font-family: "Algera";
  src: url("../fonts/Algera-ExtraLight.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "Algera";
  src: url("../fonts/Algera-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "Algera";
  src: url("../fonts/Algera-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Algera";
  src: url("../fonts/Algera-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Algera";
  src: url("../fonts/Algera-DemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "Algera";
  src: url("../fonts/Algera-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Algera";
  src: url("../fonts/Algera-ExtraBold.ttf");
  font-weight: 800;
}
@font-face {
  font-family: "Algera";
  src: url("../fonts/Algera-Black.ttf");
  font-weight: 900;
}
/* ALGERA ITALIC*/
@font-face {
  font-family: "Algera";
  src: url("../fonts/Algera-Thin-Italic.ttf");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Algera";
  src: url("../fonts/Algera-ExtraLight-Italic.ttf");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "Algera";
  src: url("../fonts/Algera-Light-Italic.ttf");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Algera";
  src: url("../fonts/Algera-Regular-Italic.ttf");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Algera";
  src: url("../fonts/Algera-Medium-Italic.ttf");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Algera";
  src: url("../fonts/Algera-DemiBold-Italic.ttf");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Algera";
  src: url("../fonts/Algera-Bold-Italic.ttf");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Algera";
  src: url("../fonts/Algera-ExtraBold-Italic.ttf");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "Algera";
  src: url("../fonts/Algera-Black-Italic.ttf");
  font-weight: 900;
  font-style: italic;
}
/* ANCHO */
@font-face {
  font-family: "Ancho";
  src: url("../fonts/Ancho-Thin.otf");
  font-weight: 200;
}
@font-face {
  font-family: "Ancho";
  src: url("../fonts/Ancho-Light.otf");
  font-weight: 300;
}
@font-face {
  font-family: "Ancho";
  src: url("../fonts/Ancho-Regular.otf");
  font-weight: 400;
}
@font-face {
  font-family: "Ancho";
  src: url("../fonts/Ancho-Medium.otf");
  font-weight: 500;
}
@font-face {
  font-family: "Ancho";
  src: url("../fonts/Ancho-Bold.otf");
  font-weight: 600;
}
@font-face {
  font-family: "Ancho";
  src: url("../fonts/Ancho-UltraBold.otf");
  font-weight: 700;
}
/* axial variables*/
/* FRAMEWORK VARIABLES */
:root {
  /* colors */
  --white: #fff;
  --greyLight: #f2f3f4;
  --greyDark: #232323;
  --black: #111;
  --themeColor: #0463b1;
  /* body */
  --body___mainFont: "Algera", sans-serif;
  --body___mainFontWeight: 500;
  --body___backgroundColor: var(--greyLight);
  --body___textColor: var(--greyDark);
  /* header */
  --header___height: 80px;
  --header___paddingH: 10px;
  --header___paddingV: 10px;
  --header___backgroundColor: transparent;
  --header___color: var(--greyLight);
  --headerTitle___fontSize: 36px;
  --headerTitle___fontWeight: 700;
  /* header logo */
  --headerLogo___height: 100%;
  /* header nav item */
  --headerNavItem___fontSize: 19px;
  --headerNavItem___fontWeight: 500;
  --headerNavItem___marginH: 20px;
  /* footer */
  --footer___paddingH: 20px;
  --footer___paddingV: 20px;
  --footer___sectionDirection: column;
  --footer___backgroundColor: var(--white);
  --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: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: var(--body___mainFont);
  font-weight: var(--body___mainFontWeight);
  background-color: var(--black);
  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(--black);
}
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: 0px;
  border: 1px solid var(--white);
  background-color: transparent;
  color: #fff;
}
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: 0px;
  border: 1px solid var(--white);
  background-color: transparent;
  color: #fff;
}
/* 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: 100vh;
  overflow: hidden;
}
.axial_intro_layer {
  z-index: 2;
}
.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%;
  cursor: pointer;
  margin-left: var(--headerNavItem___marginH);
  margin-right: var(--headerNavItem___marginH);
  font-size: var(--headerNavItem___fontSize);
  font-weight: var(--headerNavItem___fontWeight);
  color: var(--header___color);
}
.axial_header_nav_item:visited {
  color: var(--header___color);
}
.axial_header_nav_item-label {
  margin-bottom: 4px;
}
.axial_header_nav_item-line {
  width: 100%;
  height: 1px;
  border-radius: 0.5px;
  background-color: var(--white);
  transform: scale(0, 1);
  transform-origin: left;
  transition-property: transform;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
/*
.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: 100vh;
}
/* section */
.axial_section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}
.axial_section_background {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.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);
    padding-top:    var(--footer___paddingV);
    padding-bottom: var(--footer___paddingV);
    */
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.axial_footer_section {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: var(--footer___sectionDirection);
  justify-content: space-between;
  align-items: center;
}
/* 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: 0px;
  box-shadow: none;
  fill: #fff;
}
.axial_button-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.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;
  border: 1px solid var(--white);
}
.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;
  padding: 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.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);
  margin-right: 12px;
  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);
}
/* 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: 50px;
  height: 48px;
  z-index: 1000;
}
.axial_burger_button-background {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: transparent;
  border-radius: var(--component___borderRadius);
  border: 2px solid #fff;
}
.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: 12px;
  transform-origin: center;
  transition-property: top, transform;
  transition-duration: 400ms;
  transition-timing-function: ease;
  background-color: #fff;
}
.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: 320px;
  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;
}
.ax-tooltip-layer {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
}
.ax-tooltip {
  position: absolute;
  visibility: hidden;
  display: flex;
}
.ax-tooltip-arrow {
  position: absolute;
  visibility: hidden;
}
.ax-tooltip-label {
  height: auto;
  min-height: 10px;
  min-width: 10px;
  max-width: 180px;
  padding: 9px;
  text-align: left;
  display: flex;
  font-weight: 400;
  font-size: 13px;
  color: #fff;
  background-color: #000;
}
.ax-tooltip-element {
  position: absolute;
  min-height: 10px;
  min-width: 10px;
  max-width: 180px;
  height: auto;
  padding: 12px;
  text-align: left;
  display: flex;
  font-weight: 400;
  font-size: 12px;
  color: #fff;
  background-color: #000;
}
.ax-tooltip-icon-space {
  padding-right: 10px;
}
/* arrow up */
.ax-tooltip-arrow-bottom {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #000;
}
/* arrow down */
.ax-tooltip-arrow-top {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #000;
}
/* arrow left */
.ax-tooltip-arrow-right {
  border-bottom: 6px solid transparent;
  border-top: 6px solid transparent;
  border-right: 6px solid #000;
}
/* arrow right */
.ax-tooltip-arrow-left {
  border-bottom: 6px solid transparent;
  border-top: 6px solid transparent;
  border-left: 6px solid #000;
}
/* 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: 0px;
  min-width: 100px;
  transition-property: height;
  transition-duration: 400ms;
  transition-timing-function: ease;
  overflow: hidden;
}
.axial_accordion_element-content {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
}
.axial_accordion_element-slot {
  width: 100%;
  height: auto;
  padding: 0px;
  padding-top: 8px;
  padding-bottom: 8px;
}
/* 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;
  }
}
/* global project styles */
:root {
  --apollon___blue: #636681;
  --apollon___blueLight: #b9bff3;
  --apollon___yellow: #feff8e;
}
/* transition layer */
.afw_transition_layer_holder {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.afw_transition_layer_icon {
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* LANGUAGE */
.afw_language_holder {
  position: absolute;
  right: 78px;
  top: 0;
  width: 120px;
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.afw_language_holder-parking {
  position: absolute;
  right: 30px;
  top: 0;
  width: 120px;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.afw_language_holder-artist {
  position: absolute;
  right: 160px;
  top: 0;
  width: 120px;
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.afw_language_flag_button {
  position: relative;
  width: 28px;
  height: 21px;
  overflow: hidden;
  margin-left: 10px;
  border-radius: 4px;
  box-shadow: 0px 2px 1px #000;
}
.afw_language_flag_button-selected {
  border: 2px solid #fff;
}
/*
.afw_language_flag_svg
{
    position: absolute;
    width: 28px;
    height: 21px;
}
*/
.afw_bold {
  font-weight: 700;
}
.afw_artist_switch {
  visibility: hidden;
}
@media screen and (min-width: 992px) {
  .afw_language_holder {
    right: 20px;
  }
}
@media screen and (min-width: 1600px) {
  .afw_language_holder {
    right: 30px;
  }
  .afw_language_holder-artist {
    right: 90px;
  }
}
/* local page styles */
:root {
  --artist___mainPaddingTop: 90px;
  --artist___mainPaddingBottom: 40px;
  --artist___mainPaddingLeft: 20px;
  --artist___mainPaddingRight: 20px;
  --artist___toggleTop: 27px;
  --artist___toggleBottom: unset;
  --artist___toggleRight: 90px;
  --artist___studentDirection: column;
  --artist___studentAlign: flex-start;
  --artist___studentPaddingRight: 20px;
  --artist___studentMarginBottom: 10px;
}
.afw_video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}
.afw_video_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 1;
  transition-property: opacity;
  transition-duration: 800ms;
  transition-timing-function: ease;
}
.afw_artist_logo_holder {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 20px;
  right: 20px;
}
.afw_artist_switch {
  position: absolute;
  top: var(--artist___toggleTop);
  right: var(--artist___toggleRight);
  bottom: var(--artist___toggleBottom);
}
.afw_artist_section {
  padding-top: var(--artist___mainPaddingTop);
  padding-bottom: var(--artist___mainPaddingBottom);
  padding-left: var(--artist___mainPaddingLeft);
  padding-right: var(--artist___mainPaddingRight);
  opacity: 1;
  transition-property: opacity;
  transition-duration: 800ms;
  transition-timing-function: ease;
}
.afw_artist_header_row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
/*
.afw_artist_header_row
{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
*/
.afw_artist_header_column {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 20px;
}
.afw_artist_title {
  font-family: "Ancho", sans-serif;
  color: var(--apollon___blue);
  font-size: 26px;
  margin: 0;
  font-weight: 400;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.afw_artist_links {
  color: var(--white);
  font-size: 22px;
  display: flex;
  flex-direction: row;
  /*padding-bottom: 20px;*/
}
.afw_artist_link {
  color: var(--apollon___yellow);
  text-decoration: none;
}
.afw_artist_link:visited {
  color: var(--apollon___yellow);
  text-decoration: none;
}
.afw_artist_bullet {
  margin-left: 4px;
  margin-right: 4px;
  color: var(--white);
}
.afw_artist_subtitle {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 26px;
}
.afw_artist_text {
  margin: 0;
  color: var(--white);
  max-width: 1300px;
  padding-bottom: 20px;
  font-size: 26px;
}
.afw_artist_li {
  color: var(--white);
  list-style-type: disc;
}
.afw_student_block {
  display: flex;
  flex-direction: var(--artist___studentDirection);
  align-items: var(--artist___studentAlign);
  margin-bottom: 20px;
}
.afw_student_block_image {
  display: block;
  width: 140px;
  height: 140px;
  border-radius: 10px;
  margin-bottom: var(--artist___studentMarginBottom);
  flex-shrink: 0;
}
.afw_student_block_text {
  color: var(--white);
  font-size: 21px;
  padding-right: var(--artist___studentPaddingRight);
  font-weight: 500;
}
.afw_student_block_text-bold {
  font-weight: 600;
}
.afw_student_block_text-par {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .afw_artist_title {
    font-size: 36px;
  }
  .afw_artist_header_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
@media screen and (min-width: 1600px) {
  :root {
    --artist___mainPaddingTop: 40px;
    --artist___mainPaddingBottom: 0;
    --artist___mainPaddingLeft: 40px;
    --artist___mainPaddingRight: 0;
    --artist___toggleTop: unset;
    --artist___toggleBottom: 20px;
    --artist___toggleRight: 20px;
    --artist___togglePosition: fixed;
    --artist___studentDirection: row;
    --artist___studentPaddingRight: 80px;
    --artist___studentMarginBottom: 0;
    --artist___studentAlign: center;
  }
}
