/*
	UTILS
	--------------------------------------------------
*/
/*  
  MEDIA QUERIES
*/
/*
  INTERPOLATION
  * Computes a CSS calc function that betweens a value from
  * A to B over viewport-width A to viewport-width B.
  * Requires a media query to cap the value at B.
*/
/*
  QUERY MIXINS
*/
@import url("https://../fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@media screen and (max-width: 478px) {
  .xs-hide {
    display: none !important;
  }
}

.xs-show {
  display: none !important;
}
@media screen and (max-width: 478px) {
  .xs-show {
    display: block !important;
  }
  .xs-show.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/*  
    Author: Rafal Bromirski
    www: http:rafalbromirski.com/
    github: http:github.com/rafalbromirski/sass-mediaqueries

    Licensed under a MIT License

    Version:
    1.6.1
*/
/* generator */
/*screen*/
/*hdpi*/
/*hdtv*/
/*iphone4*/
/*iphone5*/
/*iphone6*/
/*iphone6 plus*/
/*ipad (all)*/
/*ipad-retina*/
/*orientation*/
/*defaults*/
/*$defaultEasing: cubic-bezier(0.860, 0.000, 0.070, 1.000);*/
/*transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);*/
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0.5em);
            transform: translateY(0.5em);
  }
  50% {
    -webkit-transform: translateY(-0.5em);
            transform: translateY(-0.5em);
  }
  100% {
    -webkit-transform: translateY(0.5em);
            transform: translateY(0.5em);
  }
}
@keyframes floating {
  0% {
    -webkit-transform: translateY(0.5em);
            transform: translateY(0.5em);
  }
  50% {
    -webkit-transform: translateY(-0.5em);
            transform: translateY(-0.5em);
  }
  100% {
    -webkit-transform: translateY(0.5em);
            transform: translateY(0.5em);
  }
}
/*
	BETWEEN
*/
/**
 * Computes a CSS calc function that betweens a value from
 * A to B over viewport-width A to viewport-width B.
 * Requires a media query to cap the value at B.
 */
