:root {
  --main-color: #2b2b2b;
  --main-bg-color: #ffffff;
  --bg-grey: rgb(218, 216, 216);
  --secondary-color: #ffffff;
  --header-height: 100px;
  --gen-spacing: 40px;
  --drop-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(192, 0, 35, 0.5);
}

::-moz-selection {
  background: rgba(192, 0, 34, 0.5);
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/*==== Dom ====*/

html {
  font-family: "proxima-nova", Helvetica, Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 62.5%;
  background-color: var(--main-bg-color);
}

body {
  width: 100vw;
  overflow-x: hidden;
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--main-color);
}

main {
  width: 100vw;
}

section {
  padding: 0 var(--gen-spacing);
  margin-bottom: var(--gen-spacing);
}

.rte > *:not(:last-child) {
  margin-bottom: 1.2em;
}

form {
  display: flex;
  flex-direction: column;
}

form input,
form textarea {
  border: none;
  outline: none;
  width: 100%;
  border-bottom: 1px solid var(--main-color);
  font-size: 2.4rem;
  margin-bottom: 0.4em;
  line-height: 1.2;
  background: none;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
}

form input::placeholder,
form textarea::placeholder {
  color: var(--main-color);
}

form input[type="submit"] {
  border: none;
  outline: none;
  background: none;
  text-align: left;
}

form input[type="submit"]:hover {
  opacity: 0.5;
}

#headerSearchForm button {
  background: none;
  border: none;
}

#headerSearchForm input {
  border-bottom: none;
}

#headerSearchForm {
  display: flex;
  flex-direction: row;
  border-bottom: 1px var(--main-color) solid;
}

#headerSearchForm input[type="search"i]::-webkit-search-cancel-button {
  display: none;
}

/*==== Typography ====*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin: 0;
}

h1,
h2 {
  font-size: 5.6rem;
  line-height: 1.2;
}

h3 {
  font-size: 2.4rem;
}

p {
  font-size: 1.8rem;
  margin: 0;
}

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

a:hover,
a:hover h2,
a:hover h3 {
  color: #595959;
}

li {
  list-style: none;
}

.h2,
.rte.h2 * {
  font-size: 5.6rem;
  line-height: 1.2;
}

.h3,
.rte.h3 * {
  font-size: 2.4rem;
}

.h6,
.rte.h6 * {
  font-size: 1.4rem;
}

@media only screen and (min-width: 0px) and (max-width: 900px) {
  h1,
  h2,
  .h2,
  .rte.h2 * {
    font-size: 3.6rem;
  }
}

.left-chevron {
  transform: rotate(90deg);
  margin-right: 0.5rem;
}

/*==== Responsive Set up/ Reusables ======*/
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/*==== Header =====*/

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--gen-spacing);
  background-color: var(--main-bg-color);
  transition: background-color 0.25s ease-in;
}

.menu-div {
  display: flex;
  flex-direction: row;
  justify-content: right;
  align-items: center;
}

.menu-div p {
  color: var(--main-color);
  transition: color 0.25s ease-in;
  margin-right: 1rem;
}

#header-bar.menu-active .menu-div p {
  color: var(--main-color);
}

.logo-container {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.logo-image {
  height: 70%;
  position: absolute;
  opacity: 1;
  transition: opacity 0.25s ease-in;
}

.black-logo {
  opacity: 1;
}

.white-logo {
  opacity: 0;
}

#filter-toggle,
#apply-filters {
  cursor: pointer;
}

#apply-filters {
  color: #c00022;
}

.contact-info a,
footer a {
  text-decoration: underline;
}

.footer-contact {
  text-decoration: none;
}

/* hamburger */
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger-box {
  width: 46px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 36px;
  height: 3px;
  position: absolute;
  transition-property: transform;
  background-color: var(--main-color);
  transition-duration: 0.15s;
  transition-timing-function: ease;
  transition: background-color 0.25s ease-in;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/* Menu/Nav */

.menu-container {
  background-color: transparent;
  opacity: 0;
  visibility: hidden;
  overflow: scroll;
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: -100;
  top: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(min-content, max-content);
  grid-column-gap: var(--gen-spacing);
  grid-row-gap: var(--gen-spacing);
}

.menu-container.is-active {
  animation-name: menuEntrance;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.menu-container.not-active {
  animation-name: menuExit;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

#header-bar.menu-active .white-logo {
  opacity: 0;
}

#header-bar.menu-active .black-logo {
  opacity: 1;
}

#header-bar.menu-active .hamburger-inner,
#header-bar.menu-active .hamburger-inner::before,
#header-bar.menu-active .hamburger-inner::after {
  background-color: var(--main-color);
}

