/* root
 ========================================================================== */

html, body 
 {
   height: 100%;
 }
 
 body 
 {
   line-height: 1.35;
   -webkit-font-smoothing: antialiased;
 }
 
 img, picture, canvas, svg 
 {
   /* display: block; */
   max-width: 100%;
 }
 
 input, button, textarea, select 
 {
   font: inherit;
 }
 
 p, h1, h2, h3, h4, h5, h6 
 {
   overflow-wrap: break-word;
 }
 
* {
  margin: 0;
  padding: 0;
  outline: 0px solid coral;
}

@font-face {
  font-family: Mark;
  src: url("assets/fonts/MarkWebPro-Light.woff") format("woff");
}

@font-face {
  font-family: Mark-M;
  src: url("assets/fonts/MarkWebPro-Medium.woff") format("woff");
}

:root {
  --wert: .75rem;
  --border: 12px;
  --container: 760px;
  --gutter: 30px;
  --color-black: #000;
  --color-white: #fff;
  --color-grey: #777;
  --color-light: #efefef;
  --color-text: var(--color-black);
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-light);
  --color-code-light-grey:  #cacbd1;
  --color-code-comment:     #a9aaad;
  --color-code-white:       #c5c9c6;
  --color-code-red:         #d16464;
  --color-code-orange:      #de935f;
  --color-code-yellow:      #f0c674;
  --color-code-green:       #a7bd68;
  --color-code-aqua:        #8abeb7;
  --color-code-blue:        #7e9abf;
  --color-code-purple:      #b294bb;
  --font-family-sans: "Mark", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-sans-medium: "Mark-M", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

  --font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
}

/* reset
 ========================================================================== */
*, *::before, *::after 
{
  box-sizing: border-box;
}

* 
{
  margin: 0;
  /* outline: 1px solid deeppink; */
}
.comment
{
  display: none; 
  color: darkblue;
  padding: 1rem;
}

html, body 
{
  height: 100%;
}

body 
{
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, canvas, svg 
{
  /* display: block; */
  max-width: 100%;
}

input, button, textarea, select 
{
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 
{
  overflow-wrap: break-word;
}

#root, #__next 
{
  isolation: isolate;
}



/*
 ========================================================================== */

html {
  font-size: 16px;
  font-family: var(--font-family-sans);
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.375;
  font-weight: 300;
  font-variant-ligatures: normal;
}






a {
  color: currentColor;
  text-decoration: none;
}
button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}
strong, b {
  font-weight: 600;
}
small {
  font-size: inherit;
  color: var(--color-text-grey);
}

/* grid
 ========================================================================== */

.container__full {
  width: calc(100% - 0px);
  margin: 0 auto;
}

.container {
  width: calc(100% - calc(var(--wert) * 2));
  max-width: var(--container);
  margin: 0 auto;
}
.grid {
  --columns: 12;
  --gutter: calc(var(--wert) * 2);
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
}

.grid > .column {
  margin-bottom:  calc(var(--wert) / 2);
}

.autogrid {
  --gutter: calc(var(--wert) * 0 );
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}

@media (min-width:  1024px) {
.grid {
  grid-template-columns: repeat(12, 1fr);
}
.grid > .column {
  grid-column: span var(--columns);
}
}

/* typo
 ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-sans-medium);
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
}

a {
  text-decoration: none;
}
a:hover{
  opacity: .5;
}
:first-child {
  margin-top: 0;
}
:last-child {
  margin-bottom: 0;
}
p,
ul,
ol {
  margin-bottom: calc(var(--wert) * 2);
}

p {
  font-size: 21px;
}

.order_a {
   order: 2;
 } 

@media (min-width:  1024px) {
 .order_b {
   order: 2;
 } 
}


ul,
ol {
  margin-left: 0rem;
}
ul p,
ol p {
  margin-bottom: calc(var(--wert) * 2);
}
ul > li {
  list-style: none;
}
ol > li {
  list-style: decimal;
}
ul ol,
ul ul,
ol ul,
ol ol {
  margin-bottom: 0;
}

ul li::before {
  content: "+ ";
}
.outside{
  list-style-position: outside!important;
}

h1,
.h1{
  font-size: 2rem;
  margin-bottom: calc(var(--wert) * 1.5);
  line-height: 1.025em;
  font-weight: 400;
}
h2,
.h2 {
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 1.125rem;
  margin-bottom: calc(var(--wert) * 0.5);
}
h3,
.h3 {
  font-weight: 400;
  margin-bottom: 1rem;
  margin-bottom: calc(var(--wert) * 0.5);
}

/* helper - align
 ========================================================================== */

.mb__s {
  margin-bottom: .75rem;
}
.mb__m {
  margin-bottom: 1.5rem;
}
.mb__l {
  margin-bottom: 3rem;
}
.mb__xl {
  margin-bottom: 4.5rem;
}
.mb__xxl {
  margin-bottom: 9rem;
}
.mt__l {
  margin-top: 3rem;
}

/* images
 ========================================================================== */
.img 
{
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: transparent;
}
.img img
{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
/* .img[data-contain] img 
{
  object-fit: contain;
} */
.img-caption
{
  padding-top: .75rem;
  line-height: 1.5;
}


/* header
 ========================================================================== */
   
.pulse
{
    background: lightgoldenrodyellow;
    padding: 2rem;
    animation: pulse 10s infinite;
}

@keyframes pulse {
  0% {
    background-color: lightgoldenrodyellow;
    background-color: rgba(249, 249, 209, .85);
  }
  25% {
    background-color: lightcoral;
    background-color: rgba(239, 127, 127, .85);
  }
  50% {
    background-color: lightblue;
    background-color: rgba(173, 216, 229, .85);
  }
  100% {
    background-color: lightgoldenrodyellow;
    background-color: rgba(249, 249, 209, .85);
  }
}



  #law__menu{
    width: 100%;
    background: var(--color-light);
    font-size: .55em;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: calc(var(--wert) / 2) 0;
    position:fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
  }
  
  #law__menu a{
    color: var(--color-grey);
    opacity: .4;
  }
 
 
  #law__menu nav{
    list-style: none!important;
    margin: 0;
    width: 100%;
  }
  
  #law__menu nav ul {
    list-style: none!important;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    /* justify-content: right; */
    text-align: left;
    flex-direction: row-reverse; 
    margin: 0;
    padding: 0;
  }
  
  #law__menu nav ul li{
    list-style: none!important;
    display: list-item;
    text-align: -webkit-match-parent;
    padding: 0 var(--wert) 0 0;
  }
  
  #law__menu nav ul li a{
    list-style: none!important;
    text-decoration: none;
    color: var(--color-grey);
  }
  
  #law__menu nav ul li a:hover{
    opacity: .5;
  }
  


  /* footer
   ========================================================================== */
   
  footer{
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     z-index: 3;
  }
  
  footer #footer__menu_main{
    width: 100%;
    padding: var(--wert) 0;
    background: var(--color-white);
  }
   
  footer nav{
    list-style: none!important;
    margin: 0;
    width: 100%;
  }
  
  footer nav ul {
    list-style: none!important;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    text-align: center;
  }
  
  footer nav ul li{
    list-style: none!important;
    display: list-item;
    text-align: -webkit-match-parent;
    padding: 0 var(--wert);
  }
  
  footer nav ul li a{
    list-style: none!important;
    text-decoration: none;
    color:var(--color-grey);
  }
  
  footer nav ul li a:hover{
    opacity: .5;
  }



