@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&display=swap');

html {
  font-size: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  color: #13070C;
  background: #F0F4EF;
}

@media (orientation: portrait) {

  .navigationMenu {
    flex-flow: column !important;
  }

  .back {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #F0F4EF;
  }

  .cardRow {
    flex-flow: column !important;
  }
}

body {
  margin: 0;
  padding: 0;
  background: white;
}

img, video {
  object-fit: cover;
}



/* LAYOUT */

.pageTitle {
  margin-top: 100vh;
  top: 0;
  background: #F0F4EF;
  display: flex;
  flex-flow: column nowrap;
  position: sticky;
  z-index: 1;
  padding: 3rem 3rem 0 3rem;
}

.contentStart {
  padding: 3rem;
  background: white;
  z-index: 2;
  position: relative;
  display: flex;
  flex-flow: column wrap;
  min-height:calc(100vh - 6rem);
}

.contentStart, body, .pageTitle, .cardRow>*, .shadow {
  box-shadow: 0 0 0.25rem rgba(19, 7, 12, 0.2);
}

.pageContent {
  display: flex;
  flex-flow: column wrap;
  /* margin-bottom: 6rem; */
}

.imageColumn, .cardRow {
  max-width: 63rem;
}
/*
.imageColumn img, .imageColumn video {
  height: 30rem;
}
*/
.imageColumn>* {
  margin-bottom: 1.5rem;
}

.textColumn {
  max-width: 40rem;
}

.textColumn *, .imageColumn * {
  display: block;
}

.imageColumn, .textColumn, .cardRow {
  width: 100%;
  margin-bottom: 3rem;
  align-self: center;
}

.navigationMenu {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-self: center;
}

.navigationMenu>*:first-child {
  margin-right: 1.5rem;
}

.gap {
  display: block;
  height: 6rem;
}

.cardRow {
  display: flex;
  flex-flow: row nowrap;
  gap: 0.75rem;
  justify-content: center;
}

.cardRow>* {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  flex: 1;
}

.cardRow>*>*>*:first-child {
  margin: 0;
}

.cardRow>*>*>*:nth-child(2) {
  margin-top: 0.75rem;
}

.cardRow>*>*>* {
  margin: 0 0.75rem 0 0.75rem;
}

.cardRow>*>*>*:last-child {
  margin-bottom: 0.75rem;
}

.cardRow img {
  width: 100%;
  height: 10rem;
}

.cardRow h6 {
  font-size: 1rem;
  line-height: 1.5rem;
}

.cardRow p {
  font-size: 0.67rem;
  line-height: 1.125rem;
}

/* TYPOGRAPHY */

p, .wenLung, .back, .chevronL, .chevronR {
  font-size: 1rem;
  line-height: 1.5rem;
  max-width: 58ch;
}

h6, a:hover {
  font-size: 1.5rem;
  line-height: 2.25rem;
}

h3, a.navigationMenuItem, a.wenLung:hover, .back:hover, .chevronL:hover, .chevronR:hover {
  font-size: 2.5rem;
  line-height: 3rem;
}

h2, a.navigationMenuItem:hover {
  font-size: 4.05rem;
  line-height: 4.5rem;
}

h1 {
  font-size: 5.04rem;
  line-height: 6rem;
}

p.caption {
  font-size: 0.75rem;
  line-height: 1.125rem;
  color: #606D5D;
  max-width: unset;
}

.imageColumn>img+p.caption {
  margin-top: -0.9375rem;
}

p.beige {color: #EEEBD3;} p.paleSpringBud {color: #DDD6A7;}  p.ebony {color: #606D5D;}

h1, h2, h3, h6, a.navigationMenuItem:hover, a.wenLung:hover, a.back:hover, a.chevronL, a.chevronR {
  font-weight: 700;
}

p, h1, h2, h3, h6 {
  margin-bottom: 1.5rem;
  margin-block-start: 0;
  position: relative;
  z-index: 2;
}

a {
  text-decoration: none;
}

a, a:visited, a:hover {color: #FE2F20;} a:active {color: #BB0A21;}

a:hover {
    font-weight: 700;
    transition: 0.1s;
}

a.navigationMenuItem {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #F0F4EF;
  display: block;
}

a.wenLung, a.back, a.navigationMenuItem, a.chevronL, a.chevronR {
  transition: 0.1s;
}

/* IMAGES */

.blank {
  height: 100vh;
}

.bannerImg .textColumn {
  align-content: center;
  text-align: center;
  max-width: min(calc(100vw - 6rem), 40rem);
  margin-bottom: 0;
  margin-top: calc(100vh - 3rem);
}

.bannerImg .textColumn p{
  animation-duration: 1s;
  animation-name: blink;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
}

@keyframes blink {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.bannerImg {
  width: 100vw;
  height: 100vh;
  top: 0;
  position: fixed;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-flow: column wrap;
}

.bannerImg img, .bannerImg video {
  position: absolute;
  z-index: 0;
  height: 100%;
}

.colorWhite {
  color: white;
}

.colorBlack {
  color: #13070C;
}

.imageColumn img, .imageColumn video, .bannerImg img, .bannerImg video {
  width: 100%;
}

/* NAVIGATION BUTTONS */

.wenLung {
  top: 3rem;
  left: 3rem;
}

.chevronL {
  left: 1.5rem;
  transform: rotate(-90deg);
}

.chevronR {
  right: 1.5rem;
  transform: rotate(90deg);
}

.chevronL, .chevronR {
  top: calc(100vh - 50%);
}

.wenLung, .chevronL, .chevronR {
  z-index: 3;
  position: fixed;
  transition: 0.1s;
}

.chevronR:hover {
  transform: translateX(-0.5rem) translateY(-0.2rem);
}

.chevronL:hover {
  transform: translateX(0.5rem) translateY(-0.2rem);
}

@media screen and (orientation:portrait) {
 .bannerImg {height:50vh;} 
 .bannerImg .textColumn {margin-top:calc(50vh - 3rem);}
 .pageTitle {margin-top:50vh;}
 html {font-size:20px;}
}
}