/* menu animation */

@keyframes menuEntrance {
  0% {
    visibility: hidden;
    opacity: 0;
    background-color: transparent;
    z-index: -100;
  }

  1% {
    opacity: 0;
    visibility: visible;
    background-color: transparent;
    z-index: 100;
  }

  100% {
    opacity: 1;
    visibility: visible;
    background-color: var(--main-bg-color);
    z-index: 100;
  }
}

@keyframes menuExit {
  0% {
    opacity: 1;
    visibility: visible;
    background-color: var(--main-bg-color);
    z-index: 100;
  }

  99% {
    opacity: 0;
    visibility: visible;
    background-color: transparent;
    z-index: 100;
  }

  100% {
    visibility: hidden;
    opacity: 0;
    background-color: transparent;
    z-index: -100;
  }
}

/* Menu Type */

.menu-header {
  border-bottom: 1px var(--main-color) solid;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--gen-spacing);
  padding-top: calc(var(--header-height) + var(--gen-spacing));
}

.menu-nav {
  padding-bottom: var(--gen-spacing);
}

.search-input {
  border: none;
  border-bottom: 1px solid var(--main-color);
  width: 100%;
  background: transparent;
  font-size: 2.4rem;
  line-height: 1.2;
  color: var(--main-color);
  margin-bottom: 0.2em;
}

.search-input::placeholder {
  opacity: 0.5;
}

.search-input::after {
  background-image: url("/assets/images/search.svg");
  display: block;
  content: " ";
  background-size: 28px 28px;
  height: 28px;
  width: 28px;
}

/* menu medias */
@media only screen and (max-width: 650px) {
  .menu-container {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 var(--gen-spacing);
  }

  .menu-header {
    width: calc(100% + 20px);
    padding-top: 120px;
  }
}

/*===== Footer ====*/

footer {
  position: relative;
  width: 100vw;
  height: 200px;
  padding: 20px var(--gen-spacing);
}

.footer-logo {
  width: 100%;
  height: 100%;
}

.footer-logo img {
  width: 100%;
}

.footer a {
  word-break: break-word;
}

@media (max-width: 900px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block;
  }

  header {
    padding: 0px 20px;
  }

  section {
    padding: 0 20px;
  }

  footer {
    padding: 20px 20px;
    height: auto;
  }

  .footer-logo img {
    width: unset;
  }
}

/* Hero Images */

.hero {
  background-color: black;
}

img.hero-image {
  transition: filter 1s ease;
  transition: filter 1s ease;
  pointer-events: none;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  transition: all 1s ease;
  filter: blur(0px);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
}

img.lazy {
  filter: blur(20px);
}

.home-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.bg-video,
.bg-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