/*
	ROTATED TEXT
*/
/*
	RUNDOM NUMBER BEETWEEN
*/
/*
///////////////////////////////////////////////////////////
// Plain SASS Trigonometry Algorithm in Taylor Expansion //
//                                                       //
// Based on                                              //
//      http://japborst.net/posts/sass-sines-and-cosines //
///////////////////////////////////////////////////////////*/
/*
	BASE 
	--------------------------------------------------
*/
:root {
  /*

  	COLORS

  */
  --color-acc: 143, 158, 46;
  --color-prim: 0, 72, 153;
  --color-sec: 163, 126, 223;
  --color-border: 245, 242, 255;
  --color-medium: 172, 163, 197;
  --color-dark: 67, 85, 82;
  --color-jrd-green: 29, 67, 33;
  --color-color-1: 254, 241, 255;
  --color-color-2: 244, 241, 255;
  --color-color-3: 244, 240, 255;
  --color-green: 49, 207, 40;
  --color-light-green: 225, 227, 189;
  --color-sand: 163, 155, 139;
  --color-light: 215, 209, 198;
  --color-brown: 87, 83, 73;
  --color-grey: 196, 207, 209;
  --color-teal: 81, 99, 103;
  --color-red: 218, 32, 62;
  --color-bordo: 75, 4, 30;
  --color-yellow: 255, 245, 226;
  --color-orange: 238, 157, 13;
  --color-blue: 224, 242, 250;
  --color-light-yellow: 255, 245, 226;
  --color-light-purple: 228, 225, 250;
  --color-pink: 255, 222, 222;
  --color-darkgreen: 41, 68, 62;
  --color-violet: 194, 187, 243;
  --color-beige: 227, 224, 217;
  --color-text: 49, 57, 55;
  --color-black: 0, 0, 0;
  --color-white: 255, 255, 255;
  --color-invert: 242, 242, 242;
  --grad-light: linear-gradient(120deg, #D1DAFA -100%, #EFF3FF 50%, #FFE4E6 200%);
  --grad-light-right: linear-gradient(120deg, transparent 50%, #EFF3FF 100%, #FFE4E6 200%);
  --grad-accent: linear-gradient(120deg, #A37EDF 0%, #8E8BFF 100%);
  --grad-1: linear-gradient(to top, rgba(143, 158, 46, 0.5) -50%, rgba(224, 242, 250, 0.3) 120%);
  /*

  	BORDER

  */
  --border-radius: Max(1.5rem,1.5em);
  --border-color: var(--color-border);
  /*

  	SPACING

  */
  --pad-base: 1.5rem;
  --pad: calc(var(--pad-base) * 2);
  --pad-3: calc(var(--pad) * 3);
  --pad-4: calc(var(--pad) * 4);
  --pad-half: calc(var(--pad) * 0.5);
  --pad-two-third: calc(var(--pad) * 0.66666);
  --pad-third: calc(var(--pad) * 0.33333);
  --pad-quarter: calc(var(--pad) * 0.25);
  --pad-2: calc(var(--pad-base) * 2);
  --pad-3: calc(var(--pad-base) * 3);
  --pad-large: calc(var(--pad-base) * 8);
  --pad-xl: calc(var(--pad-base) * 15);
  --pad-xs: calc(var(--pad-base) * 1);
  /*

  	BODY

  */
  --body-bg-color: #435552;
  /*	--body-bg-color: #e7e9e6;*/
  --body-bg-gradient: var(--grad-light);
  --body-text-color: #313937;
  --main-bg: #d7d1c6;
  --loader-bg: black;
  --header-bg: black;
  /*

  	HEADER

  */
  --header-width: 7rem;
  --header-border: linear-gradient(to top, #f5f2ff 80%, transparent 100%);
  /*

  	MAIN

  */
  /*

  	ASIDE

  */
  --aside-width: 50%;
  --aside-bg: #f4f1ff;
  --aside-border: linear-gradient(to top, #f5f2ff 80%, transparent 100%);
  /*

  	CARDS

  */
  --card-spacing: calc(var(--pad)*.1);
  --card-radius: var(--border-radius);
  --card-inner-radius: calc(var(--card-radius)*.75);
  /*	--card-pad: calc(var(--pad)*1.3);*/
  --card-bg: #f5f2ff;
  --card-bg-hover: white;
  --card-thumb-bg: rgba(172, 163, 197, 0.3);
  --card-pad: 5vw;
  --card-pad-small: 3vw;
  /*

  	MODALS

  */
  --modal-bg: #d7d1c6;
  --modal-size: 50rem;
  --modal-size-medium: 60rem;
  --modal-size-large: 76rem;
  /*

  	PAGE

  */
  --page-bg: #f2f2f2;
  --page-size: Min(105rem, 100%);
  --page-radius: calc(var(--border-radius)*1.4);
  --fake-bg: var(--card-bg);
  --page-pad: calc(var(--pad-base) * 2.2);
  --page-pad-wide: calc(var(--pad-half)*1);
  /*

  	BUTTONS

  */
  --btn-radius: 1.3rem;
  --btn-size: calc(var(--pad)*1.2);
  /*

  	ICONS

  */
  --icon-size: 1.4rem;
  --icon-stroke-width: 1.5;
  /*

  	FILTERS

  */
  --icon-filter: invert(1);
  --img-filter: invert(0);
  /*

  	IMAGE

  */
  --img-radius: 1.5rem;
}
:root .bg-acc {
  background-color: #8F9E2E;
  --background: 143, 158, 46;
}
:root .c-acc {
  color: #8F9E2E;
  --col: 143, 158, 46;
}
:root .bg-acc-1 {
  background-color: rgba(143, 158, 46, 0.1);
  --background: 143, 158, 46,0.1;
}
:root .c-acc-1 {
  color: rgba(143, 158, 46, 0.1);
  --col: 143, 158, 46,0.1;
}
:root .bg-acc-2 {
  background-color: rgba(143, 158, 46, 0.2);
  --background: 143, 158, 46,0.2;
}
:root .c-acc-2 {
  color: rgba(143, 158, 46, 0.2);
  --col: 143, 158, 46,0.2;
}
:root .bg-acc-3 {
  background-color: rgba(143, 158, 46, 0.3);
  --background: 143, 158, 46,0.3;
}
:root .c-acc-3 {
  color: rgba(143, 158, 46, 0.3);
  --col: 143, 158, 46,0.3;
}
:root .bg-acc-4 {
  background-color: rgba(143, 158, 46, 0.4);
  --background: 143, 158, 46,0.4;
}
:root .c-acc-4 {
  color: rgba(143, 158, 46, 0.4);
  --col: 143, 158, 46,0.4;
}
:root .bg-acc-5 {
  background-color: rgba(143, 158, 46, 0.5);
  --background: 143, 158, 46,0.5;
}
:root .c-acc-5 {
  color: rgba(143, 158, 46, 0.5);
  --col: 143, 158, 46,0.5;
}
:root .bg-acc-6 {
  background-color: rgba(143, 158, 46, 0.6);
  --background: 143, 158, 46,0.6;
}
:root .c-acc-6 {
  color: rgba(143, 158, 46, 0.6);
  --col: 143, 158, 46,0.6;
}
:root .bg-acc-7 {
  background-color: rgba(143, 158, 46, 0.7);
  --background: 143, 158, 46,0.7;
}
:root .c-acc-7 {
  color: rgba(143, 158, 46, 0.7);
  --col: 143, 158, 46,0.7;
}
:root .bg-acc-8 {
  background-color: rgba(143, 158, 46, 0.8);
  --background: 143, 158, 46,0.8;
}
:root .c-acc-8 {
  color: rgba(143, 158, 46, 0.8);
  --col: 143, 158, 46,0.8;
}
:root .bg-acc-9 {
  background-color: rgba(143, 158, 46, 0.9);
  --background: 143, 158, 46,0.9;
}
:root .c-acc-9 {
  color: rgba(143, 158, 46, 0.9);
  --col: 143, 158, 46,0.9;
}
:root .bg-prim {
  background-color: #004899;
  --background: 0, 72, 153;
}
:root .c-prim {
  color: #004899;
  --col: 0, 72, 153;
}
:root .bg-prim-1 {
  background-color: rgba(0, 72, 153, 0.1);
  --background: 0, 72, 153,0.1;
}
:root .c-prim-1 {
  color: rgba(0, 72, 153, 0.1);
  --col: 0, 72, 153,0.1;
}
:root .bg-prim-2 {
  background-color: rgba(0, 72, 153, 0.2);
  --background: 0, 72, 153,0.2;
}
:root .c-prim-2 {
  color: rgba(0, 72, 153, 0.2);
  --col: 0, 72, 153,0.2;
}
:root .bg-prim-3 {
  background-color: rgba(0, 72, 153, 0.3);
  --background: 0, 72, 153,0.3;
}
:root .c-prim-3 {
  color: rgba(0, 72, 153, 0.3);
  --col: 0, 72, 153,0.3;
}
:root .bg-prim-4 {
  background-color: rgba(0, 72, 153, 0.4);
  --background: 0, 72, 153,0.4;
}
:root .c-prim-4 {
  color: rgba(0, 72, 153, 0.4);
  --col: 0, 72, 153,0.4;
}
:root .bg-prim-5 {
  background-color: rgba(0, 72, 153, 0.5);
  --background: 0, 72, 153,0.5;
}
:root .c-prim-5 {
  color: rgba(0, 72, 153, 0.5);
  --col: 0, 72, 153,0.5;
}
:root .bg-prim-6 {
  background-color: rgba(0, 72, 153, 0.6);
  --background: 0, 72, 153,0.6;
}
:root .c-prim-6 {
  color: rgba(0, 72, 153, 0.6);
  --col: 0, 72, 153,0.6;
}
:root .bg-prim-7 {
  background-color: rgba(0, 72, 153, 0.7);
  --background: 0, 72, 153,0.7;
}
:root .c-prim-7 {
  color: rgba(0, 72, 153, 0.7);
  --col: 0, 72, 153,0.7;
}
:root .bg-prim-8 {
  background-color: rgba(0, 72, 153, 0.8);
  --background: 0, 72, 153,0.8;
}
:root .c-prim-8 {
  color: rgba(0, 72, 153, 0.8);
  --col: 0, 72, 153,0.8;
}
:root .bg-prim-9 {
  background-color: rgba(0, 72, 153, 0.9);
  --background: 0, 72, 153,0.9;
}
:root .c-prim-9 {
  color: rgba(0, 72, 153, 0.9);
  --col: 0, 72, 153,0.9;
}
:root .bg-sec {
  background-color: #A37EDF;
  --background: 163, 126, 223;
}
:root .c-sec {
  color: #A37EDF;
  --col: 163, 126, 223;
}
:root .bg-sec-1 {
  background-color: rgba(163, 126, 223, 0.1);
  --background: 163, 126, 223,0.1;
}
:root .c-sec-1 {
  color: rgba(163, 126, 223, 0.1);
  --col: 163, 126, 223,0.1;
}
:root .bg-sec-2 {
  background-color: rgba(163, 126, 223, 0.2);
  --background: 163, 126, 223,0.2;
}
:root .c-sec-2 {
  color: rgba(163, 126, 223, 0.2);
  --col: 163, 126, 223,0.2;
}
:root .bg-sec-3 {
  background-color: rgba(163, 126, 223, 0.3);
  --background: 163, 126, 223,0.3;
}
:root .c-sec-3 {
  color: rgba(163, 126, 223, 0.3);
  --col: 163, 126, 223,0.3;
}
:root .bg-sec-4 {
  background-color: rgba(163, 126, 223, 0.4);
  --background: 163, 126, 223,0.4;
}
:root .c-sec-4 {
  color: rgba(163, 126, 223, 0.4);
  --col: 163, 126, 223,0.4;
}
:root .bg-sec-5 {
  background-color: rgba(163, 126, 223, 0.5);
  --background: 163, 126, 223,0.5;
}
:root .c-sec-5 {
  color: rgba(163, 126, 223, 0.5);
  --col: 163, 126, 223,0.5;
}
:root .bg-sec-6 {
  background-color: rgba(163, 126, 223, 0.6);
  --background: 163, 126, 223,0.6;
}
:root .c-sec-6 {
  color: rgba(163, 126, 223, 0.6);
  --col: 163, 126, 223,0.6;
}
:root .bg-sec-7 {
  background-color: rgba(163, 126, 223, 0.7);
  --background: 163, 126, 223,0.7;
}
:root .c-sec-7 {
  color: rgba(163, 126, 223, 0.7);
  --col: 163, 126, 223,0.7;
}
:root .bg-sec-8 {
  background-color: rgba(163, 126, 223, 0.8);
  --background: 163, 126, 223,0.8;
}
:root .c-sec-8 {
  color: rgba(163, 126, 223, 0.8);
  --col: 163, 126, 223,0.8;
}
:root .bg-sec-9 {
  background-color: rgba(163, 126, 223, 0.9);
  --background: 163, 126, 223,0.9;
}
:root .c-sec-9 {
  color: rgba(163, 126, 223, 0.9);
  --col: 163, 126, 223,0.9;
}
:root .bg-border {
  background-color: #F5F2FF;
  --background: 245, 242, 255;
}
:root .c-border {
  color: #F5F2FF;
  --col: 245, 242, 255;
}
:root .bg-border-1 {
  background-color: rgba(245, 242, 255, 0.1);
  --background: 245, 242, 255,0.1;
}
:root .c-border-1 {
  color: rgba(245, 242, 255, 0.1);
  --col: 245, 242, 255,0.1;
}
:root .bg-border-2 {
  background-color: rgba(245, 242, 255, 0.2);
  --background: 245, 242, 255,0.2;
}
:root .c-border-2 {
  color: rgba(245, 242, 255, 0.2);
  --col: 245, 242, 255,0.2;
}
:root .bg-border-3 {
  background-color: rgba(245, 242, 255, 0.3);
  --background: 245, 242, 255,0.3;
}
:root .c-border-3 {
  color: rgba(245, 242, 255, 0.3);
  --col: 245, 242, 255,0.3;
}
:root .bg-border-4 {
  background-color: rgba(245, 242, 255, 0.4);
  --background: 245, 242, 255,0.4;
}
:root .c-border-4 {
  color: rgba(245, 242, 255, 0.4);
  --col: 245, 242, 255,0.4;
}
:root .bg-border-5 {
  background-color: rgba(245, 242, 255, 0.5);
  --background: 245, 242, 255,0.5;
}
:root .c-border-5 {
  color: rgba(245, 242, 255, 0.5);
  --col: 245, 242, 255,0.5;
}
:root .bg-border-6 {
  background-color: rgba(245, 242, 255, 0.6);
  --background: 245, 242, 255,0.6;
}
:root .c-border-6 {
  color: rgba(245, 242, 255, 0.6);
  --col: 245, 242, 255,0.6;
}
:root .bg-border-7 {
  background-color: rgba(245, 242, 255, 0.7);
  --background: 245, 242, 255,0.7;
}
:root .c-border-7 {
  color: rgba(245, 242, 255, 0.7);
  --col: 245, 242, 255,0.7;
}
:root .bg-border-8 {
  background-color: rgba(245, 242, 255, 0.8);
  --background: 245, 242, 255,0.8;
}
:root .c-border-8 {
  color: rgba(245, 242, 255, 0.8);
  --col: 245, 242, 255,0.8;
}
:root .bg-border-9 {
  background-color: rgba(245, 242, 255, 0.9);
  --background: 245, 242, 255,0.9;
}
:root .c-border-9 {
  color: rgba(245, 242, 255, 0.9);
  --col: 245, 242, 255,0.9;
}
:root .bg-medium {
  background-color: #ACA3C5;
  --background: 172, 163, 197;
}
:root .c-medium {
  color: #ACA3C5;
  --col: 172, 163, 197;
}
:root .bg-medium-1 {
  background-color: rgba(172, 163, 197, 0.1);
  --background: 172, 163, 197,0.1;
}
:root .c-medium-1 {
  color: rgba(172, 163, 197, 0.1);
  --col: 172, 163, 197,0.1;
}
:root .bg-medium-2 {
  background-color: rgba(172, 163, 197, 0.2);
  --background: 172, 163, 197,0.2;
}
:root .c-medium-2 {
  color: rgba(172, 163, 197, 0.2);
  --col: 172, 163, 197,0.2;
}
:root .bg-medium-3 {
  background-color: rgba(172, 163, 197, 0.3);
  --background: 172, 163, 197,0.3;
}
:root .c-medium-3 {
  color: rgba(172, 163, 197, 0.3);
  --col: 172, 163, 197,0.3;
}
:root .bg-medium-4 {
  background-color: rgba(172, 163, 197, 0.4);
  --background: 172, 163, 197,0.4;
}
:root .c-medium-4 {
  color: rgba(172, 163, 197, 0.4);
  --col: 172, 163, 197,0.4;
}
:root .bg-medium-5 {
  background-color: rgba(172, 163, 197, 0.5);
  --background: 172, 163, 197,0.5;
}
:root .c-medium-5 {
  color: rgba(172, 163, 197, 0.5);
  --col: 172, 163, 197,0.5;
}
:root .bg-medium-6 {
  background-color: rgba(172, 163, 197, 0.6);
  --background: 172, 163, 197,0.6;
}
:root .c-medium-6 {
  color: rgba(172, 163, 197, 0.6);
  --col: 172, 163, 197,0.6;
}
:root .bg-medium-7 {
  background-color: rgba(172, 163, 197, 0.7);
  --background: 172, 163, 197,0.7;
}
:root .c-medium-7 {
  color: rgba(172, 163, 197, 0.7);
  --col: 172, 163, 197,0.7;
}
:root .bg-medium-8 {
  background-color: rgba(172, 163, 197, 0.8);
  --background: 172, 163, 197,0.8;
}
:root .c-medium-8 {
  color: rgba(172, 163, 197, 0.8);
  --col: 172, 163, 197,0.8;
}
:root .bg-medium-9 {
  background-color: rgba(172, 163, 197, 0.9);
  --background: 172, 163, 197,0.9;
}
:root .c-medium-9 {
  color: rgba(172, 163, 197, 0.9);
  --col: 172, 163, 197,0.9;
}
:root .bg-dark {
  background-color: #435552;
  --background: 67, 85, 82;
}
:root .c-dark {
  color: #435552;
  --col: 67, 85, 82;
}
:root .bg-dark-1 {
  background-color: rgba(67, 85, 82, 0.1);
  --background: 67, 85, 82,0.1;
}
:root .c-dark-1 {
  color: rgba(67, 85, 82, 0.1);
  --col: 67, 85, 82,0.1;
}
:root .bg-dark-2 {
  background-color: rgba(67, 85, 82, 0.2);
  --background: 67, 85, 82,0.2;
}
:root .c-dark-2 {
  color: rgba(67, 85, 82, 0.2);
  --col: 67, 85, 82,0.2;
}
:root .bg-dark-3 {
  background-color: rgba(67, 85, 82, 0.3);
  --background: 67, 85, 82,0.3;
}
:root .c-dark-3 {
  color: rgba(67, 85, 82, 0.3);
  --col: 67, 85, 82,0.3;
}
:root .bg-dark-4 {
  background-color: rgba(67, 85, 82, 0.4);
  --background: 67, 85, 82,0.4;
}
:root .c-dark-4 {
  color: rgba(67, 85, 82, 0.4);
  --col: 67, 85, 82,0.4;
}
:root .bg-dark-5 {
  background-color: rgba(67, 85, 82, 0.5);
  --background: 67, 85, 82,0.5;
}
:root .c-dark-5 {
  color: rgba(67, 85, 82, 0.5);
  --col: 67, 85, 82,0.5;
}
:root .bg-dark-6 {
  background-color: rgba(67, 85, 82, 0.6);
  --background: 67, 85, 82,0.6;
}
:root .c-dark-6 {
  color: rgba(67, 85, 82, 0.6);
  --col: 67, 85, 82,0.6;
}
:root .bg-dark-7 {
  background-color: rgba(67, 85, 82, 0.7);
  --background: 67, 85, 82,0.7;
}
:root .c-dark-7 {
  color: rgba(67, 85, 82, 0.7);
  --col: 67, 85, 82,0.7;
}
:root .bg-dark-8 {
  background-color: rgba(67, 85, 82, 0.8);
  --background: 67, 85, 82,0.8;
}
:root .c-dark-8 {
  color: rgba(67, 85, 82, 0.8);
  --col: 67, 85, 82,0.8;
}
:root .bg-dark-9 {
  background-color: rgba(67, 85, 82, 0.9);
  --background: 67, 85, 82,0.9;
}
:root .c-dark-9 {
  color: rgba(67, 85, 82, 0.9);
  --col: 67, 85, 82,0.9;
}
:root .bg-jrd-green {
  background-color: #1d4321;
  --background: 29, 67, 33;
}
:root .c-jrd-green {
  color: #1d4321;
  --col: 29, 67, 33;
}
:root .bg-jrd-green-1 {
  background-color: rgba(29, 67, 33, 0.1);
  --background: 29, 67, 33,0.1;
}
:root .c-jrd-green-1 {
  color: rgba(29, 67, 33, 0.1);
  --col: 29, 67, 33,0.1;
}
:root .bg-jrd-green-2 {
  background-color: rgba(29, 67, 33, 0.2);
  --background: 29, 67, 33,0.2;
}
:root .c-jrd-green-2 {
  color: rgba(29, 67, 33, 0.2);
  --col: 29, 67, 33,0.2;
}
:root .bg-jrd-green-3 {
  background-color: rgba(29, 67, 33, 0.3);
  --background: 29, 67, 33,0.3;
}
:root .c-jrd-green-3 {
  color: rgba(29, 67, 33, 0.3);
  --col: 29, 67, 33,0.3;
}
:root .bg-jrd-green-4 {
  background-color: rgba(29, 67, 33, 0.4);
  --background: 29, 67, 33,0.4;
}
:root .c-jrd-green-4 {
  color: rgba(29, 67, 33, 0.4);
  --col: 29, 67, 33,0.4;
}
:root .bg-jrd-green-5 {
  background-color: rgba(29, 67, 33, 0.5);
  --background: 29, 67, 33,0.5;
}
:root .c-jrd-green-5 {
  color: rgba(29, 67, 33, 0.5);
  --col: 29, 67, 33,0.5;
}
:root .bg-jrd-green-6 {
  background-color: rgba(29, 67, 33, 0.6);
  --background: 29, 67, 33,0.6;
}
:root .c-jrd-green-6 {
  color: rgba(29, 67, 33, 0.6);
  --col: 29, 67, 33,0.6;
}
:root .bg-jrd-green-7 {
  background-color: rgba(29, 67, 33, 0.7);
  --background: 29, 67, 33,0.7;
}
:root .c-jrd-green-7 {
  color: rgba(29, 67, 33, 0.7);
  --col: 29, 67, 33,0.7;
}
:root .bg-jrd-green-8 {
  background-color: rgba(29, 67, 33, 0.8);
  --background: 29, 67, 33,0.8;
}
:root .c-jrd-green-8 {
  color: rgba(29, 67, 33, 0.8);
  --col: 29, 67, 33,0.8;
}
:root .bg-jrd-green-9 {
  background-color: rgba(29, 67, 33, 0.9);
  --background: 29, 67, 33,0.9;
}
:root .c-jrd-green-9 {
  color: rgba(29, 67, 33, 0.9);
  --col: 29, 67, 33,0.9;
}
:root .bg-color-1 {
  background-color: #FEF1FF;
  --background: 254, 241, 255;
}
:root .c-color-1 {
  color: #FEF1FF;
  --col: 254, 241, 255;
}
:root .bg-color-1-1 {
  background-color: rgba(254, 241, 255, 0.1);
  --background: 254, 241, 255,0.1;
}
:root .c-color-1-1 {
  color: rgba(254, 241, 255, 0.1);
  --col: 254, 241, 255,0.1;
}
:root .bg-color-1-2 {
  background-color: rgba(254, 241, 255, 0.2);
  --background: 254, 241, 255,0.2;
}
:root .c-color-1-2 {
  color: rgba(254, 241, 255, 0.2);
  --col: 254, 241, 255,0.2;
}
:root .bg-color-1-3 {
  background-color: rgba(254, 241, 255, 0.3);
  --background: 254, 241, 255,0.3;
}
:root .c-color-1-3 {
  color: rgba(254, 241, 255, 0.3);
  --col: 254, 241, 255,0.3;
}
:root .bg-color-1-4 {
  background-color: rgba(254, 241, 255, 0.4);
  --background: 254, 241, 255,0.4;
}
:root .c-color-1-4 {
  color: rgba(254, 241, 255, 0.4);
  --col: 254, 241, 255,0.4;
}
:root .bg-color-1-5 {
  background-color: rgba(254, 241, 255, 0.5);
  --background: 254, 241, 255,0.5;
}
:root .c-color-1-5 {
  color: rgba(254, 241, 255, 0.5);
  --col: 254, 241, 255,0.5;
}
:root .bg-color-1-6 {
  background-color: rgba(254, 241, 255, 0.6);
  --background: 254, 241, 255,0.6;
}
:root .c-color-1-6 {
  color: rgba(254, 241, 255, 0.6);
  --col: 254, 241, 255,0.6;
}
:root .bg-color-1-7 {
  background-color: rgba(254, 241, 255, 0.7);
  --background: 254, 241, 255,0.7;
}
:root .c-color-1-7 {
  color: rgba(254, 241, 255, 0.7);
  --col: 254, 241, 255,0.7;
}
:root .bg-color-1-8 {
  background-color: rgba(254, 241, 255, 0.8);
  --background: 254, 241, 255,0.8;
}
:root .c-color-1-8 {
  color: rgba(254, 241, 255, 0.8);
  --col: 254, 241, 255,0.8;
}
:root .bg-color-1-9 {
  background-color: rgba(254, 241, 255, 0.9);
  --background: 254, 241, 255,0.9;
}
:root .c-color-1-9 {
  color: rgba(254, 241, 255, 0.9);
  --col: 254, 241, 255,0.9;
}
:root .bg-color-2 {
  background-color: #F4F1FF;
  --background: 244, 241, 255;
}
:root .c-color-2 {
  color: #F4F1FF;
  --col: 244, 241, 255;
}
:root .bg-color-2-1 {
  background-color: rgba(244, 241, 255, 0.1);
  --background: 244, 241, 255,0.1;
}
:root .c-color-2-1 {
  color: rgba(244, 241, 255, 0.1);
  --col: 244, 241, 255,0.1;
}
:root .bg-color-2-2 {
  background-color: rgba(244, 241, 255, 0.2);
  --background: 244, 241, 255,0.2;
}
:root .c-color-2-2 {
  color: rgba(244, 241, 255, 0.2);
  --col: 244, 241, 255,0.2;
}
:root .bg-color-2-3 {
  background-color: rgba(244, 241, 255, 0.3);
  --background: 244, 241, 255,0.3;
}
:root .c-color-2-3 {
  color: rgba(244, 241, 255, 0.3);
  --col: 244, 241, 255,0.3;
}
:root .bg-color-2-4 {
  background-color: rgba(244, 241, 255, 0.4);
  --background: 244, 241, 255,0.4;
}
:root .c-color-2-4 {
  color: rgba(244, 241, 255, 0.4);
  --col: 244, 241, 255,0.4;
}
:root .bg-color-2-5 {
  background-color: rgba(244, 241, 255, 0.5);
  --background: 244, 241, 255,0.5;
}
:root .c-color-2-5 {
  color: rgba(244, 241, 255, 0.5);
  --col: 244, 241, 255,0.5;
}
:root .bg-color-2-6 {
  background-color: rgba(244, 241, 255, 0.6);
  --background: 244, 241, 255,0.6;
}
:root .c-color-2-6 {
  color: rgba(244, 241, 255, 0.6);
  --col: 244, 241, 255,0.6;
}
:root .bg-color-2-7 {
  background-color: rgba(244, 241, 255, 0.7);
  --background: 244, 241, 255,0.7;
}
:root .c-color-2-7 {
  color: rgba(244, 241, 255, 0.7);
  --col: 244, 241, 255,0.7;
}
:root .bg-color-2-8 {
  background-color: rgba(244, 241, 255, 0.8);
  --background: 244, 241, 255,0.8;
}
:root .c-color-2-8 {
  color: rgba(244, 241, 255, 0.8);
  --col: 244, 241, 255,0.8;
}
:root .bg-color-2-9 {
  background-color: rgba(244, 241, 255, 0.9);
  --background: 244, 241, 255,0.9;
}
:root .c-color-2-9 {
  color: rgba(244, 241, 255, 0.9);
  --col: 244, 241, 255,0.9;
}
:root .bg-color-3 {
  background-color: #F4F0FF;
  --background: 244, 240, 255;
}
:root .c-color-3 {
  color: #F4F0FF;
  --col: 244, 240, 255;
}
:root .bg-color-3-1 {
  background-color: rgba(244, 240, 255, 0.1);
  --background: 244, 240, 255,0.1;
}
:root .c-color-3-1 {
  color: rgba(244, 240, 255, 0.1);
  --col: 244, 240, 255,0.1;
}
:root .bg-color-3-2 {
  background-color: rgba(244, 240, 255, 0.2);
  --background: 244, 240, 255,0.2;
}
:root .c-color-3-2 {
  color: rgba(244, 240, 255, 0.2);
  --col: 244, 240, 255,0.2;
}
:root .bg-color-3-3 {
  background-color: rgba(244, 240, 255, 0.3);
  --background: 244, 240, 255,0.3;
}
:root .c-color-3-3 {
  color: rgba(244, 240, 255, 0.3);
  --col: 244, 240, 255,0.3;
}
:root .bg-color-3-4 {
  background-color: rgba(244, 240, 255, 0.4);
  --background: 244, 240, 255,0.4;
}
:root .c-color-3-4 {
  color: rgba(244, 240, 255, 0.4);
  --col: 244, 240, 255,0.4;
}
:root .bg-color-3-5 {
  background-color: rgba(244, 240, 255, 0.5);
  --background: 244, 240, 255,0.5;
}
:root .c-color-3-5 {
  color: rgba(244, 240, 255, 0.5);
  --col: 244, 240, 255,0.5;
}
:root .bg-color-3-6 {
  background-color: rgba(244, 240, 255, 0.6);
  --background: 244, 240, 255,0.6;
}
:root .c-color-3-6 {
  color: rgba(244, 240, 255, 0.6);
  --col: 244, 240, 255,0.6;
}
:root .bg-color-3-7 {
  background-color: rgba(244, 240, 255, 0.7);
  --background: 244, 240, 255,0.7;
}
:root .c-color-3-7 {
  color: rgba(244, 240, 255, 0.7);
  --col: 244, 240, 255,0.7;
}
:root .bg-color-3-8 {
  background-color: rgba(244, 240, 255, 0.8);
  --background: 244, 240, 255,0.8;
}
:root .c-color-3-8 {
  color: rgba(244, 240, 255, 0.8);
  --col: 244, 240, 255,0.8;
}
:root .bg-color-3-9 {
  background-color: rgba(244, 240, 255, 0.9);
  --background: 244, 240, 255,0.9;
}
:root .c-color-3-9 {
  color: rgba(244, 240, 255, 0.9);
  --col: 244, 240, 255,0.9;
}
:root .bg-green {
  background-color: #31cf28;
  --background: 49, 207, 40;
}
:root .c-green {
  color: #31cf28;
  --col: 49, 207, 40;
}
:root .bg-green-1 {
  background-color: rgba(49, 207, 40, 0.1);
  --background: 49, 207, 40,0.1;
}
:root .c-green-1 {
  color: rgba(49, 207, 40, 0.1);
  --col: 49, 207, 40,0.1;
}
:root .bg-green-2 {
  background-color: rgba(49, 207, 40, 0.2);
  --background: 49, 207, 40,0.2;
}
:root .c-green-2 {
  color: rgba(49, 207, 40, 0.2);
  --col: 49, 207, 40,0.2;
}
:root .bg-green-3 {
  background-color: rgba(49, 207, 40, 0.3);
  --background: 49, 207, 40,0.3;
}
:root .c-green-3 {
  color: rgba(49, 207, 40, 0.3);
  --col: 49, 207, 40,0.3;
}
:root .bg-green-4 {
  background-color: rgba(49, 207, 40, 0.4);
  --background: 49, 207, 40,0.4;
}
:root .c-green-4 {
  color: rgba(49, 207, 40, 0.4);
  --col: 49, 207, 40,0.4;
}
:root .bg-green-5 {
  background-color: rgba(49, 207, 40, 0.5);
  --background: 49, 207, 40,0.5;
}
:root .c-green-5 {
  color: rgba(49, 207, 40, 0.5);
  --col: 49, 207, 40,0.5;
}
:root .bg-green-6 {
  background-color: rgba(49, 207, 40, 0.6);
  --background: 49, 207, 40,0.6;
}
:root .c-green-6 {
  color: rgba(49, 207, 40, 0.6);
  --col: 49, 207, 40,0.6;
}
:root .bg-green-7 {
  background-color: rgba(49, 207, 40, 0.7);
  --background: 49, 207, 40,0.7;
}
:root .c-green-7 {
  color: rgba(49, 207, 40, 0.7);
  --col: 49, 207, 40,0.7;
}
:root .bg-green-8 {
  background-color: rgba(49, 207, 40, 0.8);
  --background: 49, 207, 40,0.8;
}
:root .c-green-8 {
  color: rgba(49, 207, 40, 0.8);
  --col: 49, 207, 40,0.8;
}
:root .bg-green-9 {
  background-color: rgba(49, 207, 40, 0.9);
  --background: 49, 207, 40,0.9;
}
:root .c-green-9 {
  color: rgba(49, 207, 40, 0.9);
  --col: 49, 207, 40,0.9;
}
:root .bg-light-green {
  background-color: #E1E3BD;
  --background: 225, 227, 189;
}
:root .c-light-green {
  color: #E1E3BD;
  --col: 225, 227, 189;
}
:root .bg-light-green-1 {
  background-color: rgba(225, 227, 189, 0.1);
  --background: 225, 227, 189,0.1;
}
:root .c-light-green-1 {
  color: rgba(225, 227, 189, 0.1);
  --col: 225, 227, 189,0.1;
}
:root .bg-light-green-2 {
  background-color: rgba(225, 227, 189, 0.2);
  --background: 225, 227, 189,0.2;
}
:root .c-light-green-2 {
  color: rgba(225, 227, 189, 0.2);
  --col: 225, 227, 189,0.2;
}
:root .bg-light-green-3 {
  background-color: rgba(225, 227, 189, 0.3);
  --background: 225, 227, 189,0.3;
}
:root .c-light-green-3 {
  color: rgba(225, 227, 189, 0.3);
  --col: 225, 227, 189,0.3;
}
:root .bg-light-green-4 {
  background-color: rgba(225, 227, 189, 0.4);
  --background: 225, 227, 189,0.4;
}
:root .c-light-green-4 {
  color: rgba(225, 227, 189, 0.4);
  --col: 225, 227, 189,0.4;
}
:root .bg-light-green-5 {
  background-color: rgba(225, 227, 189, 0.5);
  --background: 225, 227, 189,0.5;
}
:root .c-light-green-5 {
  color: rgba(225, 227, 189, 0.5);
  --col: 225, 227, 189,0.5;
}
:root .bg-light-green-6 {
  background-color: rgba(225, 227, 189, 0.6);
  --background: 225, 227, 189,0.6;
}
:root .c-light-green-6 {
  color: rgba(225, 227, 189, 0.6);
  --col: 225, 227, 189,0.6;
}
:root .bg-light-green-7 {
  background-color: rgba(225, 227, 189, 0.7);
  --background: 225, 227, 189,0.7;
}
:root .c-light-green-7 {
  color: rgba(225, 227, 189, 0.7);
  --col: 225, 227, 189,0.7;
}
:root .bg-light-green-8 {
  background-color: rgba(225, 227, 189, 0.8);
  --background: 225, 227, 189,0.8;
}
:root .c-light-green-8 {
  color: rgba(225, 227, 189, 0.8);
  --col: 225, 227, 189,0.8;
}
:root .bg-light-green-9 {
  background-color: rgba(225, 227, 189, 0.9);
  --background: 225, 227, 189,0.9;
}
:root .c-light-green-9 {
  color: rgba(225, 227, 189, 0.9);
  --col: 225, 227, 189,0.9;
}
:root .bg-sand {
  background-color: #a39b8b;
  --background: 163, 155, 139;
}
:root .c-sand {
  color: #a39b8b;
  --col: 163, 155, 139;
}
:root .bg-sand-1 {
  background-color: rgba(163, 155, 139, 0.1);
  --background: 163, 155, 139,0.1;
}
:root .c-sand-1 {
  color: rgba(163, 155, 139, 0.1);
  --col: 163, 155, 139,0.1;
}
:root .bg-sand-2 {
  background-color: rgba(163, 155, 139, 0.2);
  --background: 163, 155, 139,0.2;
}
:root .c-sand-2 {
  color: rgba(163, 155, 139, 0.2);
  --col: 163, 155, 139,0.2;
}
:root .bg-sand-3 {
  background-color: rgba(163, 155, 139, 0.3);
  --background: 163, 155, 139,0.3;
}
:root .c-sand-3 {
  color: rgba(163, 155, 139, 0.3);
  --col: 163, 155, 139,0.3;
}
:root .bg-sand-4 {
  background-color: rgba(163, 155, 139, 0.4);
  --background: 163, 155, 139,0.4;
}
:root .c-sand-4 {
  color: rgba(163, 155, 139, 0.4);
  --col: 163, 155, 139,0.4;
}
:root .bg-sand-5 {
  background-color: rgba(163, 155, 139, 0.5);
  --background: 163, 155, 139,0.5;
}
:root .c-sand-5 {
  color: rgba(163, 155, 139, 0.5);
  --col: 163, 155, 139,0.5;
}
:root .bg-sand-6 {
  background-color: rgba(163, 155, 139, 0.6);
  --background: 163, 155, 139,0.6;
}
:root .c-sand-6 {
  color: rgba(163, 155, 139, 0.6);
  --col: 163, 155, 139,0.6;
}
:root .bg-sand-7 {
  background-color: rgba(163, 155, 139, 0.7);
  --background: 163, 155, 139,0.7;
}
:root .c-sand-7 {
  color: rgba(163, 155, 139, 0.7);
  --col: 163, 155, 139,0.7;
}
:root .bg-sand-8 {
  background-color: rgba(163, 155, 139, 0.8);
  --background: 163, 155, 139,0.8;
}
:root .c-sand-8 {
  color: rgba(163, 155, 139, 0.8);
  --col: 163, 155, 139,0.8;
}
:root .bg-sand-9 {
  background-color: rgba(163, 155, 139, 0.9);
  --background: 163, 155, 139,0.9;
}
:root .c-sand-9 {
  color: rgba(163, 155, 139, 0.9);
  --col: 163, 155, 139,0.9;
}
:root .bg-light {
  background-color: #d7d1c6;
  --background: 215, 209, 198;
}
:root .c-light {
  color: #d7d1c6;
  --col: 215, 209, 198;
}
:root .bg-light-1 {
  background-color: rgba(215, 209, 198, 0.1);
  --background: 215, 209, 198,0.1;
}
:root .c-light-1 {
  color: rgba(215, 209, 198, 0.1);
  --col: 215, 209, 198,0.1;
}
:root .bg-light-2 {
  background-color: rgba(215, 209, 198, 0.2);
  --background: 215, 209, 198,0.2;
}
:root .c-light-2 {
  color: rgba(215, 209, 198, 0.2);
  --col: 215, 209, 198,0.2;
}
:root .bg-light-3 {
  background-color: rgba(215, 209, 198, 0.3);
  --background: 215, 209, 198,0.3;
}
:root .c-light-3 {
  color: rgba(215, 209, 198, 0.3);
  --col: 215, 209, 198,0.3;
}
:root .bg-light-4 {
  background-color: rgba(215, 209, 198, 0.4);
  --background: 215, 209, 198,0.4;
}
:root .c-light-4 {
  color: rgba(215, 209, 198, 0.4);
  --col: 215, 209, 198,0.4;
}
:root .bg-light-5 {
  background-color: rgba(215, 209, 198, 0.5);
  --background: 215, 209, 198,0.5;
}
:root .c-light-5 {
  color: rgba(215, 209, 198, 0.5);
  --col: 215, 209, 198,0.5;
}
:root .bg-light-6 {
  background-color: rgba(215, 209, 198, 0.6);
  --background: 215, 209, 198,0.6;
}
:root .c-light-6 {
  color: rgba(215, 209, 198, 0.6);
  --col: 215, 209, 198,0.6;
}
:root .bg-light-7 {
  background-color: rgba(215, 209, 198, 0.7);
  --background: 215, 209, 198,0.7;
}
:root .c-light-7 {
  color: rgba(215, 209, 198, 0.7);
  --col: 215, 209, 198,0.7;
}
:root .bg-light-8 {
  background-color: rgba(215, 209, 198, 0.8);
  --background: 215, 209, 198,0.8;
}
:root .c-light-8 {
  color: rgba(215, 209, 198, 0.8);
  --col: 215, 209, 198,0.8;
}
:root .bg-light-9 {
  background-color: rgba(215, 209, 198, 0.9);
  --background: 215, 209, 198,0.9;
}
:root .c-light-9 {
  color: rgba(215, 209, 198, 0.9);
  --col: 215, 209, 198,0.9;
}
:root .bg-brown {
  background-color: #575349;
  --background: 87, 83, 73;
}
:root .c-brown {
  color: #575349;
  --col: 87, 83, 73;
}
:root .bg-brown-1 {
  background-color: rgba(87, 83, 73, 0.1);
  --background: 87, 83, 73,0.1;
}
:root .c-brown-1 {
  color: rgba(87, 83, 73, 0.1);
  --col: 87, 83, 73,0.1;
}
:root .bg-brown-2 {
  background-color: rgba(87, 83, 73, 0.2);
  --background: 87, 83, 73,0.2;
}
:root .c-brown-2 {
  color: rgba(87, 83, 73, 0.2);
  --col: 87, 83, 73,0.2;
}
:root .bg-brown-3 {
  background-color: rgba(87, 83, 73, 0.3);
  --background: 87, 83, 73,0.3;
}
:root .c-brown-3 {
  color: rgba(87, 83, 73, 0.3);
  --col: 87, 83, 73,0.3;
}
:root .bg-brown-4 {
  background-color: rgba(87, 83, 73, 0.4);
  --background: 87, 83, 73,0.4;
}
:root .c-brown-4 {
  color: rgba(87, 83, 73, 0.4);
  --col: 87, 83, 73,0.4;
}
:root .bg-brown-5 {
  background-color: rgba(87, 83, 73, 0.5);
  --background: 87, 83, 73,0.5;
}
:root .c-brown-5 {
  color: rgba(87, 83, 73, 0.5);
  --col: 87, 83, 73,0.5;
}
:root .bg-brown-6 {
  background-color: rgba(87, 83, 73, 0.6);
  --background: 87, 83, 73,0.6;
}
:root .c-brown-6 {
  color: rgba(87, 83, 73, 0.6);
  --col: 87, 83, 73,0.6;
}
:root .bg-brown-7 {
  background-color: rgba(87, 83, 73, 0.7);
  --background: 87, 83, 73,0.7;
}
:root .c-brown-7 {
  color: rgba(87, 83, 73, 0.7);
  --col: 87, 83, 73,0.7;
}
:root .bg-brown-8 {
  background-color: rgba(87, 83, 73, 0.8);
  --background: 87, 83, 73,0.8;
}
:root .c-brown-8 {
  color: rgba(87, 83, 73, 0.8);
  --col: 87, 83, 73,0.8;
}
:root .bg-brown-9 {
  background-color: rgba(87, 83, 73, 0.9);
  --background: 87, 83, 73,0.9;
}
:root .c-brown-9 {
  color: rgba(87, 83, 73, 0.9);
  --col: 87, 83, 73,0.9;
}
:root .bg-grey {
  background-color: #c4cfd1;
  --background: 196, 207, 209;
}
:root .c-grey {
  color: #c4cfd1;
  --col: 196, 207, 209;
}
:root .bg-grey-1 {
  background-color: rgba(196, 207, 209, 0.1);
  --background: 196, 207, 209,0.1;
}
:root .c-grey-1 {
  color: rgba(196, 207, 209, 0.1);
  --col: 196, 207, 209,0.1;
}
:root .bg-grey-2 {
  background-color: rgba(196, 207, 209, 0.2);
  --background: 196, 207, 209,0.2;
}
:root .c-grey-2 {
  color: rgba(196, 207, 209, 0.2);
  --col: 196, 207, 209,0.2;
}
:root .bg-grey-3 {
  background-color: rgba(196, 207, 209, 0.3);
  --background: 196, 207, 209,0.3;
}
:root .c-grey-3 {
  color: rgba(196, 207, 209, 0.3);
  --col: 196, 207, 209,0.3;
}
:root .bg-grey-4 {
  background-color: rgba(196, 207, 209, 0.4);
  --background: 196, 207, 209,0.4;
}
:root .c-grey-4 {
  color: rgba(196, 207, 209, 0.4);
  --col: 196, 207, 209,0.4;
}
:root .bg-grey-5 {
  background-color: rgba(196, 207, 209, 0.5);
  --background: 196, 207, 209,0.5;
}
:root .c-grey-5 {
  color: rgba(196, 207, 209, 0.5);
  --col: 196, 207, 209,0.5;
}
:root .bg-grey-6 {
  background-color: rgba(196, 207, 209, 0.6);
  --background: 196, 207, 209,0.6;
}
:root .c-grey-6 {
  color: rgba(196, 207, 209, 0.6);
  --col: 196, 207, 209,0.6;
}
:root .bg-grey-7 {
  background-color: rgba(196, 207, 209, 0.7);
  --background: 196, 207, 209,0.7;
}
:root .c-grey-7 {
  color: rgba(196, 207, 209, 0.7);
  --col: 196, 207, 209,0.7;
}
:root .bg-grey-8 {
  background-color: rgba(196, 207, 209, 0.8);
  --background: 196, 207, 209,0.8;
}
:root .c-grey-8 {
  color: rgba(196, 207, 209, 0.8);
  --col: 196, 207, 209,0.8;
}
:root .bg-grey-9 {
  background-color: rgba(196, 207, 209, 0.9);
  --background: 196, 207, 209,0.9;
}
:root .c-grey-9 {
  color: rgba(196, 207, 209, 0.9);
  --col: 196, 207, 209,0.9;
}
:root .bg-teal {
  background-color: #516367;
  --background: 81, 99, 103;
}
:root .c-teal {
  color: #516367;
  --col: 81, 99, 103;
}
:root .bg-teal-1 {
  background-color: rgba(81, 99, 103, 0.1);
  --background: 81, 99, 103,0.1;
}
:root .c-teal-1 {
  color: rgba(81, 99, 103, 0.1);
  --col: 81, 99, 103,0.1;
}
:root .bg-teal-2 {
  background-color: rgba(81, 99, 103, 0.2);
  --background: 81, 99, 103,0.2;
}
:root .c-teal-2 {
  color: rgba(81, 99, 103, 0.2);
  --col: 81, 99, 103,0.2;
}
:root .bg-teal-3 {
  background-color: rgba(81, 99, 103, 0.3);
  --background: 81, 99, 103,0.3;
}
:root .c-teal-3 {
  color: rgba(81, 99, 103, 0.3);
  --col: 81, 99, 103,0.3;
}
:root .bg-teal-4 {
  background-color: rgba(81, 99, 103, 0.4);
  --background: 81, 99, 103,0.4;
}
:root .c-teal-4 {
  color: rgba(81, 99, 103, 0.4);
  --col: 81, 99, 103,0.4;
}
:root .bg-teal-5 {
  background-color: rgba(81, 99, 103, 0.5);
  --background: 81, 99, 103,0.5;
}
:root .c-teal-5 {
  color: rgba(81, 99, 103, 0.5);
  --col: 81, 99, 103,0.5;
}
:root .bg-teal-6 {
  background-color: rgba(81, 99, 103, 0.6);
  --background: 81, 99, 103,0.6;
}
:root .c-teal-6 {
  color: rgba(81, 99, 103, 0.6);
  --col: 81, 99, 103,0.6;
}
:root .bg-teal-7 {
  background-color: rgba(81, 99, 103, 0.7);
  --background: 81, 99, 103,0.7;
}
:root .c-teal-7 {
  color: rgba(81, 99, 103, 0.7);
  --col: 81, 99, 103,0.7;
}
:root .bg-teal-8 {
  background-color: rgba(81, 99, 103, 0.8);
  --background: 81, 99, 103,0.8;
}
:root .c-teal-8 {
  color: rgba(81, 99, 103, 0.8);
  --col: 81, 99, 103,0.8;
}
:root .bg-teal-9 {
  background-color: rgba(81, 99, 103, 0.9);
  --background: 81, 99, 103,0.9;
}
:root .c-teal-9 {
  color: rgba(81, 99, 103, 0.9);
  --col: 81, 99, 103,0.9;
}
:root .bg-red {
  background-color: #DA203E;
  --background: 218, 32, 62;
}
:root .c-red {
  color: #DA203E;
  --col: 218, 32, 62;
}
:root .bg-red-1 {
  background-color: rgba(218, 32, 62, 0.1);
  --background: 218, 32, 62,0.1;
}
:root .c-red-1 {
  color: rgba(218, 32, 62, 0.1);
  --col: 218, 32, 62,0.1;
}
:root .bg-red-2 {
  background-color: rgba(218, 32, 62, 0.2);
  --background: 218, 32, 62,0.2;
}
:root .c-red-2 {
  color: rgba(218, 32, 62, 0.2);
  --col: 218, 32, 62,0.2;
}
:root .bg-red-3 {
  background-color: rgba(218, 32, 62, 0.3);
  --background: 218, 32, 62,0.3;
}
:root .c-red-3 {
  color: rgba(218, 32, 62, 0.3);
  --col: 218, 32, 62,0.3;
}
:root .bg-red-4 {
  background-color: rgba(218, 32, 62, 0.4);
  --background: 218, 32, 62,0.4;
}
:root .c-red-4 {
  color: rgba(218, 32, 62, 0.4);
  --col: 218, 32, 62,0.4;
}
:root .bg-red-5 {
  background-color: rgba(218, 32, 62, 0.5);
  --background: 218, 32, 62,0.5;
}
:root .c-red-5 {
  color: rgba(218, 32, 62, 0.5);
  --col: 218, 32, 62,0.5;
}
:root .bg-red-6 {
  background-color: rgba(218, 32, 62, 0.6);
  --background: 218, 32, 62,0.6;
}
:root .c-red-6 {
  color: rgba(218, 32, 62, 0.6);
  --col: 218, 32, 62,0.6;
}
:root .bg-red-7 {
  background-color: rgba(218, 32, 62, 0.7);
  --background: 218, 32, 62,0.7;
}
:root .c-red-7 {
  color: rgba(218, 32, 62, 0.7);
  --col: 218, 32, 62,0.7;
}
:root .bg-red-8 {
  background-color: rgba(218, 32, 62, 0.8);
  --background: 218, 32, 62,0.8;
}
:root .c-red-8 {
  color: rgba(218, 32, 62, 0.8);
  --col: 218, 32, 62,0.8;
}
:root .bg-red-9 {
  background-color: rgba(218, 32, 62, 0.9);
  --background: 218, 32, 62,0.9;
}
:root .c-red-9 {
  color: rgba(218, 32, 62, 0.9);
  --col: 218, 32, 62,0.9;
}
:root .bg-bordo {
  background-color: #4B041E;
  --background: 75, 4, 30;
}
:root .c-bordo {
  color: #4B041E;
  --col: 75, 4, 30;
}
:root .bg-bordo-1 {
  background-color: rgba(75, 4, 30, 0.1);
  --background: 75, 4, 30,0.1;
}
:root .c-bordo-1 {
  color: rgba(75, 4, 30, 0.1);
  --col: 75, 4, 30,0.1;
}
:root .bg-bordo-2 {
  background-color: rgba(75, 4, 30, 0.2);
  --background: 75, 4, 30,0.2;
}
:root .c-bordo-2 {
  color: rgba(75, 4, 30, 0.2);
  --col: 75, 4, 30,0.2;
}
:root .bg-bordo-3 {
  background-color: rgba(75, 4, 30, 0.3);
  --background: 75, 4, 30,0.3;
}
:root .c-bordo-3 {
  color: rgba(75, 4, 30, 0.3);
  --col: 75, 4, 30,0.3;
}
:root .bg-bordo-4 {
  background-color: rgba(75, 4, 30, 0.4);
  --background: 75, 4, 30,0.4;
}
:root .c-bordo-4 {
  color: rgba(75, 4, 30, 0.4);
  --col: 75, 4, 30,0.4;
}
:root .bg-bordo-5 {
  background-color: rgba(75, 4, 30, 0.5);
  --background: 75, 4, 30,0.5;
}
:root .c-bordo-5 {
  color: rgba(75, 4, 30, 0.5);
  --col: 75, 4, 30,0.5;
}
:root .bg-bordo-6 {
  background-color: rgba(75, 4, 30, 0.6);
  --background: 75, 4, 30,0.6;
}
:root .c-bordo-6 {
  color: rgba(75, 4, 30, 0.6);
  --col: 75, 4, 30,0.6;
}
:root .bg-bordo-7 {
  background-color: rgba(75, 4, 30, 0.7);
  --background: 75, 4, 30,0.7;
}
:root .c-bordo-7 {
  color: rgba(75, 4, 30, 0.7);
  --col: 75, 4, 30,0.7;
}
:root .bg-bordo-8 {
  background-color: rgba(75, 4, 30, 0.8);
  --background: 75, 4, 30,0.8;
}
:root .c-bordo-8 {
  color: rgba(75, 4, 30, 0.8);
  --col: 75, 4, 30,0.8;
}
:root .bg-bordo-9 {
  background-color: rgba(75, 4, 30, 0.9);
  --background: 75, 4, 30,0.9;
}
:root .c-bordo-9 {
  color: rgba(75, 4, 30, 0.9);
  --col: 75, 4, 30,0.9;
}
:root .bg-yellow {
  background-color: #fff5e2;
  --background: 255, 245, 226;
}
:root .c-yellow {
  color: #fff5e2;
  --col: 255, 245, 226;
}
:root .bg-yellow-1 {
  background-color: rgba(255, 245, 226, 0.1);
  --background: 255, 245, 226,0.1;
}
:root .c-yellow-1 {
  color: rgba(255, 245, 226, 0.1);
  --col: 255, 245, 226,0.1;
}
:root .bg-yellow-2 {
  background-color: rgba(255, 245, 226, 0.2);
  --background: 255, 245, 226,0.2;
}
:root .c-yellow-2 {
  color: rgba(255, 245, 226, 0.2);
  --col: 255, 245, 226,0.2;
}
:root .bg-yellow-3 {
  background-color: rgba(255, 245, 226, 0.3);
  --background: 255, 245, 226,0.3;
}
:root .c-yellow-3 {
  color: rgba(255, 245, 226, 0.3);
  --col: 255, 245, 226,0.3;
}
:root .bg-yellow-4 {
  background-color: rgba(255, 245, 226, 0.4);
  --background: 255, 245, 226,0.4;
}
:root .c-yellow-4 {
  color: rgba(255, 245, 226, 0.4);
  --col: 255, 245, 226,0.4;
}
:root .bg-yellow-5 {
  background-color: rgba(255, 245, 226, 0.5);
  --background: 255, 245, 226,0.5;
}
:root .c-yellow-5 {
  color: rgba(255, 245, 226, 0.5);
  --col: 255, 245, 226,0.5;
}
:root .bg-yellow-6 {
  background-color: rgba(255, 245, 226, 0.6);
  --background: 255, 245, 226,0.6;
}
:root .c-yellow-6 {
  color: rgba(255, 245, 226, 0.6);
  --col: 255, 245, 226,0.6;
}
:root .bg-yellow-7 {
  background-color: rgba(255, 245, 226, 0.7);
  --background: 255, 245, 226,0.7;
}
:root .c-yellow-7 {
  color: rgba(255, 245, 226, 0.7);
  --col: 255, 245, 226,0.7;
}
:root .bg-yellow-8 {
  background-color: rgba(255, 245, 226, 0.8);
  --background: 255, 245, 226,0.8;
}
:root .c-yellow-8 {
  color: rgba(255, 245, 226, 0.8);
  --col: 255, 245, 226,0.8;
}
:root .bg-yellow-9 {
  background-color: rgba(255, 245, 226, 0.9);
  --background: 255, 245, 226,0.9;
}
:root .c-yellow-9 {
  color: rgba(255, 245, 226, 0.9);
  --col: 255, 245, 226,0.9;
}
:root .bg-orange {
  background-color: #ee9d0d;
  --background: 238, 157, 13;
}
:root .c-orange {
  color: #ee9d0d;
  --col: 238, 157, 13;
}
:root .bg-orange-1 {
  background-color: rgba(238, 157, 13, 0.1);
  --background: 238, 157, 13,0.1;
}
:root .c-orange-1 {
  color: rgba(238, 157, 13, 0.1);
  --col: 238, 157, 13,0.1;
}
:root .bg-orange-2 {
  background-color: rgba(238, 157, 13, 0.2);
  --background: 238, 157, 13,0.2;
}
:root .c-orange-2 {
  color: rgba(238, 157, 13, 0.2);
  --col: 238, 157, 13,0.2;
}
:root .bg-orange-3 {
  background-color: rgba(238, 157, 13, 0.3);
  --background: 238, 157, 13,0.3;
}
:root .c-orange-3 {
  color: rgba(238, 157, 13, 0.3);
  --col: 238, 157, 13,0.3;
}
:root .bg-orange-4 {
  background-color: rgba(238, 157, 13, 0.4);
  --background: 238, 157, 13,0.4;
}
:root .c-orange-4 {
  color: rgba(238, 157, 13, 0.4);
  --col: 238, 157, 13,0.4;
}
:root .bg-orange-5 {
  background-color: rgba(238, 157, 13, 0.5);
  --background: 238, 157, 13,0.5;
}
:root .c-orange-5 {
  color: rgba(238, 157, 13, 0.5);
  --col: 238, 157, 13,0.5;
}
:root .bg-orange-6 {
  background-color: rgba(238, 157, 13, 0.6);
  --background: 238, 157, 13,0.6;
}
:root .c-orange-6 {
  color: rgba(238, 157, 13, 0.6);
  --col: 238, 157, 13,0.6;
}
:root .bg-orange-7 {
  background-color: rgba(238, 157, 13, 0.7);
  --background: 238, 157, 13,0.7;
}
:root .c-orange-7 {
  color: rgba(238, 157, 13, 0.7);
  --col: 238, 157, 13,0.7;
}
:root .bg-orange-8 {
  background-color: rgba(238, 157, 13, 0.8);
  --background: 238, 157, 13,0.8;
}
:root .c-orange-8 {
  color: rgba(238, 157, 13, 0.8);
  --col: 238, 157, 13,0.8;
}
:root .bg-orange-9 {
  background-color: rgba(238, 157, 13, 0.9);
  --background: 238, 157, 13,0.9;
}
:root .c-orange-9 {
  color: rgba(238, 157, 13, 0.9);
  --col: 238, 157, 13,0.9;
}
:root .bg-blue {
  background-color: #e0f2fa;
  --background: 224, 242, 250;
}
:root .c-blue {
  color: #e0f2fa;
  --col: 224, 242, 250;
}
:root .bg-blue-1 {
  background-color: rgba(224, 242, 250, 0.1);
  --background: 224, 242, 250,0.1;
}
:root .c-blue-1 {
  color: rgba(224, 242, 250, 0.1);
  --col: 224, 242, 250,0.1;
}
:root .bg-blue-2 {
  background-color: rgba(224, 242, 250, 0.2);
  --background: 224, 242, 250,0.2;
}
:root .c-blue-2 {
  color: rgba(224, 242, 250, 0.2);
  --col: 224, 242, 250,0.2;
}
:root .bg-blue-3 {
  background-color: rgba(224, 242, 250, 0.3);
  --background: 224, 242, 250,0.3;
}
:root .c-blue-3 {
  color: rgba(224, 242, 250, 0.3);
  --col: 224, 242, 250,0.3;
}
:root .bg-blue-4 {
  background-color: rgba(224, 242, 250, 0.4);
  --background: 224, 242, 250,0.4;
}
:root .c-blue-4 {
  color: rgba(224, 242, 250, 0.4);
  --col: 224, 242, 250,0.4;
}
:root .bg-blue-5 {
  background-color: rgba(224, 242, 250, 0.5);
  --background: 224, 242, 250,0.5;
}
:root .c-blue-5 {
  color: rgba(224, 242, 250, 0.5);
  --col: 224, 242, 250,0.5;
}
:root .bg-blue-6 {
  background-color: rgba(224, 242, 250, 0.6);
  --background: 224, 242, 250,0.6;
}
:root .c-blue-6 {
  color: rgba(224, 242, 250, 0.6);
  --col: 224, 242, 250,0.6;
}
:root .bg-blue-7 {
  background-color: rgba(224, 242, 250, 0.7);
  --background: 224, 242, 250,0.7;
}
:root .c-blue-7 {
  color: rgba(224, 242, 250, 0.7);
  --col: 224, 242, 250,0.7;
}
:root .bg-blue-8 {
  background-color: rgba(224, 242, 250, 0.8);
  --background: 224, 242, 250,0.8;
}
:root .c-blue-8 {
  color: rgba(224, 242, 250, 0.8);
  --col: 224, 242, 250,0.8;
}
:root .bg-blue-9 {
  background-color: rgba(224, 242, 250, 0.9);
  --background: 224, 242, 250,0.9;
}
:root .c-blue-9 {
  color: rgba(224, 242, 250, 0.9);
  --col: 224, 242, 250,0.9;
}
:root .bg-light-yellow {
  background-color: #fff5e2;
  --background: 255, 245, 226;
}
:root .c-light-yellow {
  color: #fff5e2;
  --col: 255, 245, 226;
}
:root .bg-light-yellow-1 {
  background-color: rgba(255, 245, 226, 0.1);
  --background: 255, 245, 226,0.1;
}
:root .c-light-yellow-1 {
  color: rgba(255, 245, 226, 0.1);
  --col: 255, 245, 226,0.1;
}
:root .bg-light-yellow-2 {
  background-color: rgba(255, 245, 226, 0.2);
  --background: 255, 245, 226,0.2;
}
:root .c-light-yellow-2 {
  color: rgba(255, 245, 226, 0.2);
  --col: 255, 245, 226,0.2;
}
:root .bg-light-yellow-3 {
  background-color: rgba(255, 245, 226, 0.3);
  --background: 255, 245, 226,0.3;
}
:root .c-light-yellow-3 {
  color: rgba(255, 245, 226, 0.3);
  --col: 255, 245, 226,0.3;
}
:root .bg-light-yellow-4 {
  background-color: rgba(255, 245, 226, 0.4);
  --background: 255, 245, 226,0.4;
}
:root .c-light-yellow-4 {
  color: rgba(255, 245, 226, 0.4);
  --col: 255, 245, 226,0.4;
}
:root .bg-light-yellow-5 {
  background-color: rgba(255, 245, 226, 0.5);
  --background: 255, 245, 226,0.5;
}
:root .c-light-yellow-5 {
  color: rgba(255, 245, 226, 0.5);
  --col: 255, 245, 226,0.5;
}
:root .bg-light-yellow-6 {
  background-color: rgba(255, 245, 226, 0.6);
  --background: 255, 245, 226,0.6;
}
:root .c-light-yellow-6 {
  color: rgba(255, 245, 226, 0.6);
  --col: 255, 245, 226,0.6;
}
:root .bg-light-yellow-7 {
  background-color: rgba(255, 245, 226, 0.7);
  --background: 255, 245, 226,0.7;
}
:root .c-light-yellow-7 {
  color: rgba(255, 245, 226, 0.7);
  --col: 255, 245, 226,0.7;
}
:root .bg-light-yellow-8 {
  background-color: rgba(255, 245, 226, 0.8);
  --background: 255, 245, 226,0.8;
}
:root .c-light-yellow-8 {
  color: rgba(255, 245, 226, 0.8);
  --col: 255, 245, 226,0.8;
}
:root .bg-light-yellow-9 {
  background-color: rgba(255, 245, 226, 0.9);
  --background: 255, 245, 226,0.9;
}
:root .c-light-yellow-9 {
  color: rgba(255, 245, 226, 0.9);
  --col: 255, 245, 226,0.9;
}
:root .bg-light-purple {
  background-color: #e4e1fa;
  --background: 228, 225, 250;
}
:root .c-light-purple {
  color: #e4e1fa;
  --col: 228, 225, 250;
}
:root .bg-light-purple-1 {
  background-color: rgba(228, 225, 250, 0.1);
  --background: 228, 225, 250,0.1;
}
:root .c-light-purple-1 {
  color: rgba(228, 225, 250, 0.1);
  --col: 228, 225, 250,0.1;
}
:root .bg-light-purple-2 {
  background-color: rgba(228, 225, 250, 0.2);
  --background: 228, 225, 250,0.2;
}
:root .c-light-purple-2 {
  color: rgba(228, 225, 250, 0.2);
  --col: 228, 225, 250,0.2;
}
:root .bg-light-purple-3 {
  background-color: rgba(228, 225, 250, 0.3);
  --background: 228, 225, 250,0.3;
}
:root .c-light-purple-3 {
  color: rgba(228, 225, 250, 0.3);
  --col: 228, 225, 250,0.3;
}
:root .bg-light-purple-4 {
  background-color: rgba(228, 225, 250, 0.4);
  --background: 228, 225, 250,0.4;
}
:root .c-light-purple-4 {
  color: rgba(228, 225, 250, 0.4);
  --col: 228, 225, 250,0.4;
}
:root .bg-light-purple-5 {
  background-color: rgba(228, 225, 250, 0.5);
  --background: 228, 225, 250,0.5;
}
:root .c-light-purple-5 {
  color: rgba(228, 225, 250, 0.5);
  --col: 228, 225, 250,0.5;
}
:root .bg-light-purple-6 {
  background-color: rgba(228, 225, 250, 0.6);
  --background: 228, 225, 250,0.6;
}
:root .c-light-purple-6 {
  color: rgba(228, 225, 250, 0.6);
  --col: 228, 225, 250,0.6;
}
:root .bg-light-purple-7 {
  background-color: rgba(228, 225, 250, 0.7);
  --background: 228, 225, 250,0.7;
}
:root .c-light-purple-7 {
  color: rgba(228, 225, 250, 0.7);
  --col: 228, 225, 250,0.7;
}
:root .bg-light-purple-8 {
  background-color: rgba(228, 225, 250, 0.8);
  --background: 228, 225, 250,0.8;
}
:root .c-light-purple-8 {
  color: rgba(228, 225, 250, 0.8);
  --col: 228, 225, 250,0.8;
}
:root .bg-light-purple-9 {
  background-color: rgba(228, 225, 250, 0.9);
  --background: 228, 225, 250,0.9;
}
:root .c-light-purple-9 {
  color: rgba(228, 225, 250, 0.9);
  --col: 228, 225, 250,0.9;
}
:root .bg-pink {
  background-color: #ffdede;
  --background: 255, 222, 222;
}
:root .c-pink {
  color: #ffdede;
  --col: 255, 222, 222;
}
:root .bg-pink-1 {
  background-color: rgba(255, 222, 222, 0.1);
  --background: 255, 222, 222,0.1;
}
:root .c-pink-1 {
  color: rgba(255, 222, 222, 0.1);
  --col: 255, 222, 222,0.1;
}
:root .bg-pink-2 {
  background-color: rgba(255, 222, 222, 0.2);
  --background: 255, 222, 222,0.2;
}
:root .c-pink-2 {
  color: rgba(255, 222, 222, 0.2);
  --col: 255, 222, 222,0.2;
}
:root .bg-pink-3 {
  background-color: rgba(255, 222, 222, 0.3);
  --background: 255, 222, 222,0.3;
}
:root .c-pink-3 {
  color: rgba(255, 222, 222, 0.3);
  --col: 255, 222, 222,0.3;
}
:root .bg-pink-4 {
  background-color: rgba(255, 222, 222, 0.4);
  --background: 255, 222, 222,0.4;
}
:root .c-pink-4 {
  color: rgba(255, 222, 222, 0.4);
  --col: 255, 222, 222,0.4;
}
:root .bg-pink-5 {
  background-color: rgba(255, 222, 222, 0.5);
  --background: 255, 222, 222,0.5;
}
:root .c-pink-5 {
  color: rgba(255, 222, 222, 0.5);
  --col: 255, 222, 222,0.5;
}
:root .bg-pink-6 {
  background-color: rgba(255, 222, 222, 0.6);
  --background: 255, 222, 222,0.6;
}
:root .c-pink-6 {
  color: rgba(255, 222, 222, 0.6);
  --col: 255, 222, 222,0.6;
}
:root .bg-pink-7 {
  background-color: rgba(255, 222, 222, 0.7);
  --background: 255, 222, 222,0.7;
}
:root .c-pink-7 {
  color: rgba(255, 222, 222, 0.7);
  --col: 255, 222, 222,0.7;
}
:root .bg-pink-8 {
  background-color: rgba(255, 222, 222, 0.8);
  --background: 255, 222, 222,0.8;
}
:root .c-pink-8 {
  color: rgba(255, 222, 222, 0.8);
  --col: 255, 222, 222,0.8;
}
:root .bg-pink-9 {
  background-color: rgba(255, 222, 222, 0.9);
  --background: 255, 222, 222,0.9;
}
:root .c-pink-9 {
  color: rgba(255, 222, 222, 0.9);
  --col: 255, 222, 222,0.9;
}
:root .bg-darkgreen {
  background-color: #29443e;
  --background: 41, 68, 62;
}
:root .c-darkgreen {
  color: #29443e;
  --col: 41, 68, 62;
}
:root .bg-darkgreen-1 {
  background-color: rgba(41, 68, 62, 0.1);
  --background: 41, 68, 62,0.1;
}
:root .c-darkgreen-1 {
  color: rgba(41, 68, 62, 0.1);
  --col: 41, 68, 62,0.1;
}
:root .bg-darkgreen-2 {
  background-color: rgba(41, 68, 62, 0.2);
  --background: 41, 68, 62,0.2;
}
:root .c-darkgreen-2 {
  color: rgba(41, 68, 62, 0.2);
  --col: 41, 68, 62,0.2;
}
:root .bg-darkgreen-3 {
  background-color: rgba(41, 68, 62, 0.3);
  --background: 41, 68, 62,0.3;
}
:root .c-darkgreen-3 {
  color: rgba(41, 68, 62, 0.3);
  --col: 41, 68, 62,0.3;
}
:root .bg-darkgreen-4 {
  background-color: rgba(41, 68, 62, 0.4);
  --background: 41, 68, 62,0.4;
}
:root .c-darkgreen-4 {
  color: rgba(41, 68, 62, 0.4);
  --col: 41, 68, 62,0.4;
}
:root .bg-darkgreen-5 {
  background-color: rgba(41, 68, 62, 0.5);
  --background: 41, 68, 62,0.5;
}
:root .c-darkgreen-5 {
  color: rgba(41, 68, 62, 0.5);
  --col: 41, 68, 62,0.5;
}
:root .bg-darkgreen-6 {
  background-color: rgba(41, 68, 62, 0.6);
  --background: 41, 68, 62,0.6;
}
:root .c-darkgreen-6 {
  color: rgba(41, 68, 62, 0.6);
  --col: 41, 68, 62,0.6;
}
:root .bg-darkgreen-7 {
  background-color: rgba(41, 68, 62, 0.7);
  --background: 41, 68, 62,0.7;
}
:root .c-darkgreen-7 {
  color: rgba(41, 68, 62, 0.7);
  --col: 41, 68, 62,0.7;
}
:root .bg-darkgreen-8 {
  background-color: rgba(41, 68, 62, 0.8);
  --background: 41, 68, 62,0.8;
}
:root .c-darkgreen-8 {
  color: rgba(41, 68, 62, 0.8);
  --col: 41, 68, 62,0.8;
}
:root .bg-darkgreen-9 {
  background-color: rgba(41, 68, 62, 0.9);
  --background: 41, 68, 62,0.9;
}
:root .c-darkgreen-9 {
  color: rgba(41, 68, 62, 0.9);
  --col: 41, 68, 62,0.9;
}
:root .bg-violet {
  background-color: #C2BBF3;
  --background: 194, 187, 243;
}
:root .c-violet {
  color: #C2BBF3;
  --col: 194, 187, 243;
}
:root .bg-violet-1 {
  background-color: rgba(194, 187, 243, 0.1);
  --background: 194, 187, 243,0.1;
}
:root .c-violet-1 {
  color: rgba(194, 187, 243, 0.1);
  --col: 194, 187, 243,0.1;
}
:root .bg-violet-2 {
  background-color: rgba(194, 187, 243, 0.2);
  --background: 194, 187, 243,0.2;
}
:root .c-violet-2 {
  color: rgba(194, 187, 243, 0.2);
  --col: 194, 187, 243,0.2;
}
:root .bg-violet-3 {
  background-color: rgba(194, 187, 243, 0.3);
  --background: 194, 187, 243,0.3;
}
:root .c-violet-3 {
  color: rgba(194, 187, 243, 0.3);
  --col: 194, 187, 243,0.3;
}
:root .bg-violet-4 {
  background-color: rgba(194, 187, 243, 0.4);
  --background: 194, 187, 243,0.4;
}
:root .c-violet-4 {
  color: rgba(194, 187, 243, 0.4);
  --col: 194, 187, 243,0.4;
}
:root .bg-violet-5 {
  background-color: rgba(194, 187, 243, 0.5);
  --background: 194, 187, 243,0.5;
}
:root .c-violet-5 {
  color: rgba(194, 187, 243, 0.5);
  --col: 194, 187, 243,0.5;
}
:root .bg-violet-6 {
  background-color: rgba(194, 187, 243, 0.6);
  --background: 194, 187, 243,0.6;
}
:root .c-violet-6 {
  color: rgba(194, 187, 243, 0.6);
  --col: 194, 187, 243,0.6;
}
:root .bg-violet-7 {
  background-color: rgba(194, 187, 243, 0.7);
  --background: 194, 187, 243,0.7;
}
:root .c-violet-7 {
  color: rgba(194, 187, 243, 0.7);
  --col: 194, 187, 243,0.7;
}
:root .bg-violet-8 {
  background-color: rgba(194, 187, 243, 0.8);
  --background: 194, 187, 243,0.8;
}
:root .c-violet-8 {
  color: rgba(194, 187, 243, 0.8);
  --col: 194, 187, 243,0.8;
}
:root .bg-violet-9 {
  background-color: rgba(194, 187, 243, 0.9);
  --background: 194, 187, 243,0.9;
}
:root .c-violet-9 {
  color: rgba(194, 187, 243, 0.9);
  --col: 194, 187, 243,0.9;
}
:root .bg-beige {
  background-color: #e3e0d9;
  --background: 227, 224, 217;
}
:root .c-beige {
  color: #e3e0d9;
  --col: 227, 224, 217;
}
:root .bg-beige-1 {
  background-color: rgba(227, 224, 217, 0.1);
  --background: 227, 224, 217,0.1;
}
:root .c-beige-1 {
  color: rgba(227, 224, 217, 0.1);
  --col: 227, 224, 217,0.1;
}
:root .bg-beige-2 {
  background-color: rgba(227, 224, 217, 0.2);
  --background: 227, 224, 217,0.2;
}
:root .c-beige-2 {
  color: rgba(227, 224, 217, 0.2);
  --col: 227, 224, 217,0.2;
}
:root .bg-beige-3 {
  background-color: rgba(227, 224, 217, 0.3);
  --background: 227, 224, 217,0.3;
}
:root .c-beige-3 {
  color: rgba(227, 224, 217, 0.3);
  --col: 227, 224, 217,0.3;
}
:root .bg-beige-4 {
  background-color: rgba(227, 224, 217, 0.4);
  --background: 227, 224, 217,0.4;
}
:root .c-beige-4 {
  color: rgba(227, 224, 217, 0.4);
  --col: 227, 224, 217,0.4;
}
:root .bg-beige-5 {
  background-color: rgba(227, 224, 217, 0.5);
  --background: 227, 224, 217,0.5;
}
:root .c-beige-5 {
  color: rgba(227, 224, 217, 0.5);
  --col: 227, 224, 217,0.5;
}
:root .bg-beige-6 {
  background-color: rgba(227, 224, 217, 0.6);
  --background: 227, 224, 217,0.6;
}
:root .c-beige-6 {
  color: rgba(227, 224, 217, 0.6);
  --col: 227, 224, 217,0.6;
}
:root .bg-beige-7 {
  background-color: rgba(227, 224, 217, 0.7);
  --background: 227, 224, 217,0.7;
}
:root .c-beige-7 {
  color: rgba(227, 224, 217, 0.7);
  --col: 227, 224, 217,0.7;
}
:root .bg-beige-8 {
  background-color: rgba(227, 224, 217, 0.8);
  --background: 227, 224, 217,0.8;
}
:root .c-beige-8 {
  color: rgba(227, 224, 217, 0.8);
  --col: 227, 224, 217,0.8;
}
:root .bg-beige-9 {
  background-color: rgba(227, 224, 217, 0.9);
  --background: 227, 224, 217,0.9;
}
:root .c-beige-9 {
  color: rgba(227, 224, 217, 0.9);
  --col: 227, 224, 217,0.9;
}
:root .bg-text {
  background-color: #313937;
  --background: 49, 57, 55;
}
:root .c-text {
  color: #313937;
  --col: 49, 57, 55;
}
:root .bg-text-1 {
  background-color: rgba(49, 57, 55, 0.1);
  --background: 49, 57, 55,0.1;
}
:root .c-text-1 {
  color: rgba(49, 57, 55, 0.1);
  --col: 49, 57, 55,0.1;
}
:root .bg-text-2 {
  background-color: rgba(49, 57, 55, 0.2);
  --background: 49, 57, 55,0.2;
}
:root .c-text-2 {
  color: rgba(49, 57, 55, 0.2);
  --col: 49, 57, 55,0.2;
}
:root .bg-text-3 {
  background-color: rgba(49, 57, 55, 0.3);
  --background: 49, 57, 55,0.3;
}
:root .c-text-3 {
  color: rgba(49, 57, 55, 0.3);
  --col: 49, 57, 55,0.3;
}
:root .bg-text-4 {
  background-color: rgba(49, 57, 55, 0.4);
  --background: 49, 57, 55,0.4;
}
:root .c-text-4 {
  color: rgba(49, 57, 55, 0.4);
  --col: 49, 57, 55,0.4;
}
:root .bg-text-5 {
  background-color: rgba(49, 57, 55, 0.5);
  --background: 49, 57, 55,0.5;
}
:root .c-text-5 {
  color: rgba(49, 57, 55, 0.5);
  --col: 49, 57, 55,0.5;
}
:root .bg-text-6 {
  background-color: rgba(49, 57, 55, 0.6);
  --background: 49, 57, 55,0.6;
}
:root .c-text-6 {
  color: rgba(49, 57, 55, 0.6);
  --col: 49, 57, 55,0.6;
}
:root .bg-text-7 {
  background-color: rgba(49, 57, 55, 0.7);
  --background: 49, 57, 55,0.7;
}
:root .c-text-7 {
  color: rgba(49, 57, 55, 0.7);
  --col: 49, 57, 55,0.7;
}
:root .bg-text-8 {
  background-color: rgba(49, 57, 55, 0.8);
  --background: 49, 57, 55,0.8;
}
:root .c-text-8 {
  color: rgba(49, 57, 55, 0.8);
  --col: 49, 57, 55,0.8;
}
:root .bg-text-9 {
  background-color: rgba(49, 57, 55, 0.9);
  --background: 49, 57, 55,0.9;
}
:root .c-text-9 {
  color: rgba(49, 57, 55, 0.9);
  --col: 49, 57, 55,0.9;
}
:root .bg-black {
  background-color: #000000;
  --background: 0, 0, 0;
}
:root .c-black {
  color: #000000;
  --col: 0, 0, 0;
}
:root .bg-black-1 {
  background-color: rgba(0, 0, 0, 0.1);
  --background: 0, 0, 0,0.1;
}
:root .c-black-1 {
  color: rgba(0, 0, 0, 0.1);
  --col: 0, 0, 0,0.1;
}
:root .bg-black-2 {
  background-color: rgba(0, 0, 0, 0.2);
  --background: 0, 0, 0,0.2;
}
:root .c-black-2 {
  color: rgba(0, 0, 0, 0.2);
  --col: 0, 0, 0,0.2;
}
:root .bg-black-3 {
  background-color: rgba(0, 0, 0, 0.3);
  --background: 0, 0, 0,0.3;
}
:root .c-black-3 {
  color: rgba(0, 0, 0, 0.3);
  --col: 0, 0, 0,0.3;
}
:root .bg-black-4 {
  background-color: rgba(0, 0, 0, 0.4);
  --background: 0, 0, 0,0.4;
}
:root .c-black-4 {
  color: rgba(0, 0, 0, 0.4);
  --col: 0, 0, 0,0.4;
}
:root .bg-black-5 {
  background-color: rgba(0, 0, 0, 0.5);
  --background: 0, 0, 0,0.5;
}
:root .c-black-5 {
  color: rgba(0, 0, 0, 0.5);
  --col: 0, 0, 0,0.5;
}
:root .bg-black-6 {
  background-color: rgba(0, 0, 0, 0.6);
  --background: 0, 0, 0,0.6;
}
:root .c-black-6 {
  color: rgba(0, 0, 0, 0.6);
  --col: 0, 0, 0,0.6;
}
:root .bg-black-7 {
  background-color: rgba(0, 0, 0, 0.7);
  --background: 0, 0, 0,0.7;
}
:root .c-black-7 {
  color: rgba(0, 0, 0, 0.7);
  --col: 0, 0, 0,0.7;
}
:root .bg-black-8 {
  background-color: rgba(0, 0, 0, 0.8);
  --background: 0, 0, 0,0.8;
}
:root .c-black-8 {
  color: rgba(0, 0, 0, 0.8);
  --col: 0, 0, 0,0.8;
}
:root .bg-black-9 {
  background-color: rgba(0, 0, 0, 0.9);
  --background: 0, 0, 0,0.9;
}
:root .c-black-9 {
  color: rgba(0, 0, 0, 0.9);
  --col: 0, 0, 0,0.9;
}
:root .bg-white {
  background-color: #ffffff;
  --background: 255, 255, 255;
}
:root .c-white {
  color: #ffffff;
  --col: 255, 255, 255;
}
:root .bg-white-1 {
  background-color: rgba(255, 255, 255, 0.1);
  --background: 255, 255, 255,0.1;
}
:root .c-white-1 {
  color: rgba(255, 255, 255, 0.1);
  --col: 255, 255, 255,0.1;
}
:root .bg-white-2 {
  background-color: rgba(255, 255, 255, 0.2);
  --background: 255, 255, 255,0.2;
}
:root .c-white-2 {
  color: rgba(255, 255, 255, 0.2);
  --col: 255, 255, 255,0.2;
}
:root .bg-white-3 {
  background-color: rgba(255, 255, 255, 0.3);
  --background: 255, 255, 255,0.3;
}
:root .c-white-3 {
  color: rgba(255, 255, 255, 0.3);
  --col: 255, 255, 255,0.3;
}
:root .bg-white-4 {
  background-color: rgba(255, 255, 255, 0.4);
  --background: 255, 255, 255,0.4;
}
:root .c-white-4 {
  color: rgba(255, 255, 255, 0.4);
  --col: 255, 255, 255,0.4;
}
:root .bg-white-5 {
  background-color: rgba(255, 255, 255, 0.5);
  --background: 255, 255, 255,0.5;
}
:root .c-white-5 {
  color: rgba(255, 255, 255, 0.5);
  --col: 255, 255, 255,0.5;
}
:root .bg-white-6 {
  background-color: rgba(255, 255, 255, 0.6);
  --background: 255, 255, 255,0.6;
}
:root .c-white-6 {
  color: rgba(255, 255, 255, 0.6);
  --col: 255, 255, 255,0.6;
}
:root .bg-white-7 {
  background-color: rgba(255, 255, 255, 0.7);
  --background: 255, 255, 255,0.7;
}
:root .c-white-7 {
  color: rgba(255, 255, 255, 0.7);
  --col: 255, 255, 255,0.7;
}
:root .bg-white-8 {
  background-color: rgba(255, 255, 255, 0.8);
  --background: 255, 255, 255,0.8;
}
:root .c-white-8 {
  color: rgba(255, 255, 255, 0.8);
  --col: 255, 255, 255,0.8;
}
:root .bg-white-9 {
  background-color: rgba(255, 255, 255, 0.9);
  --background: 255, 255, 255,0.9;
}
:root .c-white-9 {
  color: rgba(255, 255, 255, 0.9);
  --col: 255, 255, 255,0.9;
}
:root .bg-invert {
  background-color: #f2f2f2;
  --background: 242, 242, 242;
}
:root .c-invert {
  color: #f2f2f2;
  --col: 242, 242, 242;
}
:root .bg-invert-1 {
  background-color: rgba(242, 242, 242, 0.1);
  --background: 242, 242, 242,0.1;
}
:root .c-invert-1 {
  color: rgba(242, 242, 242, 0.1);
  --col: 242, 242, 242,0.1;
}
:root .bg-invert-2 {
  background-color: rgba(242, 242, 242, 0.2);
  --background: 242, 242, 242,0.2;
}
:root .c-invert-2 {
  color: rgba(242, 242, 242, 0.2);
  --col: 242, 242, 242,0.2;
}
:root .bg-invert-3 {
  background-color: rgba(242, 242, 242, 0.3);
  --background: 242, 242, 242,0.3;
}
:root .c-invert-3 {
  color: rgba(242, 242, 242, 0.3);
  --col: 242, 242, 242,0.3;
}
:root .bg-invert-4 {
  background-color: rgba(242, 242, 242, 0.4);
  --background: 242, 242, 242,0.4;
}
:root .c-invert-4 {
  color: rgba(242, 242, 242, 0.4);
  --col: 242, 242, 242,0.4;
}
:root .bg-invert-5 {
  background-color: rgba(242, 242, 242, 0.5);
  --background: 242, 242, 242,0.5;
}
:root .c-invert-5 {
  color: rgba(242, 242, 242, 0.5);
  --col: 242, 242, 242,0.5;
}
:root .bg-invert-6 {
  background-color: rgba(242, 242, 242, 0.6);
  --background: 242, 242, 242,0.6;
}
:root .c-invert-6 {
  color: rgba(242, 242, 242, 0.6);
  --col: 242, 242, 242,0.6;
}
:root .bg-invert-7 {
  background-color: rgba(242, 242, 242, 0.7);
  --background: 242, 242, 242,0.7;
}
:root .c-invert-7 {
  color: rgba(242, 242, 242, 0.7);
  --col: 242, 242, 242,0.7;
}
:root .bg-invert-8 {
  background-color: rgba(242, 242, 242, 0.8);
  --background: 242, 242, 242,0.8;
}
:root .c-invert-8 {
  color: rgba(242, 242, 242, 0.8);
  --col: 242, 242, 242,0.8;
}
:root .bg-invert-9 {
  background-color: rgba(242, 242, 242, 0.9);
  --background: 242, 242, 242,0.9;
}
:root .c-invert-9 {
  color: rgba(242, 242, 242, 0.9);
  --col: 242, 242, 242,0.9;
}
:root .bg-grad-1 {
  background: linear-gradient(10deg, #CAC0FD, #E7E2F9);
}
:root .bg-grad-accent {
  background: var(--grad-accent);
}
@media screen and (max-width: 40em) {
  :root {
    --card-pad: calc(var(--pad)*0.8);
  }
}
:root .page {
  --card-bg: #d7d1c6;
  --card-bg-hover: #d1cabd;
}

:root.--dark-theme {
  --body-bg-color: #435552;
  --body-text-color: #f2f2f2;
  --header-bg: rgba(67, 85, 82, 0.5);
  --page-bg: #4a5e5a;
  --modal-bg: var(--body-bg-color);
  --card-bg: #536965;
  --fake-bg: var(--card-bg);
  --card-bg-hover: #5e7773;
  --icon-filter: invert(0);
  --img-filter: invert(1);
}
:root.--dark-theme .page {
  --card-bg: #536965;
  --card-bg-hover: #5e7773;
}

/*

    CSS RESET

*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  line-height: 1;
}

html, body {
  position: relative;
  width: 100%;
}

.noscroll {
  overflow: hidden;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul, nav ul, nav ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: inherit;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select, textarea {
  vertical-align: middle;
  outline: none;
  border: none;
  background-color: transparent;
}

button {
  cursor: pointer;
  border: none;
  padding: 0;
  background-color: transparent;
  color: inherit;
}
button:focus {
  outline: none;
}

::-webkit-scrollbar {
  width: 2px;
  height: 2px;
  padding: var(--pad);
  display: none;
}

::-webkit-scrollbar-track {
  background-color: #f5f2ff;
}

::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, transparent), color-stop(50%, #8f9e2e), color-stop(180%, transparent));
  background: linear-gradient(to bottom, transparent 20%, #8f9e2e 50%, transparent 180%);
  /*background-color: color(acc);*/
}

/* 

  FLEXBOX GRID SETUP

*/
/*
	FLEXBOX MIXINS
*/
/* 
	Flexbox Containers

	display: flex | inline-flex
	http:w3.org/tr/css3-flexbox/#flex-containers
	(Placeholder selectors for each type, for those who rather @extend)
*/
/* 
	Flexbox Direction

	Values: row | row-reverse | column | column-reverse
	Default: row
	http:w3.org/tr/css3-flexbox/#flex-direction-property
*/
/*Shorter version:*/
/* 
	Flexbox Wrap

	Values: nowrap | wrap | wrap-reverse
	Default: nowrap
	http:w3.org/tr/css3-flexbox/#flex-wrap-property
*/
/* 
	Flexbox Flow (shorthand)

	Values: <flex-direction> | <flex-wrap> 
	Default: row nowrap
	http:w3.org/tr/css3-flexbox/#flex-flow-property
*/
/* 
	Flexbox Order

	Default: 0
	http:w3.org/tr/css3-flexbox/#order-property
*/
/* 
	Flexbox Grow

	Default: 0
	http:w3.org/tr/css3-flexbox/#flex-grow-property
*/
/* 
	Flexbox Shrink

	Default: 1
	http:w3.org/tr/css3-flexbox/#flex-shrink-property
*/
/* 
	Flexbox Basis

	Values: Like "width" 
	Default: auto
	http:www.w3.org/TR/css3-flexbox/#flex-basis-property
*/
/* 
	Flexbox "Flex" (shorthand)

	Values: none | <flex-grow> <flex-shrink> || <flex-basis>
	Default: See individual properties (1 1 0).
	http:w3.org/tr/css3-flexbox/#flex-property
*/
/* 
	Flexbox Justify Content

	Values: flex-start | flex-end | center | space-between | space-around
	Default: flex-start
	http:w3.org/tr/css3-flexbox/#justify-content-property
*/
/*Shorter version:*/
/* 
	Flexbox Align Items

	Values: flex-start | flex-end | center | baseline | stretch
	Default: stretch
	http:w3.org/tr/css3-flexbox/#align-items-property
*/
/* 
	Flexbox Align Self

 	Values: auto | flex-start | flex-end | center | baseline | stretch
 	Default: auto
*/
/*
	Flexbox Align Content

	Values: flex-start | flex-end | center | space-between | space-around | stretch
	Default: stretch
	http:w3.org/tr/css3-flexbox/#align-content-property
*/
/*
	FLEX MODULES
*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-align-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex-align-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-align-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-align-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-justify {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-justify-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-justify-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-align-center-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* Set the number of columns you want to use on your layout. */
/* Set the gutter between columns. */
/* Set a margin for the container sides. */
/* 
  Create or remove breakpoints for your project
  Syntax:
  name SIZErem, 
*/
/* 
  SETUP END
*/
/*

  FLEXBOX GRID

*/
html.no-flexboxlegacy [class^=col-] {
  float: left;
}
html.no-flexboxlegacy .col-xs-1 {
  width: 8.3333333333%;
}
html.no-flexboxlegacy .col-xs-2 {
  width: 16.6666666667%;
}
html.no-flexboxlegacy .col-xs-3 {
  width: 25%;
}
html.no-flexboxlegacy .col-xs-4 {
  width: 33.3333333333%;
}
html.no-flexboxlegacy .col-xs-5 {
  width: 41.6666666667%;
}
html.no-flexboxlegacy .col-xs-6 {
  width: 50%;
}
html.no-flexboxlegacy .col-xs-7 {
  width: 58.3333333333%;
}
html.no-flexboxlegacy .col-xs-8 {
  width: 66.6666666667%;
}
html.no-flexboxlegacy .col-xs-9 {
  width: 75%;
}
html.no-flexboxlegacy .col-xs-10 {
  width: 83.3333333333%;
}
html.no-flexboxlegacy .col-xs-11 {
  width: 91.6666666667%;
}
html.no-flexboxlegacy .col-xs-12 {
  width: 100%;
}
@media only screen and (min-width: 40em) {
  html.no-flexboxlegacy .col-sm-1 {
    width: 8.3333333333%;
  }
  html.no-flexboxlegacy .col-sm-2 {
    width: 16.6666666667%;
  }
  html.no-flexboxlegacy .col-sm-3 {
    width: 25%;
  }
  html.no-flexboxlegacy .col-sm-4 {
    width: 33.3333333333%;
  }
  html.no-flexboxlegacy .col-sm-5 {
    width: 41.6666666667%;
  }
  html.no-flexboxlegacy .col-sm-6 {
    width: 50%;
  }
  html.no-flexboxlegacy .col-sm-7 {
    width: 58.3333333333%;
  }
  html.no-flexboxlegacy .col-sm-8 {
    width: 66.6666666667%;
  }
  html.no-flexboxlegacy .col-sm-9 {
    width: 75%;
  }
  html.no-flexboxlegacy .col-sm-10 {
    width: 83.3333333333%;
  }
  html.no-flexboxlegacy .col-sm-11 {
    width: 91.6666666667%;
  }
  html.no-flexboxlegacy .col-sm-12 {
    width: 100%;
  }
}
@media only screen and (min-width: 62em) {
  html.no-flexboxlegacy .col-md-1 {
    width: 8.3333333333%;
  }
  html.no-flexboxlegacy .col-md-2 {
    width: 16.6666666667%;
  }
  html.no-flexboxlegacy .col-md-3 {
    width: 25%;
  }
  html.no-flexboxlegacy .col-md-4 {
    width: 33.3333333333%;
  }
  html.no-flexboxlegacy .col-md-5 {
    width: 41.6666666667%;
  }
  html.no-flexboxlegacy .col-md-6 {
    width: 50%;
  }
  html.no-flexboxlegacy .col-md-7 {
    width: 58.3333333333%;
  }
  html.no-flexboxlegacy .col-md-8 {
    width: 66.6666666667%;
  }
  html.no-flexboxlegacy .col-md-9 {
    width: 75%;
  }
  html.no-flexboxlegacy .col-md-10 {
    width: 83.3333333333%;
  }
  html.no-flexboxlegacy .col-md-11 {
    width: 91.6666666667%;
  }
  html.no-flexboxlegacy .col-md-12 {
    width: 100%;
  }
}
@media only screen and (min-width: 75em) {
  html.no-flexboxlegacy .col-lg-1 {
    width: 8.3333333333%;
  }
  html.no-flexboxlegacy .col-lg-2 {
    width: 16.6666666667%;
  }
  html.no-flexboxlegacy .col-lg-3 {
    width: 25%;
  }
  html.no-flexboxlegacy .col-lg-4 {
    width: 33.3333333333%;
  }
  html.no-flexboxlegacy .col-lg-5 {
    width: 41.6666666667%;
  }
  html.no-flexboxlegacy .col-lg-6 {
    width: 50%;
  }
  html.no-flexboxlegacy .col-lg-7 {
    width: 58.3333333333%;
  }
  html.no-flexboxlegacy .col-lg-8 {
    width: 66.6666666667%;
  }
  html.no-flexboxlegacy .col-lg-9 {
    width: 75%;
  }
  html.no-flexboxlegacy .col-lg-10 {
    width: 83.3333333333%;
  }
  html.no-flexboxlegacy .col-lg-11 {
    width: 91.6666666667%;
  }
  html.no-flexboxlegacy .col-lg-12 {
    width: 100%;
  }
}

.container {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 100%;
  width: 90%;
  /*width: 100% / $flexboxgrid-grid-columns * ($flexboxgrid-grid-columns - 2);*/
  margin: 0 auto;
}
@media screen and (max-width: 478px) {
  .container {
    width: 90%;
    min-width: 90%;
  }
}

.col-gap-1 {
  margin: 0 4.1666666667%;
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 5%;
  padding-left: 5%;
}

.row {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: 0rem;
  margin-left: 0rem;
}

.row.reverse, .row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.col.reverse, .col-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.col-xs {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0rem;
  padding-left: 0rem;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  --col-width: 100%;
}

.col-xs-1 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0rem;
  padding-left: 0rem;
  -ms-flex-preferred-size: 8.3333333333%;
      flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
  --col-width: calc(100vw / 12 * 1);
}

.col-xs-2 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0rem;
  padding-left: 0rem;
  -ms-flex-preferred-size: 16.6666666667%;
      flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
  --col-width: calc(100vw / 12 * 2);
}

.col-xs-3 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0rem;
  padding-left: 0rem;
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%;
  --col-width: calc(100vw / 12 * 3);
}

.col-xs-4 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0rem;
  padding-left: 0rem;
  -ms-flex-preferred-size: 33.3333333333%;
      flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
  --col-width: calc(100vw / 12 * 4);
}

.col-xs-5 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0rem;
  padding-left: 0rem;
  -ms-flex-preferred-size: 41.6666666667%;
      flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
  --col-width: calc(100vw / 12 * 5);
}

