   /* MAIN */
* {
  margin: 0;
  padding: 0;
}

body {
  background:rgb(246,244,239);
  color:rgb(96,96,96);
  width: 100%;
  display: block;
  font-family: sans-serif;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-variant-ligatures: normal;
  font-weight:300;
  margin: 0;
  margin:0;
  padding: 0;
}

h1 {
  font-size: 2.5vw;
}


p {
  font-weight: 900;
}

img {
  width: 95%;
  padding: 0px;
  opacity: 0;
  animation: fadeIn 1s forwards ease-out;
}

/* img:hover {
  animation: imageAnimate 1s infinite;;
} */



a {
  color: rgb(96,96,96);
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  color: none;
  text-decoration: underline;
}


a.summary_link:link {
  color:rgb(96,96,96);
  font-style: italic;
  text-transform: uppercase;
  font-size: 1vw;
}

a.summary_link:hover {
  color:rgb(96,96,96);
  text-decoration: underline;
  text-transform: uppercase;

}


.container {
  margin: 0 2vw;
}

.container-small {
  margin: 0 0vw;
}

.header {
  z-index: 100;
  display: grid;
  grid-template-columns: auto auto auto auto;
  margin: 1em;
  position: relative;
  z-index: 999;
}

.header a {
  margin: 1vw;
  display: block;
  font-size: 1em;
}


.no-border{
  border: none !important;
}

.size-big{
  padding:  0;
}

.size-medium{
  padding: 10;
}

/* GRID */

.grid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: stretch;
  margin-bottom: 30px;
}

.grid-item {
  align-self: flex-start;
  flex-grow: 1;
}

@media (max-width: 700px) {
  .grid-item {
    width: 100% !important;
  }

  img {
    width: 100%;
    padding: 0;
  }


}

.col25percent {
  width: 25%;
}

.col25percent {
  width: 25%;
}

.col25percent {
  width: 25%;
}

.col25percent {
  width: 25%;
}


/* ANIMATIONS */
@keyframes fadeIn {
  0% {
    opacity: 0;
    margin-top: 1.5vw;
  }

  100% {
    opacity: 1;
    margin-top: 0;
  }
}

.image-rotate {
  width: 100%;
  -webkit-animation: spin 3s linear infinite;
  -moz-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

@-moz-keyframes spin {
  50% {
    -moz-transform: rotateY(90deg);
  }
}
@-webkit-keyframes spin {
  50% {
    -webkit-transform: rotateY(90deg);
  }
}
@keyframes spin {
  50% {
    -webkit-transform: rotateY(90deg);
    transform: rotateY(90deg);
  }
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

p {
  line-height: 30px;
  font-size: 20px;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  opacity: 0;
  animation: fadeIn 0.2s forwards ease-out;
  animation-delay: 0.2s;
}




.rotate > .wrap {
  border-right: 0.08em solid rgb(96,96,96);;
}
