








	/* ROOT */

	:root {
    
    --base-font-1-regular: "MBCorpoSTitle-Regular-Web", sans-serif;
    --base-font-1-bold: "MBCorpoSTitle-Bold-Web", sans-serif;
    --base-font-2-regular: "MBCorpoATitle-Regular-Web", serif;
    
    --px: min(1px, calc((100 / 1400) * 1vw));
    --px-mobile: calc((100 / 390) * 1vw);
    --base-unit: var(--px);
	
		--ttf: cubic-bezier(0.19, 1, 0.22, 1);
    --ttf-2: cubic-bezier(0.075, 0.820, 0.165, 1);
    --ttf-3: cubic-bezier(0.64, 0, 0.78, 0);
    --ttf-4: cubic-bezier(0.8, 0, 0.2, 1);
    --ttf-5: cubic-bezier(0.165, 0.84, 0.4, 1);
    --ttf-6: cubic-bezier(0.6, 0.07, 0.17, 1);
    --ttf-7: cubic-bezier(0.247, 0.75, 0.187, 1);
    --ttf-8: cubic-bezier(1, 0, 0, 1);
    
    --page-padding-top: 0;
    --page-padding-left: max(30px, calc(150 * var(--px)));
    --page-padding-right: var(--page-padding-left);
    --page-padding-left-s: max(30px, calc(80 * var(--px)));
    --page-padding-right-s: var(--page-padding-left-s);
  
		--base-color-black: #000;
    --base-color-white: #fff;
    --base-color-gray: #686868;
    --base-color-green: #29ceb9;
	
	}



  @media (max-width: 600px) {
    
    :root {
      --page-padding-left: 30px;
      --page-padding-right: 30px;
      --page-padding-left-s: 30px;
      --page-padding-right-s: 30px;
    }
    
  }










 
 
	/* BASE */

	html {
		/*scroll-behavior: smooth;*/
	}

	html.is-transitioning,
	html.is-forced-scrolling {
		scroll-behavior: auto;
	}

	body {
	  font-size: 100%;
		font-family: var(--base-font-1-regular);
		font-weight: 400;
	  color: var(--base-color-white);
	  line-height: 1.3;
	  background: var(--base-color-black);
	}

	input, textarea, select, button {
		font-family: var(--base-font-1-regular);
		font-weight: 400;
	  color: var(--base-color-black);
	}

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

	*:not(.has-component-inner) .module-inner,
	header.main > .inner,
  footer.main > .inner,
	.cookie-bar > .inner,
	*.has-component-inner .component-inner {
	  position: relative;
	  margin: 0 auto;
	  padding-left: var(--page-padding-left);
	  padding-right: var(--page-padding-right);
	  box-sizing: border-box;
    max-width: 87.5rem;
	}

	.module-full-width .module-inner {
	  max-width: none;
	  padding-left: 0;
	  padding-right: 0;
	}

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

	.wysiwyg a {
	  text-decoration: underline;
	}

  @media (hover: hover) {
	  .wysiwyg a:is(:hover, :focus) {
  	  text-decoration: none;
  	}
  }

	.wysiwyg > *:not(:last-child) {
	  margin-bottom: 1em;
	}

	.wysiwyg strong {
    font-weight: normal;
	}
  
  .cpy-20 strong {
    font-family: var(--base-font-1-bold);
  }

	.wysiwyg > ul:not(.plain),
	.wysiwyg > ol:not(.plain) {
	  counter-reset: supernovae;
	}

	.wysiwyg > ul:not(.plain) li,
	.wysiwyg > ol:not(.plain) li {
	  position: relative;
	  padding-left: 1.35em;
	}

	.wysiwyg > ul:not(.plain) li:not(:last-child),
	.wysiwyg > ol:not(.plain) li:not(:last-child) {
	}

	.wysiwyg > ul:not(.plain) li::before {
	  content: '';
	  position: absolute;
	  left: 0;
    top: .4em;
    display: block;
    width: .5em;
    height: .5em;
    background: currentColor;
	}

	.wysiwyg > ol:not(.plain) li::before {
		content: counter(supernovae) '.';
		counter-increment: supernovae;
	  position: absolute;
	  left: 0;
	}

	.wysiwyg > ul ul li::before {
	}

	.wysiwyg > ul ul,
	.wysiwyg > ol ol {
	}

	.wysiwyg table {
	  width: auto !important;
	}

	.wysiwyg table td {
	  width: auto !important;
	  height: auto !important;
	}

	@keyframes spin {
	    from {transform:rotate(0deg);}
	    to {transform:rotate(360deg);}
	}

	span.loading img {
		top: -12px;
	}

	span.loading {
		vertical-align: middle;
	}

	.btn-menu {
		appearance: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		margin: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		cursor: pointer;
		color: inherit;
	}

  main.main {
    position: relative;
    z-index: 2;
    background: var(--base-color-black);
  }