.col-xs-6 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0rem;
  padding-left: 0rem;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
  --col-width: calc(100vw / 12 * 6);
}

.col-xs-7 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0rem;
  padding-left: 0rem;
  -ms-flex-preferred-size: 58.3333333333%;
      flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
  --col-width: calc(100vw / 12 * 7);
}

.col-xs-8 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0rem;
  padding-left: 0rem;
  -ms-flex-preferred-size: 66.6666666667%;
      flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
  --col-width: calc(100vw / 12 * 8);
}

.col-xs-9 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0rem;
  padding-left: 0rem;
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  max-width: 75%;
  --col-width: calc(100vw / 12 * 9);
}

.col-xs-10 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0rem;
  padding-left: 0rem;
  -ms-flex-preferred-size: 83.3333333333%;
      flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
  --col-width: calc(100vw / 12 * 10);
}

.col-xs-11 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0rem;
  padding-left: 0rem;
  -ms-flex-preferred-size: 91.6666666667%;
      flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
  --col-width: calc(100vw / 12 * 11);
}

.col-xs-12 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0rem;
  padding-left: 0rem;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  --col-width: calc(100vw / 12 * 12);
}

.col-xs-offset-0 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0rem;
  padding-left: 0rem;
  margin-left: 0;
}

