








	/* ROOT */

	:root {
    
    --base-font-1-regular: "Inter Regular", sans-serif;
    --base-font-1-semibold: "Inter SemiBold", sans-serif;
    --base-font-2: "National 2", sans-serif;
    
    --min-vw: 320;
    --max-vw: 1282;
    
    --px: min(1px, calc((100 / 1282) * 1vw));
    --base-unit: var(--px);
	
		--ttf: var(--ttf-1);
    --ttf-1: 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);
    --ttf-9: cubic-bezier(.47, 3.64, .41, .8);
    
    --page-padding-top: 0;
    --page-padding-left: max(17px, calc(33 * var(--px)));
    --page-padding-right: var(--page-padding-left);
    
    --header-height: max(48px, min(79px, calc(79 * var(--px))));
    --page-padding-top: max(48px, calc(calc(79 * var(--px)) + var(--header-height)));
  
		--base-color-black: #000;
    --base-color-white: #fff;
    --base-color-gray: #787878;
    --base-color-light-gray: #D9D9D9;
    --base-color-lighter-gray: #a5a5a5;
    --base-color-dark-gray: #404040;
    --base-color-off-black: #1e1e1e;
    --base-color-light-orange: #fff6f3;
    --base-color-orange: #fb5512;
	
	}






  body.single-blog {
    --page-padding-top: var(--header-height);
  }





  @media (max-width: 750px) {
    
    :root {
      --page-padding-top: calc(var(--header-height) + 11px);
    }
    
  }






 
 
	/* BASE */

	html {
		scroll-behavior: smooth;
	}

	html.is-transitioning,
	html.is-forced-scrolling,
  html.lenis-scrolling {
		scroll-behavior: auto;
	}
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }

  .lenis.lenis-scrolling iframe {
    pointer-events: none;
  }

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

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

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

	*:not(.has-component-inner) .module-inner,
	header.main > .inner,
  footer.main > .inner,
  div.flyout > .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: 80.125rem;
	}
  
  div.container {
    display: flex;
    flex-flow: column nowrap;
    min-height: 100vh;
    box-sizing: border-box;
  }
  
  footer.main {
    margin-top: auto;
  }

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

	.load-more {
	  text-align: center;
	}
  
  .wysiwyg {
    -webkit-hyphens: auto;
    -webkit-hyphenate-limit-after: 8;
    -webkit-hyphenate-limit-before: 8;
    hyphens: auto;
    hyphenate-limit-chars: 15;
    text-wrap: pretty;
  }

	.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;
    font-family: var(--base-font-1-semibold);
	}

	.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.5em;
	}

	.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;
	}

	.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;
	}

  .skip-link {
    position: absolute;
    top: 0;
    left: -10000em;
    background: #000;
    color: #fff;
    padding: 1rem;
    z-index: 10000;
  }
  
  .skip-link:focus {
    left: 0;
  }
  
  nav button[aria-haspopup] {
    position: absolute;
    top: 0;
    right: 10000em;
  }
  
  nav button[aria-haspopup] span[aria-hidden="true"] {
    display: none;
  }
  
/*  nav button[aria-haspopup]:focus {
    right: 0;
    transform: translateX(calc(100% + 5px));
  }*/
  
  nav button[aria-haspopup]:focus span[aria-hidden="true"] {
    display: block;
  }
  
  [id] {
    scroll-margin-top: calc(var(--header-height) * 1.5);
  }