@font-face {
 font-family: "Gauche";
 src: url("../fonts/Gauche-Medium.woff2") format("woff2"),
        url("../fonts/Gauche-Medium.woff") format("woff");
        font-weight: normal !important;
        font-feature-settings: "ss01" 1, "onum" 1;
}

@font-face {
 font-family: "GaucheBlack";
 src: url("../fonts/Gauche-Black.woff2") format("woff2"),
        url("../fonts/Gauche-Black.woff") format("woff");
        font-weight: normal !important;
        font-feature-settings: "ss01" 1, "onum" 1;
}

@font-face {
 font-family: "Zaft";
 src: url("../fonts/WTZaft2VariableA.woff2") format("woff2"),
        url("../fonts/WTZaft2VariableA.woff") format("woff");
        font-weight: normal !important;
}







:root {
  --color-darkred: #832110;
  --color-red: #e93824;
  --color-pink: #f19fde;
  --color-blue: #9cb9f2;
  --color-grey: #5e566e;
  --font-gauche: "Gauche", helvetica, sans-serif;
  --font-gauche-bold: "GaucheBlack", helvetica, sans-serif;
  --font-zaft: "Zaft", serif;

}


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

* {
  margin: 0;
  padding: 0;
  min-height: 0;
  min-width: 0;
}

html, body {
  font-size: 18px;
  height: 100%; 
  font-family: var(--font-gauche), sans-serif ;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  background-color: var(--color-darkred);
  font-weight: normal !important;
  font-feature-settings: "ss01" 1, "onum" 1;
}

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

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

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

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  font-weight: normal !important;
  font-size: 1em;
}


img {
  width: 100%;
}

li {
  list-style: none;

}
a {
  text-decoration: none;
  opacity: 1;
  color: black;
}

strong{
  font-weight: normal !important;
  font-family: var(--font-gauche-bold);
}

h3{
  max-width: 60ch;
  margin-right: 2%;
  
}

/*----------------------------------------------- MENU */

.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 1rem;
}

.logo{
  font-family: var(--font-zaft);
  font-size: 3rem;
  float: left;
  line-height: 0.5;
}

.header a{
  color: var(--color-pink);
}

.menu{
  width: 50%;
  margin-left: 50%;
  display: flex;
  justify-content: space-between;
  padding-left: .5%;
}

section{
  margin-bottom: 5rem;
  margin-left: 1rem;
  margin-right: 1rem;
}

.arrow{
  font-family: var(--font-zaft);
  font-size: 3rem;

}

.zaft{
  font-family: var(--font-zaft);
  text-transform: uppercase;
}


@keyframes weightPulse {
  from {
    font-variation-settings: 'wght' 0;
  }
  to {
    font-variation-settings: 'wght' 400;
  }
}


h2{
  font-variation-settings: 'wght' 0;
  animation: weightPulse 3s infinite alternate ease-in-out;
  }


li {
  list-style: disc;
  text-indent: 0rem;
  padding-left: -0.5rem;
  margin-left: 1em;
}


/*----------------------------------------------- GRID */

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
}

.grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 1%;
}

.col-1 {grid-column-end: span 1;}
.col-2 {grid-column-end: span 2;}
.col-3 {grid-column-end: span 3;}
.col-4 {grid-column-end: span 4;}
.col-5 {grid-column-end: span 5;}
.col-6 {grid-column-end: span 6;}
.col-7 {grid-column-end: span 7;}
.col-8 {grid-column-end: span 8;}
.col-9 {grid-column-end: span 9;}
.col-10 {grid-column-end: span 10;}
.col-11 {grid-column-end: span 11;}
.col-12 {grid-column-end: span 12;}

.off-1{grid-column-start: 2;}
.off-2{grid-column-start: 3;}
.off-3{grid-column-start: 4;}
.off-4{grid-column-start: 5;}
.off-5{grid-column-start: 6;}
.off-6{grid-column-start: 7;}
.off-7{grid-column-start: 8;}
.off-8{grid-column-start: 9;}
.off-9{grid-column-start: 10;}
.off-10{grid-column-start: 11;}
.off-11{grid-column-start: 12;}
.off-12{grid-column-start: 13;}