@media (min-aspect-ratio: 16/9) {
  .home-hero-video,
  .hero-image {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio: 16/9) {
  .home-hero-video,
  .hero-image {
    width: auto;
    height: 100%;
  }
}

/* FILTERS */

.filters {
  visibility: hidden;
  max-height: 0;
  opacity: 0;
}

.show-filters {
  max-height: 1000px;
  visibility: visible;
  opacity: 1;
  animation-name: filterEntrance;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.hide-filters {
  animation-name: filterExit;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.tag {
  cursor: pointer;
}

.active-tag {
  text-decoration: none;
  font-weight: 700;
  color: #c00022;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.filter-controls {
}

#filter-toggle {
  text-align: right;
}

@keyframes filterEntrance {
  0% {
    visibility: visible;
    max-height: 0;
    opacity: 0;
  }

  50% {
    visibility: visible;
    opacity: 0;
  }

  100% {
    visibility: visible;
    max-height: 1000px;
    opacity: 1;
  }
}

@keyframes filterExit {
  0% {
    visibility: visible;
    max-height: 1000px;
    opacity: 1;
  }

  50% {
    visibility: visible;
    opacity: 0;
  }

  100% {
    visibility: visible;
    max-height: 0px;
    opacity: 0;
  }
}

/*=== Blocks ====*/

.theme_dark {
  --secondary-color: var(--main-color);
}

/* Text Block */

.textBlock .text-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
  grid-column-gap: var(--gen-spacing);
  grid-row-gap: var(--gen-spacing);
}

/* single Image*/

.single-image {
  background: black;
}

.single-image div {
  position: relative;
  background: black;
  padding: var(--gen-spacing);
}

.sing-image {
  object-fit: contain;
  height: 100%;
  width: 100%;
  max-height: 70vh;
}

/* Full Image */

.full-width-image {
  width: 100%;
  height: 100%;
  min-height: 50vw;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.full-width-image.pos_tl {
  align-items: flex-start;
}

.full-width-image.pos_tr {
  align-items: flex-start;
  justify-content: flex-end;
}

.full-width-image.pos_br {
  justify-content: flex-end;
}

.full-width-image.pos_c {
  align-items: center;
  justify-content: center;
}

.fullImage {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + var(--gen-spacing));
  height: 100%;
  object-fit: cover;
  margin-left: calc(var(--gen-spacing) * -1);
  z-index: -1;
}

section:not(.full-width-image) .full-image-caption {
  position: absolute;
  text-align: left;
  left: 1.8rem;
  bottom: 1.8rem;
  color: var(--secondary-color);
  /* 3 columns */
  width: calc(
    (((100vw - (var(--gen-spacing) * 13)) / 12) * 3) + (var(--gen-spacing) * 2)
  );
  text-shadow: var(--drop-shadow);
  z-index: 2;
}

section:not(.full-width-image) .slider-img-cont.pos_tl .full-image-caption {
  bottom: unset;
  top: 1.8rem;
}

section:not(.full-width-image) .slider-img-cont.pos_tr .full-image-caption {
  left: unset;
  bottom: unset;
  top: 1.8rem;
  right: 1.8rem;
}

section:not(.full-width-image) .slider-img-cont.pos_br .full-image-caption {
  left: unset;
  right: 1.8rem;
}

section:not(.full-width-image) .slider-img-cont.pos_c .full-image-caption {
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 50%);
}

.full-width-image .full-image-caption {
  color: var(--secondary-color);
  /* 3 columns */
  width: calc(
    (((100vw - (var(--gen-spacing) * 13)) / 12) * 3) + (var(--gen-spacing) * 2)
  );
  text-shadow: var(--drop-shadow);
  z-index: 2;
  padding: var(--gen-spacing) 0;
}

/* Slider */

.image-slider {
  position: relative;
  background: black;
  max-height: 90vh;
  padding: var(--gen-spacing);
}

.carousel-holder {
  background: black;
  height: 100%;
  width: 100%;
}

.slider-img-cont {
  height: min-content;
  position: relative;
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url(/assets/images/left-arrow.svg);
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url(/assets/images/right-arrow.svg);
}

.swiper-button-next,
.swiper-button-prev {
  background-size: contain;
  width: 30px;
  height: 5.6rem;
}

.slider-cont {
  background-color: black;
  height: 100%;
  display: flex;
  margin: 0;
  align-items: center;
}

.car-image {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
  max-height: calc(90vh - 120px);
}

.swiper-container {
  height: 100%;
  width: 100%;
  margin-right: 0;
}

.swiper-container img {
  margin-right: 0;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.7;
}

/* Ext Vid */

.vid-wide {
  padding: 0;
}

.vid-cont-wide {
  position: relative;
  padding-top: 56.25%;
}

.vid-cont-wide iframe,
.vid-cont-wide video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vid-cont-small {
  position: relative;
  padding-top: 56.25%;
}

.vid-cont-small iframe,
.vid-cont-small video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ext-video iframe {
  outline: none;
  border: none;
}

/* text image block */

.small-image {
  width: 100%;
}

/* blocks mobile */