.col-xs-offset-1 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0rem;
  padding-left: 0rem;
  margin-left: 8.3333333333%;
}

.col-xs-offset-2 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0rem;
  padding-left: 0rem;
  margin-left: 16.6666666667%;
}

.col-xs-offset-3 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0rem;
  padding-left: 0rem;
  margin-left: 25%;
}

.col-xs-offset-4 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0rem;
  padding-left: 0rem;
  margin-left: 33.3333333333%;
}

.col-xs-offset-5 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0rem;
  padding-left: 0rem;
  margin-left: 41.6666666667%;
}

.col-xs-offset-6 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0rem;
  padding-left: 0rem;
  margin-left: 50%;
}

.col-xs-offset-7 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0rem;
  padding-left: 0rem;
  margin-left: 58.3333333333%;
}

.col-xs-offset-8 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0rem;
  padding-left: 0rem;
  margin-left: 66.6666666667%;
}

.col-xs-offset-9 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0rem;
  padding-left: 0rem;
  margin-left: 75%;
}

.col-xs-offset-10 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0rem;
  padding-left: 0rem;
  margin-left: 83.3333333333%;
}

.col-xs-offset-11 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0rem;
  padding-left: 0rem;
  margin-left: 91.6666666667%;
}

.col-xs-offset-12 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0rem;
  padding-left: 0rem;
  margin-left: 100%;
}

