body {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: var(--primary-alt);
  background-image: url("../IMG/beige-texture.jpg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  body {
    background-image: url("../IMG/beige-texture-mobile.jpg");
  }
}

header {
  position: static;
  display: grid;
  place-items: center;
  justify-content: unset;
  padding-bottom: 0px;
}
header #logo {
  display: block;
  width: 350px;
  max-width: 75%;
  height: auto;
}
header #logo img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0px auto;
}

main {
  width: auto;
  max-width: 2500px;
  padding: 0px var(--m);
  display: grid;
  grid-template-columns: 650px 650px;
  gap: var(--m);
}
main .col {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .col .modal-link {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}
main .col .modal-link .play {
  --colour: var(--accent);
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 10%;
  min-width: 50px;
  height: auto;
  aspect-ratio: 129/146;
  background-color: var(--colour);
  mask-image: url("../IMG/play.png");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: background-color 0.3s;
}
main .col .modal-link::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.2;
  pointer-events: none;
}
main .col .modal-link .thumbnail {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}
main .col .modal-link:hover .play {
  background-color: var(--primary);
}
main .col h1 {
  text-transform: uppercase;
  font-family: var(--linotype-heavy);
  color: var(--secondary);
  text-align: center;
  font-size: 36px;
  letter-spacing: -0.02em;
  line-height: 1em;
  margin-bottom: 0.5em;
}
main .col h2 {
  font-family: var(--linotype-heavy);
  color: var(--secondary);
  text-align: center;
  font-size: 52px;
  letter-spacing: -0.02em;
  line-height: 0.85em;
  margin-bottom: var(--xs);
}
main .col h2 span {
  display: block;
  font-size: 0.7em;
  text-transform: uppercase;
  font-family: inherit;
}
main .col .button-container {
  flex-direction: column;
  gap: var(--xs);
}
main .col .button-container .button1 {
  font-size: 30px;
  width: 100%;
  max-width: 12em;
}
@media (max-width: 1420px) {
  main {
    grid-template-columns: 1fr 1fr;
  }
  main .col h1 {
    font-size: 2.35vw;
  }
  main .col h2 {
    font-size: 3.5vw;
  }
  main .col .button-container .button1 {
    font-size: 1.9vw;
  }
}
@media (max-width: 1024px) {
  main {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    padding: var(--l) var(--m);
    gap: var(--l);
  }
  main .info h1 {
    font-size: 30px;
    margin-bottom: 0.3em;
  }
  main .info h2 {
    font-size: 43px;
    margin: var(--xs) 0px var(--s);
  }
  main .info .button-container .button1 {
    font-size: 25px;
  }
  main .video {
    max-width: 530px;
  }
  main .video .modal-link .play {
    width: 15%;
    min-width: unset;
  }
  main .video .modal-link:hover .play {
    background-color: var(--colour);
  }
}
@media (max-width: 620px) {
  main .col h1 {
    font-size: 4.8vw;
  }
  main .col h2 {
    font-size: 7vw;
  }
  main .col .button-container .button1 {
    font-size: 4vw;
  }
}

footer {
  width: 100%;
  height: auto;
  padding-top: 0px;
}
footer .footer-links li {
  color: var(--secondary);
}/*# sourceMappingURL=grammy.css.map */