/*! Flickity v2.3.0
  https://flickity.metafizzy.co
  ---------------------------------------------- */
  
  .flickity-enabled {
    position: relative;
  }
  
  .flickity-enabled:focus { outline: none; }
  
  .flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
  }
  
  .flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  /* draggable */
  
  .flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  
  .flickity-enabled.is-draggable .flickity-viewport {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
  }
  
  .flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: -webkit-grabbing;
    cursor: grabbing;
  }
  
  /* ---- flickity-button ---- */
  
  .flickity-button {
    position: absolute;
    background: hsla(0, 0%, 100%, 0.75);
    border: none;
    color: #333;
  }
  
  .flickity-button:hover {
    background: white;
    cursor: pointer;
  }
  
  .flickity-button:focus {
    outline: none;
    box-shadow: 0 0 0 5px #19F;
  }
  
  .flickity-button:active {
    opacity: 0.6;
  }
  
  .flickity-button:disabled {
    opacity: 0.3;
    cursor: auto;
    /* prevent disabled button from capturing pointer up event. #716 */
    pointer-events: none;
  }
  
  .flickity-button-icon {
    fill: currentColor;
  }
  
  /* ---- previous/next buttons ---- */
  
  .flickity-prev-next-button {
    top: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    /* vertically center */
    transform: translateY(-50%);
  }
  
  .flickity-prev-next-button.previous { left: 10px; }
  .flickity-prev-next-button.next { right: 10px; }
  /* right to left */
  .flickity-rtl .flickity-prev-next-button.previous {
    left: auto;
    right: 10px;
  }
  .flickity-rtl .flickity-prev-next-button.next {
    right: auto;
    left: 10px;
  }
  
  .flickity-prev-next-button .flickity-button-icon {
    position: absolute;
    left: 20%;
    top: 20%;
    width: 60%;
    height: 60%;
  }
  
  /* ---- page dots ---- */
  
  .flickity-page-dots {
    position: absolute;
    width: 100%;
    bottom: -25px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    line-height: 1;
  }
  
  .flickity-rtl .flickity-page-dots { direction: rtl; }
  
  .flickity-page-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 8px;
    background: #333;
    border-radius: 50%;
    opacity: 0.25;
    cursor: pointer;
  }
  
  .flickity-page-dots .dot.is-selected {
    opacity: 1;
  }
  
  /* flickity-fade */
  
  .flickity-enabled.is-fade .flickity-slider > * {
    pointer-events: none;
    z-index: 0;
  }
  
  .flickity-enabled.is-fade .flickity-slider > .is-selected {
    pointer-events: auto;
    z-index: 1;
  }