@media only screen and (max-width: 900px) {
  /*image slider*/
  .swiper-container {
    height: 100%;
    width: 100vw;
    margin-left: calc(var(--gen-spacing) * -1) !important;
  }

  /* large-text */
  .largeText p.h3 {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 650px) {
  section:not(.full-width-image) .full-image-caption {
    left: var(--gen-spacing) !important;
    bottom: var(--gen-spacing) !important;
    right: unset !important;
    top: unset !important;
    color: var(--secondary-color);
    width: calc(100% - (2 * var(--gen-spacing)));
    transform: none !important;
  }

  .full-width-image .full-image-caption {
    width: 100%;
    padding: calc(2 * var(--gen-spacing)) 0;
  }

  .single-image div {
    width: 100vw;
    margin-left: calc(var(--gen-spacing) * -1);
  }
}

/* team */

.team .team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
  grid-column-gap: var(--gen-spacing);
  grid-row-gap: var(--gen-spacing);
}

.team .left-col {
  grid-column: 1 / 4;
}

.team .right-col {
  grid-column: 4 / 7;
}

.team .right-col p {
  /* font-size: 2.4rem; */
  font-weight: 400;
}

.team .right-col li {
  list-style: none;
  color: #595959;
  text-indent: -5px;
  /* font-size: 2.4rem; */
}

.team .right-col li:before {
  content: "-";
  text-indent: -20px;
}

@media only screen and (max-width: 900px) {
  .team .left-col {
    grid-column: 1 / 3;
  }

  .team .right-col {
    grid-column: 3 / 7;
  }
}

/* Kaupapa */

.kaupapa .kaupapa-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: auto;
  grid-column-gap: var(--gen-spacing);
  grid-row-gap: var(--gen-spacing);
}

.kaupapa .left-col {
  grid-column: 1 / 4;
}

.kaupapa .right-col {
  grid-column: 4 / 9;
}

.kaupapa .img-col {
  grid-column: 9 / 13;
  width: 100%;
}

.kaupapa .img-col img {
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 750px) {
  .kaupapa .right-col {
    grid-column: 4 / 13;
  }
  .kaupapa .img-col {
    grid-column: 4 / 13;
    width: 100%;
  }
}

/* Application */

.application-form .form-cont {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-auto-rows: auto;
  grid-column-gap: var(--gen-spacing);
  grid-row-gap: var(--gen-spacing);
  border-top: 1px var(--main-color) solid;
  border-bottom: 1px var(--main-color) solid;
  padding: var(--gen-spacing) 0;
}

.application-form .form-text {
  grid-column: 3 / 5;
}

.application-form .form-cont form {
  grid-column: 5 / 9;
}

@media only screen and (min-width: 0px) and (max-width: 900px) {
  .application-form .form-text {
    grid-column: 1 / 13;
  }

  .application-form .form-cont form {
    grid-column: 1 / 13;
  }
}

@media only screen and (min-width: 0px) and (max-width: 650px) {
  .application-form .form-text {
    grid-column: 1 / 5;
  }

  .application-form .form-cont form {
    grid-column: 1 / 5;
  }
}

/*==== Pagination ====*/