.col-xs {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  max-width: 100%;
}

.start-xs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
}

.center-xs {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
}

.self-start-xs {
  -ms-flex-item-align: start;
      align-self: flex-start;
  /*text-align: left;*/
}

.self-center-xs {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  /*text-align: center;*/
}

.self-end-xs {
  -ms-flex-item-align: end;
      align-self: flex-end;
  /*text-align: right;*/
}

.top-xs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bottom-xs {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.between-xs {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.first-xs {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (min-width: 40em) {
  .container {
    width: 70%;
  }
  .col-sm {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .col-sm-1 {
    width: 8.3333333333%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 8.3333333333%;
        flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    --col-width: calc(100vw / 12 * 1);
  }
  .col-sm-2 {
    width: 16.6666666667%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 16.6666666667%;
        flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    --col-width: calc(100vw / 12 * 2);
  }
  .col-sm-3 {
    width: 25%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
    --col-width: calc(100vw / 12 * 3);
  }
  .col-sm-4 {
    width: 33.3333333333%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    --col-width: calc(100vw / 12 * 4);
  }
  .col-sm-5 {
    width: 41.6666666667%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 41.6666666667%;
        flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    --col-width: calc(100vw / 12 * 5);
  }
  .col-sm-6 {
    width: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    --col-width: calc(100vw / 12 * 6);
  }
  .col-sm-7 {
    width: 58.3333333333%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 58.3333333333%;
        flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    --col-width: calc(100vw / 12 * 7);
  }
  .col-sm-8 {
    width: 66.6666666667%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 66.6666666667%;
        flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    --col-width: calc(100vw / 12 * 8);
  }
  .col-sm-9 {
    width: 75%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
    --col-width: calc(100vw / 12 * 9);
  }
  .col-sm-10 {
    width: 83.3333333333%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 83.3333333333%;
        flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    --col-width: calc(100vw / 12 * 10);
  }
  .col-sm-11 {
    width: 91.6666666667%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 91.6666666667%;
        flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    --col-width: calc(100vw / 12 * 11);
  }
  .col-sm-12 {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    --col-width: calc(100vw / 12 * 12);
  }
  .col-sm-offset-0 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 0;
  }
  .col-sm-offset-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 8.3333333333%;
  }
  .col-sm-offset-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 16.6666666667%;
  }
  .col-sm-offset-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 33.3333333333%;
  }
  .col-sm-offset-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 41.6666666667%;
  }
  .col-sm-offset-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 58.3333333333%;
  }
  .col-sm-offset-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 66.6666666667%;
  }
  .col-sm-offset-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 83.3333333333%;
  }
  .col-sm-offset-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 91.6666666667%;
  }
  .col-sm-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 100%;
  }
  .col-sm {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    max-width: 100%;
  }
  .start-sm {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }
  .center-sm {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .end-sm {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right;
  }
  .top-sm {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .middle-sm {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .bottom-sm {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .around-sm {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .between-sm {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .first-sm {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .last-sm {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .self-start-sm {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .self-end-sm {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
@media only screen and (min-width: 62em) {
  .container {
    width: 60%;
  }
  .col-md {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .col-md-1 {
    width: 8.3333333333%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 8.3333333333%;
        flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    --col-width: calc(100vw / 12 * 1);
  }
  .col-md-2 {
    width: 16.6666666667%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 16.6666666667%;
        flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    --col-width: calc(100vw / 12 * 2);
  }
  .col-md-3 {
    width: 25%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
    --col-width: calc(100vw / 12 * 3);
  }
  .col-md-4 {
    width: 33.3333333333%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    --col-width: calc(100vw / 12 * 4);
  }
  .col-md-5 {
    width: 41.6666666667%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 41.6666666667%;
        flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    --col-width: calc(100vw / 12 * 5);
  }
  .col-md-6 {
    width: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    --col-width: calc(100vw / 12 * 6);
  }
  .col-md-7 {
    width: 58.3333333333%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 58.3333333333%;
        flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    --col-width: calc(100vw / 12 * 7);
  }
  .col-md-8 {
    width: 66.6666666667%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 66.6666666667%;
        flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    --col-width: calc(100vw / 12 * 8);
  }
  .col-md-9 {
    width: 75%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
    --col-width: calc(100vw / 12 * 9);
  }
  .col-md-10 {
    width: 83.3333333333%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 83.3333333333%;
        flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    --col-width: calc(100vw / 12 * 10);
  }
  .col-md-11 {
    width: 91.6666666667%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 91.6666666667%;
        flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    --col-width: calc(100vw / 12 * 11);
  }
  .col-md-12 {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    --col-width: calc(100vw / 12 * 12);
  }
  .col-md-offset-0 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 0;
  }
  .col-md-offset-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 8.3333333333%;
  }
  .col-md-offset-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 16.6666666667%;
  }
  .col-md-offset-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 25%;
  }
  .col-md-offset-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 33.3333333333%;
  }
  .col-md-offset-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 41.6666666667%;
  }
  .col-md-offset-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 50%;
  }
  .col-md-offset-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 58.3333333333%;
  }
  .col-md-offset-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 66.6666666667%;
  }
  .col-md-offset-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 75%;
  }
  .col-md-offset-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 83.3333333333%;
  }
  .col-md-offset-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 91.6666666667%;
  }
  .col-md-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 100%;
  }
  .col-md {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    max-width: 100%;
  }
  .start-md {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }
  .center-md {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .end-md {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right;
  }
  .top-md {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .middle-md {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .bottom-md {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .around-md {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .between-md {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .first-md {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .last-md {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .self-start-md {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .self-end-md {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
@media only screen and (min-width: 75em) {
  .container {
    width: 60%;
  }
  .col-lg {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .col-lg-1 {
    width: 8.3333333333%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 8.3333333333%;
        flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    --col-width: calc(100vw / 12 * 1);
  }
  .col-lg-2 {
    width: 16.6666666667%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 16.6666666667%;
        flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    --col-width: calc(100vw / 12 * 2);
  }
  .col-lg-3 {
    width: 25%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
    --col-width: calc(100vw / 12 * 3);
  }
  .col-lg-4 {
    width: 33.3333333333%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    --col-width: calc(100vw / 12 * 4);
  }
  .col-lg-5 {
    width: 41.6666666667%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 41.6666666667%;
        flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    --col-width: calc(100vw / 12 * 5);
  }
  .col-lg-6 {
    width: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    --col-width: calc(100vw / 12 * 6);
  }
  .col-lg-7 {
    width: 58.3333333333%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 58.3333333333%;
        flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    --col-width: calc(100vw / 12 * 7);
  }
  .col-lg-8 {
    width: 66.6666666667%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 66.6666666667%;
        flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    --col-width: calc(100vw / 12 * 8);
  }
  .col-lg-9 {
    width: 75%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
    --col-width: calc(100vw / 12 * 9);
  }
  .col-lg-10 {
    width: 83.3333333333%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 83.3333333333%;
        flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    --col-width: calc(100vw / 12 * 10);
  }
  .col-lg-11 {
    width: 91.6666666667%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 91.6666666667%;
        flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    --col-width: calc(100vw / 12 * 11);
  }
  .col-lg-12 {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    --col-width: calc(100vw / 12 * 12);
  }
  .col-lg-offset-0 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 0;
  }
  .col-lg-offset-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 8.3333333333%;
  }
  .col-lg-offset-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 16.6666666667%;
  }
  .col-lg-offset-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 33.3333333333%;
  }
  .col-lg-offset-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 41.6666666667%;
  }
  .col-lg-offset-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 58.3333333333%;
  }
  .col-lg-offset-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 66.6666666667%;
  }
  .col-lg-offset-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 83.3333333333%;
  }
  .col-lg-offset-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 91.6666666667%;
  }
  .col-lg-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 0rem;
    padding-left: 0rem;
    margin-left: 100%;
  }
  .col-lg {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    max-width: 100%;
  }
  .start-lg {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }
  .center-lg {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .end-lg {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right;
  }
  .top-lg {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .middle-lg {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .bottom-lg {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .around-lg {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .between-lg {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .first-lg {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .last-lg {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .self-start-lg {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .self-end-lg {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
/*

	TYPOGRAPHY

*/
:root {
  --font-base: 18px;
  --font-size-1: Clamp(65px,6vw,8rem);
  --font-size-2: max(2vw,26px);
  --font-size-3: max(1.3vw, 1.4rem);
  /*  --font-size-4: max(1.2vw, 1.5rem);*/
  --font-size-4: 0.9rem;
  --font-size-5: 0.9rem;
}

/*
	FONT FACES
*/
@font-face {
  font-family: "Stabil Grotesk";
  src: url("../fonts/StabilGrotesk-Regular.woff2") format("woff2"), url("../fonts/StabilGrotesk-Regular.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Stabil Grotesk";
  src: url("../fonts/StabilGrotesk-Light.woff2") format("woff2"), url("../fonts/StabilGrotesk-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Stabil Grotesk";
  src: url("../fonts/StabilGrotesk-Regular.woff2") format("woff2"), url("../fonts/StabilGrotesk-Regular.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "UQR";
  src: url("../fonts/UQR.woff2") format("woff2"), url("../fonts/UQR.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Uxum Grotesque";
  src: url("../fonts/UxumGrotesque-Regular.woff2") format("woff2"), url("../fonts/UxumGrotesque-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/*
	IMPORTS
*/
html {
  font-size: 100%;
} /*16px*/
body {
  background: white;
  font-family: "Stabil Grotesk", "Suisse Int", "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.3;
}
body small {
  font-size: 0.6em;
}
body strong {
  font-weight: 600;
}

p, li, a, button {
  font-size: 0.9em;
  font-size: 1rem;
  line-height: 1.5em;
  /*  font-weight: 400;*/
  /*  font-family: sans-serif;*/
  letter-spacing: -0.015em;
}
p.lead, li.lead, a.lead, button.lead {
  /*    font-family: 'Youth Trial', 'PP Neue Montreal', sans-serif;*/
  font-size: 1.2em;
  font-weight: 400;
}
p.small, li.small, a.small, button.small {
  font-size: 1rem;
  line-height: 1.3em;
}

p a {
  font-size: 1em;
}

.link {
  display: inline-block;
  position: relative;
}
.link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  border-bottom: 1px solid rgba(var(--col), 0.9);
}
.upper {
  text-transform: uppercase;
}

lable, .label {
  font-size: 0.9rem;
  text-transform: uppercase;
  opacity: 0.4;
}

h1, h2, h3, h4, h5 {
  font-family: "Uxum Grotesque", "Stabil Grotesk", sans-serif;
  font-family: "Uxum Grotesque";
  line-height: 0.8em;
  font-weight: 400;
  letter-spacing: -0.03em;
}
h1.--sm, h2.--sm, h3.--sm, h4.--sm, h5.--sm {
  font-size: calc(var(--font-size-1) * 0.75);
}

h1 {
  font-size: var(--font-size-1);
}
h1.xl {
  --font-size-1: Clamp(65px,7vw,8rem);
}

h2 {
  font-size: var(--font-size-2);
}

h3 {
  /*font-family: sans-serif;*/
  font-size: var(--font-size-3);
  /*  font-weight: 300; */
}

h4 {
  font-size: var(--font-size-4);
  letter-spacing: 0em;
}

h5 {
  font-size: 1.1rem;
}

.uqr {
  /*  height: 1em;*/
  font-family: "UQR";
  font-style: normal !important;
  margin-top: 0.125em;
}

/*
	PAGES
	--------------------------------------------------
*/
/*

	INTRO

*/
.amp {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.4em;
  height: 1.4em;
  border-radius: 50%;
  border: 3px solid rgba(var(--col), 1);
  margin-top: 0.1em;
  font-size: 0.6em;
  font-weight: 500;
  vertical-align: middle;
  -webkit-transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: "Stabil Grotesk", sans-serif;
}

.dot {
  display: inline-block;
  vertical-align: middle;
  height: 0.5em;
  width: 0.5em;
  background: #31cf28;
  border-radius: 50%;
  -webkit-animation: flash 1s infinite;
          animation: flash 1s infinite;
  /*margin-right: 0.5em;*/
}

@-webkit-keyframes flash {
  0%, 49% {
    opacity: 0;
  }
  50%, 100% {
    opacity: 1;
  }
}

@keyframes flash {
  0%, 49% {
    opacity: 0;
  }
  50%, 100% {
    opacity: 1;
  }
}
.hero {
  width: 60vw;
  /*	padding-bottom: 2rem;*/
}
.hero__container {
  padding: 0 2rem;
  height: 100%;
  /*		height: 60vh;*/
}
@media screen and (max-width: 478px) {
  .hero__container {
    width: 100vw;
    height: 50vh;
    padding: 4rem 1rem;
  }
}
.hero__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.hero__title span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cta {
  width: 50vw;
}
.cta__container {
  padding: 1rem 2rem;
  height: 100%;
  /*		height: 60vh;*/
}
@media screen and (max-width: 478px) {
  .cta__container {
    width: 100vw;
    height: 66vh;
    padding: 2rem 1rem;
    -ms-flex-line-pack: end !important;
        align-content: end !important;
  }
}
.cta .reveal__title {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 478px) {
  .cta {
    width: 100vw;
  }
}

.archive {
  width: 160vw;
  margin-left: 15vw;
}
@media screen and (max-width: 478px) {
  .archive {
    display: none;
  }
}
.archive__container {
  padding: 1rem 2rem;
  height: 100%;
  /*		height: 60vh;*/
  /*		margin-left: 7.5vw;*/
  /*		margin-top: -4rem;*/
}
@media screen and (max-width: 478px) {
  .archive__container {
    width: 100vw;
    height: 66vh;
    padding: 2rem 1rem;
    -ms-flex-line-pack: end !important;
        align-content: end !important;
  }
}
.archive__list {
  /*		z-index: 10;*/
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  /*		bottom: 0;*/
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(5, 1fr);
  -ms-grid-rows: 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-rows: repeat(5, 1fr);
  /*		grid-column-gap: calc(100vh * 0.2);*/
  grid-row-gap: 0px;
  height: calc(100vh - var(--header-height) * 2.5);
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
}
.archive__list > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.archive__list > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.archive__list > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.archive__list > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
.archive__list > *:nth-child(5) {
  -ms-grid-row: 1;
  -ms-grid-column: 9;
}
.archive__list > *:nth-child(6) {
  -ms-grid-row: 1;
  -ms-grid-column: 11;
}
.archive__list > *:nth-child(7) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.archive__list > *:nth-child(8) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.archive__list > *:nth-child(9) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
.archive__list > *:nth-child(10) {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
}
.archive__list > *:nth-child(11) {
  -ms-grid-row: 3;
  -ms-grid-column: 9;
}
.archive__list > *:nth-child(12) {
  -ms-grid-row: 3;
  -ms-grid-column: 11;
}
.archive__list > *:nth-child(13) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
.archive__list > *:nth-child(14) {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
}
.archive__list > *:nth-child(15) {
  -ms-grid-row: 5;
  -ms-grid-column: 5;
}
.archive__list > *:nth-child(16) {
  -ms-grid-row: 5;
  -ms-grid-column: 7;
}
.archive__list > *:nth-child(17) {
  -ms-grid-row: 5;
  -ms-grid-column: 9;
}
.archive__list > *:nth-child(18) {
  -ms-grid-row: 5;
  -ms-grid-column: 11;
}
.archive__list > *:nth-child(19) {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
}
.archive__list > *:nth-child(20) {
  -ms-grid-row: 7;
  -ms-grid-column: 3;
}
.archive__list > *:nth-child(21) {
  -ms-grid-row: 7;
  -ms-grid-column: 5;
}
.archive__list > *:nth-child(22) {
  -ms-grid-row: 7;
  -ms-grid-column: 7;
}
.archive__list > *:nth-child(23) {
  -ms-grid-row: 7;
  -ms-grid-column: 9;
}
.archive__list > *:nth-child(24) {
  -ms-grid-row: 7;
  -ms-grid-column: 11;
}
.archive__list > *:nth-child(25) {
  -ms-grid-row: 9;
  -ms-grid-column: 1;
}
.archive__list > *:nth-child(26) {
  -ms-grid-row: 9;
  -ms-grid-column: 3;
}
.archive__list > *:nth-child(27) {
  -ms-grid-row: 9;
  -ms-grid-column: 5;
}
.archive__list > *:nth-child(28) {
  -ms-grid-row: 9;
  -ms-grid-column: 7;
}
.archive__list > *:nth-child(29) {
  -ms-grid-row: 9;
  -ms-grid-column: 9;
}
.archive__list > *:nth-child(30) {
  -ms-grid-row: 9;
  -ms-grid-column: 11;
}
.archive__list > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.archive__list > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.archive__list > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.archive__list > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
.archive__list > *:nth-child(5) {
  -ms-grid-row: 1;
  -ms-grid-column: 9;
}
.archive__list > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.archive__list > *:nth-child(7) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.archive__list > *:nth-child(8) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
.archive__list > *:nth-child(9) {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
}
.archive__list > *:nth-child(10) {
  -ms-grid-row: 3;
  -ms-grid-column: 9;
}
.archive__list > *:nth-child(11) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
.archive__list > *:nth-child(12) {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
}
.archive__list > *:nth-child(13) {
  -ms-grid-row: 5;
  -ms-grid-column: 5;
}
.archive__list > *:nth-child(14) {
  -ms-grid-row: 5;
  -ms-grid-column: 7;
}
.archive__list > *:nth-child(15) {
  -ms-grid-row: 5;
  -ms-grid-column: 9;
}
.archive__list > *:nth-child(16) {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
}
.archive__list > *:nth-child(17) {
  -ms-grid-row: 7;
  -ms-grid-column: 3;
}
.archive__list > *:nth-child(18) {
  -ms-grid-row: 7;
  -ms-grid-column: 5;
}
.archive__list > *:nth-child(19) {
  -ms-grid-row: 7;
  -ms-grid-column: 7;
}
.archive__list > *:nth-child(20) {
  -ms-grid-row: 7;
  -ms-grid-column: 9;
}
.archive__list > *:nth-child(21) {
  -ms-grid-row: 9;
  -ms-grid-column: 1;
}
.archive__list > *:nth-child(22) {
  -ms-grid-row: 9;
  -ms-grid-column: 3;
}
.archive__list > *:nth-child(23) {
  -ms-grid-row: 9;
  -ms-grid-column: 5;
}
.archive__list > *:nth-child(24) {
  -ms-grid-row: 9;
  -ms-grid-column: 7;
}
.archive__list > *:nth-child(25) {
  -ms-grid-row: 9;
  -ms-grid-column: 9;
}
.archive__item {
  display: block;
  -ms-grid-column-span: 2;
  grid-column: span 2;
  pointer-events: all;
  /*			opacity: .5;*/
  -webkit-transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.archive__item:nth-child(6) {
  opacity: 0 !important;
  pointer-events: none;
}
.archive__item:nth-last-child(2) {
  -ms-grid-row: 2;
      grid-row-start: 2;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/span 2;
}
.archive__item:nth-last-child(4) {
  -ms-grid-row: 4;
      grid-row-start: 4;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/span 2;
}
.archive__item__image {
  width: 20vh;
  height: 15dvh;
  border-radius: 0.5rem;
  overflow: hidden;
}
.archive__item:nth-child(1) figure {
  -webkit-transform: translateX(-1rem) translateY(0rem);
          transform: translateX(-1rem) translateY(0rem);
}
.archive__item:nth-child(2) figure {
  -webkit-transform: translateX(2rem) translateY(2rem);
          transform: translateX(2rem) translateY(2rem);
}
.archive__item:nth-child(3) figure {
  -webkit-transform: translateX(0rem) translateY(3rem);
          transform: translateX(0rem) translateY(3rem);
}
.archive__item:nth-child(4) figure {
  -webkit-transform: translateX(3rem) translateY(0rem);
          transform: translateX(3rem) translateY(0rem);
}
.archive__item:nth-child(5) figure {
  -webkit-transform: translateX(1rem) translateY(1rem);
          transform: translateX(1rem) translateY(1rem);
}
.archive__item:nth-child(6) figure {
  -webkit-transform: translateX(-2rem) translateY(-3rem);
          transform: translateX(-2rem) translateY(-3rem);
}
.archive__item:nth-child(7) figure {
  -webkit-transform: translateX(-1rem) translateY(-3rem);
          transform: translateX(-1rem) translateY(-3rem);
}
.archive__item:nth-child(8) figure {
  -webkit-transform: translateX(-1rem) translateY(2rem);
          transform: translateX(-1rem) translateY(2rem);
}
.archive__item:nth-child(9) figure {
  -webkit-transform: translateX(-3rem) translateY(1rem);
          transform: translateX(-3rem) translateY(1rem);
}
.archive__item:nth-child(10) figure {
  -webkit-transform: translateX(-2rem) translateY(1rem);
          transform: translateX(-2rem) translateY(1rem);
}
.archive__item:nth-child(11) figure {
  -webkit-transform: translateX(1rem) translateY(-2rem);
          transform: translateX(1rem) translateY(-2rem);
}
.archive__item:nth-child(12) figure {
  -webkit-transform: translateX(3rem) translateY(-3rem);
          transform: translateX(3rem) translateY(-3rem);
}
.archive__item:hover {
  opacity: 1;
}
@media screen and (max-width: 478px) {
  .archive {
    width: 100vw;
  }
}

.projects__wrapper {
  position: relative;
  height: 100%;
}
.projects__heading {
  padding: 0rem 2rem;
  gap: 1.5rem;
  position: absolute;
  right: 100%;
  bottom: 0;
  white-space: nowrap;
}
.projects__list {
  position: relative;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-column-gap: 5rem !important;
     -moz-column-gap: 5rem !important;
          column-gap: 5rem !important;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 1rem;
  padding-left: 2rem;
}
@media screen and (max-width: 478px) {
  .projects__list {
    display: -ms-grid;
    display: grid;
    height: auto;
    gap: 1rem;
    padding: 0 1rem;
    padding-top: 2rem;
  }
}
.projects__item {
  position: relative;
  border-radius: 1rem;
}
@media screen and (max-width: 478px) {
  .projects__item {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    position: sticky;
    top: calc(var(--header-height) + 1rem);
  }
}
.projects__item__figure {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  bottom: 3rem;
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (max-width: 478px) {
  .projects__item__figure {
    position: relative;
    height: 100%;
  }
}
.projects__item__image {
  z-index: 1;
  position: absolute;
  top: -10%;
  right: -10%;
  bottom: -10%;
  left: -10%;
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-transform: translateX(calc(-10% + var(--progress) * 20%));
          transform: translateX(calc(-10% + var(--progress) * 20%));
}
@media screen and (max-width: 478px) {
  .projects__item__image, .projects__item__image:first-child {
    -webkit-transform: none !important;
            transform: none !important;
    top: 0% !important;
    right: 0% !important;
    bottom: 0% !important;
    left: 0% !important;
  }
}
.projects__item__image img {
  opacity: 0;
  width: 100%;
  position: absolute;
  -webkit-transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.projects__item__image img:first-child {
  opacity: 1;
}
.projects__item:first-child .projects__item__image {
  top: -10%;
  right: -15%;
  bottom: -10%;
  left: -15%;
  -webkit-transform: translateX(calc(-10% + (var(--progress) + 0.225) * 20%));
          transform: translateX(calc(-10% + (var(--progress) + 0.225) * 20%));
}
.projects__item__heading {
  -webkit-transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
  padding: 0.5rem 1rem;
  /*			background: color(invert);*/
}
@media screen and (max-width: 478px) {
  .projects__item__heading {
    position: absolute;
    bottom: 0;
    top: 60%;
    left: 0;
    right: 0;
    opacity: 1;
    padding: 2rem;
    -webkit-transform: none;
            transform: none;
    display: -ms-grid !important;
    display: grid !important;
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: end !important;
    -ms-flex-line-pack: end !important;
        align-content: end !important;
    --col: #f2f2f2 !important;
    color: #f2f2f2 !important;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(transparent));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  }
}
.projects__item__role {
  opacity: 0.5;
}
.projects__item[data-scroll] {
  -webkit-transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.projects__item[data-scroll]:nth-child(even), .projects__item[data-scroll]:nth-child(3n+3) {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  -webkit-transform: translateY(-10%);
          transform: translateY(-10%);
}
.projects__item[data-scroll]:nth-child(even).is-inview, .projects__item[data-scroll]:nth-child(3n+3).is-inview {
  -webkit-transform: none;
          transform: none;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.projects__item[data-scroll]:nth-child(odd) {
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
}
.projects__item[data-scroll]:nth-child(odd).is-inview {
  -webkit-transform: none;
          transform: none;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 478px) {
  .projects__item[data-scroll] {
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
            transform: none;
    clip-path: none;
  }
  .projects__item[data-scroll]:first-child {
    -webkit-transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  }
  .projects__item[data-scroll]:first-child.is-inview {
    -webkit-transform: none;
            transform: none;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
.projects__item:hover .projects__item__heading {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
.projects__item:hover .projects__item__figure img {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
@media screen and (max-width: 478px) {
  .projects__item:hover .projects__item__figure img {
    -webkit-transform: none;
            transform: none;
  }
}
.projects__item:hover.card {
  -webkit-transform: translateY(-1rem) !important;
          transform: translateY(-1rem) !important;
}
@media screen and (max-width: 478px) {
  .projects__item:hover.card {
    -webkit-transform: none !important;
            transform: none !important;
  }
}

html[data-scroll-orientation] .projects__item[data-scroll]:first-child {
  -webkit-transform: none;
          transform: none;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.about__item {
  padding: max(2vw, 1rem) 0;
  border-top: 1px solid rgba(var(--col), 0.2);
}
.about__item:not(:last-child) {
  padding-bottom: max(10vw, 5rem);
}
.about__item__number {
  width: 1.8em;
  height: 1.8em;
  border-radius: 50%;
  border: 1px solid rgba(var(--col));
}
.about__item__heading {
  padding-bottom: 3rem;
}

.pricing__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  padding: max(3vw, 2rem);
  border-radius: 1rem;
  border: 1px solid rgba(var(--col), 0.2);
}

/*

	CASE

*/
.case__size {
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  border-radius: 2em;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
}
.case__size.active {
  background: rgba(var(--col), 1);
  color: rgba(var(--background), 1);
}
.case__size.active svg {
  --col: var(--background);
}
.case__size:hover:not(.active) {
  background: rgba(var(--col), 0.1);
}
.case__size__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  padding: 0.2rem;
  border-radius: 2em;
  border: 1px solid rgba(var(--col), 0.2);
  background: rgba(var(--background), 1);
  pointer-events: all;
  -webkit-transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (max-width: 478px) {
  .case__size__list {
    display: none;
  }
}
.case__info {
  padding-right: 20%;
}
.case__gallery {
  display: -ms-grid;
  display: grid;
  gap: 0.5rem;
  -ms-grid-columns: ;
  grid-template-columns: repeat(var(--image-size), 1fr);
}
.case__image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
  background: rgba(215, 209, 198, 0.2);
}

/*

	ENERGO

*/
.stats__wrapper {
  --duration: 7;
  --speed: 1;
  --count: 7;
  --init: 0.4;
  height: calc(var(--duration) * var(--speed) * (100dvh - 2rem));
}
.stats__wrapper [data-tab] {
  --scroll-speed: 30 !important;
}
.stats__wrapper [data-tab]:nth-child(1) {
  --scroll-delay: calc(var(--init)*-1 + ((var(--init) - 1)/var(--count)*2));
  --delay: calc(1/var(--count)*1);
}
.stats__wrapper [data-tab]:nth-child(2) {
  --scroll-delay: calc(var(--init)*-1 + ((var(--init) - 1)/var(--count)*3));
  --delay: calc(1/var(--count)*2);
}
.stats__wrapper [data-tab]:nth-child(3) {
  --scroll-delay: calc(var(--init)*-1 + ((var(--init) - 1)/var(--count)*4));
  --delay: calc(1/var(--count)*3);
}
.stats__wrapper [data-tab]:nth-child(4) {
  --scroll-delay: calc(var(--init)*-1 + ((var(--init) - 1)/var(--count)*5));
  --delay: calc(1/var(--count)*4);
}
.stats__wrapper [data-tab]:nth-child(5) {
  --scroll-delay: calc(var(--init)*-1 + ((var(--init) - 1)/var(--count)*6));
  --delay: calc(1/var(--count)*5);
}
.stats__wrapper .card[data-reveal] {
  --delay: 0.5;
}

.services__wrapper {
  --duration: 6;
  --speed: 1;
  --count: 6;
  height: calc(var(--duration) * var(--speed) * (100dvh - 2rem));
}

.modal__list {
  grid-gap: 0rem !important;
  padding: 0 1.5rem;
  max-height: calc(100dvh - 2rem - 6px);
  overflow-y: scroll;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.modal__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 2rem;
  padding: 1.5rem 0;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal__list__item:not(:last-child) {
  border-bottom: 1px solid rgba(var(--col), 0.2);
}
.modal__list__item label {
  display: block;
  -webkit-transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal__list__item:hover {
  opacity: 1;
}
.modal__list__item:hover label {
  opacity: 1 !important;
}
.modal__list__item figure {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 6rem;
  height: 6rem;
  border-radius: 1rem;
}
.modal__list__item figure img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.modal__list__item:not(.active) {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.modal__list__item:not(.active) label, .modal__list__item:not(.active) figure {
  opacity: 0.7;
}

/*
	COMPONENTS
	--------------------------------------------------
*/
/*! locomotive-scroll v3.5.4 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  /*  min-height: 100vh; */
}

.c-scrollbar {
  z-index: 1000;
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100vh;
  -webkit-transform-origin: center right;
          transform-origin: center right;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  opacity: 0;
}

.c-scrollbar:hover {
  -webkit-transform: scaleX(1.45);
          transform: scaleX(1.45);
}

.c-scrollbar:hover, .has-scroll-scrolling .c-scrollbar, .has-scroll-dragging .c-scrollbar {
  opacity: 1;
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: black;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: -webkit-grab;
  cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

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

/* 

  IMAGES 

*/
figure {
  position: relative;
  overflow: hidden;
}
figure img, figure video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
figure video {
  height: 100%;
  width: 100%;
}

/*

	COLOR ClASSES

*/
.bgc-acc {
  background-color: #8F9E2E;
  --background: #8F9E2E;
}

.c-acc {
  color: #8F9E2E;
  --col: #8F9E2E;
}

.bgc-prim {
  background-color: #004899;
  --background: #004899;
}

.c-prim {
  color: #004899;
  --col: #004899;
}

.bgc-sec {
  background-color: #A37EDF;
  --background: #A37EDF;
}

.c-sec {
  color: #A37EDF;
  --col: #A37EDF;
}

.bgc-border {
  background-color: #F5F2FF;
  --background: #F5F2FF;
}

.c-border {
  color: #F5F2FF;
  --col: #F5F2FF;
}

.bgc-medium {
  background-color: #ACA3C5;
  --background: #ACA3C5;
}

.c-medium {
  color: #ACA3C5;
  --col: #ACA3C5;
}

.bgc-dark {
  background-color: #435552;
  --background: #435552;
}

.c-dark {
  color: #435552;
  --col: #435552;
}

.bgc-jrd-green {
  background-color: #1d4321;
  --background: #1d4321;
}

.c-jrd-green {
  color: #1d4321;
  --col: #1d4321;
}

.bgc-color-1 {
  background-color: #FEF1FF;
  --background: #FEF1FF;
}

.c-color-1 {
  color: #FEF1FF;
  --col: #FEF1FF;
}

.bgc-color-2 {
  background-color: #F4F1FF;
  --background: #F4F1FF;
}

.c-color-2 {
  color: #F4F1FF;
  --col: #F4F1FF;
}

.bgc-color-3 {
  background-color: #F4F0FF;
  --background: #F4F0FF;
}

.c-color-3 {
  color: #F4F0FF;
  --col: #F4F0FF;
}

.bgc-green {
  background-color: #31cf28;
  --background: #31cf28;
}

.c-green {
  color: #31cf28;
  --col: #31cf28;
}

.bgc-light-green {
  background-color: #E1E3BD;
  --background: #E1E3BD;
}

.c-light-green {
  color: #E1E3BD;
  --col: #E1E3BD;
}

.bgc-sand {
  background-color: #a39b8b;
  --background: #a39b8b;
}

.c-sand {
  color: #a39b8b;
  --col: #a39b8b;
}

.bgc-light {
  background-color: #d7d1c6;
  --background: #d7d1c6;
}

.c-light {
  color: #d7d1c6;
  --col: #d7d1c6;
}

.bgc-brown {
  background-color: #575349;
  --background: #575349;
}

.c-brown {
  color: #575349;
  --col: #575349;
}

.bgc-grey {
  background-color: #c4cfd1;
  --background: #c4cfd1;
}

.c-grey {
  color: #c4cfd1;
  --col: #c4cfd1;
}

.bgc-teal {
  background-color: #516367;
  --background: #516367;
}

.c-teal {
  color: #516367;
  --col: #516367;
}

.bgc-red {
  background-color: #DA203E;
  --background: #DA203E;
}

.c-red {
  color: #DA203E;
  --col: #DA203E;
}

.bgc-bordo {
  background-color: #4B041E;
  --background: #4B041E;
}

.c-bordo {
  color: #4B041E;
  --col: #4B041E;
}

.bgc-yellow {
  background-color: #fff5e2;
  --background: #fff5e2;
}

.c-yellow {
  color: #fff5e2;
  --col: #fff5e2;
}

.bgc-orange {
  background-color: #ee9d0d;
  --background: #ee9d0d;
}

.c-orange {
  color: #ee9d0d;
  --col: #ee9d0d;
}

.bgc-blue {
  background-color: #e0f2fa;
  --background: #e0f2fa;
}

.c-blue {
  color: #e0f2fa;
  --col: #e0f2fa;
}

.bgc-light-yellow {
  background-color: #fff5e2;
  --background: #fff5e2;
}

.c-light-yellow {
  color: #fff5e2;
  --col: #fff5e2;
}

.bgc-light-purple {
  background-color: #e4e1fa;
  --background: #e4e1fa;
}

.c-light-purple {
  color: #e4e1fa;
  --col: #e4e1fa;
}

.bgc-pink {
  background-color: #ffdede;
  --background: #ffdede;
}

.c-pink {
  color: #ffdede;
  --col: #ffdede;
}

.bgc-darkgreen {
  background-color: #29443e;
  --background: #29443e;
}

.c-darkgreen {
  color: #29443e;
  --col: #29443e;
}

.bgc-violet {
  background-color: #C2BBF3;
  --background: #C2BBF3;
}

.c-violet {
  color: #C2BBF3;
  --col: #C2BBF3;
}

.bgc-beige {
  background-color: #e3e0d9;
  --background: #e3e0d9;
}

.c-beige {
  color: #e3e0d9;
  --col: #e3e0d9;
}

.bgc-text {
  background-color: #313937;
  --background: #313937;
}

.c-text {
  color: #313937;
  --col: #313937;
}

.bgc-black {
  background-color: #000000;
  --background: #000000;
}

.c-black {
  color: #000000;
  --col: #000000;
}

.bgc-white {
  background-color: #ffffff;
  --background: #ffffff;
}

.c-white {
  color: #ffffff;
  --col: #ffffff;
}

.bgc-invert {
  background-color: #f2f2f2;
  --background: #f2f2f2;
}

.c-invert {
  color: #f2f2f2;
  --col: #f2f2f2;
}

/*

	LOADER

*/
.loader__layout {
  z-index: 1000;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--loader-bg);
  -webkit-transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.loader__intro {
  width: 100%;
  /*padding: var(--pad) 0;*/
}
.loader {
  position: relative;
  width: 3rem !important;
  height: 3rem !important;
  border-radius: 50%;
  /*background-color: color(invert);*/
  /*box-shadow: 0 0 1em 0 rgba(color(dark),.2);*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.loader img {
  width: 1rem !important;
  height: 1rem !important;
  /*path {
    stroke-width: 10px;
    stroke: color(acc);
    stroke-dasharray: 150;
    stroke-dashoffset: 0;
  }*/
  -webkit-animation: loading linear 0.5s infinite;
          animation: loading linear 0.5s infinite;
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
body > .loader__layout {
  position: fixed;
}

[data-loader-control] .loader__layout {
  opacity: 0;
  visibility: hidden;
}

[data-loader-control].--loading .loader__layout {
  opacity: 1;
  visibility: visible;
}
[data-loader-control].--loading [data-loader-child] .loader__layout {
  opacity: 0;
  visibility: hidden;
}

html {
  width: 100vw;
}
html[has-scroll-smooth] {
  height: 100vh;
  overflow: hidden;
}
html .loader__layout {
  /*default*/
  pointer-events: all;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  visibility: visible;
}
html.is-ready {
  width: 100%;
  height: auto;
}
html.is-ready .loader__layout {
  /*default*/
  pointer-events: none;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  visibility: hidden;
}

/*

	STICKY 

*/
.sticky__wrapper {
  position: relative;
  margin-top: -100dvh;
  min-height: 200dvh;
}

.wrapper {
  position: relative;
}

.sticky {
  position: sticky !important;
  top: 0;
}
.sticky.--bottom {
  bottom: 0;
  top: auto;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.z-3 {
  z-index: 3;
}

.z-4 {
  z-index: 4;
}

.culture__wrapper {
  height: 600dvh;
}

.culture__gallery {
  height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.culture__gallery.scroll-out {
  --delay: 0.85;
}
.culture__gallery .card[data-reveal] {
  --delay: 0.85;
}
.culture__gallery__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  --delay: 0.0;
  --in:	calc(var(--progress) - var(--delay));
  --trigger:	clamp(0,calc(var(--in)*10000),1);
  grid-gap: max(8rem - var(--in) * 8rem, 2rem);
  -webkit-transform: translateY(max(200% - var(--progress) * 400%, 0%));
          transform: translateY(max(200% - var(--progress) * 400%, 0%));
}
.culture__gallery .grid__image {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50vw;
  min-height: initial !important;
  aspect-ratio: var(--aspect);
  --delay: 0.5;
  --in:	calc(var(--progress) - var(--delay));
  --trigger:	clamp(0,calc(var(--in)*10000),1);
}
.culture__gallery .grid__image:not(.scroll-in) {
  opacity: max(1 - var(--in) * 5, 0);
}
.culture__gallery .grid__image.scroll-in {
  z-index: 1;
  /*transform: scale(min(calc(0.5 + var(--trigger) * (var(--in)*1)), 1));*/
  width: min(50vw + var(--trigger) * var(--in) * 150vw, 100vw);
  /*			height: Min(calc(25vw + var(--trigger) * (var(--in)*150dvh)), 100dvh);*/
}

/*

	MODAL

*/
[data-modal-open] {
  cursor: pointer;
}

:root {
  --image-size: 2;
}
@media screen and (max-width: 478px) {
  :root {
    --image-size: 1;
  }
}

.modal__layout {
  z-index: 1000;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  pointer-events: none;
  /*
  		@include sm-screen {
  			padding: 0;
  			padding-top: 0em;
  			align-items: flex-end;
  		}*/
}
.modal {
  /*width: Max(500px, 40vw);*/
  -webkit-transition-duration: 1000ms;
          transition-duration: 1000ms;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*			justify-content: center;*/
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  /*			padding: 1rem 1rem 0;*/
  /*			margin-bottom: 1rem;*/
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  overflow-y: scroll;
  overflow-x: hidden;
  pointer-events: none;
}
@media screen and (max-width: 40em) {
  .modal {
    padding: 0;
    /*				padding-top: 1rem;*/
  }
}
.modal__overlay {
  z-index: 99;
  -webkit-transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /*height: 100%;*/
  background-color: rgba(49, 57, 55, 0.4);
}
@media screen and (max-width: 478px) {
  .modal__overlay {
    width: 100vw;
  }
}
.modal__load {
  z-index: 100;
  position: relative;
  width: 100%;
  height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal__inner {
  /*				overflow: hidden;*/
  z-index: 10;
  position: absolute;
  --modal-width: var(--modal-size);
  width: var(--modal-width);
  width: 100%;
  height: 100dvh;
  /*				min-height: calc(100dvh - 2rem);*/
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  /*display: flex;
  grid-gap: 0.5rem;
  justify-content: flex-end;
  align-items: center;
  */
  /*				background: var(--modal-bg);*/
}
.modal__main {
  /*				z-index: 10;*/
  position: relative;
  /*				padding: 3px;*/
  /*				border-radius: 1rem;*/
  padding: 0 2rem;
  display: -ms-grid;
  display: grid;
  width: 100%;
  -webkit-transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-transition-duration: 2s;
          transition-duration: 2s;
  /*				border-radius: 1rem;*/
  /*				overflow: hidden;*/
  background: rgba(var(--background), 1);
  color: rgba(var(--col), 1);
  /*				min-height: calc(100dvh - 2rem);*/
}
.modal__main.--noborder {
  padding: 0;
}
@media screen and (max-width: 478px) {
  .modal__main {
    padding: 0 1rem;
  }
}
.modal__header {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(var(--col), 0.2);
  background-color: rgba(var(--background), 1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.modal__body {
  /*				padding: 2rem 0 1rem;*/
}
@media screen and (max-width: 478px) {
  .modal__body {
    /*					padding: 0;*/
    /*					padding-bottom: 1rem;*/
  }
}
.modal__head {
  position: sticky;
  top: 6rem;
  padding-bottom: max(2vw, 1rem);
  padding-right: 20%;
  height: calc(100dvh - 6rem);
}
.modal__head.--static {
  position: relative;
  top: 0;
  height: auto;
  padding-right: 0;
}
@media screen and (max-width: 478px) {
  .modal__head {
    position: relative;
    height: auto;
    top: 0;
    /*					padding-bottom: 0;*/
    padding-right: 50%;
  }
}
.modal__section {
  padding: 2rem 0;
  /*				padding-right: 10%;*/
  padding-bottom: 5vw;
  border-top: 1px solid rgba(var(--col), 0.2);
}
.modal__image {
  height: 79dvh;
  width: 100%;
  border-radius: 1rem;
}
.modal__title {
  /*				max-width: 50%;*/
}
.modal__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /*overflow-x: scroll;*/
}
.modal__nav.--inline {
  margin-left: 1em;
}
.modal__footer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: max(1rem, 2vw);
  border-top: 1px solid rgba(172, 163, 197, 0.5);
}
.modal__close {
  z-index: 100 !important;
  pointer-events: none;
  position: fixed;
  top: 2rem;
  left: 0;
  padding: 0 2rem;
  /*			margin-bottom: -8rem;*/
  -webkit-transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal__close button {
  position: relative;
  z-index: 1;
  pointer-events: all;
}
.modal__close img {
  /*opacity: 0.25;*/
  width: 50%;
  height: 50%;
  -webkit-filter: invert(1);
          filter: invert(1);
}
@media screen and (max-width: 40em) {
  .modal__close {
    display: none;
    padding: 0 1rem;
  }
}

html .modal {
  /*visibility: hidden;*/
  pointer-events: none;
}
html .modal__layout {
  z-index: 0;
}
html .modal__load {
  /*			@include animation;*/
  /*			transition-duration: 600ms;*/
  -webkit-transform-origin: top center;
          transform-origin: top center;
  /*			transform: translateY(100%);*/
  /*			animation: modal-out 800ms $defaultEasing forwards;*/
}
html .modal__inner {
  /*			@include animation;*/
  /*			transition-duration: 1200ms;*/
  -webkit-transform-origin: top center;
          transform-origin: top center;
  /*			transform: scale(1.3);*/
  -webkit-box-shadow: 0 -5vw 10vw rgba(67, 85, 82, 0.2);
          box-shadow: 0 -5vw 10vw rgba(67, 85, 82, 0.2);
  -webkit-animation: modal-card-out 1200ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: modal-card-out 1200ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
html .modal__main {
  /*			border-radius: 1rem;*/
}
html .modal__overlay {
  pointer-events: none;
  opacity: 0;
}
html .modal__close {
  -webkit-transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
}

html.had-modal [data-transition-container] {
  position: relative;
  z-index: 1000;
  /*		@include animation;*/
  /*		transition-duration: 1000ms;*/
  /*		transform: none;*/
  -webkit-animation: modal-in 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: modal-in 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

html.has-modal {
  pointer-events: none;
}
html.has-modal [data-transition-container] {
  z-index: 999;
  /*		transform: scale(0.9);*/
  /*		border-radius: 1rem;*/
  -webkit-animation: modal-card-out 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: modal-card-out 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
html.has-modal .modal {
  pointer-events: all;
}
html.has-modal .modal__layout {
  z-index: 1000;
  pointer-events: all;
}
html.has-modal .modal__load {
  /*			opacity: 1;*/
  /*			transform: none;*/
  -webkit-animation: modal-in 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: modal-in 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
html.has-modal .modal__inner {
  /*			transform: none;*/
  -webkit-animation: modal-card-in 1200ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: modal-card-in 1200ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
html.has-modal .modal__inner.--next-out, html.has-modal .modal__inner.--next-in.--next-out {
  -webkit-animation: modal-card-next-out 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: modal-card-next-out 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
html.has-modal .modal__inner.--next-in {
  -webkit-animation: modal-card-next-in 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: modal-card-next-in 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
html.has-modal .modal__inner.--active {
  /*				position: relative;*/
}
html.has-modal .modal__main {
  /*			border-radius: 0;*/
}
html.has-modal .modal__overlay {
  /*			opacity: 1;*/
  /*			pointer-events: all;	*/
}
html.has-modal .modal__close {
  -webkit-transform: none;
          transform: none;
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

html.no-scroll body {
  height: 100%;
  overflow: hidden;
}

@-webkit-keyframes modal-in {
  0% {
    /*opacity: 0;*/
    -webkit-transform: translateY(100%) scale(0.9);
            transform: translateY(100%) scale(0.9);
  }
  100% {
    /*opacity: 1;*/
    -webkit-transform: translateY(0%) scale(1);
            transform: translateY(0%) scale(1);
  }
}

@keyframes modal-in {
  0% {
    /*opacity: 0;*/
    -webkit-transform: translateY(100%) scale(0.9);
            transform: translateY(100%) scale(0.9);
  }
  100% {
    /*opacity: 1;*/
    -webkit-transform: translateY(0%) scale(1);
            transform: translateY(0%) scale(1);
  }
}
@-webkit-keyframes modal-card-in {
  0% {
    /*opacity: 0;*/
    /*		transform: scale(0.95);*/
    /*		border-radius: 1rem;*/
  }
  100% {
    /*opacity: 1;*/
    /*		transform: scale(1);*/
    /*		border-radius: 0;*/
  }
}
@keyframes modal-card-in {
  0% {
    /*opacity: 0;*/
    /*		transform: scale(0.95);*/
    /*		border-radius: 1rem;*/
  }
  100% {
    /*opacity: 1;*/
    /*		transform: scale(1);*/
    /*		border-radius: 0;*/
  }
}
@-webkit-keyframes modal-out {
  0% {
    /*		opacity: 1;*/
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    /*		opacity: 0;*/
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@keyframes modal-out {
  0% {
    /*		opacity: 1;*/
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    /*		opacity: 0;*/
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@-webkit-keyframes modal-card-out {
  0% {
    /*opacity: 1;*/
    -webkit-transform: scale(1);
            transform: scale(1);
    /*		border-radius: 0;*/
  }
  100% {
    /*opacity: 0;*/
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    /*		border-radius: 1rem;*/
  }
}
@keyframes modal-card-out {
  0% {
    /*opacity: 1;*/
    -webkit-transform: scale(1);
            transform: scale(1);
    /*		border-radius: 0;*/
  }
  100% {
    /*opacity: 0;*/
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    /*		border-radius: 1rem;*/
  }
}
@-webkit-keyframes modal-card-next-out {
  0% {
    /*		opacity: 1;*/
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    /*		opacity: 0;*/
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}
@keyframes modal-card-next-out {
  0% {
    /*		opacity: 1;*/
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    /*		opacity: 0;*/
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}
@-webkit-keyframes modal-card-next-in {
  0% {
    /*		opacity: 0;*/
    -webkit-transform: translateY(100%) scale(0.9);
            transform: translateY(100%) scale(0.9);
  }
  100% {
    /*		opacity: 1;*/
    -webkit-transform: translateY(0%) scale(1);
            transform: translateY(0%) scale(1);
  }
}
@keyframes modal-card-next-in {
  0% {
    /*		opacity: 0;*/
    -webkit-transform: translateY(100%) scale(0.9);
            transform: translateY(100%) scale(0.9);
  }
  100% {
    /*		opacity: 1;*/
    -webkit-transform: translateY(0%) scale(1);
            transform: translateY(0%) scale(1);
  }
}
/* 

	ICONS 

*/
:root {
  --icon-size: 1.4rem;
}

.icon {
  z-index: 1;
  position: relative;
  /*	width: 	var(--icon-size);*/
  height: 0.9em;
  width: 0.9em;
  border-radius: var(--btn-radius);
  /*background: color(border);*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.icon svg path {
  /*			fill: rgba(var(--col),1);*/
  stroke: rgba(var(--col), 1);
}
/* 

BUTTONS 

*/
button, .button {
  --icon-size: 3.0rem;
  --size: 5rem;
  position: relative;
  width: auto;
  height: 3.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: var(--grid-gap);
     -moz-column-gap: var(--grid-gap);
          column-gap: var(--grid-gap);
  border-radius: 1rem;
  overflow: hidden;
  /*	font-size: var(--font-size-4);*/
  padding: 0.6em 1em;
  border: 1px solid rgba(49, 57, 55, 0.2);
  line-height: 1em;
  /*	text-transform: uppercase;*/
  /*	font-weight: 500;*/
  /*	@include animation;*/
}
button.no-border, .button.no-border {
  border: none;
  margin: 0 -0.6em;
}
button.--large, .button.--large {
  font-size: 1.4rem;
  padding: 1em 2em;
}
button.--icon, .button.--icon {
  width: 3rem;
  height: 3rem;
}
button:before, .button:before {
  /*		content: '';*/
  background: rgba(var(--col), 1);
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 120%;
  height: 0;
  padding-bottom: 120%;
  top: -90%;
  left: -10%;
  border-radius: 50%;
  -webkit-transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
          transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
  /*	    @include animation;*/
}
button:hover, .button:hover {
  color: rgba(var(--background), 1);
  background: rgba(var(--col), 1);
}
button:hover .icon, .button:hover .icon {
  --col: var(--background);
}
button:hover [data-word], .button:hover [data-word] {
  /*			animation: MoveScaleUpInitial 0.15s ease-in forwards, MoveScaleUpEnd 0.3s ease-out forwards 0.15s;*/
}
button:hover:before, .button:hover:before {
  /*			top: -50%;*/
  -webkit-transform: none;
          transform: none;
}

@-webkit-keyframes MoveScaleUpInitial {
  to {
    -webkit-transform: translate3d(0, -55%, 0);
            transform: translate3d(0, -55%, 0);
    opacity: 0;
  }
}

@keyframes MoveScaleUpInitial {
  to {
    -webkit-transform: translate3d(0, -55%, 0);
            transform: translate3d(0, -55%, 0);
    opacity: 0;
  }
}
@-webkit-keyframes MoveScaleUpEnd {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
    opacity: 0;
  }
  to {
    color: rgba(var(--background), 1);
    --col: var(--background);
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes MoveScaleUpEnd {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
    opacity: 0;
  }
  to {
    color: rgba(var(--background), 1);
    --col: var(--background);
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
/*

	LIST

*/
.list {
  position: relative;
}
.list__label {
  position: absolute;
  right: 100%;
  padding: 0 var(--pad-2);
  white-space: nowrap;
}
.list__content {
  position: relative;
}

/*

	FORM INPUTS

*/
input, textarea {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(var(--col), 0.5);
  font-family: "Youth Trial", sans-serif;
}

.form__input {
  width: 100%;
}
.form__input input, .form__input textarea {
  width: 100%;
}

/*	

	TAG

*/
.tag {
  /*	font-family: 'Inter', sans-serif;*/
  font-weight: 400;
  font-size: 0.9em;
  white-space: nowrap;
  display: inline-block;
  padding: 0.6em 1.2em;
  border-radius: 2em;
  border: 1px solid rgba(var(--col), 0.2);
}
.tag__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}

/*	

	CARD

*/
.card {
  /*	position: relative;*/
  width: 25%;
  width: 50vh;
  width: 50dvh;
  /*	height: calc(100dvh * 0.8);*/
  height: 100%;
  /*	overflow: hidden;*/
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.card:nth-child(odd) {
  height: 70vh;
}
.card:nth-child(even) {
  height: 70vh;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.card:nth-child(3n+3) {
  height: 70vh;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
@media screen and (max-width: 478px) {
  .card {
    /*		clip-path: none !important;*/
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    --index0: calc(var(--index) - 1); /* 0-based index */
    --index-prev: calc(var(--index) - 2); /* 0-based index */
    --reverse-index: calc(var(--numcards) - var(--index0)); /* reverse index */
    --reverse-index0: calc(var(--reverse-index) - 1); /* 0-based reverse index */
  }
  .card.projects__item:not(:first-child) {
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
            transform: none;
    clip-path: none;
  }
  .card:not(:first-child) {
    --start-range: calc(var(--index-prev) / var(--numcards) * 100%);
    --end-range: calc((var(--index0)) / var(--numcards) * 100%);
    /*animation: linear clip forwards;
    animation-timeline: --cards-element-scrolls-in-body;
    animation-range: exit-crossing var(--start-range) exit-crossing var(--end-range);*/
  }
}
.card.--large {
  width: 80dvh;
}
.card__meta {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.card__viewport {
  height: 100%;
  border-radius: 1rem;
  /*		overflow: hidden;*/
  -webkit-transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  /*--start-range: calc(var(--index-prev) / var(--numcards) * 100%);
  --end-range: calc((var(--index0)) / var(--numcards) * 100%);

  animation: linear stuck forwards;
  animation-timeline: --cards-element-scrolls-in-body;
  animation-range: exit-crossing var(--start-range) exit-crossing var(--end-range);*/
}
.card__content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border-radius: 1rem;
  overflow: hidden;
  /*		box-shadow: 0 0 5rem 0rem rgba(color(black),.5);*/
  /*@include xs-screen {
  	img {

  		--start-range: calc(var(--index0) / var(--numcards) * 100%);
  		--end-range: calc((var(--index)) / var(--numcards) * 100%);

  		animation: linear darken both;
  		animation-timeline: --cards-element-scrolls-in-body;
  		animation-range: exit-crossing var(--start-range) exit-crossing var(--end-range);

  		transform-origin: top center;

  	}

  }*/
}
@media screen and (max-width: 478px) {
  .card__content {
    --start-range: calc(var(--index0) / var(--numcards) * 100%);
    --end-range: calc((var(--index)) / var(--numcards) * 100%);
    -webkit-animation: linear scale both;
            animation: linear scale both;
    animation-timeline: --cards-element-scrolls-in-body;
    animation-range: exit-crossing var(--start-range) exit-crossing var(--end-range);
    -webkit-transform-origin: top center;
            transform-origin: top center;
  }
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
  60% {
    /*		opacity: 1;*/
  }
  100% {
    -webkit-transform: scale(0.9) translateY(1rem);
            transform: scale(0.9) translateY(1rem);
    /*		opacity: 0.0;*/
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
  60% {
    /*		opacity: 1;*/
  }
  100% {
    -webkit-transform: scale(0.9) translateY(1rem);
            transform: scale(0.9) translateY(1rem);
    /*		opacity: 0.0;*/
  }
}
@-webkit-keyframes darken {
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}
@keyframes darken {
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}
@-webkit-keyframes stuck {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes stuck {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@-webkit-keyframes clip {
  from {
    /*		transform: translateY(20%);*/
    /*		clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);*/
  }
  to {
    /*		transform: translateY(-20%);*/
    /*		clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);*/
  }
}
@keyframes clip {
  from {
    /*		transform: translateY(20%);*/
    /*		clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);*/
  }
  to {
    /*		transform: translateY(-20%);*/
    /*		clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);*/
  }
}
.cards__list {
  view-timeline-name: --cards-element-scrolls-in-body;
}

/*

  REVEALS

*/
[data-reveal-text] [data-word] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  line-height: 1.2em;
  margin: -0.18em 0;
}
[data-reveal-text] [data-word]:nth-child(1) span {
  -webkit-animation-delay: 0ms !important;
          animation-delay: 0ms !important;
}
[data-reveal-text] [data-word]:nth-child(2) span {
  -webkit-animation-delay: 100ms !important;
          animation-delay: 100ms !important;
}
[data-reveal-text] [data-word]:nth-child(3) span {
  -webkit-animation-delay: 200ms !important;
          animation-delay: 200ms !important;
}
[data-reveal-text] [data-word]:nth-child(4) span {
  -webkit-animation-delay: 300ms !important;
          animation-delay: 300ms !important;
}
[data-reveal-text] [data-word]:nth-child(5) span {
  -webkit-animation-delay: 400ms !important;
          animation-delay: 400ms !important;
}
[data-reveal-text] [data-word]:nth-child(6) span {
  -webkit-animation-delay: 500ms !important;
          animation-delay: 500ms !important;
}
[data-reveal-text] [data-word]:nth-child(7) span {
  -webkit-animation-delay: 600ms !important;
          animation-delay: 600ms !important;
}
[data-reveal-text] [data-word]:nth-child(8) span {
  -webkit-animation-delay: 700ms !important;
          animation-delay: 700ms !important;
}
[data-reveal-text] [data-word]:nth-child(9) span {
  -webkit-animation-delay: 800ms !important;
          animation-delay: 800ms !important;
}
[data-reveal-text] [data-word]:nth-child(10) span {
  -webkit-animation-delay: 900ms !important;
          animation-delay: 900ms !important;
}
[data-reveal-text] [data-word]:nth-child(11) span {
  -webkit-animation-delay: 1000ms !important;
          animation-delay: 1000ms !important;
}
[data-reveal-text] [data-word]:nth-child(12) span {
  -webkit-animation-delay: 1100ms !important;
          animation-delay: 1100ms !important;
}
[data-reveal-text] [data-word]:nth-child(13) span {
  -webkit-animation-delay: 1200ms !important;
          animation-delay: 1200ms !important;
}
[data-reveal-text] [data-word]:nth-child(14) span {
  -webkit-animation-delay: 1300ms !important;
          animation-delay: 1300ms !important;
}
[data-reveal-text] [data-word]:nth-child(15) span {
  -webkit-animation-delay: 1400ms !important;
          animation-delay: 1400ms !important;
}
[data-reveal-text] [data-word]:nth-child(16) span {
  -webkit-animation-delay: 1500ms !important;
          animation-delay: 1500ms !important;
}
[data-reveal-text] [data-word]:nth-child(17) span {
  -webkit-animation-delay: 1600ms !important;
          animation-delay: 1600ms !important;
}
[data-reveal-text] [data-word]:nth-child(18) span {
  -webkit-animation-delay: 1700ms !important;
          animation-delay: 1700ms !important;
}
[data-reveal-text] [data-word]:nth-child(19) span {
  -webkit-animation-delay: 1800ms !important;
          animation-delay: 1800ms !important;
}
[data-reveal-text] [data-word]:nth-child(20) span {
  -webkit-animation-delay: 1900ms !important;
          animation-delay: 1900ms !important;
}
[data-reveal-text] [data-word] > span {
  -webkit-transform: translateY(1.5em);
          transform: translateY(1.5em);
}
[data-reveal-text].is-inview [data-word] span {
  -webkit-animation: reveal-text 1.2s forwards;
          animation: reveal-text 1.2s forwards;
}

[data-transition-container].lenis [data-reveal-text]:not([data-scroll]) [data-word] span,
html.has-scroll-init [data-reveal-text]:not([data-scroll]) [data-word] span,
html[data-scroll-orientation] [data-reveal-text]:not([data-scroll]) [data-word] span,
html.has-modal [data-reveal-text]:not([data-scroll]) [data-word] span {
  -webkit-animation: reveal-text 1.2s forwards;
          animation: reveal-text 1.2s forwards;
}

html.has-modal [data-reveal-text]:not([data-scroll]) [data-word] span:nth-child(1) span {
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}
html.has-modal [data-reveal-text]:not([data-scroll]) [data-word] span:nth-child(2) span {
  -webkit-animation-delay: 400ms;
          animation-delay: 400ms;
}
html.has-modal [data-reveal-text]:not([data-scroll]) [data-word] span:nth-child(3) span {
  -webkit-animation-delay: 500ms;
          animation-delay: 500ms;
}
html.has-modal [data-reveal-text]:not([data-scroll]) [data-word] span:nth-child(4) span {
  -webkit-animation-delay: 600ms;
          animation-delay: 600ms;
}
html.has-modal [data-reveal-text]:not([data-scroll]) [data-word] span:nth-child(5) span {
  -webkit-animation-delay: 700ms;
          animation-delay: 700ms;
}
html.has-modal [data-reveal-text]:not([data-scroll]) [data-word] span:nth-child(6) span {
  -webkit-animation-delay: 800ms;
          animation-delay: 800ms;
}
html.has-modal [data-reveal-text]:not([data-scroll]) [data-word] span:nth-child(7) span {
  -webkit-animation-delay: 900ms;
          animation-delay: 900ms;
}
html.has-modal [data-reveal-text]:not([data-scroll]) [data-word] span:nth-child(8) span {
  -webkit-animation-delay: 1000ms;
          animation-delay: 1000ms;
}
html.has-modal [data-reveal-text]:not([data-scroll]) [data-word] span:nth-child(9) span {
  -webkit-animation-delay: 1100ms;
          animation-delay: 1100ms;
}
html.has-modal [data-reveal-text]:not([data-scroll]) [data-word] span:nth-child(10) span {
  -webkit-animation-delay: 1200ms;
          animation-delay: 1200ms;
}
html.has-modal [data-reveal-text]:not([data-scroll]) [data-word] span:nth-child(11) span {
  -webkit-animation-delay: 1300ms;
          animation-delay: 1300ms;
}
html.has-modal [data-reveal-text]:not([data-scroll]) [data-word] span:nth-child(12) span {
  -webkit-animation-delay: 1400ms;
          animation-delay: 1400ms;
}
html.has-modal [data-reveal-text]:not([data-scroll]) [data-word] span:nth-child(13) span {
  -webkit-animation-delay: 1500ms;
          animation-delay: 1500ms;
}
html.has-modal [data-reveal-text]:not([data-scroll]) [data-word] span:nth-child(14) span {
  -webkit-animation-delay: 1600ms;
          animation-delay: 1600ms;
}
html.has-modal [data-reveal-text]:not([data-scroll]) [data-word] span:nth-child(15) span {
  -webkit-animation-delay: 1700ms;
          animation-delay: 1700ms;
}
html.has-modal [data-reveal-text]:not([data-scroll]) [data-word] span:nth-child(16) span {
  -webkit-animation-delay: 1800ms;
          animation-delay: 1800ms;
}
html.has-modal [data-reveal-text]:not([data-scroll]) [data-word] span:nth-child(17) span {
  -webkit-animation-delay: 1900ms;
          animation-delay: 1900ms;
}
html.has-modal [data-reveal-text]:not([data-scroll]) [data-word] span:nth-child(18) span {
  -webkit-animation-delay: 2000ms;
          animation-delay: 2000ms;
}
html.has-modal [data-reveal-text]:not([data-scroll]) [data-word] span:nth-child(19) span {
  -webkit-animation-delay: 2100ms;
          animation-delay: 2100ms;
}
html.has-modal [data-reveal-text]:not([data-scroll]) [data-word] span:nth-child(20) span {
  -webkit-animation-delay: 2200ms;
          animation-delay: 2200ms;
}

[data-reveal-image] {
  clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
}
[data-reveal-image]:nth-child(1) {
  -webkit-animation-delay: 50ms;
          animation-delay: 50ms;
}
[data-reveal-image]:nth-child(2) {
  -webkit-animation-delay: 100ms;
          animation-delay: 100ms;
}
[data-reveal-image]:nth-child(3) {
  -webkit-animation-delay: 150ms;
          animation-delay: 150ms;
}
[data-reveal-image]:nth-child(4) {
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
}
[data-reveal-image]:nth-child(5) {
  -webkit-animation-delay: 250ms;
          animation-delay: 250ms;
}
[data-reveal-image]:nth-child(6) {
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}
[data-reveal-image]:nth-child(7) {
  -webkit-animation-delay: 350ms;
          animation-delay: 350ms;
}
[data-reveal-image]:nth-child(8) {
  -webkit-animation-delay: 400ms;
          animation-delay: 400ms;
}
[data-reveal-image]:nth-child(9) {
  -webkit-animation-delay: 450ms;
          animation-delay: 450ms;
}
[data-reveal-image]:nth-child(10) {
  -webkit-animation-delay: 500ms;
          animation-delay: 500ms;
}
[data-reveal-image]:nth-child(11) {
  -webkit-animation-delay: 550ms;
          animation-delay: 550ms;
}
[data-reveal-image]:nth-child(12) {
  -webkit-animation-delay: 600ms;
          animation-delay: 600ms;
}
[data-reveal-image]:nth-child(13) {
  -webkit-animation-delay: 650ms;
          animation-delay: 650ms;
}
[data-reveal-image]:nth-child(14) {
  -webkit-animation-delay: 700ms;
          animation-delay: 700ms;
}
[data-reveal-image]:nth-child(15) {
  -webkit-animation-delay: 750ms;
          animation-delay: 750ms;
}
[data-reveal-image]:nth-child(16) {
  -webkit-animation-delay: 800ms;
          animation-delay: 800ms;
}
[data-reveal-image]:nth-child(17) {
  -webkit-animation-delay: 850ms;
          animation-delay: 850ms;
}
[data-reveal-image]:nth-child(18) {
  -webkit-animation-delay: 900ms;
          animation-delay: 900ms;
}
[data-reveal-image]:nth-child(19) {
  -webkit-animation-delay: 950ms;
          animation-delay: 950ms;
}
[data-reveal-image]:nth-child(20) {
  -webkit-animation-delay: 1000ms;
          animation-delay: 1000ms;
}
[data-reveal-image].is-inview {
  -webkit-animation: reveal-image 1000ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: reveal-image 1000ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

[data-transition-container].lenis [data-reveal-image]:not([data-scroll]),
html.has-scroll-init [data-reveal-image]:not([data-scroll]),
html.has-modal [data-reveal-image]:not([data-scroll]) {
  -webkit-animation: reveal-image 1000ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: reveal-image 1000ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

html.has-modal [data-reveal-image]:not([data-scroll]):nth-child(1) {
  -webkit-animation-delay: 250ms;
          animation-delay: 250ms;
}
html.has-modal [data-reveal-image]:not([data-scroll]):nth-child(2) {
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}
html.has-modal [data-reveal-image]:not([data-scroll]):nth-child(3) {
  -webkit-animation-delay: 350ms;
          animation-delay: 350ms;
}
html.has-modal [data-reveal-image]:not([data-scroll]):nth-child(4) {
  -webkit-animation-delay: 400ms;
          animation-delay: 400ms;
}
html.has-modal [data-reveal-image]:not([data-scroll]):nth-child(5) {
  -webkit-animation-delay: 450ms;
          animation-delay: 450ms;
}
html.has-modal [data-reveal-image]:not([data-scroll]):nth-child(6) {
  -webkit-animation-delay: 500ms;
          animation-delay: 500ms;
}
html.has-modal [data-reveal-image]:not([data-scroll]):nth-child(7) {
  -webkit-animation-delay: 550ms;
          animation-delay: 550ms;
}
html.has-modal [data-reveal-image]:not([data-scroll]):nth-child(8) {
  -webkit-animation-delay: 600ms;
          animation-delay: 600ms;
}
html.has-modal [data-reveal-image]:not([data-scroll]):nth-child(9) {
  -webkit-animation-delay: 650ms;
          animation-delay: 650ms;
}
html.has-modal [data-reveal-image]:not([data-scroll]):nth-child(10) {
  -webkit-animation-delay: 700ms;
          animation-delay: 700ms;
}
html.has-modal [data-reveal-image]:not([data-scroll]):nth-child(11) {
  -webkit-animation-delay: 750ms;
          animation-delay: 750ms;
}
html.has-modal [data-reveal-image]:not([data-scroll]):nth-child(12) {
  -webkit-animation-delay: 800ms;
          animation-delay: 800ms;
}
html.has-modal [data-reveal-image]:not([data-scroll]):nth-child(13) {
  -webkit-animation-delay: 850ms;
          animation-delay: 850ms;
}
html.has-modal [data-reveal-image]:not([data-scroll]):nth-child(14) {
  -webkit-animation-delay: 900ms;
          animation-delay: 900ms;
}
html.has-modal [data-reveal-image]:not([data-scroll]):nth-child(15) {
  -webkit-animation-delay: 950ms;
          animation-delay: 950ms;
}
html.has-modal [data-reveal-image]:not([data-scroll]):nth-child(16) {
  -webkit-animation-delay: 1000ms;
          animation-delay: 1000ms;
}
html.has-modal [data-reveal-image]:not([data-scroll]):nth-child(17) {
  -webkit-animation-delay: 1050ms;
          animation-delay: 1050ms;
}
html.has-modal [data-reveal-image]:not([data-scroll]):nth-child(18) {
  -webkit-animation-delay: 1100ms;
          animation-delay: 1100ms;
}
html.has-modal [data-reveal-image]:not([data-scroll]):nth-child(19) {
  -webkit-animation-delay: 1150ms;
          animation-delay: 1150ms;
}
html.has-modal [data-reveal-image]:not([data-scroll]):nth-child(20) {
  -webkit-animation-delay: 1200ms;
          animation-delay: 1200ms;
}

@-webkit-keyframes reveal-image {
  from {
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}

@keyframes reveal-image {
  from {
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@-webkit-keyframes reveal-text {
  0% {
    -webkit-transform: translateY(1.5em);
            transform: translateY(1.5em);
  }
  100% {
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes reveal-text {
  0% {
    -webkit-transform: translateY(1.5em);
            transform: translateY(1.5em);
  }
  100% {
    -webkit-transform: none;
            transform: none;
  }
}
/*
	LAYOUT
	--------------------------------------------------
*/
/*

	BODY

*/
html {
  --background: transparent;
  background: #313937;
  --col: var(--body-text-color);
  --scroll-progress: 0.0;
}

body {
  width: 100vw;
  height: 100vh;
  background: transparent;
  /*	background: var(--background);*/
  background-size: cover;
  color: var(--col);
  scroll-behavior: smooth;
  -webkit-transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.page {
  --padding: var(--pad-half);
  padding: var(--padding);
  height: 100vh;
  width: 100vw;
  /*	padding-bottom: 0;	*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.transition__wrapper, [data-transition-container] {
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  overflow: hidden;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-box-shadow: 0 -5vw 10vw rgba(67, 85, 82, 0.2);
          box-shadow: 0 -5vw 10vw rgba(67, 85, 82, 0.2);
  display: -ms-grid;
  display: grid;
  -webkit-transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (max-width: 478px) {
  .transition__wrapper, [data-transition-container] {
    /*		height: auto;*/
    overflow-y: scroll;
  }
}

html[data-theme=light] {
  --background: 242, 242, 242;
  --col: 67, 85, 82;
}
html[data-theme=light] [data-transition-container] {
  background: #f2f2f2;
  color: #435552;
}

html[data-theme=dark] {
  --background: 15, 28, 30;
  --col: 174, 187, 184;
}
html[data-theme=dark] [data-transition-container] {
  background: #0f1c1e;
  color: #aebbb8;
}

main {
  /*z-index: 1;	*/
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  /*	column-gap: 5rem;*/
  /*	margin: var(--header-height) 0;*/
  /*	padding: 2rem 0;*/
  /*	min-height: calc(100dvh - var(--header-height) - var(--footer-height));*/
  /*	height: calc(100dvh - var(--header-height) - var(--footer-height));*/
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  /*	height: 100%;*/
  padding: 1rem 0 2rem;
  -webkit-transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-transform: skewX(calc(-1deg * var(--scroll-speed)));
          transform: skewX(calc(-1deg * var(--scroll-speed)));
  /*	align-items: flex-end;*/
}
main > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 478px) {
  main {
    display: -ms-grid;
    display: grid;
    height: auto;
    padding-bottom: 0;
    padding-top: var(--header-height);
  }
}

.main__figure {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.main__figure img {
  opacity: 0.2;
  width: 75vw;
}

.section__horizontal {
  /*	width: 25vw;*/
  height: 100%;
}
@media screen and (max-width: 478px) {
  .section__horizontal {
    height: auto;
  }
}
.section__horizontal.full-width {
  width: 100vw;
}

/*	

	GRIDS

*/
:root {
  --grid-gap: 1rem;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex__gap {
  gap: 1rem;
}

.flex__top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex__middle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex__bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex__between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex__center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex__end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex__centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.grid {
  z-index: 1;
  display: -ms-grid;
  display: grid;
  row-gap: var(--grid-gap);
  -webkit-column-gap: var(--grid-gap);
     -moz-column-gap: var(--grid-gap);
          column-gap: var(--grid-gap);
  width: 100%;
  /*text-align: center;*/
}
@media screen and (max-width: 478px) {
  .grid {
    -ms-grid-columns: (1fr)[1] !important;
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
.grid.--half-gap {
  grid-gap: 0.5rem;
}
.grid.--no-gap {
  grid-gap: 0;
}
.grid.--pad {
  padding: 0 1rem;
}
.grid.--xl {
  grid-gap: 3em;
}
.grid__2 {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
.grid__2_1_1 {
  -ms-grid-columns: 2fr 1fr 1fr;
  grid-template-columns: 2fr 1fr 1fr;
}
.grid__2_2_1 {
  -ms-grid-columns: 2fr 2fr 1fr;
  grid-template-columns: 2fr 2fr 1fr;
}
.grid__3 {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
.grid__4 {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: auto;
}
.grid__5 {
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  -ms-grid-columns: 2fr 3fr 2fr 1fr 1fr;
  grid-template-columns: 2fr 3fr 2fr 1fr 1fr;
  grid-auto-columns: auto;
  /*justify-items: center;*/
}
.grid__5 > *:last-child {
  -ms-grid-column-align: end;
      justify-self: end;
}
.grid__5 > *:first-child {
  -ms-grid-column-align: start;
      justify-self: start;
}
.grid__5__alt {
  -ms-grid-columns: 2fr 3fr 3fr 1fr;
  grid-template-columns: 2fr 3fr 3fr 1fr;
}
.grid__1_2 {
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
}
.grid__2_1 {
  -ms-grid-columns: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
}
.grid__1_3 {
  -ms-grid-columns: 1fr 3fr;
  grid-template-columns: 1fr 3fr;
}
.grid__1_4 {
  -ms-grid-columns: 1fr 4fr;
  grid-template-columns: 1fr 4fr;
}
.grid__3_1 {
  -ms-grid-columns: 3fr 1fr;
  grid-template-columns: 3fr 1fr;
}
.grid__3_2 {
  -ms-grid-columns: 3fr 2fr;
  grid-template-columns: 3fr 2fr;
}
.grid__2_3 {
  -ms-grid-columns: 2fr 3fr;
  grid-template-columns: 2fr 3fr;
}
.grid__2_1_3 {
  -ms-grid-columns: 2fr 1fr 3fr;
  grid-template-columns: 2fr 1fr 3fr;
}
.grid__2_1_1 {
  -ms-grid-columns: 2fr 1fr 1fr;
  grid-template-columns: 2fr 1fr 1fr;
}
.grid__2_2 {
  display: -ms-grid;
  display: grid;
  row-gap: 0;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
.grid.center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.grid__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.5rem;
  /*text-align: center;	*/
}

.grid__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: var(--app-gap);
     -moz-column-gap: var(--app-gap);
          column-gap: var(--app-gap);
  padding: 1em var(--app-h-padding);
  border-bottom: 1px solid rgba(215, 209, 198, 0.2);
}
.grid__tabs [data-tab] {
  opacity: 0.2;
}
.grid__tabs [data-tab].--active {
  opacity: 1;
  /*font-size: 1.5em;*/
  color: var(--accent);
  /*font-family: var(--f-display);*/
}

.grid-pad {
  padding: var(--pad) 0;
}

.grid__top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-line-pack: start;
      align-content: start;
}

.grid__middle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.grid__bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -ms-flex-line-pack: end;
      align-content: end;
}

.grid__stretch {
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

.grid__start {
  text-align: left;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  justify-items: start;
}

.grid__center {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
}

.grid__end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  text-align: right;
  justify-items: end;
}

.grid__self__start {
  -ms-grid-column-align: start;
      justify-self: start;
}

.grid__self__end {
  -ms-grid-column-align: end;
      justify-self: end;
}

.grid__between {
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

.grid-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.grid-end, .grid-end > * {
  -ms-grid-column-align: end;
      justify-self: end;
  text-align: right;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.grid-top {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.grid-align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.grid-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.--no-gap-left {
  margin-left: calc(-1 * var(--grid-gap));
}

.grid__image {
  border-radius: var(--img-radius);
  overflow: hidden;
  min-height: 50dvh;
  position: relative;
}
.grid__image img, .grid__image video, .grid__image iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.grid__image.--pad {
  position: relative;
  margin: 1rem 0;
  height: calc(100dvh - 2rem);
}
.grid__image.--pad img {
  position: absolute;
  border-radius: var(--img-radius);
}
.grid__image.--pad.--sticky {
  position: sticky;
  top: 1rem;
}
.grid__image.--people {
  width: 20rem;
  height: 20rem;
  min-height: initial;
}
.grid__image.--people img {
  -o-object-position: top;
     object-position: top;
}

.grid__inner {
  /*height: auto;*/
  --inner: 5;
  padding: calc(var(--pad) * var(--inner)) 0;
}
.grid__inner.--large {
  --inner: 10;
}
.grid__inner.--tiny {
  --inner: 1;
}
.grid__inner.--small {
  --inner: 3;
}
.grid__inner.--top {
  padding-bottom: 0;
}
.grid__inner.--bottom {
  padding-top: 0;
}
.grid__inner.--2 {
  --inner: 2;
}

.grid__gutter {
  --inner: 5;
  height: calc(var(--pad) * var(--inner));
}

.grid__wrap {
  --wrap: 5;
  margin: 0 auto;
  width: calc(100% - var(--pad) * var(--wrap) * 2);
}
.grid__wrap.--center {
  --wrap: 10;
}
.grid__wrap.--narrow {
  --wrap: 8;
}
.grid__wrap.--wide {
  --wrap: 1;
}
.grid__wrap.--left {
  padding-right: calc(var(--pad) * var(--wrap) * 1.5);
}
.--fullgrid {
  /*z-index: -1;*/
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.h-2 {
  height: 200dvh;
}

/*

	SECTIONS

*/
section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
section.--fullheight {
  /* z-index: 10; */
}

.--fullheight {
  height: 100dvh;
}
.--fullheight > .grid {
  height: 100%;
}

.--over {
  z-index: 10;
}

/*

	HEADER

*/
:root {
  --header-height: 5rem;
}

header,
.header {
  --size: 5rem;
  z-index: 1001;
  position: sticky;
  top: 0;
  left: 0;
  width: 100vw;
  height: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*	padding: var(--grid-gap);	*/
  /*	border-bottom: 1px solid rgba(var(--col), .2);*/
}
@media screen and (max-width: 478px) {
  header,
  .header {
    background: rgba(var(--background), 1);
    border-bottom: 1px solid rgba(var(--col), 0.2);
  }
}
header__wrapper,
.header__wrapper {
  padding: 0 2rem;
}
@media screen and (max-width: 478px) {
  header__wrapper,
  .header__wrapper {
    padding: 0 1rem;
  }
}
header__menu,
.header__menu {
  gap: 2rem;
}

/*

	FOOTER

*/
:root {
  --footer-height: 5rem;
}

footer,
.footer {
  --size: 5rem;
  z-index: 1000;
  position: sticky;
  left: 0;
  bottom: 2rem;
  width: 100vw;
  /*	height: var(--footer-height);*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
  /*	padding: var(--grid-gap);	*/
  /*	border-top: 1px solid rgba(var(--col), .2);*/
}
footer__wrapper,
.footer__wrapper {
  padding: 0 1rem;
}
footer__menu,
.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  padding: 0.2rem;
  border-radius: 2em;
  /*		border: 1px solid rgba(var(--col),.2);*/
}
footer__menu__item,
.footer__menu__item {
  /*			width: 3rem;*/
  height: 3rem;
  border-radius: 2em;
  /*			font-size: 1rem;*/
  padding: 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
footer__menu__item.active,
.footer__menu__item.active {
  background: #435552;
  color: #f2f2f2;
}

/*

	ASIDE

*/
aside.--left {
  overflow: hidden;
  -webkit-transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  /*&:hover {
  	width: 200px;
  	.nav__label {
  		transform: none;
  		opacity: 1;	
  	} 
  }*/
}
aside.--left .chatbot {
  height: var(--header-width);
  width: var(--header-width);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
aside.--left nav {
  width: var(--header-width);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

aside.--right .aside__title {
  margin-bottom: var(--pad);
}
aside.--right .aside__figure {
  height: 17vw;
  border-radius: var(--pad-two-third);
  overflow: hidden;
  margin-bottom: var(--pad);
}
aside.--right .aside__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
aside.--right .aside__content {
  padding: 0 var(--pad);
}

/*
	ADMIN
	--------------------------------------------------
*/
/*
	THEMES
	--------------------------------------------------
*/
/*
	VENDOR
	--------------------------------------------------
*/
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

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

* {
  /*border: 1px solid red;*/
}