:root {
  --white: #E8E7E2;
  --yellow: #F7DF37;
  --black: #1D1B1B;
  --grey: #ABB7C3;
  --red: #CD3134;
}


body {
  /* padding: 10px 14px; */
  padding: 0;
  margin: 0;
  font-family: Open Sans;
  color: var(--black);
  background-color: var(--yellow);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-size: 24px;
  font-family: elderveld;
  font-weight: 100;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

p,
p a,
span,
strong,
em {
  color: inherit !important;
}

p a {
  text-decoration: underline;
}

p{
  margin: 0;
}

@font-face {
  font-family: elderveld;
  src: url('./ElderveldVF.woff2');
}

.hero {
  width: 100%;
  height: 100vh;
}

.hero h1 {
  font-size: 37vw;
  line-height: 1;
  margin: 0;
  padding: 0;
  font-family: elderveld;
  /* font-weight: 700; */
  text-align: center;
  position: fixed;
  bottom: 0;
  z-index: -1;
  color: var(--white);
  font-variation-settings: "wght" 50;
  transition: font-variation-settings 0.1s linear;
  width: 100%;
}

.hero video{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

h2 {
  font-size: 52px;
  font-weight: 50;
  margin: 0;
  text-align: left;
}

h1 {
  font-weight: 50;
  font-size: 52px;
  margin-top: 0;
}

h3{
  font-size: 40px;
  font-weight: 50;
  margin: 0;
  text-align: center;
}

.image-block {
  width: 100%;
  max-height: 100vh;
  position: relative;
  margin: 0 0 100px 0;
}

.columns .image-block{
  margin: 0 auto 24px auto;
}

.image-block img {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  object-fit: cover;
}

.text-block {
  padding: 100px 14px;
  /* background-color: var(--grey); */
}

.text-block .wrapper {
  /* max-width: 900px; */
  margin: auto;
  width: 80%;
}

.text-block h1, .text-block h2{
  text-align: center;
}

.columns-block{
  margin-top: 100px;
  padding-bottom: 48px;
}

.columns-block h1{
  text-align: center;
}


.columns {
  display: grid;
  grid-template-columns: repeat(var(--cols, 2), 1fr);
  gap: 2rem;
  /* padding: 60px 48px; */
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.columns-block:nth-child(2n+1) {
  /* background-color: var(--yellow); */
  color: var(--black);
}

.column .text-block{
  padding-top: 0;
  padding-bottom: 14px;
}

.column .text-block .wrapper{
  width: 100%;
}

.quote-block .quote {
  max-width: 1200px;
  margin: auto;
}

.column h2{
  text-align: left;
}

.column h1{
  margin-bottom: 0;
}

figure{
  margin: 0;
  display: block;
}

p a{
  text-decoration: none;
  border: 1px solid;
  border-radius: 40px;
  padding: 5px 20px;
  font-size: 40px;
  margin-top: 14px;
  display: block;
  width: fit-content;
}

.text-block:nth-child(1){
  background-color: var(--white);
}

.columns .text-block{
  background-color: transparent;
}

.columns-block:nth-child(4){
  padding-top: 48px;
  background-color: var(--yellow);
}

.columns-block:nth-child(10){
  padding-top: 60px;
  background-color: var(--white);
}

.text-block:nth-child(12){
  background-color: var(--white);
}

.image-block:nth-child(13){
  background-color: var(--white);
  margin-bottom: 0;
  padding-bottom: 48px;
}

.image-block:nth-child(13) figure{
  max-width: 1200px;
  display: block;
  margin: auto;
  margin-top: -14px;
}

.columns img{
  aspect-ratio: 4/3;
  object-fit: cover;
}

@media only screen and (max-width: 900px) {
  h1, h2{
    font-size:40px;
  }
  h3{
    font-size: 28px;
  }
  body{
    font-size: 20px;
  }
  .columns{
    display: flex;
    flex-direction: column;
  }
  .text-block .wrapper{
    width: 100%;
  }
  .text-block{
    padding: 40px 14px;
  }
  .hero h1{
    transform: rotate(-90deg);
    font-size: 55vw;
    margin-left: 20%;
    margin-bottom: 25%;
  }
}