:root {
  --white: #ffffff;
  --trueblack: #000000;
  --charcoal: #241f20;
  --navy: #0e243f;
  --blue: #1b447e;
  --lightblue: #c4e2f6;
  --gray: #606060;
  --tan: rgba(185,169,145, 0.2);
}

.text-white {
  color: var(--white);
}

.text-navy {
  color: var(--navy);
}

.text-blue {
  color: var(--blue);
}

.text-gray {
  color: var(--gray);
}

.text-black {
  color: var(--charcoal);
}

.bg-navy {
  background: var(--navy);
}

.shadow-1 {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.shadow-1:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.shadow-2 {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.shadow-3 {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.shadow-4 {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.shadow-5 {
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

:root {
  --regular: "Raleway-Regular";
  --medium: "Raleway-Medium";
  --semibold: "Raleway-Semibold";
  --bold: "Raleway-Bold";
  --extrabold: "Raleway-Extrabold";
  --black: "Raleway-Black";
  --xxsm: 1.2rem;
  --xsm: 1.44rem;
  --sm: 1.728rem;
  --md: 2.074rem;
  --lg: 2.488rem;
  --xl: 2.986rem;
  --2xl: 3.583rem;
  --3xl: 4.3rem;
  --4xl: 5.16rem;
  --5xl: 6.192rem;
  --6xl: 7.43rem;
  --7xl: 8.916rem;
  --8xl: 10.699rem;
  --9xl: 12.838rem;
  --10xl: 15.4056rem;
  --11xl: 18.48672rem;
}

@font-face {
  font-family: "Raleway-Regular";
  src: url("../fonts/Raleway/Raleway-Regular.ttf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: "Raleway-Medium";
  src: url("../fonts/Raleway/Raleway-Medium.ttf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: "Raleway-Semibold";
  src: url("../fonts/Raleway/Raleway-SemiBold.ttf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: "Raleway-Bold";
  src: url("../fonts/Raleway/Raleway-Bold.ttf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: "Raleway-Extrabold";
  src: url("../fonts/Raleway/Raleway-ExtraBold.ttf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: "Raleway-Black";
  src: url("../fonts/Raleway/Raleway-Black.ttf") format("truetype");
  font-style: normal;
}
* {
  box-sizing: border-box;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-size: 62.5%;
  font-family: var(--regular);
  font-weight: normal;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
p,
blockquote,
figure {
  margin: 0;
  padding: 0;
}

section,
main {
  display: block;
  position: relative;
}

h1,
h2,
h3,
h4 {
  font-size: inherit;
  font-weight: normal;
}

p {
  font-weight: normal;
}

a,
button {
  color: inherit;
  transition: 0.3s;
}

a {
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

button {
  overflow: visible;
  border: 0;
  font: inherit;
  -webkit-font-smoothing: inherit;
  letter-spacing: inherit;
  background: none;
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border: 0;
}

:focus {
  outline: 0;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}
img.contain {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

ol.stripped, ul.stripped {
  margin: 0;
  padding: 0;
}
ol.stripped li, ul.stripped li {
  list-style-type: none;
}

.fill {
  position: absolute;
  inset: 0;
}

.cover {
  object-fit: cover;
  max-width: none;
  display: flex;
  height: 100%;
  width: 100%;
}

.btn {
  display: inline-block;
  font-family: var(--bold);
  font-size: 1.5rem;
  padding: 1.7rem 3rem 1.5rem 3rem;
  background: var(--white);
  border-radius: 1rem;
  text-transform: uppercase;
  transition: 0.3s;
}
.btn:hover {
  color: var(--white);
  background: var(--blue);
}

.hide-overflow {
  overflow: hidden;
  display: block;
}

.appear {
  transition: 0.6s;
  display: block;
}
.appear.down {
  transform: translateY(-100%);
}
.appear.up {
  transform: translateY(100%);
}
.appear.in-view {
  transform: translateY(0%);
}

@media (min-width: 641px) {
  .delay-25 {
    transition-delay: 0.25s;
  }
}

@media (min-width: 641px) {
  .delay-50 {
    transition-delay: 0.5s;
  }
}

@media (min-width: 641px) {
  .delay-75 {
    transition-delay: 0.75s;
  }
}

@media (min-width: 641px) {
  .delay-100 {
    transition-delay: 1s;
  }
}

.fadeup {
  opacity: 0;
  transition-duration: 1s;
  transform: translate3d(0, 8%, 0);
}
.fadeup.in-view {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: none;
}

.slidedown {
  opacity: 0;
  transition-duration: 1s;
  transform: translate3d(0, -8%, 0);
}
.slidedown.in-view {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: none;
}

.slideleft {
  opacity: 0;
  transition-duration: 1s;
  transform: translate3d(-20px, 0, 0);
}
.slideleft.in-view {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: none;
}

.slideright {
  opacity: 0;
  transition-duration: 1s;
  transform: translate3d(20px, 0, 0);
}
.slideright.in-view {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: none;
}

.fadein {
  opacity: 0;
  transition-duration: 1s;
}
.fadein.in-view {
  transition-timing-function: linear;
  opacity: 1;
  transform: none;
}

.fadeup {
  opacity: 0;
  transition-duration: 1s;
  transform: translate3d(0, 8%, 0);
}
.fadeup.in-view {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: none;
}

.fadeup-cascade > *:nth-child(1) {
  transition-delay: calc(1 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(2) {
  transition-delay: calc(2 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(3) {
  transition-delay: calc(3 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(4) {
  transition-delay: calc(4 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(5) {
  transition-delay: calc(5 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(6) {
  transition-delay: calc(6 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(7) {
  transition-delay: calc(7 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(8) {
  transition-delay: calc(8 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(9) {
  transition-delay: calc(9 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(10) {
  transition-delay: calc(10 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(11) {
  transition-delay: calc(11 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(12) {
  transition-delay: calc(12 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(13) {
  transition-delay: calc(13 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(14) {
  transition-delay: calc(14 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(15) {
  transition-delay: calc(15 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(16) {
  transition-delay: calc(16 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(17) {
  transition-delay: calc(17 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(18) {
  transition-delay: calc(18 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(19) {
  transition-delay: calc(19 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(20) {
  transition-delay: calc(20 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(21) {
  transition-delay: calc(21 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(22) {
  transition-delay: calc(22 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(23) {
  transition-delay: calc(23 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(24) {
  transition-delay: calc(24 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(25) {
  transition-delay: calc(25 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(26) {
  transition-delay: calc(26 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(27) {
  transition-delay: calc(27 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(28) {
  transition-delay: calc(28 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(29) {
  transition-delay: calc(29 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(30) {
  transition-delay: calc(30 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(31) {
  transition-delay: calc(31 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(32) {
  transition-delay: calc(32 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(33) {
  transition-delay: calc(33 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(34) {
  transition-delay: calc(34 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(35) {
  transition-delay: calc(35 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(36) {
  transition-delay: calc(36 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(37) {
  transition-delay: calc(37 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(38) {
  transition-delay: calc(38 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(39) {
  transition-delay: calc(39 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(40) {
  transition-delay: calc(40 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(41) {
  transition-delay: calc(41 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(42) {
  transition-delay: calc(42 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(43) {
  transition-delay: calc(43 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(44) {
  transition-delay: calc(44 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(45) {
  transition-delay: calc(45 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(46) {
  transition-delay: calc(46 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(47) {
  transition-delay: calc(47 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(48) {
  transition-delay: calc(48 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(49) {
  transition-delay: calc(49 * 0.15s);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *.in-view:nth-child(1) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(2) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(3) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(4) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(5) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(6) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(7) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(8) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(9) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(10) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(11) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(12) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(13) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(14) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(15) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(16) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(17) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(18) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(19) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(20) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(21) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(22) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(23) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(24) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(25) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(26) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(27) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(28) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(29) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(30) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(31) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(32) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(33) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(34) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(35) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(36) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(37) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(38) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(39) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(40) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(41) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(42) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(43) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(44) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(45) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(46) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(47) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(48) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(49) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(1) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(2) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(3) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(4) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(5) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(6) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(7) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(8) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(9) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(10) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(11) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(12) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(13) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(14) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(15) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(16) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(17) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(18) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(19) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(20) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(21) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(22) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(23) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(24) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(25) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(26) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(27) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(28) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(29) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(30) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(31) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(32) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(33) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(34) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(35) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(36) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(37) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(38) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(39) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(40) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(41) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(42) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(43) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(44) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(45) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(46) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(47) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(48) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(49) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 11rem;
  transition: background 0.3s;
}
@media (min-width: 1280px) {
  nav {
    height: auto;
    padding: 2.5rem 0;
  }
}
nav.bg-navy {
  background: var(--navy);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
nav.dark.open .contain .logo svg path {
  fill: var(--white) !important;
}
nav.dark.open .contain .links-contain .links a {
  color: var(--white);
}
nav.dark .contain .logo svg path {
  fill: var(--navy) !important;
}
nav.dark .contain .links-contain .links a {
  color: var(--charcoal);
}
nav.dark .contain .links-contain .links a.active {
  text-decoration: underline;
  text-decoration-color: var(--navy);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
nav.dark .contain .links-contain .custom-select {
  background: var(--white);
  color: var(--navy);
}
@media (min-width: 1280px) {
  nav.dark .contain .links-contain .custom-select {
    background: var(--navy);
    color: var(--white);
  }
}
nav.dark .contain .links-contain .custom-select:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' overflow='visible' viewBox='0 0 19 11'%3E%3Cpath d='M17.5 1.5l-8 8-8-8' fill='none' stroke='%23232323' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10'/%3E%3C/svg%3E");
}
@media (min-width: 1280px) {
  nav.dark .contain .links-contain .custom-select:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' overflow='visible' viewBox='0 0 19 11'%3E%3Cpath d='M17.5 1.5l-8 8-8-8' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10'/%3E%3C/svg%3E");
  }
}
nav.dark .contain .links-contain .custom-select .select-options {
  background: var(--white);
}
@media (min-width: 1280px) {
  nav.dark .contain .links-contain .custom-select .select-options {
    background: var(--navy);
  }
}
nav.dark .contain .links-contain .custom-select .select-options .hidden-options .options a {
  border-top: 1px solid #6f6f6f;
}
nav.dark .contain .links-contain .custom-select .select-options .hidden-options .options a:hover {
  background: #f4f4f4;
}
@media (min-width: 1280px) {
  nav.dark .contain .links-contain .custom-select .select-options .hidden-options .options a:hover {
    background: var(--navy);
  }
}
nav.dark .contain .links-contain .custom-select .select-options .hidden-options .options a p {
  color: #6c6c6c;
}
@media (min-width: 1280px) {
  nav.dark .contain .links-contain .custom-select .select-options .hidden-options .options a p {
    color: var(--white);
  }
}
nav.dark .contain .links-contain .custom-select .select-options .hidden-options .options a p span {
  color: var(--navy);
}
@media (min-width: 1280px) {
  nav.dark .contain .links-contain .custom-select .select-options .hidden-options .options a p span {
    color: var(--white);
  }
}
nav.dark .contain #burger span {
  background: var(--navy);
}
nav.open .contain {
  pointer-events: all;
}
nav.open .contain .links-contain {
  transform: translateX(0%);
}
nav.open .contain #burger span {
  background: var(--white);
}
nav.open .contain #burger span:nth-child(1), nav.open .contain #burger span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}
nav.open .contain #burger span:nth-child(2) {
  transform: rotate(45deg);
  width: 100%;
  top: 9px;
}
nav.open .contain #burger span:nth-child(3) {
  transform: rotate(-45deg);
  width: 100%;
  top: 9px;
}
nav .contain {
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: none;
}
@media (min-width: 1280px) {
  nav .contain {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    max-width: 90%;
    margin: 0 auto;
    pointer-events: all;
  }
}
@media (min-width: 1800px) {
  nav .contain {
    max-width: 1440px;
  }
}
nav .contain .logo {
  position: absolute;
  z-index: 1;
  top: 2rem;
  left: 10%;
  width: 22rem;
  pointer-events: all;
}
@media (min-width: 1280px) {
  nav .contain .logo {
    position: static;
  }
}
nav .contain .links-contain {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100vh;
  padding: 15rem 10% 5rem 10%;
  background: var(--navy);
  transform: translateX(-100%);
  transition: 0.3s;
}
@media (min-width: 1280px) {
  nav .contain .links-contain {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex: 1;
    height: auto;
    background: none;
    padding: 0;
    transform: none;
  }
}
nav .contain .links-contain .links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1280px) {
  nav .contain .links-contain .links {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex: 1;
    gap: 3rem;
  }
}
nav .contain .links-contain .links a {
  font-family: var(--semibold);
  font-size: var(--lg);
  color: var(--white);
}
@media (min-width: 1280px) {
  nav .contain .links-contain .links a {
    font-size: var(--sm);
    font-family: var(--medium);
  }
}
nav .contain .links-contain .links a.active {
  text-decoration: underline;
  text-decoration-color: var(--white);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
nav .contain .links-contain .custom-select {
  position: relative;
  width: 250px;
  font-family: var(--extrabold);
  font-size: var(--sm);
  color: var(--blue);
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem 4rem 1.5rem 1.5rem;
  cursor: pointer;
  background-color: #fff;
  transition: none;
}
@media (min-width: 1280px) {
  nav .contain .links-contain .custom-select {
    width: 230px;
  }
}
nav .contain .links-contain .custom-select:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 1.9rem;
  height: 1.1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' overflow='visible' viewBox='0 0 19 11'%3E%3Cpath d='M17.5 1.5l-8 8-8-8' fill='none' stroke='%23232323' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  transition: 0.3s;
  transform-origin: center center;
}
nav .contain .links-contain .custom-select.open:after {
  transform: translateY(-50%) rotate(180deg);
}
nav .contain .links-contain .custom-select.open .select-options {
  grid-template-rows: 1fr;
  box-shadow: 0 4px 10px -4px rgba(0, 0, 0, 0.1);
}
nav .contain .links-contain .custom-select .select-display {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
nav .contain .links-contain .custom-select .select-options {
  position: absolute;
  top: calc(100% - 8px);
  left: 0;
  right: 0;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: 0.3s ease-in;
  background: var(--white);
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
nav .contain .links-contain .custom-select .select-options .select-options div {
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
nav .contain .links-contain .custom-select .select-options .hidden-options {
  overflow: hidden;
}
nav .contain .links-contain .custom-select .select-options .hidden-options .options a {
  display: block;
  padding: 1.5rem;
  border-top: 1px solid #eaeaea;
}
nav .contain .links-contain .custom-select .select-options .hidden-options .options a:hover {
  background: #f4f4f4;
}
nav .contain .links-contain .custom-select .select-options .hidden-options .options a p {
  font-family: var(--semibold);
  font-size: var(--xsm);
  line-height: 1.1;
  text-transform: capitalize;
  text-wrap: pretty;
  color: #6c6c6c;
}
nav .contain .links-contain .custom-select .select-options .hidden-options .options a p span {
  display: block;
  font-family: var(--extrabold);
  font-size: var(--md);
  color: var(--blue);
  margin-bottom: 0.3rem;
}
nav .contain #burger {
  position: absolute;
  z-index: 5;
  top: 5.2rem;
  right: 10%;
  display: block;
  width: 32px;
  height: 19px;
  margin-top: -0.6rem;
  margin-left: auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  pointer-events: all;
}
@media (min-width: 641px) {
  nav .contain #burger {
    top: 5.5rem;
  }
}
@media (min-width: 1280px) {
  nav .contain #burger {
    display: none;
  }
}
nav .contain #burger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--white);
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.15s ease-in-out;
  transition-delay: 0.02s;
}
nav .contain #burger span:nth-child(1) {
  top: 0px;
}
nav .contain #burger span:nth-child(2) {
  top: 7px;
}
nav .contain #burger span:nth-child(3) {
  top: 14px;
}
nav .contain #burger span:nth-child(4) {
  top: 14px;
  opacity: 0;
}

footer .footer-contain {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  padding: 7rem 5% 2rem 5%;
  background: var(--blue);
  border-radius: 1rem;
}
@media (min-width: 641px) {
  footer .footer-contain {
    padding: 8rem 5%;
    gap: 5rem;
  }
}
@media (min-width: 1180px) {
  footer .footer-contain {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0;
  }
}
footer .footer-contain .logo {
  position: relative;
  width: 100%;
  max-width: 25rem;
}
@media (min-width: 641px) {
  footer .footer-contain .logo {
    max-width: 40rem;
  }
}
@media (min-width: 1180px) {
  footer .footer-contain .logo {
    bottom: 2rem;
  }
}
footer .footer-contain .links-contain {
  display: flex;
  flex-direction: column;
  width: 90%;
}
@media (min-width: 641px) {
  footer .footer-contain .links-contain {
    flex-direction: row;
    justify-content: center;
    flex-shrink: 0;
  }
}
@media (min-width: 800px) {
  footer .footer-contain .links-contain {
    width: 77rem;
    justify-content: flex-end;
  }
}
footer .footer-contain .links-contain .links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 4rem 5%;
}
@media (min-width: 641px) {
  footer .footer-contain .links-contain .links {
    padding: 2rem 4rem;
  }
}
@media (min-width: 800px) {
  footer .footer-contain .links-contain .links {
    padding: 2rem 8rem;
  }
}
footer .footer-contain .links-contain .links:first-child {
  border-bottom: 2px solid var(--white);
}
@media (min-width: 641px) {
  footer .footer-contain .links-contain .links:first-child {
    border-bottom: 0;
    border-right: 2px solid var(--white);
  }
}
footer .footer-contain .links-contain .links .overline {
  font-size: var(--sm);
  letter-spacing: 0;
}
footer .footer-contain .links-contain .links a {
  font-family: var(--black);
  font-size: var(--md);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1;
}
@media (min-width: 641px) {
  footer .footer-contain .links-contain .links a {
    font-size: var(--xl);
  }
}
footer .footer-contain .links-contain .links a:last-of-type {
  margin-bottom: 0;
}
footer .footer-contain .links-contain .links a:hover {
  color: var(--lightblue);
}
footer .footer-contain .links-contain .links p {
  color: var(--white);
}
footer .footer-contain .links-contain .links div:not(.overline) {
  margin-bottom: 2.5rem;
}
footer .footer-contain .links-contain .links div:not(.overline) a {
  display: block;
  margin-bottom: 0.5rem;
}
footer .footer-contain .links-contain .links div:not(.overline) p {
  font-size: var(--sm);
  text-wrap: balance;
  max-width: 25rem;
  line-height: 1.1;
}
footer .footer-contain .links-contain .links div:not(.overline):last-of-type {
  margin-bottom: 0;
}
footer .copyright {
  font-size: var(--xsm);
  padding: 2rem 5%;
  text-align: center;
}
@media (min-width: 641px) {
  footer .copyright {
    font-size: var(--sm);
  }
}

body.video-playing {
  overflow: hidden;
}

.heading1 {
  font-family: var(--black);
  font-size: var(--4xl);
  line-height: 1;
  margin-bottom: 2rem;
}
@media (min-width: 641px) {
  .heading1 {
    font-size: var(--6xl);
    margin-bottom: 3rem;
  }
}
@media (min-width: 641px) {
  .heading1.text-sm {
    font-size: var(--4xl);
  }
}
@media (min-width: 641px) {
  .heading1.text-md {
    font-size: var(--5xl);
  }
}

.heading2 {
  font-family: var(--black);
  font-size: var(--2xl);
  line-height: 1;
}
@media (min-width: 641px) {
  .heading2 {
    font-size: var(--4xl);
  }
}
.heading2 span {
  color: var(--blue);
}
.heading2.text-md {
  font-size: var(--2xl);
}
@media (min-width: 641px) {
  .heading2.text-md {
    font-size: var(--4xl);
  }
}
@media (min-width: 1024px) {
  .heading2.text-md {
    font-size: var(--5xl);
  }
}
.heading2.text-lg {
  font-size: var(--3xl);
}
@media (min-width: 641px) {
  .heading2.text-lg {
    font-size: var(--5xl);
  }
}
@media (min-width: 1024px) {
  .heading2.text-lg {
    font-size: var(--6xl);
  }
}
.heading2.text-xl {
  font-size: var(--4xl);
}
@media (min-width: 1024px) {
  .heading2.text-xl {
    font-size: var(--7xl);
  }
}

h3 {
  font-family: var(--extrabold);
  font-size: var(--xl);
  color: var(--blue);
  text-wrap: pretty;
  line-height: 1;
  margin-bottom: 1.5rem;
}
@media (min-width: 641px) {
  h3 {
    font-size: var(--2xl);
  }
}

p {
  font-size: var(--sm);
  line-height: 1.4;
}
@media (min-width: 641px) {
  p {
    font-size: var(--md);
  }
}
p.text-md {
  font-size: var(--md);
}
@media (min-width: 641px) {
  p.text-md {
    font-size: var(--lg);
  }
}
p.text-lg {
  font-size: var(--md);
}
@media (min-width: 641px) {
  p.text-lg {
    font-size: var(--xl);
  }
}
p.subhead {
  font-family: var(--medium);
  font-size: var(--md);
  line-height: 1.2;
}
@media (min-width: 641px) {
  p.subhead {
    font-size: var(--lg);
  }
}

.overline {
  font-family: var(--bold);
  font-size: var(--xsm);
  margin-bottom: 3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (min-width: 641px) {
  .overline {
    font-size: var(--md);
  }
}

.container-lg {
  max-width: calc(100% - 2rem);
  margin: 0 auto;
}
@media (min-width: 641px) {
  .container-lg {
    max-width: calc(100% - 6rem);
  }
}
@media (min-width: 1800px) {
  .container-lg {
    max-width: 1440px;
  }
}

.container-md {
  max-width: 90%;
  margin: 0 auto;
}
@media (min-width: 1800px) {
  .container-md {
    max-width: 1298px;
  }
}

.container-sm {
  max-width: 80%;
  margin: 0 auto;
}
@media (min-width: 1800px) {
  .container-sm {
    max-width: 1156px;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.mast {
  position: relative;
  padding: 17rem 0 7rem 0;
  background: var(--navy);
}
@media (min-width: 641px) {
  .mast {
    padding: 20rem 0 12rem 0;
  }
}
.mast:after {
  position: absolute;
  content: "";
  inset: 0;
  background: rgb(0, 0, 0);
}
.mast.pad-lg {
  padding: 17rem 0 12rem 0;
}
@media (min-width: 641px) {
  .mast.pad-lg {
    padding: 25rem 0 15rem 0;
  }
}
.mast video {
  z-index: 1;
  opacity: 0.5;
}
@media (min-width: 641px) {
  .mast video {
    opacity: 0.6;
  }
}
.mast img {
  z-index: 1;
  opacity: 0.6;
}
.mast .copy {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .mast .copy {
    max-width: 90rem;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .mast .copy.slim {
    max-width: 70rem;
    margin: 0 auto;
  }
}
.mast .copy:has(.scroll) .subhead {
  margin: 0 auto 5rem auto;
}
@media (min-width: 641px) {
  .mast .copy:has(.scroll) .subhead {
    margin: 0 auto 10rem auto;
  }
}
.mast .copy .subhead {
  max-width: 65rem;
  margin: 0 auto;
  font-family: var(--medium);
}
.mast .copy .subhead.slim-width {
  max-width: 55rem;
}
.mast .copy .scroll {
  font-family: var(--bold);
  font-size: var(--xsm);
  letter-spacing: 0.1em;
}
.mast .copy .scroll div {
  margin-bottom: 2rem;
}
.mast .copy .scroll svg {
  animation: bounce 2s infinite;
  width: 2rem;
}

.callouts {
  position: relative;
  z-index: 1;
  padding-bottom: 50rem;
}
.callouts:before {
  position: absolute;
  inset: 0;
  top: 10rem;
  content: "";
  background: rgba(185, 169, 145, 0.2);
}
.callouts .contain {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-top: -10rem;
}
@media (min-width: 1024px) {
  .callouts .contain {
    grid-template-columns: repeat(2, 1fr);
  }
}
.callouts .contain .card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10rem 10% 10%;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background: var(--navy);
  overflow: hidden;
}
@media (min-width: 641px) {
  .callouts .contain .card {
    padding: 10%;
    aspect-ratio: 1/1;
  }
}
.callouts .contain .card:after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(200deg, rgba(64, 57, 52, 0) 0%, rgba(64, 57, 52, 0.5) 40%, rgb(64, 57, 52) 100%);
}
@media (min-width: 641px) {
  .callouts .contain .card:after {
    background: linear-gradient(200deg, rgba(64, 57, 52, 0) 0%, rgba(64, 57, 52, 0) 50%, rgba(64, 57, 52, 0.5) 60%, rgb(64, 57, 52) 100%);
  }
}
.callouts .contain .card .copy {
  position: relative;
  z-index: 1;
}
.callouts .contain .card .copy .heading2 {
  max-width: 50rem;
  margin-bottom: 3rem;
  text-wrap: balance;
}
.callouts .contain .card .copy .ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 20rem;
}
@media (min-width: 641px) {
  .callouts .contain .card .copy .ctas {
    flex-direction: row;
    align-items: center;
    max-width: none;
  }
}
.callouts .contain .card .copy .ctas a {
  width: 100%;
  text-align: center;
}
@media (min-width: 641px) {
  .callouts .contain .card .copy .ctas a {
    width: auto;
  }
}

.impact-and-reach .contain {
  position: relative;
  z-index: 1;
  margin-top: -45rem;
  background: var(--white);
  padding: 7rem 10% 4rem 10%;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media (min-width: 641px) {
  .impact-and-reach .contain {
    padding: 10rem 10%;
  }
}
@media (min-width: 1024px) {
  .impact-and-reach .contain {
    padding: 10rem 5%;
  }
}
.impact-and-reach .contain .copy-contain {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 641px) {
  .impact-and-reach .contain .copy-contain {
    margin-bottom: 7rem;
  }
}
@media (min-width: 1024px) {
  .impact-and-reach .contain .copy-contain {
    flex-direction: row;
    align-items: flex-end;
    gap: 5%;
    margin-bottom: 10rem;
  }
}
@media (min-width: 1024px) {
  .impact-and-reach .contain .copy-contain .copy {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .impact-and-reach .contain .copy-contain .subhead {
    width: 50%;
    max-width: 50rem;
  }
}
.impact-and-reach .contain .stats {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 641px) {
  .impact-and-reach .contain .stats {
    gap: 2.5rem 0;
  }
}
@media (min-width: 1024px) {
  .impact-and-reach .contain .stats {
    gap: 0;
  }
}
.impact-and-reach .contain .stats .stat {
  width: 100%;
  padding: 3rem 2.5%;
  border-bottom: 2px solid #e2e2e2;
}
@media (min-width: 641px) {
  .impact-and-reach .contain .stats .stat {
    width: 50%;
    border-left: 2px solid #e2e2e2;
    border-bottom: 0;
    padding: 3rem 5%;
  }
}
@media (min-width: 1024px) {
  .impact-and-reach .contain .stats .stat {
    width: 25%;
    padding: 2rem 2.5% 0.5rem 2.5%;
  }
}
.impact-and-reach .contain .stats .stat:last-child {
  border-bottom: 0;
}
.impact-and-reach .contain .stats .stat p {
  font-family: var(--bold);
  font-size: var(--sm);
  color: var(--navy);
  line-height: 1.15;
  text-wrap: balance;
}
.impact-and-reach .contain .stats .stat p span {
  display: block;
  font-family: var(--bold);
  font-size: var(--4xl);
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
@media (min-width: 1024px) {
  .impact-and-reach .contain .stats .stat p span {
    font-size: var(--5xl);
  }
}

.our-products {
  padding: 10rem 0 3rem 0;
  --size: clamp(5rem, 1rem + 40vmin, 5rem);
  --gap: calc(var(--size) / 5);
  --duration: 20s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}
@media (min-width: 1024px) {
  .our-products {
    padding: 10rem 0 7rem 0;
  }
}
.our-products .copy {
  text-align: center;
  max-width: 80%;
  margin: 0 auto 4rem auto;
}
@media (min-width: 1024px) {
  .our-products .copy {
    max-width: 80rem;
    margin: 0 auto 7rem auto;
  }
}
.our-products .copy .heading2 {
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .our-products .copy .heading2 {
    margin-bottom: 3rem;
  }
}
.our-products .copy .subhead {
  margin: 0 auto;
  max-width: 55rem;
}
.our-products .cards-with-marquee {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.our-products .cards-with-marquee .cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media (min-width: 641px) {
  .our-products .cards-with-marquee .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .our-products .cards-with-marquee .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
.our-products .cards-with-marquee .cards.first {
  margin-bottom: 3rem;
}
.our-products .cards-with-marquee .cards .card {
  position: relative;
  padding: 8rem 10% 3rem 10%;
  min-height: 30rem;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--blue);
}
@media (min-width: 641px) {
  .our-products .cards-with-marquee .cards .card {
    min-height: 40rem;
  }
}
.our-products .cards-with-marquee .cards .card.half {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  background: none;
}
.our-products .cards-with-marquee .cards .card.half svg:not(.wisconsin-svg) {
  position: absolute;
  top: 3rem;
  left: -10rem;
  z-index: 1;
  opacity: 0.05;
  transform: rotate(45deg);
}
.our-products .cards-with-marquee .cards .card.half svg:not(.wisconsin-svg):nth-of-type(2) {
  top: 3rem;
  right: 3rem;
  bottom: unset;
  left: unset;
  width: 100%;
  max-width: 8.5rem;
  transform: rotate(0);
  opacity: 1;
}
.our-products .cards-with-marquee .cards .card.half svg:not(.wisconsin-svg):nth-of-type(2) path {
  animation-name: pop;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  transform-origin: center center;
}
.our-products .cards-with-marquee .cards .card.half .card-half {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem 10% 3rem 10%;
  height: calc(50% - 0.5rem);
  background: var(--blue);
  border-radius: 1rem;
}
.our-products .cards-with-marquee .cards .card.half .card-half.bottom {
  text-align: right;
}
.our-products .cards-with-marquee .cards .card.half .card-half .wisconsin-svg {
  position: absolute;
  top: 3rem;
  left: 3rem;
  width: 7.2rem;
}
.our-products .cards-with-marquee .cards .card.end {
  display: flex;
  align-items: flex-end;
}
.our-products .cards-with-marquee .cards .card p {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.our-products .cards-with-marquee .cards .card p.large {
  font-family: var(--black);
  font-size: var(--xl);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.our-products .cards-with-marquee .cards .card p.small {
  font-size: var(--sm);
  text-wrap: balance;
}
.our-products .cards-with-marquee .cards .card p.no-pad {
  margin-bottom: 0;
}
@keyframes brandsMarquee {
  0% {
    transform: translateZ(0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.our-products .cards-with-marquee .scroll {
  overflow: hidden;
}
.our-products .cards-with-marquee .scroll .set {
  position: relative;
  display: inline-flex;
  width: auto;
  list-style-type: none;
  white-space: nowrap;
  will-change: transform3d;
  -webkit-transform-style: flat;
  animation: brandsMarquee 50s linear infinite;
}
.our-products .cards-with-marquee .scroll .set p {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--black);
  color: var(--blue);
  padding: 1.5rem 2.5rem;
  margin: 0.3rem;
  border: 2px solid var(--lightblue);
  border-radius: 1rem;
  font-size: var(--sm);
  line-height: 1;
}
@media (min-width: 641px) {
  .our-products .cards-with-marquee .scroll .set p {
    margin: 0.5rem;
    font-size: var(--md);
  }
}
@media (min-width: 1024px) {
  .our-products .cards-with-marquee .scroll .set p {
    font-size: var(--xl);
  }
}
.our-products .cards-with-marquee .scroll .set p:first-child {
  margin-left: 0.4rem;
}
.our-products .cards-with-marquee .scroll .set p img {
  display: inline-block;
  height: 4rem;
  width: 4rem;
  max-width: none;
  object-fit: contain;
}
@media (min-width: 641px) {
  .our-products .cards-with-marquee .scroll .set p img {
    height: 6rem;
    width: 6rem;
  }
}
.our-products .cards-with-marquee .scroll .set:last-child {
  animation: brandsMarquee 55s reverse linear infinite;
}

.conversation-callout .contain {
  position: relative;
  padding: 7rem 10%;
  margin-bottom: 3rem;
  background: var(--trueblack);
  border-radius: 1rem;
  overflow: hidden;
}
@media (min-width: 641px) {
  .conversation-callout .contain {
    padding: 12rem 10%;
  }
}
@media (min-width: 1024px) {
  .conversation-callout .contain {
    padding: 30rem 0;
  }
}
.conversation-callout .contain:after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, rgba(64, 57, 52, 0) 0%, rgba(64, 57, 52, 0) 0%, rgba(64, 57, 52, 0.8) 100%);
}
.conversation-callout .contain img {
  object-position: 60%;
  opacity: 0.6;
}
@media (min-width: 641px) {
  .conversation-callout .contain img {
    opacity: 0.8;
  }
}
@media (min-width: 641px) {
  .conversation-callout .contain img {
    object-position: 100% 100%;
  }
}
.conversation-callout .copy {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 85rem;
  margin: 0 auto;
}
.conversation-callout .copy .heading2 {
  margin-bottom: 4rem;
}

.history {
  padding: 7rem 0;
}
@media (min-width: 1024px) {
  .history {
    padding: 15rem 0;
  }
}
.history .contain {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media (min-width: 1024px) {
  .history .contain {
    flex-direction: row;
    gap: 5%;
  }
}
@media (min-width: 1024px) {
  .history .contain .copy {
    width: 70rem;
  }
}
.history .contain .copy .overline-headline {
  padding: 0 5%;
}
@media (min-width: 1024px) {
  .history .contain .copy .overline-headline {
    padding: 0 0 0 10%;
  }
}
.history .contain .copy .heading2 {
  max-width: 70rem;
  margin-bottom: 3rem;
}
@media (min-width: 641px) {
  .history .contain .copy .heading2 {
    margin-bottom: 5rem;
  }
}
.history .contain .copy .img {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  border-radius: 1rem;
  overflow: hidden;
}
.history .contain .copy-right {
  max-width: 60rem;
  padding: 0 5%;
}
@media (min-width: 1024px) {
  .history .contain .copy-right {
    width: 50%;
    max-width: 44rem;
    padding: 0;
  }
}
.history .contain .copy-right img {
  display: block;
  max-width: 20rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .history .contain .copy-right img {
    margin: 0 0 5rem auto;
    max-width: 30rem;
  }
}
.history .contain .copy-right p {
  margin-bottom: 2rem;
}
.history .contain .copy-right p:not(.text-md) {
  line-height: 1.6;
}
.history .contain .copy-right p:last-child {
  margin-bottom: 0;
}

.approach .copy-contain {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 7rem;
  padding: 0 5%;
}
@media (min-width: 1280px) {
  .approach .copy-contain {
    flex-direction: row;
    align-items: flex-end;
    gap: 10%;
  }
}
.approach .copy-contain .copy-left {
  max-width: 50rem;
}
@media (min-width: 1024px) {
  .approach .copy-contain .copy-left {
    max-width: 50rem;
  }
}
.approach .copy-contain .copy-right {
  max-width: 45rem;
}
@media (min-width: 1024px) {
  .approach .copy-contain .copy-right {
    max-width: 45rem;
  }
}
.approach .cards-small {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 641px) {
  .approach .cards-small {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .approach .cards-small {
    grid-template-columns: repeat(4, 1fr);
  }
}
.approach .cards-small .card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 1rem;
  padding: 20rem 10% 3rem;
}
@media (min-width: 641px) {
  .approach .cards-small .card {
    padding: 30rem 10% 3rem;
  }
}
.approach .cards-small .card:after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(15deg, rgba(64, 57, 52, 0.85) 20%, rgba(64, 57, 52, 0) 53%);
}
.approach .cards-small .card p {
  position: relative;
  z-index: 1;
  font-family: var(--black);
  font-size: var(--xl);
  color: var(--white);
  line-height: 1.15;
}
.approach .cards-large {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-top: 5rem;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .approach .cards-large {
    grid-template-columns: repeat(2, 1fr);
  }
}
.approach .cards-large .popcorn-large-svg {
  position: absolute;
  inset: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
  height: 100%;
}
@media (min-width: 1024px) {
  .approach .cards-large .popcorn-large-svg {
    height: auto;
    inset: 0;
    top: 3rem;
    transform: none;
  }
}
.approach .cards-large .card {
  padding: 5rem 10% 3rem;
  border: 3px solid var(--blue);
  border-radius: 1rem;
  background: var(--white);
}
@media (min-width: 641px) {
  .approach .cards-large .card {
    padding: 10rem 10% 5rem;
  }
}
.approach .cards-large .card .heading2 {
  margin-bottom: 2rem;
}
@media (min-width: 641px) {
  .approach .cards-large .card .heading2 {
    margin-bottom: 4rem;
  }
}
.approach .cards-large .card p {
  margin-bottom: 1.5rem;
  text-wrap: pretty;
}
.approach .cards-large .card .ul-heading {
  font-family: var(--bold);
  font-size: var(--sm);
  text-transform: uppercase;
  margin: 3rem 0 2rem 0;
  letter-spacing: 0.1em;
}
.approach .cards-large .card ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.approach .cards-large .card ul li {
  position: relative;
  font-family: var(--black);
  font-size: var(--sm);
  color: var(--ch);
  margin-bottom: 1.5rem;
  padding-left: 2em;
}
@media (min-width: 641px) {
  .approach .cards-large .card ul li {
    max-width: 85%;
    font-size: var(--md);
  }
}
.approach .cards-large .card ul li:last-child {
  margin-bottom: 0;
}
.approach .cards-large .card ul li:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 1rem;
  height: 1rem;
  width: 1rem;
  background: var(--lightblue);
  border-radius: 50%;
  transform: translateY(-50%);
}
@media (min-width: 641px) {
  .approach .cards-large .card ul li:after {
    left: 1.5rem;
    height: 1.5rem;
    width: 1.5rem;
  }
}

.today-beyond {
  position: relative;
  margin-top: -5rem;
  padding-bottom: 7rem;
}
@media (min-width: 1024px) {
  .today-beyond {
    margin-top: -15rem;
    padding-bottom: 10rem;
  }
}
.today-beyond img {
  max-width: 1600px;
  margin: 0 auto;
  border-radius: 1.5rem;
}
.today-beyond .contain {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1280px) {
  .today-beyond .contain {
    flex-direction: row;
    justify-content: center;
    gap: 10%;
  }
}
.today-beyond .contain .copy-right {
  max-width: 55rem;
}
.today-beyond .contain .copy-right p {
  margin-bottom: 2rem;
}
.today-beyond .contain .copy-right p:last-child {
  margin-bottom: 0;
}
.today-beyond .contain .copy-right p strong {
  color: var(--blue);
}

.downloadable-resources .contain {
  padding: 7rem 0;
  border-bottom: 2px solid #e2e2e2;
}
@media (min-width: 1024px) {
  .downloadable-resources .contain {
    padding: 10rem 0;
  }
}
.downloadable-resources .contain .copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
  padding: 0 10%;
}
@media (min-width: 1280px) {
  .downloadable-resources .contain .copy {
    flex-direction: row;
    align-items: flex-end;
    gap: 10%;
    margin-bottom: 7rem;
  }
}
@media (min-width: 1024px) {
  .downloadable-resources .contain .copy h2 {
    width: 50rem;
  }
}
.downloadable-resources .contain .copy p {
  font-family: var(--medium);
  max-width: 50rem;
}
.downloadable-resources .contain .resources {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 0 5%;
}
@media (min-width: 641px) {
  .downloadable-resources .contain .resources {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .downloadable-resources .contain .resources {
    grid-template-columns: repeat(4, 1fr);
  }
}
.downloadable-resources .contain .resources .resource {
  display: flex;
  flex-direction: column;
}
.downloadable-resources .contain .resources .resource a {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 10% 3rem 10%;
  background: var(--blue);
  border-radius: 1rem;
}
.downloadable-resources .contain .resources .resource a:hover {
  background: var(--navy);
}
.downloadable-resources .contain .resources .resource .type {
  font-family: var(--bold);
  font-size: var(--xsm);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10rem;
}
.downloadable-resources .contain .resources .resource .info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
}
.downloadable-resources .contain .resources .resource .info h3 {
  font-family: var(--black);
  font-size: var(--xl);
  color: var(--white);
  padding-bottom: 2rem;
}
@media (min-width: 641px) {
  .downloadable-resources .contain .resources .resource .info h3 {
    font-size: var(--2xl);
  }
}
.downloadable-resources .contain .resources .resource .info .download {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--bold);
  text-transform: uppercase;
  color: var(--white);
  padding-top: 2rem;
  border-top: 2px solid var(--white);
}
.downloadable-resources .contain .resources .resource .info .download p {
  font-size: var(--xsm);
}
.downloadable-resources .contain .resources .resource .info .download svg {
  width: 2.1rem;
}

.payment-options {
  padding: 7rem 0;
}
@media (min-width: 1024px) {
  .payment-options {
    padding: 10rem 0;
  }
}
.payment-options .copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
  padding: 0 10%;
}
@media (min-width: 1280px) {
  .payment-options .copy {
    flex-direction: row;
    align-items: flex-end;
    gap: 10%;
    margin-bottom: 7rem;
  }
}
@media (min-width: 1024px) {
  .payment-options .copy h2 {
    width: 50rem;
  }
}
.payment-options .copy p {
  font-family: var(--medium);
  max-width: 50rem;
}
.payment-options .resources {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 0 5%;
}
@media (min-width: 641px) {
  .payment-options .resources {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .payment-options .resources {
    grid-template-columns: repeat(3, 1fr);
  }
}
.payment-options .resources .resource {
  display: flex;
  flex-direction: column;
}
.payment-options .resources .resource a {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 10% 10% 5% 10%;
  background: var(--blue);
  border-radius: 1rem;
}
.payment-options .resources .resource a:hover {
  background: var(--navy);
}
.payment-options .resources .resource .type {
  font-family: var(--bold);
  font-size: var(--xsm);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10rem;
}
.payment-options .resources .resource .info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
}
.payment-options .resources .resource .info svg {
  width: 8rem;
  margin-bottom: 2rem;
}
.payment-options .resources .resource .info h3 {
  font-family: var(--black);
  font-size: var(--xl);
  color: var(--white);
  padding-bottom: 2rem;
  max-width: 80%;
  text-wrap: balance;
}
@media (min-width: 641px) {
  .payment-options .resources .resource .info h3 {
    font-size: var(--2xl);
  }
}
.payment-options .resources .resource .info .download {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--bold);
  text-transform: uppercase;
  color: var(--white);
  padding-top: 2rem;
  border-top: 2px solid var(--white);
}
.payment-options .resources .resource .info .download p {
  font-size: var(--xsm);
}
.payment-options .resources .resource .info .download svg {
  width: 2.1rem;
  margin-bottom: 0;
}

.helpful-tips {
  margin-bottom: 5rem;
}
.helpful-tips .contain {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  padding: 7rem 5% 5% 5%;
}
@media (min-width: 641px) {
  .helpful-tips .contain {
    padding: 10rem 5% 5% 5%;
  }
}
@media (min-width: 1024px) {
  .helpful-tips .contain {
    padding: 10rem 5%;
  }
}
.helpful-tips .contain .copy {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
  gap: 1.5rem;
  padding: 0 5%;
}
@media (min-width: 1280px) {
  .helpful-tips .contain .copy {
    flex-direction: row;
    gap: 10%;
    margin-bottom: 7rem;
  }
}
.helpful-tips .contain .copy p {
  max-width: 60rem;
  color: var(--white);
}
.helpful-tips .contain .tips {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media (min-width: 641px) {
  .helpful-tips .contain .tips {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .helpful-tips .contain .tips {
    grid-template-columns: repeat(3, 1fr);
  }
}
.helpful-tips .contain .tips .tip {
  display: flex;
  flex-direction: column;
  padding: 3rem 7.5% 7.5%;
  border-radius: 1rem;
  background: var(--white);
}
.helpful-tips .contain .tips .tip:has(.description) .info h3 {
  margin-bottom: 0.3rem;
}
.helpful-tips .contain .tips .tip svg {
  width: 7rem;
  display: block;
  margin: 0 0 5rem auto;
}
.helpful-tips .contain .tips .tip .info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
}
.helpful-tips .contain .tips .tip .info h3 {
  font-size: var(--xl);
  font-family: var(--extrabold);
  color: var(--blue);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.helpful-tips .contain .tips .tip .info .description {
  font-family: var(--semibold);
  font-size: var(--md);
  line-height: 1.1;
  padding-bottom: 1.5rem;
}
.helpful-tips .contain .tips .tip .info .capacity {
  font-family: var(--bold);
  font-size: var(--xsm);
  text-transform: uppercase;
  color: var(--blue);
  padding-top: 1.5rem;
  padding-bottom: 0;
  border-top: 1px solid #e2e2e2;
}

.product-information {
  margin-bottom: 5rem;
}
.product-information h1 {
  max-width: 70rem;
  margin: 0 auto 3rem auto;
}
.product-information .contain {
  padding: 7rem 5%;
  background: var(--tan);
  border-radius: 1rem;
}
@media (min-width: 641px) {
  .product-information .contain {
    padding: 10rem 5%;
  }
}
.product-information .contain .copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 5%;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .product-information .contain .copy {
    flex-direction: row;
    align-items: flex-end;
    gap: 15%;
    margin-bottom: 7rem;
  }
}
.product-information .contain .copy p {
  max-width: 50rem;
}
.product-information .table {
  background: var(--white);
  border-radius: 1rem;
  border: 2px solid #241f20;
  overflow: scroll;
}
.product-information .table table {
  width: 100%;
  border-collapse: collapse;
  font-family: sans-serif;
  text-align: center;
}
.product-information .table table thead {
  background: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
  border-bottom: 2px solid #241f20;
}
.product-information .table table th {
  border-right: 2px solid #241f20;
}
.product-information .table table th:first-child {
  text-align: left;
}
.product-information .table table td {
  font-family: var(--extrabold);
  font-size: var(--sm);
  border-right: 2px solid #241f20;
  vertical-align: middle;
  padding: 16px;
  line-height: 1.2;
}
@media (min-width: 641px) {
  .product-information .table table td {
    font-size: var(--lg);
  }
}
.product-information .table table td:first-child {
  text-align: left;
  vertical-align: middle;
}
.product-information .table table td:last-child {
  border-right: 0;
}
.product-information .table table tr:last-child td:first-child {
  border-bottom: 0;
}
.product-information .table table tr:last-child td:last-child {
  border-right: 0;
}
.product-information .table table tr:last-child th:last-child {
  border-right: 0;
}
.product-information .table table tr:last-child td {
  border-bottom: 0;
}
.product-information .table table th,
.product-information .table table td {
  padding: 16px;
  border-bottom: 2px solid #241f20;
}
.product-information .table table th:first-child,
.product-information .table table td:first-child {
  position: sticky;
  left: 0;
  background-color: var(--white);
  z-index: 1;
  border-right: 2px solid var(--charcoal);
  box-shadow: inset -0.5px 0 0 rgba(0, 0, 0, 0.5);
}
.product-information .table .td-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 641px) {
  .product-information .table .td-content {
    gap: 3rem;
  }
}
.product-information .table .icon {
  display: block;
  padding: 1rem 2rem 1rem 1rem;
  width: 50px;
  height: 50px;
  margin: 0;
  border-right: 2px solid #241f20;
  flex-shrink: 0;
}
@media (min-width: 641px) {
  .product-information .table .icon {
    width: 80px;
    height: 80px;
    padding: 1rem 3rem 1rem 1rem;
  }
}
.product-information .table .product {
  font-weight: bold;
}
.product-information .table .size {
  display: block;
}

.pecatonica-videos .contain {
  padding: 7rem 0;
  border-bottom: 2px solid #e2e2e2;
}
@media (min-width: 1024px) {
  .pecatonica-videos .contain {
    padding: 15rem 0 10rem 0;
  }
}
.pecatonica-videos .contain .copy {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
  padding: 0 10%;
  gap: 1.5rem;
}
@media (min-width: 1280px) {
  .pecatonica-videos .contain .copy {
    flex-direction: row;
    align-items: flex-end;
    gap: 10%;
    margin-bottom: 7rem;
  }
}
.pecatonica-videos .contain .copy h2 {
  width: 50rem;
}
.pecatonica-videos .contain .copy p {
  max-width: 58rem;
}
.pecatonica-videos .contain .copy p.wide {
  max-width: 61rem;
}
.pecatonica-videos .contain .videos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 0 5%;
}
@media (min-width: 641px) {
  .pecatonica-videos .contain .videos {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .pecatonica-videos .contain .videos {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 641px) {
  .pecatonica-videos .contain .videos.two-up {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pecatonica-videos .contain .videos.two-up .video .info {
  max-width: 35rem;
}
.pecatonica-videos .contain .videos .video {
  display: flex;
  flex-direction: column;
}
.pecatonica-videos .contain .videos .video button {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 10% 3rem 10%;
  background: var(--blue);
  border-radius: 1rem;
  text-align: left;
}
.pecatonica-videos .contain .videos .video button:hover {
  background: var(--navy);
}
.pecatonica-videos .contain .videos .video .type {
  font-family: var(--bold);
  font-size: var(--xsm);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10rem;
}
@media (min-width: 641px) {
  .pecatonica-videos .contain .videos .video .type {
    margin-bottom: 15rem;
  }
}
.pecatonica-videos .contain .videos .video .play {
  position: absolute;
  top: 3rem;
  right: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 6.5rem;
  width: 6.5rem;
  border: 4px solid var(--lightblue);
  border-radius: 50%;
}
@media (min-width: 641px) {
  .pecatonica-videos .contain .videos .video .play {
    height: 8rem;
    width: 8rem;
  }
}
.pecatonica-videos .contain .videos .video .play svg {
  position: relative;
  width: 2rem;
  left: 3px;
}
.pecatonica-videos .contain .videos .video .info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
}
.pecatonica-videos .contain .videos .video .info h3 {
  font-family: var(--black);
  font-size: var(--2xl);
  color: var(--white);
  margin-bottom: 0;
  text-wrap: balance;
}
@media (min-width: 641px) {
  .pecatonica-videos .contain .videos .video .info h3 {
    padding-bottom: 1.5rem;
  }
}
.pecatonica-videos .contain .videos .video .info p {
  font-family: var(--regular);
  color: var(--white);
  line-height: 1.2;
  text-wrap: balance;
}

.video-overlay {
  position: fixed;
  z-index: 3;
  inset: 0;
  visibility: hidden;
}
.video-overlay.show {
  background: rgba(0, 0, 0, 0.9);
  visibility: visible;
}
.video-overlay.show .close {
  display: block;
}
.video-overlay .close {
  position: absolute;
  top: 3rem;
  right: 3rem;
  height: 4rem;
  width: 4rem;
  display: none;
}
@media (min-width: 1280px) {
  .video-overlay .close {
    top: 5rem;
    right: 5rem;
    height: 5rem;
    width: 5rem;
  }
}
.video-overlay .contain {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.video-overlay .contain .video {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
}
@media (min-width: 1280px) {
  .video-overlay .contain .video {
    max-width: 100rem;
  }
}
.video-overlay .contain .video video {
  width: 100%;
  aspect-ratio: 16/9;
}

.nutrition-info {
  padding: 7rem 0;
}
@media (min-width: 641px) {
  .nutrition-info {
    padding: 10rem 0;
  }
}
.nutrition-info h2 {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto 3rem auto;
  text-align: center;
}
@media (min-width: 641px) {
  .nutrition-info h2 {
    margin: 0 auto 7rem auto;
  }
}
.nutrition-info .cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 900px) {
  .nutrition-info .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (min-width: 1280px) {
  .nutrition-info .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.nutrition-info .cards .card {
  display: flex;
  flex-direction: column;
}
.nutrition-info .cards a {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2rem;
  border-radius: 1rem;
  border: 3px solid var(--blue);
  transition: box-shadow 0.3s;
}
@media (min-width: 641px) {
  .nutrition-info .cards a {
    padding: 3rem;
  }
}
.nutrition-info .cards a:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.nutrition-info .cards a .img {
  position: relative;
  height: 17rem;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 3rem;
}
@media (min-width: 900px) {
  .nutrition-info .cards a .img {
    height: 26rem;
  }
}
.nutrition-info .cards a .copy {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.nutrition-info .cards a .copy h3 {
  text-wrap: balance;
  margin-bottom: 1.5rem;
}
.nutrition-info .cards a .copy .contains {
  margin-bottom: 1.5rem;
}
@media (min-width: 641px) {
  .nutrition-info .cards a .copy .contains {
    margin-bottom: 2rem;
  }
}
.nutrition-info .cards a .copy .contains span {
  display: block;
  text-transform: uppercase;
}
.nutrition-info .cards a .copy .description,
.nutrition-info .cards a .copy .contains {
  font-family: var(--bold);
  font-size: var(--sm);
  color: var(--blue);
  line-height: 1.2;
}
.nutrition-info .cards a .copy .description {
  margin-bottom: 2rem;
  line-height: 1.1;
}
.nutrition-info .cards a .copy .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  margin-top: auto;
  text-transform: uppercase;
  font-family: var(--bold);
  font-size: var(--xsm);
  color: var(--blue);
  border-top: 2px solid var(--lightblue);
}
.nutrition-info .cards a .copy .info svg {
  width: 2rem;
}
.nutrition-info .cards a .copy .info svg path {
  fill: var(--blue) !important;
}

.product-detail {
  padding: 18rem 0 3rem 0;
}
@media (min-width: 641px) {
  .product-detail {
    padding: 20rem 0 5rem 0;
  }
}
.product-detail .copy {
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 641px) {
  .product-detail .copy {
    margin-bottom: 5rem;
  }
}
.product-detail .nutrition-facts {
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--medium);
  font-size: 14px;
  color: #000;
  padding: 3rem;
  margin-bottom: 3rem;
  background: #f5f5f5;
  border-radius: 1rem;
}
@media (min-width: 641px) {
  .product-detail .nutrition-facts {
    margin-bottom: 5rem;
  }
}
.product-detail .nutrition-facts h2 {
  font-family: var(--black);
  font-size: var(--xl);
  color: var(--charcoal);
}
@media (min-width: 641px) {
  .product-detail .nutrition-facts h2 {
    font-size: var(--3xl);
  }
}
.product-detail .nutrition-facts .servings-per-container {
  margin-bottom: 2rem;
}
.product-detail tbody tr {
  border-bottom: 1px solid var(--charcoal);
}
.product-detail tbody tr.border-top-lg {
  border-top: 4px solid var(--charcoal);
}
.product-detail tbody tr.border-bottom-lg {
  border-bottom: 4px solid var(--charcoal);
}
.product-detail tbody tr td.text-left {
  text-align: left !important;
}
.product-detail tbody tr td.double-indent {
  padding-left: 2em;
}
.product-detail tbody tr td:nth-child(2) {
  font-family: var(--bold);
}
.product-detail tbody tr td:first-child {
  width: 40rem;
}
.product-detail tbody tr td:nth-child(2) {
  display: block;
  margin-right: 3rem;
}
.product-detail tbody tr td:last-child {
  font-family: var(--bold);
  text-align: right;
}
.product-detail tbody tr th:last-child {
  text-align: right;
}
.product-detail .nutrition-facts h4 {
  margin-top: 2rem;
  margin-bottom: 5px;
}
.product-detail .nutrition-facts .divider {
  border-top: 4px solid #000;
  margin: 10px 0;
}
.product-detail .nutrition-facts table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.product-detail .nutrition-facts table th,
.product-detail .nutrition-facts table td {
  font-size: var(--xsm);
  text-align: left;
  padding: 1.5rem 0;
}
@media (min-width: 641px) {
  .product-detail .nutrition-facts table th,
  .product-detail .nutrition-facts table td {
    font-size: var(--md);
  }
}
.product-detail .nutrition-facts table th.indent,
.product-detail .nutrition-facts table td.indent {
  padding: 1.2rem 0 1.2rem 1em;
}
.product-detail .nutrition-facts table th {
  border-bottom: 1px solid #000;
}
.product-detail .indent {
  padding-left: 1em;
}
.product-detail .float-right {
  float: right;
  font-weight: bold;
}
.product-detail .bold {
  font-weight: 600;
}
.product-detail .footnote {
  font-family: var(--medium);
  font-size: var(--xsm);
  margin-top: 2rem;
  line-height: 1.2;
  text-wrap: pretty;
}
@media (min-width: 641px) {
  .product-detail .footnote {
    font-size: var(--md);
  }
}
.product-detail h4 {
  font-family: var(--bold);
  font-size: var(--xsm);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--charcoal);
}
@media (min-width: 641px) {
  .product-detail h4 {
    font-size: var(--md);
  }
}
.product-detail p {
  font-size: var(--xsm);
}
@media (min-width: 641px) {
  .product-detail p {
    font-size: var(--md);
  }
}
.product-detail .calories-per-gram .fat-carbs-protein {
  margin-bottom: 3rem;
}
.product-detail .calories-per-gram .fat-carbs-protein p {
  font-family: var(--medium);
  font-size: var(--xsm);
  padding: 1.5rem 1rem 1.5rem 1em;
  border-bottom: 1px solid var(--charcoal);
}
@media (min-width: 641px) {
  .product-detail .calories-per-gram .fat-carbs-protein p {
    font-size: var(--md);
  }
}
.product-detail .ingredients-contain {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background: #f5f5f5;
  padding: 3rem;
  border-radius: 1rem;
}
.product-detail .ingredients-contain .ingredients {
  font-family: var(--medium);
  font-size: var(--xsm);
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media (min-width: 641px) {
  .product-detail .ingredients-contain .ingredients {
    font-size: var(--md);
  }
}
.product-detail .ingredients-contain .ingredients:last-child {
  margin-bottom: 0;
}

.contact {
  padding: 17rem 0 5rem 0;
}
@media (min-width: 641px) {
  .contact {
    padding: 25rem 0 10rem 0;
  }
}
.contact .contain {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  max-width: 90%;
  margin: 0 auto;
}
@media (min-width: 641px) {
  .contact .contain {
    max-width: 80%;
  }
}
@media (min-width: 1280px) {
  .contact .contain {
    flex-direction: row;
    gap: 5%;
  }
}
@media (min-width: 1800px) {
  .contact .contain {
    max-width: 1298px;
  }
}
.contact .contain .copy {
  padding: 0 5%;
}
@media (min-width: 1289px) {
  .contact .contain .copy {
    width: 50%;
    padding: 6rem 0 0 0;
  }
}
@media (min-width: 1024px) {
  .contact .contain .copy .subhead {
    max-width: 80%;
  }
}
.contact .contain .form {
  padding: 5rem 5%;
  background: #f1f1f1;
  border-radius: 1rem;
}
@media (min-width: 1289px) {
  .contact .contain .form {
    width: 50%;
  }
}
.contact .contain .form .form-headline {
  max-width: 40rem;
}