.page-counter {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-counter ul {
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.page-counter a {
  padding: 5px;
}

.page-counter a[aria-current] {
  border-bottom: 1px solid var(--main-color);
}

.prev-page,
.next-page {
  opacity: 0.5;
}

.next-page {
  text-align: right;
}

.prev-page.pag-active,
.next-page.pag-active {
  opacity: 1;
}

/* Project */

.project-showcase a:hover .popup-caption {
  opacity: 1;
  bottom: 1em;
}

.popup-caption {
  opacity: 0;
  transition: all 0.5s ease;
  position: absolute;
  bottom: -1em;
  right: 1em;
  left: 1em;
  color: var(--secondary-color);
  text-shadow: var(--drop-shadow);
}

.intro h3 {
  position: fixed;
  top: 140px;
  display: block;
}

.project-showcase figure {
  width: 100%;
  position: relative;
  font-size: 2.4rem;
  font-weight: 400;
  margin: 0;
  overflow: hidden;
}

.project-showcase figcaption {
  margin-top: 1.8rem;
}

.project-showcase figure img {
  position: absolute;
  top: 0;
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}

/* .project-showcase li:nth-child(odd) {
  grid-column: 3 / 8;
} */

.project-showcase li .image-container {
  padding-top: 60%;
}

/* 
.project-showcase li:nth-child(even) {
  grid-column: 8 / 13;
} */

.journal-preview a div {
  transition: opacity 0.5s ease;
}

.journal-preview a:hover > * {
  opacity: 0.5;
  filter: grayscale(1);
}

.project-showcase a figure {
  transition: opacity 0.5s ease;
}

.project-showcase a:hover > * {
  opacity: 0.5;
  filter: grayscale(1);
}

.enter {
  opacity: 0;
  transition: opacity 1s ease 0.2s;
}
.enter.entered {
  opacity: 1;
}

/* mobile */

@media only screen and (min-width: 651px) and (max-width: 900px) {
  .project-showcase li {
    grid-column: 1 / 13;
    grid-row: auto;
  }
}

@media only screen and (max-width: 650px) {
  .project-showcase li {
    grid-column: 1 / 5;
    grid-row: auto;
  }
}

/* journal */

/*==== Journal Showcase =====*/
.entry-block {
  padding: var(--gen-spacing) 0;
  display: flex;
}

.journal-preview li:first-of-type {
  border-top: 1px solid var(--main-color);
}

.journal-preview li:nth-child(odd) .entry-block {
  flex-direction: row-reverse;
}

.journal-preview li:nth-child(odd) .entry-block figcaption {
  margin-right: var(--gen-spacing);
}

.journal-preview li:nth-child(even) .entry-block figcaption {
  margin-left: var(--gen-spacing);
}

.journal-preview li {
  border-bottom: 1px solid var(--main-color);
}

.entry-block .entry-image-cont {
  width: calc(100vw * 0.295833);
}

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

.entry-block .entry-image-cont .aspectholder {
  width: 100%;
  height: fit-content;
}

.entry-block .entry-image-cont .aspectholder > * {
  width: 100%;
  height: auto;
  display: block;
}

.entry-block .entry-image-cont .aspectholder .vsc-controller {
  height: 0 !important;
  width: 0 !important;
  object-fit: unset !important;
}

.entry-block .entry-image-cont .aspectholder iframe {
  aspect-ratio: 16/9;
}

.entry-block figcaption {
  width: calc(100vw * 0.374305);
  position: relative;
}

.entry-block .read-more {
  position: absolute;
  bottom: 0;
}

.entry-title {
  margin-bottom: 1rem;
  font-size: 2.4rem;
  display: block;
}

/* Journal Mobile */

@media only screen and (max-width: 900px) {
  .entry-block figcaption {
    width: 100%;
  }

  .entry-block .entry-image-cont {
    width: 100%;
  }

  .journal-preview li:nth-child(even) .entry-block figcaption {
    margin-left: 0;
  }

  .entry-title {
    margin-bottom: 1rem;
  }
}

/*=== More Info/partners ====*/
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: var(--gen-spacing);
  grid-row-gap: var(--gen-spacing);
}

.partners-grid a {
  text-decoration: underline;
  display: flex;
  margin-top: 2.4rem;
  align-items: flex-end;
}

.partner-image {
  object-fit: contain;
  height: 100%;
  width: 100%;
  display: block;
}

/* headers general */
.section-info {
  position: sticky;
  top: 140px;
  display: block;
  height: 2em;
  margin-bottom: 2em;
}

.full-width {
  width: 100% !important;
}

/* mobile/desktop onlys */

.desktop-only {
  display: block;
}

.desktop-only-grid {
  display: grid;
}

.tab-mobile-only {
  display: none !important;
}

@media only screen and (max-width: 900px) {
  .desktop-only {
    display: none !important;
  }

  .desktop-only-grid {
    display: none !important;
  }

  .tab-mobile-only {
    display: block !important;
  }
}

/* Main Media */
@media only screen and (max-width: 900px) {
  :root {
    --gen-spacing: 20px;
  }

  form input,
  form textarea {
    margin-bottom: 1em;
  }
}
