/* RESET */
html, body {
    border: 0;
    margin: 0;
    padding: 0;
}

/* FONT FACES */
@font-face {
  font-family: bison-regular;
  src: url('/assets/fonts/bison/regular.woff2');
}

@font-face {
  font-family: bison-regular-italic;
  src: url('/assets/fonts/bison/regular-italic.woff2');
}

@font-face {
  font-family: 'bison-bold';
  src: url('/assets/fonts/bison/bold.woff2');
}

@font-face {
  font-family: bison-demibold;
  src: url('/assets/fonts/bison/demibold.woff2');
}

@font-face {
  font-family: bison-light;
  src: url('/assets/fonts/bison/light.woff2');
}

@font-face {
  font-family: bison-light-italic;
  src: url('/assets/fonts/bison/light-italic.woff2');
}


@font-face {
  font-family: bison-thickoutline;
  src: url('/assets/fonts/bison/thickoutline.woff2');
}

@font-face {
  font-family: bison-thinoutline;
  src: url('/assets/fonts/bison/thinoutline.woff2');
}



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

body {
  display: grid;
  min-height: 100vh;
  background-image: url('/assets/images/mesh2.jpg');
  background-position: center;
  background-size: cover;
  font: 18px / 1.5 'Barlow', arial, Helvetica, sans-serif;
  padding: 30px 15px;
}

section {
  width: 100%;
  padding-left: calc((100% - 1200px) / 2);
  padding-right: calc((100% - 1200px) / 2);
  margin: 0 auto;
  align-self: center;
}

section h1 {
  font-family: 'bison-bold', arial, Helvetica, sans-serif;
  font-size: 60px;
  margin-top: 0;
  line-height: 1;
  text-align: center;
  color: #fff;
  margin-bottom: 0.625em;
}

section .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  min-height: 525px;
  background-color: #000;
  padding: 30px;
}

@media (max-width: 768px) {
  section .content {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

section .content .figure {
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

section .content .figure img {
  display: none;
}

section .content .text {
  color: #fff;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 15px;
  align-self: center;
}
